stage-cli 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stage/__init__.py +1 -0
- stage/__main__.py +8 -0
- stage/banner.py +32 -0
- stage/bootstrap/__init__.py +0 -0
- stage/bootstrap/openjobs.py +392 -0
- stage/classify/__init__.py +29 -0
- stage/classify/eligibility.py +115 -0
- stage/classify/internship.py +64 -0
- stage/classify/role.py +91 -0
- stage/classify/scope.py +47 -0
- stage/cli/__init__.py +0 -0
- stage/cli/app.py +4 -0
- stage/cli/commands/__init__.py +8 -0
- stage/cli/commands/discovery.py +294 -0
- stage/cli/commands/insight.py +494 -0
- stage/cli/commands/pipeline.py +337 -0
- stage/cli/commands/postings.py +473 -0
- stage/cli/commands/schedule.py +171 -0
- stage/cli/housekeeping.py +64 -0
- stage/cli/logfile.py +56 -0
- stage/cli/notify.py +170 -0
- stage/cli/options.py +678 -0
- stage/cli/render.py +1398 -0
- stage/cli/runlock.py +74 -0
- stage/cli/schedule.py +702 -0
- stage/cli/schedule_state.py +363 -0
- stage/cli/selection.py +83 -0
- stage/cli/serialize.py +196 -0
- stage/companies.py +542 -0
- stage/data/companies/a.yaml +1289 -0
- stage/data/companies/b.yaml +900 -0
- stage/data/companies/c.yaml +1377 -0
- stage/data/companies/d.yaml +497 -0
- stage/data/companies/e.yaml +519 -0
- stage/data/companies/f.yaml +454 -0
- stage/data/companies/g.yaml +601 -0
- stage/data/companies/h.yaml +446 -0
- stage/data/companies/i.yaml +503 -0
- stage/data/companies/j.yaml +138 -0
- stage/data/companies/k.yaml +278 -0
- stage/data/companies/l.yaml +402 -0
- stage/data/companies/m.yaml +937 -0
- stage/data/companies/n.yaml +549 -0
- stage/data/companies/o.yaml +371 -0
- stage/data/companies/other.yaml +58 -0
- stage/data/companies/p.yaml +825 -0
- stage/data/companies/q.yaml +121 -0
- stage/data/companies/r.yaml +583 -0
- stage/data/companies/s.yaml +1140 -0
- stage/data/companies/t.yaml +817 -0
- stage/data/companies/u.yaml +196 -0
- stage/data/companies/v.yaml +325 -0
- stage/data/companies/w.yaml +353 -0
- stage/data/companies/x.yaml +67 -0
- stage/data/companies/y.yaml +36 -0
- stage/data/companies/z.yaml +146 -0
- stage/data/fonts/DejaVuSans.LICENSE.txt +99 -0
- stage/data/fonts/DejaVuSans.ttf +0 -0
- stage/data/lexicon/company_tokens.yaml +228 -0
- stage/data/lexicon/eligibility.yaml +455 -0
- stage/data/lexicon/inclusive_suffixes.yaml +37 -0
- stage/data/lexicon/internship.yaml +187 -0
- stage/data/lexicon/language.yaml +226 -0
- stage/data/lexicon/locations.yaml +1159 -0
- stage/data/lexicon/roles.yaml +2012 -0
- stage/data/lexicon/terms.yaml +76 -0
- stage/data/lexicon/workday_facets.yaml +27 -0
- stage/data/seed_companies.yaml +198 -0
- stage/dedup/__init__.py +19 -0
- stage/dedup/identity.py +113 -0
- stage/dedup/resolve.py +97 -0
- stage/domain/__init__.py +244 -0
- stage/domain/company.py +49 -0
- stage/domain/coverage.py +86 -0
- stage/domain/custom_board.py +92 -0
- stage/domain/discovery.py +94 -0
- stage/domain/enums.py +114 -0
- stage/domain/events.py +204 -0
- stage/domain/filters.py +27 -0
- stage/domain/health.py +169 -0
- stage/domain/ids.py +48 -0
- stage/domain/job.py +47 -0
- stage/domain/matching.py +15 -0
- stage/domain/priority.py +34 -0
- stage/domain/quarantine.py +39 -0
- stage/domain/rate_state.py +78 -0
- stage/domain/retention.py +20 -0
- stage/domain/rotation.py +46 -0
- stage/domain/signals.py +12 -0
- stage/domain/sync_run.py +35 -0
- stage/domain/text.py +113 -0
- stage/domain/validator.py +14 -0
- stage/domain/visits.py +60 -0
- stage/domain/workday.py +38 -0
- stage/http/__init__.py +58 -0
- stage/http/breaker.py +53 -0
- stage/http/cache.py +44 -0
- stage/http/client.py +725 -0
- stage/http/profiles.py +101 -0
- stage/lexicon.py +370 -0
- stage/normalize/__init__.py +16 -0
- stage/normalize/language.py +47 -0
- stage/normalize/location.py +271 -0
- stage/normalize/terms.py +153 -0
- stage/normalize/urls.py +122 -0
- stage/paths.py +86 -0
- stage/py.typed +0 -0
- stage/services/__init__.py +0 -0
- stage/services/canary.py +120 -0
- stage/services/coverage.py +231 -0
- stage/services/discover.py +747 -0
- stage/services/export.py +274 -0
- stage/services/health.py +237 -0
- stage/services/maintenance.py +225 -0
- stage/services/quarantine.py +20 -0
- stage/services/query.py +86 -0
- stage/services/sync.py +1257 -0
- stage/sources/__init__.py +82 -0
- stage/sources/_text.py +79 -0
- stage/sources/ashby.py +93 -0
- stage/sources/bamboohr.py +80 -0
- stage/sources/base.py +225 -0
- stage/sources/breezy.py +90 -0
- stage/sources/collage.py +60 -0
- stage/sources/community_feeds.py +142 -0
- stage/sources/curated_markdown.py +289 -0
- stage/sources/custom_json.py +610 -0
- stage/sources/espresso.py +154 -0
- stage/sources/feed.py +44 -0
- stage/sources/greenhouse.py +104 -0
- stage/sources/jobbank.py +147 -0
- stage/sources/jobvite.py +133 -0
- stage/sources/lever.py +76 -0
- stage/sources/oracle_cloud.py +187 -0
- stage/sources/platforms.py +609 -0
- stage/sources/quebec_emploi.py +146 -0
- stage/sources/recruitee.py +96 -0
- stage/sources/simplify.py +110 -0
- stage/sources/smartrecruiters.py +216 -0
- stage/sources/speedyapply.py +200 -0
- stage/sources/themuse.py +157 -0
- stage/sources/workable.py +83 -0
- stage/sources/workday.py +524 -0
- stage/sources/zshah.py +99 -0
- stage/storage/__init__.py +29 -0
- stage/storage/migrations/0001_initial.sql +239 -0
- stage/storage/migrations/__init__.py +135 -0
- stage/storage/repository.py +213 -0
- stage/storage/search.py +28 -0
- stage/storage/sqlite_repo.py +1586 -0
- stage/storage/writer.py +249 -0
- stage/tui/__init__.py +0 -0
- stage/tui/app.py +82 -0
- stage/tui/help.py +26 -0
- stage/tui/safe.py +21 -0
- stage/tui/screens/__init__.py +0 -0
- stage/tui/screens/boards.py +186 -0
- stage/tui/screens/postings.py +509 -0
- stage/tui/screens/review.py +209 -0
- stage/tui/screens/splash.py +37 -0
- stage/tui/screens/stats.py +124 -0
- stage/tui/screens/sync.py +194 -0
- stage/tui/state.py +160 -0
- stage/tui/theme.tcss +205 -0
- stage/tui/widgets/__init__.py +0 -0
- stage_cli-1.0.0.dist-info/METADATA +379 -0
- stage_cli-1.0.0.dist-info/RECORD +170 -0
- stage_cli-1.0.0.dist-info/WHEEL +4 -0
- stage_cli-1.0.0.dist-info/entry_points.txt +2 -0
- stage_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,2012 @@
|
|
|
1
|
+
swe:
|
|
2
|
+
- application engineering
|
|
3
|
+
- systems engineering
|
|
4
|
+
- system engineering
|
|
5
|
+
- software engineer
|
|
6
|
+
- software engineering
|
|
7
|
+
- software developer
|
|
8
|
+
- software development
|
|
9
|
+
- software dev
|
|
10
|
+
- software
|
|
11
|
+
- developer
|
|
12
|
+
- development engineer
|
|
13
|
+
- programmer
|
|
14
|
+
- programming
|
|
15
|
+
- full stack
|
|
16
|
+
- fullstack
|
|
17
|
+
- backend
|
|
18
|
+
- back end
|
|
19
|
+
- frontend
|
|
20
|
+
- front end
|
|
21
|
+
- web developer
|
|
22
|
+
- mobile developer
|
|
23
|
+
- ios developer
|
|
24
|
+
- android developer
|
|
25
|
+
- application developer
|
|
26
|
+
- application development
|
|
27
|
+
- forward deployed engineer
|
|
28
|
+
- development tools software
|
|
29
|
+
- energy optimization software
|
|
30
|
+
- logiciel d outils de développement
|
|
31
|
+
- logiciel d optimisation énergétique
|
|
32
|
+
- forward deployed engineering
|
|
33
|
+
- ai compiler
|
|
34
|
+
- developpement d applications
|
|
35
|
+
- développement d'applications
|
|
36
|
+
- ingénieur en déploiement chez le client
|
|
37
|
+
- ingénieure en déploiement chez le client
|
|
38
|
+
- ingénieur compilateur ia
|
|
39
|
+
- ingénieure compilateur ia
|
|
40
|
+
- platform engineer
|
|
41
|
+
- api engineer
|
|
42
|
+
- qa engineer
|
|
43
|
+
- test engineer
|
|
44
|
+
- quality assurance
|
|
45
|
+
- sdet
|
|
46
|
+
- genie logiciel
|
|
47
|
+
- developpement logiciel
|
|
48
|
+
- developpeur
|
|
49
|
+
- développeuse
|
|
50
|
+
- développeure
|
|
51
|
+
- programmeur
|
|
52
|
+
- programmeuse
|
|
53
|
+
- programmation
|
|
54
|
+
- analyste programmeur
|
|
55
|
+
- ingenieur logiciel
|
|
56
|
+
- développement web
|
|
57
|
+
- développement mobile
|
|
58
|
+
- assurance qualité
|
|
59
|
+
- testeur
|
|
60
|
+
- qa analyst
|
|
61
|
+
- qa tester
|
|
62
|
+
- quality assurance analyst
|
|
63
|
+
- test automation
|
|
64
|
+
- test automation engineer
|
|
65
|
+
- compiler engineer
|
|
66
|
+
- compiler developer
|
|
67
|
+
- compilateur
|
|
68
|
+
- graphics engineer
|
|
69
|
+
- graphics programmer
|
|
70
|
+
- rendering engineer
|
|
71
|
+
- gameplay engineer
|
|
72
|
+
- gameplay programmer
|
|
73
|
+
- algorithm engineer
|
|
74
|
+
- algorithms engineer
|
|
75
|
+
- algorithmique
|
|
76
|
+
- software architect
|
|
77
|
+
- architecte logiciel
|
|
78
|
+
- programmeur graphique
|
|
79
|
+
- automatisation des tests
|
|
80
|
+
- analyste qualité
|
|
81
|
+
- analyste en assurance qualité
|
|
82
|
+
- operating systems programmer
|
|
83
|
+
- operating systems engineer
|
|
84
|
+
- operating systems
|
|
85
|
+
- mainframe systems programmer
|
|
86
|
+
- systems programmer
|
|
87
|
+
- scientific programmer
|
|
88
|
+
- kernel engineer
|
|
89
|
+
- kernel developer
|
|
90
|
+
- kernel optimization
|
|
91
|
+
- kernel architecture
|
|
92
|
+
- performance engineer
|
|
93
|
+
- distributed systems engineer
|
|
94
|
+
- game engine engineer
|
|
95
|
+
- tools engineer
|
|
96
|
+
- automation engineer
|
|
97
|
+
- tooling engineer
|
|
98
|
+
- blockchain engineer
|
|
99
|
+
- smart contract engineer
|
|
100
|
+
- augmented reality engineer
|
|
101
|
+
- virtual reality engineer
|
|
102
|
+
- xr engineer
|
|
103
|
+
- acceleration kernel developer
|
|
104
|
+
- ai compiler software
|
|
105
|
+
- software compiler
|
|
106
|
+
- application integration engineer
|
|
107
|
+
- application engineer
|
|
108
|
+
- software development engineer
|
|
109
|
+
- software intern
|
|
110
|
+
- software internship
|
|
111
|
+
- software undergrad engineering
|
|
112
|
+
- software testing
|
|
113
|
+
- software testing development
|
|
114
|
+
- system and software testing
|
|
115
|
+
- software integration engineering
|
|
116
|
+
- android application
|
|
117
|
+
- generalist software engineer
|
|
118
|
+
- product software engineer
|
|
119
|
+
- enterprise software engineer
|
|
120
|
+
- business application developer
|
|
121
|
+
- client software engineer
|
|
122
|
+
- client application developer
|
|
123
|
+
- server software engineer
|
|
124
|
+
- server side developer
|
|
125
|
+
- application software engineer
|
|
126
|
+
- commercial software developer
|
|
127
|
+
- web engineer
|
|
128
|
+
- web application developer
|
|
129
|
+
- web software engineer
|
|
130
|
+
- api developer
|
|
131
|
+
- api integration developer
|
|
132
|
+
- microservices engineer
|
|
133
|
+
- web services developer
|
|
134
|
+
- ecommerce software engineer
|
|
135
|
+
- cms developer
|
|
136
|
+
- javascript developer
|
|
137
|
+
- typescript developer
|
|
138
|
+
- mobile software engineer
|
|
139
|
+
- mobile application developer
|
|
140
|
+
- mobile application engineer
|
|
141
|
+
- ios engineer
|
|
142
|
+
- ios software engineer
|
|
143
|
+
- android engineer
|
|
144
|
+
- android software engineer
|
|
145
|
+
- react native developer
|
|
146
|
+
- react native engineer
|
|
147
|
+
- flutter developer
|
|
148
|
+
- flutter engineer
|
|
149
|
+
- cross platform mobile developer
|
|
150
|
+
- native mobile developer
|
|
151
|
+
- desktop application developer
|
|
152
|
+
- desktop software engineer
|
|
153
|
+
- windows software developer
|
|
154
|
+
- macos software developer
|
|
155
|
+
- linux application developer
|
|
156
|
+
- browser engineer
|
|
157
|
+
- browser extension developer
|
|
158
|
+
- client platform engineer
|
|
159
|
+
- consumer applications engineer
|
|
160
|
+
- systems software engineer
|
|
161
|
+
- systems developer
|
|
162
|
+
- systems programming
|
|
163
|
+
- low level software engineer
|
|
164
|
+
- c software engineer
|
|
165
|
+
- c software developer
|
|
166
|
+
- rust software engineer
|
|
167
|
+
- linux software engineer
|
|
168
|
+
- linux systems developer
|
|
169
|
+
- device driver developer
|
|
170
|
+
- driver software engineer
|
|
171
|
+
- programming languages
|
|
172
|
+
- runtime systems engineer
|
|
173
|
+
- virtualization engineer
|
|
174
|
+
- virtual machine engineer
|
|
175
|
+
- storage software engineer
|
|
176
|
+
- file systems engineer
|
|
177
|
+
- database engine
|
|
178
|
+
- distributed systems developer
|
|
179
|
+
- algorithm developer
|
|
180
|
+
- algorithmic software engineer
|
|
181
|
+
- optimization engineer
|
|
182
|
+
- research software engineer
|
|
183
|
+
- numerical software engineer
|
|
184
|
+
- simulation software engineer
|
|
185
|
+
- cuda developer
|
|
186
|
+
- quantum software engineer
|
|
187
|
+
- quantum algorithms
|
|
188
|
+
- game developer
|
|
189
|
+
- game programmer
|
|
190
|
+
- game software engineer
|
|
191
|
+
- engine programmer
|
|
192
|
+
- engine software engineer
|
|
193
|
+
- game tools programmer
|
|
194
|
+
- game tools engineer
|
|
195
|
+
- game networking engineer
|
|
196
|
+
- multiplayer game engineer
|
|
197
|
+
- online game services
|
|
198
|
+
- game backend engineer
|
|
199
|
+
- game client engineer
|
|
200
|
+
- game physics programmer
|
|
201
|
+
- game simulation engineer
|
|
202
|
+
- game scripting
|
|
203
|
+
- unity developer
|
|
204
|
+
- unreal engine developer
|
|
205
|
+
- unreal engine programmer
|
|
206
|
+
- game build engineer
|
|
207
|
+
- graphics software engineer
|
|
208
|
+
- rendering programmer
|
|
209
|
+
- real time rendering
|
|
210
|
+
- shader developer
|
|
211
|
+
- graphics engine
|
|
212
|
+
- computer graphics
|
|
213
|
+
- visualization software
|
|
214
|
+
- image processing engineer
|
|
215
|
+
- video software engineer
|
|
216
|
+
- video streaming engineer
|
|
217
|
+
- media systems engineer
|
|
218
|
+
- audio software engineer
|
|
219
|
+
- audio dsp
|
|
220
|
+
- digital signal processing
|
|
221
|
+
- signal processing engineer
|
|
222
|
+
- digital twin engineer
|
|
223
|
+
- cad software engineer
|
|
224
|
+
- computer aided engineering
|
|
225
|
+
- geospatial software engineer
|
|
226
|
+
- ar developer
|
|
227
|
+
- ar software engineer
|
|
228
|
+
- vr developer
|
|
229
|
+
- vr software engineer
|
|
230
|
+
- xr developer
|
|
231
|
+
- xr software engineer
|
|
232
|
+
- extended reality
|
|
233
|
+
- mixed reality developer
|
|
234
|
+
- mixed reality engineer
|
|
235
|
+
- spatial computing
|
|
236
|
+
- spatial software engineer
|
|
237
|
+
- immersive technology
|
|
238
|
+
- immersive software engineer
|
|
239
|
+
- 3d software engineer
|
|
240
|
+
- 3d engine programmer
|
|
241
|
+
- real time 3d developer
|
|
242
|
+
- virtual production
|
|
243
|
+
- motion capture software
|
|
244
|
+
- slam engineer
|
|
245
|
+
- mapping and localization
|
|
246
|
+
- spatial mapping
|
|
247
|
+
- interactive systems
|
|
248
|
+
- developpeur de jeux
|
|
249
|
+
- programmeur de jeux
|
|
250
|
+
- ingenieur logiciel de jeux
|
|
251
|
+
- programmeur de moteur de jeux
|
|
252
|
+
- ingenieur de moteur de jeux
|
|
253
|
+
- developpeur unity
|
|
254
|
+
- developpeur unreal engine
|
|
255
|
+
- developpeur de logiciels
|
|
256
|
+
- developpeur d applications
|
|
257
|
+
- developpeur web
|
|
258
|
+
- developpeur mobile
|
|
259
|
+
- developpeur backend
|
|
260
|
+
- developpeur frontend
|
|
261
|
+
- ingenieur plateforme
|
|
262
|
+
- programmeur systemes
|
|
263
|
+
- ingenieur noyau
|
|
264
|
+
- ingenieur performance
|
|
265
|
+
- ingenieur systemes distribues
|
|
266
|
+
- ingenieur rendu
|
|
267
|
+
- rendu temps reel
|
|
268
|
+
- moteur graphique
|
|
269
|
+
- developpeur de shaders
|
|
270
|
+
- developpeur realite augmentee
|
|
271
|
+
- developpeur realite virtuelle
|
|
272
|
+
- developpeur realite mixte
|
|
273
|
+
- informatique spatiale
|
|
274
|
+
- developpeur 3d
|
|
275
|
+
- ingenieur slam
|
|
276
|
+
- cartographie et localisation
|
|
277
|
+
- sde
|
|
278
|
+
- distributed storage
|
|
279
|
+
- simulation engineer
|
|
280
|
+
- physics simulation
|
|
281
|
+
- augmented reality
|
|
282
|
+
- virtual reality
|
|
283
|
+
- stockage distribue
|
|
284
|
+
- ingenieur simulation
|
|
285
|
+
- simulation physique
|
|
286
|
+
- realite augmentee
|
|
287
|
+
- realite virtuelle
|
|
288
|
+
- software integration engineer
|
|
289
|
+
- integration developer
|
|
290
|
+
- api platform engineer
|
|
291
|
+
- platform software engineer
|
|
292
|
+
- backend platform engineer
|
|
293
|
+
- accessibility engineer
|
|
294
|
+
- localization engineer
|
|
295
|
+
- internationalization engineer
|
|
296
|
+
- tooling developer
|
|
297
|
+
- search engineer
|
|
298
|
+
- search software engineer
|
|
299
|
+
- geospatial developer
|
|
300
|
+
- gis software developer
|
|
301
|
+
- game services engineer
|
|
302
|
+
- gameplay systems engineer
|
|
303
|
+
- multiplayer networking engineer
|
|
304
|
+
- rendering software engineer
|
|
305
|
+
- graphics pipeline engineer
|
|
306
|
+
- compute shader engineer
|
|
307
|
+
- ray tracing engineer
|
|
308
|
+
- media pipeline engineer
|
|
309
|
+
- audio dsp engineer
|
|
310
|
+
- virtual production engineer
|
|
311
|
+
- spatial algorithms engineer
|
|
312
|
+
- ingenieur integration logicielle
|
|
313
|
+
- developpeur d integration
|
|
314
|
+
- ingenieur plateforme api
|
|
315
|
+
- ingenieur logiciel de plateforme
|
|
316
|
+
- ingenieur accessibilite
|
|
317
|
+
- ingenieur localisation
|
|
318
|
+
- ingenieur internationalisation
|
|
319
|
+
- developpeur d outils
|
|
320
|
+
- ingenieur recherche logicielle
|
|
321
|
+
- developpeur geospatial
|
|
322
|
+
- developpeur sig
|
|
323
|
+
- ingenieur logiciel geospatial
|
|
324
|
+
- ingenieur services de jeux
|
|
325
|
+
- ingenieur systemes de jeu
|
|
326
|
+
- ingenieur reseautage multijoueur
|
|
327
|
+
- ingenieur logiciel de rendu
|
|
328
|
+
- ingenieur pipeline graphique
|
|
329
|
+
- developpeur shaders de calcul
|
|
330
|
+
- ingenieur lancer de rayons
|
|
331
|
+
- ingenieur pipeline media
|
|
332
|
+
- ingenieur dsp audio
|
|
333
|
+
- ingenieur production virtuelle
|
|
334
|
+
- ingenieur algorithmes spatiaux
|
|
335
|
+
- sw engineer
|
|
336
|
+
- game engineer
|
|
337
|
+
- engine research
|
|
338
|
+
- technology summer analyst
|
|
339
|
+
|
|
340
|
+
- application architect
|
|
341
|
+
- middleware engineer
|
|
342
|
+
- service integration engineer
|
|
343
|
+
- enterprise integration
|
|
344
|
+
- game server engineer
|
|
345
|
+
- live operations engineering
|
|
346
|
+
- matchmaking engineer
|
|
347
|
+
- game telemetry engineer
|
|
348
|
+
- game engine tools
|
|
349
|
+
- multiplayer systems
|
|
350
|
+
- game physics engineer
|
|
351
|
+
- procedural generation
|
|
352
|
+
- technical game research
|
|
353
|
+
- government digital services
|
|
354
|
+
- public safety software
|
|
355
|
+
- intelligence systems software
|
|
356
|
+
- flight operations software
|
|
357
|
+
- airport systems software
|
|
358
|
+
- aerospace simulation
|
|
359
|
+
- space systems software
|
|
360
|
+
- ground systems software
|
|
361
|
+
- legal software engineer
|
|
362
|
+
- e discovery software
|
|
363
|
+
- bim software developer
|
|
364
|
+
- fleet management software
|
|
365
|
+
- application architecture
|
|
366
|
+
- architecte applicatif
|
|
367
|
+
- architecte applicative
|
|
368
|
+
- intergiciel
|
|
369
|
+
- integration de services
|
|
370
|
+
- integration d entreprise
|
|
371
|
+
- serveur de jeux
|
|
372
|
+
- operations de jeux en direct
|
|
373
|
+
- appariement de joueurs
|
|
374
|
+
- telemetrie de jeux
|
|
375
|
+
- outils de moteur de jeu
|
|
376
|
+
- systemes multijoueurs
|
|
377
|
+
- physique de jeu
|
|
378
|
+
- generation procedurale
|
|
379
|
+
- recherche technique sur les jeux
|
|
380
|
+
- services numeriques gouvernementaux
|
|
381
|
+
- logiciel de securite publique
|
|
382
|
+
- logiciel de systemes de renseignement
|
|
383
|
+
- logiciel des operations de vol
|
|
384
|
+
- logiciel de systemes aeroportuaires
|
|
385
|
+
- simulation aerospatiale
|
|
386
|
+
- logiciel de systemes spatiaux
|
|
387
|
+
- logiciel de systemes au sol
|
|
388
|
+
- logiciel juridique
|
|
389
|
+
- logiciel de decouverte electronique
|
|
390
|
+
- logiciel bim
|
|
391
|
+
- logiciel cao
|
|
392
|
+
- jumeau numerique
|
|
393
|
+
- logiciel de gestion de flotte
|
|
394
|
+
- image processing software
|
|
395
|
+
- video codec engineer
|
|
396
|
+
- streaming media engineer
|
|
397
|
+
- formal methods
|
|
398
|
+
- model checking
|
|
399
|
+
- static analysis
|
|
400
|
+
- program analysis
|
|
401
|
+
- software verification
|
|
402
|
+
- software validation
|
|
403
|
+
- building information modeling software
|
|
404
|
+
- renewable energy software
|
|
405
|
+
- biotechnology software
|
|
406
|
+
- drug discovery software
|
|
407
|
+
- digital health software
|
|
408
|
+
- medical imaging software
|
|
409
|
+
- assessment platform
|
|
410
|
+
- ad serving engineer
|
|
411
|
+
- advertising systems
|
|
412
|
+
- claims automation
|
|
413
|
+
- traitement d images logicielles
|
|
414
|
+
- ingenieur codec video
|
|
415
|
+
- ingenieure codec video
|
|
416
|
+
- ingenierie des medias en continu
|
|
417
|
+
- methodes formelles
|
|
418
|
+
- verification de modeles
|
|
419
|
+
- analyse statique
|
|
420
|
+
- analyse de programmes
|
|
421
|
+
- verification logicielle
|
|
422
|
+
- validation logicielle
|
|
423
|
+
- logiciel de modelisation des informations du batiment
|
|
424
|
+
- logiciel d energie renouvelable
|
|
425
|
+
- logiciel de biotechnologie
|
|
426
|
+
- logiciel de decouverte de medicaments
|
|
427
|
+
- logiciel de sante numerique
|
|
428
|
+
- logiciel d imagerie medicale
|
|
429
|
+
- plateforme d evaluation
|
|
430
|
+
- ingenieur de diffusion publicitaire
|
|
431
|
+
- ingenieure de diffusion publicitaire
|
|
432
|
+
- systemes publicitaires
|
|
433
|
+
- automatisation des sinistres
|
|
434
|
+
- java web development
|
|
435
|
+
- software analyst
|
|
436
|
+
- aerospace software apps engineer
|
|
437
|
+
- mission software
|
|
438
|
+
- software and gaming
|
|
439
|
+
- développement web java
|
|
440
|
+
- analyste logiciel
|
|
441
|
+
- ingénieur d'applications logicielles aérospatiales
|
|
442
|
+
- logiciel de mission
|
|
443
|
+
- logiciels et jeux
|
|
444
|
+
- algorithm
|
|
445
|
+
- compiler
|
|
446
|
+
- member of technical staff
|
|
447
|
+
- web app
|
|
448
|
+
- web application
|
|
449
|
+
- application web
|
|
450
|
+
- system engineer
|
|
451
|
+
- blockchain
|
|
452
|
+
- chaine de blocs
|
|
453
|
+
- ingenieur systemes
|
|
454
|
+
- web development
|
|
455
|
+
- algorithme
|
|
456
|
+
- qa engineering
|
|
457
|
+
- quality assurance engineering
|
|
458
|
+
- software qa
|
|
459
|
+
- qa automation
|
|
460
|
+
- mobile engineer
|
|
461
|
+
- mobile engineering
|
|
462
|
+
security:
|
|
463
|
+
- security engineer
|
|
464
|
+
- security engineering
|
|
465
|
+
- cybersecurity
|
|
466
|
+
- cyber security
|
|
467
|
+
- information security
|
|
468
|
+
- infosec
|
|
469
|
+
- appsec
|
|
470
|
+
- application security
|
|
471
|
+
- product security
|
|
472
|
+
- offensive security
|
|
473
|
+
- penetration tester
|
|
474
|
+
- penetration testing
|
|
475
|
+
- red team
|
|
476
|
+
- blue team
|
|
477
|
+
- threat intelligence
|
|
478
|
+
- threat detection
|
|
479
|
+
- incident response
|
|
480
|
+
- security research
|
|
481
|
+
- security analyst
|
|
482
|
+
- cryptography
|
|
483
|
+
- securite informatique
|
|
484
|
+
- cybersecurite
|
|
485
|
+
- sécurité applicative
|
|
486
|
+
- sécurité de l'information
|
|
487
|
+
- analyste en sécurité
|
|
488
|
+
- cryptographie
|
|
489
|
+
- privacy engineer
|
|
490
|
+
- privacy engineering
|
|
491
|
+
- soc analyst
|
|
492
|
+
- security operations
|
|
493
|
+
- security operations center
|
|
494
|
+
- digital forensics
|
|
495
|
+
- computer forensics
|
|
496
|
+
- forensic analyst
|
|
497
|
+
- devsecops
|
|
498
|
+
- protection de la vie privée
|
|
499
|
+
- protection des renseignements
|
|
500
|
+
- opérations de sécurité
|
|
501
|
+
- centre des opérations de sécurité
|
|
502
|
+
- informatique judiciaire
|
|
503
|
+
- criminalistique numérique
|
|
504
|
+
- information security officer
|
|
505
|
+
- information security specialist
|
|
506
|
+
- information systems security analyst
|
|
507
|
+
- information systems security officer
|
|
508
|
+
- it security analyst
|
|
509
|
+
- it security architect
|
|
510
|
+
- it security consultant
|
|
511
|
+
- it security specialist
|
|
512
|
+
- network security analyst
|
|
513
|
+
- network security engineer
|
|
514
|
+
- systems security analyst
|
|
515
|
+
- systems security engineer
|
|
516
|
+
- systems security planner
|
|
517
|
+
- cloud security engineer
|
|
518
|
+
- infrastructure security engineer
|
|
519
|
+
- identity and access management
|
|
520
|
+
- identity access management
|
|
521
|
+
- vulnerability analyst
|
|
522
|
+
- vulnerability researcher
|
|
523
|
+
- vulnerability research
|
|
524
|
+
- recherche sur les vulnerabilites
|
|
525
|
+
- cyberdefense
|
|
526
|
+
- analyste soc
|
|
527
|
+
- analyste en cybersecurite
|
|
528
|
+
- specialiste en cybersecurite
|
|
529
|
+
- ingenieur en cybersecurite
|
|
530
|
+
- ingenieure en cybersecurite
|
|
531
|
+
- analyste de securite des systemes
|
|
532
|
+
- ingenieur en securite des systemes
|
|
533
|
+
- ingenieure en securite des systemes
|
|
534
|
+
- securite des reseaux
|
|
535
|
+
- securite des systemes
|
|
536
|
+
- security software engineer
|
|
537
|
+
- security developer
|
|
538
|
+
- defensive security
|
|
539
|
+
- cyber defense
|
|
540
|
+
- threat detection engineer
|
|
541
|
+
- detection engineer
|
|
542
|
+
- detection and response
|
|
543
|
+
- security monitoring
|
|
544
|
+
- siem engineer
|
|
545
|
+
- soar engineer
|
|
546
|
+
- cyber incident response
|
|
547
|
+
- cyber threat intelligence
|
|
548
|
+
- ethical hacking
|
|
549
|
+
- ethical hacker
|
|
550
|
+
- red team operator
|
|
551
|
+
- application penetration testing
|
|
552
|
+
- web application penetration testing
|
|
553
|
+
- network penetration testing
|
|
554
|
+
- cloud penetration testing
|
|
555
|
+
- mobile penetration testing
|
|
556
|
+
- api security testing
|
|
557
|
+
- security testing
|
|
558
|
+
- vulnerability assessment
|
|
559
|
+
- vulnerability management
|
|
560
|
+
- malware analysis
|
|
561
|
+
- malware research
|
|
562
|
+
- reverse engineering
|
|
563
|
+
- binary analysis
|
|
564
|
+
- exploit development
|
|
565
|
+
- exploit research
|
|
566
|
+
- secure software engineering
|
|
567
|
+
- secure code review
|
|
568
|
+
- security code analysis
|
|
569
|
+
- application threat modeling
|
|
570
|
+
- security architecture
|
|
571
|
+
- cloud security
|
|
572
|
+
- infrastructure security
|
|
573
|
+
- container security
|
|
574
|
+
- kubernetes security
|
|
575
|
+
- platform security
|
|
576
|
+
- endpoint security
|
|
577
|
+
- endpoint detection and response
|
|
578
|
+
- edr engineer
|
|
579
|
+
- xdr engineer
|
|
580
|
+
- iam engineer
|
|
581
|
+
- authentication engineer
|
|
582
|
+
- authorization engineer
|
|
583
|
+
- digital identity
|
|
584
|
+
- cryptographic engineering
|
|
585
|
+
- pki
|
|
586
|
+
- key management engineering
|
|
587
|
+
- secrets management
|
|
588
|
+
- network defense
|
|
589
|
+
- email security
|
|
590
|
+
- web security
|
|
591
|
+
- mobile security
|
|
592
|
+
- embedded security
|
|
593
|
+
- iot security
|
|
594
|
+
- automotive cybersecurity
|
|
595
|
+
- industrial control systems security
|
|
596
|
+
- ot security
|
|
597
|
+
- security automation
|
|
598
|
+
- security platform engineer
|
|
599
|
+
- security tooling
|
|
600
|
+
- security data engineer
|
|
601
|
+
- security data science
|
|
602
|
+
- fraud detection engineer
|
|
603
|
+
- fraud security
|
|
604
|
+
- anti abuse engineering
|
|
605
|
+
- trust and safety engineering
|
|
606
|
+
- blockchain security
|
|
607
|
+
- ingenieur logiciel de securite
|
|
608
|
+
- developpeur securite
|
|
609
|
+
- ingenieur detection des menaces
|
|
610
|
+
- detection et reponse
|
|
611
|
+
- surveillance de securite
|
|
612
|
+
- ingenieur siem
|
|
613
|
+
- ingenieur soar
|
|
614
|
+
- intervention en cas d incident
|
|
615
|
+
- renseignement sur les menaces
|
|
616
|
+
- test d intrusion
|
|
617
|
+
- testeur d intrusion
|
|
618
|
+
- piratage ethique
|
|
619
|
+
- evaluation des vulnerabilites
|
|
620
|
+
- gestion des vulnerabilites
|
|
621
|
+
- analyse de maliciel
|
|
622
|
+
- retroingenierie
|
|
623
|
+
- developpement d exploits
|
|
624
|
+
- revue de code securise
|
|
625
|
+
- modelisation des menaces
|
|
626
|
+
- securite infonuagique
|
|
627
|
+
- securite des conteneurs
|
|
628
|
+
- securite kubernetes
|
|
629
|
+
- securite des terminaux
|
|
630
|
+
- detection et reponse aux incidents de securite
|
|
631
|
+
- gestion des identites et des acces
|
|
632
|
+
- ingenieur authentification
|
|
633
|
+
- ingenieur autorisation
|
|
634
|
+
- identite numerique
|
|
635
|
+
- ingenierie cryptographique
|
|
636
|
+
- infrastructure a cles publiques
|
|
637
|
+
- gestion des cles
|
|
638
|
+
- gestion des secrets
|
|
639
|
+
- securite embarquee
|
|
640
|
+
- cybersecurite automobile
|
|
641
|
+
- securite des systemes de controle industriel
|
|
642
|
+
- securite ot
|
|
643
|
+
- automatisation de la securite
|
|
644
|
+
- outillage de securite
|
|
645
|
+
- ingenieur donnees de securite
|
|
646
|
+
- science des donnees de securite
|
|
647
|
+
- detection de fraude
|
|
648
|
+
- lutte contre les abus
|
|
649
|
+
- confiance et securite
|
|
650
|
+
- securite de la chaine de blocs
|
|
651
|
+
- security infrastructure engineer
|
|
652
|
+
- application security engineer
|
|
653
|
+
- application security architect
|
|
654
|
+
- cloud security architect
|
|
655
|
+
- cloud security developer
|
|
656
|
+
- security operations engineer
|
|
657
|
+
- security automation engineer
|
|
658
|
+
- detection content engineer
|
|
659
|
+
- threat hunting
|
|
660
|
+
- threat hunter
|
|
661
|
+
- security data analyst
|
|
662
|
+
- vulnerability management engineer
|
|
663
|
+
- supply chain security engineer
|
|
664
|
+
- software supply chain security
|
|
665
|
+
- cryptography engineer
|
|
666
|
+
- ai security engineer
|
|
667
|
+
- ml security engineer
|
|
668
|
+
- model security engineer
|
|
669
|
+
- adversarial machine learning
|
|
670
|
+
- zero trust security
|
|
671
|
+
- ingenieur infrastructure de securite
|
|
672
|
+
- ingenieur securite applicative
|
|
673
|
+
- architecte securite applicative
|
|
674
|
+
- architecte securite infonuagique
|
|
675
|
+
- developpeur securite infonuagique
|
|
676
|
+
- ingenieur operations de securite
|
|
677
|
+
- ingenieur automatisation de la securite
|
|
678
|
+
- ingenieur contenu de detection
|
|
679
|
+
- chasse aux menaces
|
|
680
|
+
- chasseur de menaces
|
|
681
|
+
- analyste donnees de securite
|
|
682
|
+
- ingenieur gestion des vulnerabilites
|
|
683
|
+
- ingenieur securite de la chaine logistique logicielle
|
|
684
|
+
- securite de la chaine d approvisionnement logicielle
|
|
685
|
+
- ingenieur cryptographie
|
|
686
|
+
- ingenieur securite ml
|
|
687
|
+
- ingenieur securite des modeles
|
|
688
|
+
- apprentissage automatique adversarial
|
|
689
|
+
- securite zero trust
|
|
690
|
+
- ingenieur securite ia
|
|
691
|
+
- ingenieure securite ia
|
|
692
|
+
- hacker
|
|
693
|
+
- cybersecuirty
|
|
694
|
+
|
|
695
|
+
- cloud native security
|
|
696
|
+
- runtime security
|
|
697
|
+
- adversary emulation
|
|
698
|
+
- purple team
|
|
699
|
+
- security orchestration
|
|
700
|
+
- zero trust engineering
|
|
701
|
+
- ndr engineer
|
|
702
|
+
- dfir
|
|
703
|
+
- memory forensics
|
|
704
|
+
- hardware security
|
|
705
|
+
- ai security
|
|
706
|
+
- model security
|
|
707
|
+
- smart contract security
|
|
708
|
+
- fraud prevention engineer
|
|
709
|
+
- payment fraud engineer
|
|
710
|
+
- identity verification engineer
|
|
711
|
+
- digital identity engineer
|
|
712
|
+
- secure communications software
|
|
713
|
+
- compliance automation
|
|
714
|
+
- securite infonuagique native
|
|
715
|
+
- securite d execution
|
|
716
|
+
- emulation d adversaires
|
|
717
|
+
- equipe violette
|
|
718
|
+
- orchestration de securite
|
|
719
|
+
- ingenierie zero trust
|
|
720
|
+
- ingenieur ndr
|
|
721
|
+
- ingenieure ndr
|
|
722
|
+
- reponse aux incidents et investigation numerique
|
|
723
|
+
- investigation de la memoire
|
|
724
|
+
- securite ia
|
|
725
|
+
- securite des modeles
|
|
726
|
+
- securite des contrats intelligents
|
|
727
|
+
- prevention de la fraude
|
|
728
|
+
- prevention de la fraude de paiement
|
|
729
|
+
- verification d identite
|
|
730
|
+
- logiciel de communications securisees
|
|
731
|
+
- automatisation de la conformite
|
|
732
|
+
- anti cheat engineer
|
|
733
|
+
- anti triche
|
|
734
|
+
- ai for network security and orchestration
|
|
735
|
+
- secure cloud platform
|
|
736
|
+
- ia pour la sécurité réseau et l orchestration
|
|
737
|
+
- plateforme infonuagique sécurisée
|
|
738
|
+
- it security
|
|
739
|
+
- cyber
|
|
740
|
+
data:
|
|
741
|
+
- analytics
|
|
742
|
+
- visualization engineer
|
|
743
|
+
- modeling and visualization
|
|
744
|
+
- cyber analytics
|
|
745
|
+
- insights and analytics
|
|
746
|
+
- data science
|
|
747
|
+
- data scientist
|
|
748
|
+
- data engineer
|
|
749
|
+
- data analysis
|
|
750
|
+
- data and analytics
|
|
751
|
+
- data and ai
|
|
752
|
+
- data extraction
|
|
753
|
+
- data integration
|
|
754
|
+
- data reporting
|
|
755
|
+
- data processing
|
|
756
|
+
- data visualization
|
|
757
|
+
- data specialist
|
|
758
|
+
- computational neuroscience
|
|
759
|
+
- analyse de données
|
|
760
|
+
- données et analytique
|
|
761
|
+
- données et ia
|
|
762
|
+
- extraction de données
|
|
763
|
+
- intégration de données
|
|
764
|
+
- rapports de données
|
|
765
|
+
- traitement de données
|
|
766
|
+
- visualisation de données
|
|
767
|
+
- spécialiste des données
|
|
768
|
+
- neurosciences computationnelles
|
|
769
|
+
- data engineering
|
|
770
|
+
- data analyst
|
|
771
|
+
- data analytics
|
|
772
|
+
- gis analyst
|
|
773
|
+
- analyste sig
|
|
774
|
+
- systèmes d'information géographique
|
|
775
|
+
- analytics engineer
|
|
776
|
+
- business intelligence
|
|
777
|
+
- bi developer
|
|
778
|
+
- etl developer
|
|
779
|
+
- data platform
|
|
780
|
+
- data warehouse
|
|
781
|
+
- database engineer
|
|
782
|
+
- science des donnees
|
|
783
|
+
- scientifique des données
|
|
784
|
+
- ingenieur de donnees
|
|
785
|
+
- analyste de donnees
|
|
786
|
+
- analyse de données
|
|
787
|
+
- donnees
|
|
788
|
+
- intelligence d'affaires
|
|
789
|
+
- entrepôt de données
|
|
790
|
+
- data developer
|
|
791
|
+
- data development
|
|
792
|
+
- développement de données
|
|
793
|
+
- développeur de données
|
|
794
|
+
- développeuse de données
|
|
795
|
+
- développeure de données
|
|
796
|
+
- programmeur de données
|
|
797
|
+
- data architect
|
|
798
|
+
- data modeler
|
|
799
|
+
- data modeller
|
|
800
|
+
- data mining analyst
|
|
801
|
+
- data miner
|
|
802
|
+
- big data analyst
|
|
803
|
+
- big data developer
|
|
804
|
+
- big data engineer
|
|
805
|
+
- data analytics consultant
|
|
806
|
+
- data analytics specialist
|
|
807
|
+
- analytics specialist
|
|
808
|
+
- data warehousing specialist
|
|
809
|
+
- data operations
|
|
810
|
+
- architecte de donnees
|
|
811
|
+
- analyste en analytique
|
|
812
|
+
- applied data science
|
|
813
|
+
- data platform engineer
|
|
814
|
+
- data infrastructure engineer
|
|
815
|
+
- data systems engineer
|
|
816
|
+
- data pipeline engineer
|
|
817
|
+
- etl engineer
|
|
818
|
+
- elt engineer
|
|
819
|
+
- data warehouse engineer
|
|
820
|
+
- data lake engineer
|
|
821
|
+
- database developer
|
|
822
|
+
- sql developer
|
|
823
|
+
- postgresql developer
|
|
824
|
+
- nosql database engineer
|
|
825
|
+
- data integration engineer
|
|
826
|
+
- bi engineer
|
|
827
|
+
- data quality engineer
|
|
828
|
+
- data reliability engineer
|
|
829
|
+
- data operations engineer
|
|
830
|
+
- data governance engineering
|
|
831
|
+
- data governance engineer
|
|
832
|
+
- ingénieur plateforme de données
|
|
833
|
+
- ingénieure plateforme de données
|
|
834
|
+
- ingénieur infrastructure de données
|
|
835
|
+
- ingénieure infrastructure de données
|
|
836
|
+
- ingénieur pipeline de données
|
|
837
|
+
- ingénieure pipeline de données
|
|
838
|
+
- ingénieur intégration de données
|
|
839
|
+
- ingénieure intégration de données
|
|
840
|
+
- ingénieur qualité des données
|
|
841
|
+
- ingénieure qualité des données
|
|
842
|
+
- ingénieur fiabilité des données
|
|
843
|
+
- ingénieure fiabilité des données
|
|
844
|
+
- ingénieur gouvernance des données
|
|
845
|
+
- ingénieure gouvernance des données
|
|
846
|
+
- développeur sql
|
|
847
|
+
- développeuse sql
|
|
848
|
+
- développeur de bases de données
|
|
849
|
+
- développeuse de bases de données
|
|
850
|
+
- data ingestion engineer
|
|
851
|
+
- data processing engineer
|
|
852
|
+
- data product engineer
|
|
853
|
+
- data visualization engineer
|
|
854
|
+
- business intelligence developer
|
|
855
|
+
- decision science
|
|
856
|
+
- statistical modeling
|
|
857
|
+
- computational science
|
|
858
|
+
- bioinformatics
|
|
859
|
+
- computational biology
|
|
860
|
+
- analyste en intelligence d affaires
|
|
861
|
+
- ingenieur des donnees
|
|
862
|
+
- ingenieure des donnees
|
|
863
|
+
- ingenieur en donnees
|
|
864
|
+
- ingenieure en donnees
|
|
865
|
+
- administratrice de bases de donnees
|
|
866
|
+
- ingenieur ingestion de donnees
|
|
867
|
+
- ingenieure ingestion de donnees
|
|
868
|
+
- ingenieur visualisation de donnees
|
|
869
|
+
- ingenieure visualisation de donnees
|
|
870
|
+
- science de la decision
|
|
871
|
+
- modelisation statistique
|
|
872
|
+
- bioinformatique
|
|
873
|
+
- biologie computationnelle
|
|
874
|
+
- analytics developer
|
|
875
|
+
- data streaming engineer
|
|
876
|
+
- real time data engineer
|
|
877
|
+
- event streaming engineer
|
|
878
|
+
- data mesh engineer
|
|
879
|
+
- data fabric engineer
|
|
880
|
+
- data observability engineer
|
|
881
|
+
- data lineage engineer
|
|
882
|
+
- data catalog engineer
|
|
883
|
+
- data modeling engineer
|
|
884
|
+
- database systems engineer
|
|
885
|
+
- data applications engineer
|
|
886
|
+
- analytics platform engineer
|
|
887
|
+
- developpeur analytique
|
|
888
|
+
- ingenieur diffusion de donnees
|
|
889
|
+
- ingenieure diffusion de donnees
|
|
890
|
+
- ingenieur donnees temps reel
|
|
891
|
+
- ingenieure donnees temps reel
|
|
892
|
+
- ingenieur flux d evenements
|
|
893
|
+
- ingenieure flux d evenements
|
|
894
|
+
- ingenieur maillage de donnees
|
|
895
|
+
- ingenieure maillage de donnees
|
|
896
|
+
- ingenieur tissu de donnees
|
|
897
|
+
- ingenieure tissu de donnees
|
|
898
|
+
- ingenieur observabilite des donnees
|
|
899
|
+
- ingenieure observabilite des donnees
|
|
900
|
+
- ingenieur lignage des donnees
|
|
901
|
+
- ingenieure lignage des donnees
|
|
902
|
+
- ingenieur catalogue de donnees
|
|
903
|
+
- ingenieure catalogue de donnees
|
|
904
|
+
- ingenieur modelisation des donnees
|
|
905
|
+
- ingenieure modelisation des donnees
|
|
906
|
+
- ingenieur systemes de bases de donnees
|
|
907
|
+
- ingenieure systemes de bases de donnees
|
|
908
|
+
- ingenieur applications de donnees
|
|
909
|
+
- ingenieure applications de donnees
|
|
910
|
+
- ingenieur plateforme analytique
|
|
911
|
+
- ingenieure plateforme analytique
|
|
912
|
+
- data analyste
|
|
913
|
+
- data intern
|
|
914
|
+
|
|
915
|
+
- stream processing engineer
|
|
916
|
+
- message queue engineer
|
|
917
|
+
- kafka engineer
|
|
918
|
+
- data migration engineer
|
|
919
|
+
- document intelligence
|
|
920
|
+
- geospatial engineer
|
|
921
|
+
- mapping engineer
|
|
922
|
+
- remote sensing engineer
|
|
923
|
+
- earth observation data
|
|
924
|
+
- climate modeling
|
|
925
|
+
- clinical informatics
|
|
926
|
+
- health informatics
|
|
927
|
+
- medical image analysis
|
|
928
|
+
- bio signal processing
|
|
929
|
+
- web crawling engineer
|
|
930
|
+
- laboratory information systems
|
|
931
|
+
- traitement de flux
|
|
932
|
+
- file de messages
|
|
933
|
+
- ingenieur kafka
|
|
934
|
+
- ingenieure kafka
|
|
935
|
+
- migration de donnees
|
|
936
|
+
- intelligence documentaire
|
|
937
|
+
- ingenierie geospatiale
|
|
938
|
+
- ingenierie cartographique
|
|
939
|
+
- teledetection
|
|
940
|
+
- donnees d observation terrestre
|
|
941
|
+
- modelisation climatique
|
|
942
|
+
- informatique clinique
|
|
943
|
+
- informatique de la sante
|
|
944
|
+
- analyse d images medicales
|
|
945
|
+
- traitement de biosignaux
|
|
946
|
+
- exploration du web
|
|
947
|
+
- systemes d information de laboratoire
|
|
948
|
+
- geospatial intelligence
|
|
949
|
+
- computational chemistry
|
|
950
|
+
- cheminformatics
|
|
951
|
+
- attribution engineering
|
|
952
|
+
- renseignement geospatial
|
|
953
|
+
- chimie computationnelle
|
|
954
|
+
- chemoinformatique
|
|
955
|
+
- ingenierie d attribution
|
|
956
|
+
ml-ai:
|
|
957
|
+
- foundation model
|
|
958
|
+
- ai operations
|
|
959
|
+
- ai foundation model
|
|
960
|
+
- machine learning
|
|
961
|
+
- deep learning
|
|
962
|
+
- artificial intelligence
|
|
963
|
+
- ml engineer
|
|
964
|
+
- ai engineer
|
|
965
|
+
- ml research
|
|
966
|
+
- ai research
|
|
967
|
+
- ai r d engineer
|
|
968
|
+
- ai r and d engineer
|
|
969
|
+
- enterprise ai
|
|
970
|
+
- ai modeling
|
|
971
|
+
- foundation models
|
|
972
|
+
- robot learning
|
|
973
|
+
- video algorithms
|
|
974
|
+
- gaussian splatting
|
|
975
|
+
- protective ai
|
|
976
|
+
- software ml engineering
|
|
977
|
+
- ia d entreprise
|
|
978
|
+
- modeles fondamentaux
|
|
979
|
+
- apprentissage robotique
|
|
980
|
+
- algorithmes video
|
|
981
|
+
- splatting gaussien
|
|
982
|
+
- ia protectrice
|
|
983
|
+
- ingénierie logicielle ml
|
|
984
|
+
- ml researcher
|
|
985
|
+
- ai inference
|
|
986
|
+
- ai deployment engineering
|
|
987
|
+
- ai perception
|
|
988
|
+
- vision ai
|
|
989
|
+
- ai agent builder
|
|
990
|
+
- ai first engineer
|
|
991
|
+
- ai first engineering
|
|
992
|
+
- ai automation engineer
|
|
993
|
+
- ai automation
|
|
994
|
+
- ai intern
|
|
995
|
+
- ai robotics
|
|
996
|
+
- ai architecture
|
|
997
|
+
- architecture ai
|
|
998
|
+
- ai swe
|
|
999
|
+
- ai product engineer
|
|
1000
|
+
- ai solutions engineer
|
|
1001
|
+
- multimodal algorithm
|
|
1002
|
+
- algorithme multimodal
|
|
1003
|
+
- ingénieur r d ia
|
|
1004
|
+
- ingénieure r d ia
|
|
1005
|
+
- chercheur ml
|
|
1006
|
+
- chercheuse ml
|
|
1007
|
+
- inférence ia
|
|
1008
|
+
- déploiement ia
|
|
1009
|
+
- perception ia
|
|
1010
|
+
- vision ia
|
|
1011
|
+
- développeur d'agents ia
|
|
1012
|
+
- développeuse d'agents ia
|
|
1013
|
+
- ingénieur solutions ia
|
|
1014
|
+
- ingénieure solutions ia
|
|
1015
|
+
- computer vision
|
|
1016
|
+
- natural language processing
|
|
1017
|
+
- nlp
|
|
1018
|
+
- llm
|
|
1019
|
+
- large language model
|
|
1020
|
+
- generative ai
|
|
1021
|
+
- reinforcement learning
|
|
1022
|
+
- research scientist
|
|
1023
|
+
- applied scientist
|
|
1024
|
+
- apprentissage automatique
|
|
1025
|
+
- apprentissage profond
|
|
1026
|
+
- intelligence artificielle
|
|
1027
|
+
- vision par ordinateur
|
|
1028
|
+
- traitement du langage
|
|
1029
|
+
- modèle de langage
|
|
1030
|
+
- chercheur en ia
|
|
1031
|
+
- artificial intelligence engineer
|
|
1032
|
+
- artificial intelligence researcher
|
|
1033
|
+
- ai engineering
|
|
1034
|
+
- ai developer
|
|
1035
|
+
- ai researcher
|
|
1036
|
+
- ai scientist
|
|
1037
|
+
- machine learning scientist
|
|
1038
|
+
- machine learning specialist
|
|
1039
|
+
- nlp engineer
|
|
1040
|
+
- natural language processing engineer
|
|
1041
|
+
- computer vision engineer
|
|
1042
|
+
- research engineer
|
|
1043
|
+
- research and development engineer
|
|
1044
|
+
- ingenieur en intelligence artificielle
|
|
1045
|
+
- ingenieure en intelligence artificielle
|
|
1046
|
+
- ingenieur ia
|
|
1047
|
+
- ingenieure ia
|
|
1048
|
+
- chercheuse en ia
|
|
1049
|
+
- traitement automatique du langage naturel
|
|
1050
|
+
- applied machine learning
|
|
1051
|
+
- ml software engineer
|
|
1052
|
+
- ml platform engineer
|
|
1053
|
+
- machine learning infrastructure
|
|
1054
|
+
- machine learning operations
|
|
1055
|
+
- generative ai engineer
|
|
1056
|
+
- speech recognition
|
|
1057
|
+
- speech technology engineer
|
|
1058
|
+
- recommender systems
|
|
1059
|
+
- machine learning research
|
|
1060
|
+
- ai research engineer
|
|
1061
|
+
- artificial intelligence analyst
|
|
1062
|
+
- artificial intelligence designer
|
|
1063
|
+
- applied ai engineer
|
|
1064
|
+
- ingénieur en apprentissage automatique
|
|
1065
|
+
- ingénieure en apprentissage automatique
|
|
1066
|
+
- ingénieur apprentissage machine
|
|
1067
|
+
- ingénieure apprentissage machine
|
|
1068
|
+
- ingénieur ml
|
|
1069
|
+
- ingénieure ml
|
|
1070
|
+
- ingénieur nlp
|
|
1071
|
+
- ingénieure nlp
|
|
1072
|
+
- ia générative
|
|
1073
|
+
- intelligence artificielle générative
|
|
1074
|
+
- reconnaissance vocale
|
|
1075
|
+
- technologie de la parole
|
|
1076
|
+
- systèmes de recommandation
|
|
1077
|
+
- recherche en intelligence artificielle
|
|
1078
|
+
- recherche en apprentissage automatique
|
|
1079
|
+
- scientifique en apprentissage automatique
|
|
1080
|
+
- scientifique en intelligence artificielle
|
|
1081
|
+
- chercheuse en apprentissage automatique
|
|
1082
|
+
- deep learning engineer
|
|
1083
|
+
- machine learning developer
|
|
1084
|
+
- data science engineer
|
|
1085
|
+
- decision scientist
|
|
1086
|
+
- statistical modeling engineer
|
|
1087
|
+
- computational scientist
|
|
1088
|
+
- quantum computing
|
|
1089
|
+
- ingenieur apprentissage profond
|
|
1090
|
+
- ingenieure apprentissage profond
|
|
1091
|
+
- developpeur apprentissage automatique
|
|
1092
|
+
- developpeuse apprentissage automatique
|
|
1093
|
+
- ingenieur mlops
|
|
1094
|
+
- ingenieure mlops
|
|
1095
|
+
- scientifique des donnees appliquees
|
|
1096
|
+
- scientifique de la decision
|
|
1097
|
+
- ai platform engineer
|
|
1098
|
+
- ai platform developer
|
|
1099
|
+
- ai systems engineer
|
|
1100
|
+
- ml systems engineer
|
|
1101
|
+
- machine learning infrastructure engineer
|
|
1102
|
+
- machine learning serving engineer
|
|
1103
|
+
- model serving engineer
|
|
1104
|
+
- inference engineer
|
|
1105
|
+
- inference optimization engineer
|
|
1106
|
+
- llm engineer
|
|
1107
|
+
- llmops engineer
|
|
1108
|
+
- llm platform engineer
|
|
1109
|
+
- ai evaluation engineer
|
|
1110
|
+
- ml evaluation engineer
|
|
1111
|
+
- model evaluation engineer
|
|
1112
|
+
- ai safety engineer
|
|
1113
|
+
- ml safety engineer
|
|
1114
|
+
- responsible ai engineer
|
|
1115
|
+
- ai reliability engineer
|
|
1116
|
+
- recommendation engineer
|
|
1117
|
+
- recommender systems engineer
|
|
1118
|
+
- ranking engineer
|
|
1119
|
+
- search relevance engineer
|
|
1120
|
+
- speech ai engineer
|
|
1121
|
+
- generative media engineer
|
|
1122
|
+
- ingenieur plateforme ia
|
|
1123
|
+
- ingenieure plateforme ia
|
|
1124
|
+
- developpeur plateforme ia
|
|
1125
|
+
- developpeuse plateforme ia
|
|
1126
|
+
- ingenieur systemes ia
|
|
1127
|
+
- ingenieure systemes ia
|
|
1128
|
+
- ingenieur systemes ml
|
|
1129
|
+
- ingenieure systemes ml
|
|
1130
|
+
- ingenieur infrastructure apprentissage automatique
|
|
1131
|
+
- ingenieure infrastructure apprentissage automatique
|
|
1132
|
+
- ingenieur service de modeles
|
|
1133
|
+
- ingenieure service de modeles
|
|
1134
|
+
- ingenieur inference
|
|
1135
|
+
- ingenieure inference
|
|
1136
|
+
- ingenieur optimisation de l inference
|
|
1137
|
+
- ingenieure optimisation de l inference
|
|
1138
|
+
- ingenieur llm
|
|
1139
|
+
- ingenieure llm
|
|
1140
|
+
- ingenieur llmops
|
|
1141
|
+
- ingenieure llmops
|
|
1142
|
+
- ingenieur evaluation ia
|
|
1143
|
+
- ingenieure evaluation ia
|
|
1144
|
+
- ingenieur evaluation ml
|
|
1145
|
+
- ingenieure evaluation ml
|
|
1146
|
+
- ingenieur ia responsable
|
|
1147
|
+
- ingenieure ia responsable
|
|
1148
|
+
- ingenieur fiabilite ia
|
|
1149
|
+
- ingenieure fiabilite ia
|
|
1150
|
+
- ingenieur recommandations
|
|
1151
|
+
- ingenieure recommandations
|
|
1152
|
+
- ingenieur classement
|
|
1153
|
+
- ingenieure classement
|
|
1154
|
+
- ingenieur pertinence de recherche
|
|
1155
|
+
- ingenieure pertinence de recherche
|
|
1156
|
+
- ingenieur ia vocale
|
|
1157
|
+
- ingenieure ia vocale
|
|
1158
|
+
- ingenieur medias generatifs
|
|
1159
|
+
- ingenieure medias generatifs
|
|
1160
|
+
- ai applications
|
|
1161
|
+
- ai application
|
|
1162
|
+
- ai system
|
|
1163
|
+
- ai systems
|
|
1164
|
+
- ai model
|
|
1165
|
+
- ai models
|
|
1166
|
+
- ai innovation
|
|
1167
|
+
- ai data
|
|
1168
|
+
- ai compute
|
|
1169
|
+
- ai applied
|
|
1170
|
+
- ai integration
|
|
1171
|
+
- ai game
|
|
1172
|
+
- ai development
|
|
1173
|
+
- ai infrastructure
|
|
1174
|
+
|
|
1175
|
+
- search quality engineer
|
|
1176
|
+
- recommendation infrastructure
|
|
1177
|
+
- feature store engineer
|
|
1178
|
+
- ai safety engineering
|
|
1179
|
+
- model evaluation
|
|
1180
|
+
- multi agent systems
|
|
1181
|
+
- privacy preserving ml
|
|
1182
|
+
- ai ml
|
|
1183
|
+
- applied ai
|
|
1184
|
+
- retrieval augmented generation
|
|
1185
|
+
- rag engineer
|
|
1186
|
+
- ai agents engineer
|
|
1187
|
+
- agentic ai
|
|
1188
|
+
- ai evaluation
|
|
1189
|
+
- model quality
|
|
1190
|
+
- ai safety
|
|
1191
|
+
- trustworthy ai
|
|
1192
|
+
- responsible ai
|
|
1193
|
+
- model optimization
|
|
1194
|
+
- mle
|
|
1195
|
+
- pertinence de recherche
|
|
1196
|
+
- infrastructure de recommandation
|
|
1197
|
+
- magasin de fonctionnalites
|
|
1198
|
+
- surete de l ia
|
|
1199
|
+
- evaluation de modeles
|
|
1200
|
+
- systemes multi agents
|
|
1201
|
+
- apprentissage automatique respectueux de la vie privee
|
|
1202
|
+
- ia aa
|
|
1203
|
+
- ia appliquee
|
|
1204
|
+
- generation augmentee par recuperation
|
|
1205
|
+
- ingenieur rag
|
|
1206
|
+
- ingenieure rag
|
|
1207
|
+
- agents ia
|
|
1208
|
+
- ia agentique
|
|
1209
|
+
- evaluation ia
|
|
1210
|
+
- qualite des modeles
|
|
1211
|
+
- ia digne de confiance
|
|
1212
|
+
- ia responsable
|
|
1213
|
+
- optimisation de modeles
|
|
1214
|
+
- knowledge graph engineer
|
|
1215
|
+
- drug discovery ml
|
|
1216
|
+
- clinical ai
|
|
1217
|
+
- ai tutoring systems
|
|
1218
|
+
- ingenierie de graphes de connaissances
|
|
1219
|
+
- apprentissage automatique pour la decouverte de medicaments
|
|
1220
|
+
- ia clinique
|
|
1221
|
+
- systemes de tutorat ia
|
|
1222
|
+
- ai agents and automations
|
|
1223
|
+
- ai and sw development engineering
|
|
1224
|
+
- ai and domain aware audio processing
|
|
1225
|
+
- ai for scientific reasoning
|
|
1226
|
+
- video world models
|
|
1227
|
+
- infrared imaging and algorithms
|
|
1228
|
+
- agents et automatisations ia
|
|
1229
|
+
- ingénierie du développement ia et logiciel
|
|
1230
|
+
- ia et traitement audio contextuel
|
|
1231
|
+
- ia pour le raisonnement scientifique
|
|
1232
|
+
- modèles du monde vidéo
|
|
1233
|
+
- imagerie infrarouge et algorithmes
|
|
1234
|
+
- ai agent
|
|
1235
|
+
- agent ia
|
|
1236
|
+
- ai solutions
|
|
1237
|
+
- solutions ia
|
|
1238
|
+
- ai builder
|
|
1239
|
+
- ai integration
|
|
1240
|
+
- integration ia
|
|
1241
|
+
- ml model
|
|
1242
|
+
- modele d apprentissage automatique
|
|
1243
|
+
- ml scientist
|
|
1244
|
+
- ml ai
|
|
1245
|
+
- ai r and d engineering
|
|
1246
|
+
- ingenierie r et d ia
|
|
1247
|
+
- apprentissage par renforcement
|
|
1248
|
+
- 3d vision
|
|
1249
|
+
- vision 3d
|
|
1250
|
+
- model shaping
|
|
1251
|
+
- agent systems
|
|
1252
|
+
- systemes d agents
|
|
1253
|
+
- ai enablement
|
|
1254
|
+
- ai engineering
|
|
1255
|
+
- ai developer
|
|
1256
|
+
- ai automation
|
|
1257
|
+
- ai and automation engineering
|
|
1258
|
+
- ai and digital
|
|
1259
|
+
quant:
|
|
1260
|
+
- quantitative
|
|
1261
|
+
- quantitative researcher
|
|
1262
|
+
- quantitative research
|
|
1263
|
+
- quantitative developer
|
|
1264
|
+
- quantitative trader
|
|
1265
|
+
- quantitative analyst
|
|
1266
|
+
- quant researcher
|
|
1267
|
+
- quant developer
|
|
1268
|
+
- quant trader
|
|
1269
|
+
- algorithmic trading
|
|
1270
|
+
- trading systems
|
|
1271
|
+
- systematic trading
|
|
1272
|
+
- market making
|
|
1273
|
+
- finance quantitative
|
|
1274
|
+
- recherche quantitative
|
|
1275
|
+
- analyste quantitatif
|
|
1276
|
+
- négociation algorithmique
|
|
1277
|
+
- quant engineer
|
|
1278
|
+
- quantitative engineer
|
|
1279
|
+
- quant strategist
|
|
1280
|
+
- quantitative strategist
|
|
1281
|
+
- algorithmic trader
|
|
1282
|
+
- systematic researcher
|
|
1283
|
+
- systematic developer
|
|
1284
|
+
- operations research analyst
|
|
1285
|
+
- market microstructure
|
|
1286
|
+
- ingenieur quantitatif
|
|
1287
|
+
- ingenieure quantitative
|
|
1288
|
+
- ingenieur quant
|
|
1289
|
+
- ingenieure quant
|
|
1290
|
+
- chercheur quantitatif
|
|
1291
|
+
- chercheuse quantitative
|
|
1292
|
+
- developpeur quantitatif
|
|
1293
|
+
- developpeuse quantitative
|
|
1294
|
+
- developpeur quant
|
|
1295
|
+
- developpeuse quant
|
|
1296
|
+
- recherche operationnelle
|
|
1297
|
+
- operations research
|
|
1298
|
+
- quant research
|
|
1299
|
+
- quant trading
|
|
1300
|
+
- quant analyst
|
|
1301
|
+
- analyste quant
|
|
1302
|
+
- quantitative software engineer
|
|
1303
|
+
- quant software engineer
|
|
1304
|
+
- trading systems engineer
|
|
1305
|
+
- trading system engineering
|
|
1306
|
+
- trading software developer
|
|
1307
|
+
- financial software engineer
|
|
1308
|
+
- financial systems developer
|
|
1309
|
+
- financial technology
|
|
1310
|
+
- fintech software engineer
|
|
1311
|
+
- market data engineer
|
|
1312
|
+
- market data developer
|
|
1313
|
+
- portfolio analytics
|
|
1314
|
+
- risk analytics
|
|
1315
|
+
- risk technology
|
|
1316
|
+
- financial data science
|
|
1317
|
+
- financial engineering
|
|
1318
|
+
- capital markets technology
|
|
1319
|
+
- investment technology
|
|
1320
|
+
- blockchain developer
|
|
1321
|
+
- web3 developer
|
|
1322
|
+
- web3 engineer
|
|
1323
|
+
- smart contract developer
|
|
1324
|
+
- distributed ledger technology
|
|
1325
|
+
- digital assets technology
|
|
1326
|
+
- crypto software engineer
|
|
1327
|
+
- defi developer
|
|
1328
|
+
- payments engineer
|
|
1329
|
+
- payments software engineer
|
|
1330
|
+
- payment systems
|
|
1331
|
+
- transaction processing
|
|
1332
|
+
- banking technology
|
|
1333
|
+
- fraud engineering
|
|
1334
|
+
- fraud analytics engineer
|
|
1335
|
+
- financial risk modeling
|
|
1336
|
+
- treasury technology
|
|
1337
|
+
- insurance technology
|
|
1338
|
+
- insurtech software
|
|
1339
|
+
- actuarial technology
|
|
1340
|
+
- credit risk technology
|
|
1341
|
+
- regulatory technology
|
|
1342
|
+
- ingenieur logiciel quantitatif
|
|
1343
|
+
- ingenieure logicielle quantitative
|
|
1344
|
+
- ingenieur systemes de negociation
|
|
1345
|
+
- ingenieure systemes de negociation
|
|
1346
|
+
- developpeur logiciel de negociation
|
|
1347
|
+
- developpeuse logiciel de negociation
|
|
1348
|
+
- ingenieur logiciel financier
|
|
1349
|
+
- ingenieure logiciel financier
|
|
1350
|
+
- developpeur systemes financiers
|
|
1351
|
+
- developpeuse systemes financiers
|
|
1352
|
+
- technologie financiere
|
|
1353
|
+
- technologies financieres
|
|
1354
|
+
- ingenieur donnees de marche
|
|
1355
|
+
- ingenieure donnees de marche
|
|
1356
|
+
- analyse de portefeuille
|
|
1357
|
+
- analytique des risques
|
|
1358
|
+
- technologie des risques
|
|
1359
|
+
- science des donnees financieres
|
|
1360
|
+
- ingenierie financiere
|
|
1361
|
+
- technologie des marches des capitaux
|
|
1362
|
+
- technologie d investissement
|
|
1363
|
+
- developpeur chaine de blocs
|
|
1364
|
+
- developpeuse chaine de blocs
|
|
1365
|
+
- developpeur web3
|
|
1366
|
+
- developpeuse web3
|
|
1367
|
+
- developpeur contrats intelligents
|
|
1368
|
+
- developpeuse contrats intelligents
|
|
1369
|
+
- developpeur de contrats intelligents
|
|
1370
|
+
- developpeuse de contrats intelligents
|
|
1371
|
+
- ingenieur paiements
|
|
1372
|
+
- ingenieure paiements
|
|
1373
|
+
- systemes de paiement
|
|
1374
|
+
- traitement des transactions
|
|
1375
|
+
- technologie bancaire
|
|
1376
|
+
- ingenierie de la fraude
|
|
1377
|
+
- modelisation des risques financiers
|
|
1378
|
+
- technologie de tresorerie
|
|
1379
|
+
- technologie de l assurance
|
|
1380
|
+
- technologie actuarielle
|
|
1381
|
+
- technologie du risque de credit
|
|
1382
|
+
- technologie reglementaire
|
|
1383
|
+
- trading infrastructure engineer
|
|
1384
|
+
- low latency trading engineer
|
|
1385
|
+
- electronic trading engineer
|
|
1386
|
+
- execution engineer
|
|
1387
|
+
- execution algorithms engineer
|
|
1388
|
+
- execution technology engineer
|
|
1389
|
+
- order management systems
|
|
1390
|
+
- order gateway engineer
|
|
1391
|
+
- exchange connectivity engineer
|
|
1392
|
+
- fix engineer
|
|
1393
|
+
- market data infrastructure
|
|
1394
|
+
- trading platform engineer
|
|
1395
|
+
- backtesting engineer
|
|
1396
|
+
- backtest engineer
|
|
1397
|
+
- strategy developer
|
|
1398
|
+
- systematic portfolio engineer
|
|
1399
|
+
- alpha research engineer
|
|
1400
|
+
- statistical arbitrage
|
|
1401
|
+
- systematic credit
|
|
1402
|
+
- engineer trading infrastructure
|
|
1403
|
+
- ingenieur infrastructure de negociation
|
|
1404
|
+
- ingenieure infrastructure de negociation
|
|
1405
|
+
- ingenieur negociation a faible latence
|
|
1406
|
+
- ingenieure negociation a faible latence
|
|
1407
|
+
- ingenieur negociation electronique
|
|
1408
|
+
- ingenieure negociation electronique
|
|
1409
|
+
- ingenieur execution
|
|
1410
|
+
- ingenieure execution
|
|
1411
|
+
- ingenieur algorithmes d execution
|
|
1412
|
+
- ingenieure algorithmes d execution
|
|
1413
|
+
- technologie d execution
|
|
1414
|
+
- systemes de gestion des ordres
|
|
1415
|
+
- ingenieur passerelle d ordres
|
|
1416
|
+
- ingenieure passerelle d ordres
|
|
1417
|
+
- ingenieur connectivite aux bourses
|
|
1418
|
+
- ingenieure connectivite aux bourses
|
|
1419
|
+
- ingenieur fix
|
|
1420
|
+
- ingenieure fix
|
|
1421
|
+
- infrastructure de donnees de marche
|
|
1422
|
+
- ingenieur plateforme de negociation
|
|
1423
|
+
- ingenieure plateforme de negociation
|
|
1424
|
+
- ingenieur backtesting
|
|
1425
|
+
- ingenieure backtesting
|
|
1426
|
+
- developpeur de strategies
|
|
1427
|
+
- developpeuse de strategies
|
|
1428
|
+
- ingenieur portefeuille systematique
|
|
1429
|
+
- ingenieure portefeuille systematique
|
|
1430
|
+
- ingenieur recherche alpha
|
|
1431
|
+
- ingenieure recherche alpha
|
|
1432
|
+
- arbitrage statistique
|
|
1433
|
+
- credit systematique
|
|
1434
|
+
|
|
1435
|
+
- blockchain protocol engineer
|
|
1436
|
+
- consensus systems
|
|
1437
|
+
- decentralized systems
|
|
1438
|
+
- distributed ledger engineer
|
|
1439
|
+
- crypto infrastructure
|
|
1440
|
+
- trading infrastructure
|
|
1441
|
+
- energy trading systems
|
|
1442
|
+
- grid optimization
|
|
1443
|
+
- inventory optimization
|
|
1444
|
+
- insurance pricing systems
|
|
1445
|
+
- actuarial systems
|
|
1446
|
+
- risk modeling software
|
|
1447
|
+
- real time pricing engineer
|
|
1448
|
+
- auction systems engineer
|
|
1449
|
+
- protocole de chaine de blocs
|
|
1450
|
+
- systemes de consensus
|
|
1451
|
+
- systemes decentralises
|
|
1452
|
+
- ingenieur registre distribue
|
|
1453
|
+
- ingenieure registre distribue
|
|
1454
|
+
- infrastructure cryptographique
|
|
1455
|
+
- infrastructure de negociation
|
|
1456
|
+
- systemes de negociation d energie
|
|
1457
|
+
- optimisation de reseau electrique
|
|
1458
|
+
- optimisation des stocks
|
|
1459
|
+
- systemes de tarification d assurance
|
|
1460
|
+
- systemes actuariels
|
|
1461
|
+
- logiciel de modelisation des risques
|
|
1462
|
+
- tarification en temps reel
|
|
1463
|
+
- systemes d encheres
|
|
1464
|
+
- numerical methods
|
|
1465
|
+
- computational mathematics
|
|
1466
|
+
- algorithm research
|
|
1467
|
+
- methodes numeriques
|
|
1468
|
+
- mathematiques computationnelles
|
|
1469
|
+
- recherche algorithmique
|
|
1470
|
+
- quant risk
|
|
1471
|
+
- risque quantitatif
|
|
1472
|
+
infra:
|
|
1473
|
+
- cloud services
|
|
1474
|
+
- cloud operations
|
|
1475
|
+
- infrastructure engineer
|
|
1476
|
+
- infrastructure intern
|
|
1477
|
+
- site reliability
|
|
1478
|
+
- sre
|
|
1479
|
+
- devops
|
|
1480
|
+
- platform reliability
|
|
1481
|
+
- platform engineering
|
|
1482
|
+
- cloud engineer
|
|
1483
|
+
- cloud infrastructure
|
|
1484
|
+
- systems engineer
|
|
1485
|
+
- network engineer
|
|
1486
|
+
- kubernetes
|
|
1487
|
+
- observability
|
|
1488
|
+
- build engineer
|
|
1489
|
+
- release engineer
|
|
1490
|
+
- production engineer
|
|
1491
|
+
- infonuagique
|
|
1492
|
+
- infrastructure infonuagique
|
|
1493
|
+
- fiabilité des sites
|
|
1494
|
+
- administrateur systèmes
|
|
1495
|
+
- réseautique
|
|
1496
|
+
- systems administrator
|
|
1497
|
+
- system administrator
|
|
1498
|
+
- database administrator
|
|
1499
|
+
- network administrator
|
|
1500
|
+
- high performance computing
|
|
1501
|
+
- hpc
|
|
1502
|
+
- supercomputing
|
|
1503
|
+
- superinformatique
|
|
1504
|
+
- build operations
|
|
1505
|
+
- buildops
|
|
1506
|
+
- mlops
|
|
1507
|
+
- administrateur réseau
|
|
1508
|
+
- administrateur de bases de données
|
|
1509
|
+
- calcul haute performance
|
|
1510
|
+
- automatisation des builds
|
|
1511
|
+
- cloud platform engineer
|
|
1512
|
+
- cloud architect
|
|
1513
|
+
- systems architect
|
|
1514
|
+
- infrastructure developer
|
|
1515
|
+
- infrastructure software engineer
|
|
1516
|
+
- infrastructure automation
|
|
1517
|
+
- ai infrastructure
|
|
1518
|
+
- cloud operations engineer
|
|
1519
|
+
- cloud operations engineering
|
|
1520
|
+
- ml infra engineer
|
|
1521
|
+
- ml infrastructure engineer
|
|
1522
|
+
- linux engineer
|
|
1523
|
+
- windows engineer
|
|
1524
|
+
- cloud networking
|
|
1525
|
+
- network software engineer
|
|
1526
|
+
- network programmer
|
|
1527
|
+
- network automation engineer
|
|
1528
|
+
- network operations engineer
|
|
1529
|
+
- network systems engineer
|
|
1530
|
+
- network infrastructure engineer
|
|
1531
|
+
- network protocol engineer
|
|
1532
|
+
- network security operations
|
|
1533
|
+
- telecommunications software
|
|
1534
|
+
- telecom software engineer
|
|
1535
|
+
- wireless software engineer
|
|
1536
|
+
- wireless networks
|
|
1537
|
+
- 5g software engineer
|
|
1538
|
+
- edge computing engineer
|
|
1539
|
+
- edge computing
|
|
1540
|
+
- scientific computing
|
|
1541
|
+
- informatique peripherique
|
|
1542
|
+
- calcul scientifique
|
|
1543
|
+
- edge software engineer
|
|
1544
|
+
- cdn engineering
|
|
1545
|
+
- cdn platform engineer
|
|
1546
|
+
- cdn platform
|
|
1547
|
+
- plateforme de réseau de diffusion de contenu
|
|
1548
|
+
- ai ran telecommunications
|
|
1549
|
+
- télécommunications ran ia
|
|
1550
|
+
- traffic engineering
|
|
1551
|
+
- load balancing engineer
|
|
1552
|
+
- messaging systems
|
|
1553
|
+
- streaming systems
|
|
1554
|
+
- devops developer
|
|
1555
|
+
- production systems
|
|
1556
|
+
- reliability engineer
|
|
1557
|
+
- build systems engineer
|
|
1558
|
+
- build and release engineer
|
|
1559
|
+
- ci cd engineer
|
|
1560
|
+
- developer productivity engineer
|
|
1561
|
+
- developer tools engineer
|
|
1562
|
+
- internal tools developer
|
|
1563
|
+
- developer experience engineer
|
|
1564
|
+
- ingenieur systeme
|
|
1565
|
+
- ingenieure systeme
|
|
1566
|
+
- administrateur systeme
|
|
1567
|
+
- administratrice systeme
|
|
1568
|
+
- architecte systeme
|
|
1569
|
+
- architecte infonuagique
|
|
1570
|
+
- ingenieur infonuagique
|
|
1571
|
+
- ingenieure infonuagique
|
|
1572
|
+
- ingenieur reseau
|
|
1573
|
+
- ingenieure reseau
|
|
1574
|
+
- architecte reseau
|
|
1575
|
+
- cloud software engineer
|
|
1576
|
+
- cloud developer
|
|
1577
|
+
- distributed computing
|
|
1578
|
+
- network infrastructure
|
|
1579
|
+
- hpc software engineer
|
|
1580
|
+
- parallel computing
|
|
1581
|
+
- gpu computing
|
|
1582
|
+
- research computing
|
|
1583
|
+
- datacenter engineer
|
|
1584
|
+
- developer infrastructure
|
|
1585
|
+
- cloud native engineer
|
|
1586
|
+
- platform operations engineer
|
|
1587
|
+
- observability engineer
|
|
1588
|
+
- data center networking
|
|
1589
|
+
- ingenieur logiciel infonuagique
|
|
1590
|
+
- ingenieure logicielle infonuagique
|
|
1591
|
+
- developpeur infonuagique
|
|
1592
|
+
- informatique distribuee
|
|
1593
|
+
- infrastructure reseau
|
|
1594
|
+
- ingenieur logiciel hpc
|
|
1595
|
+
- ingenieure logicielle hpc
|
|
1596
|
+
- calcul parallele
|
|
1597
|
+
- calcul gpu
|
|
1598
|
+
- informatique de recherche
|
|
1599
|
+
- ingenieur centre de donnees
|
|
1600
|
+
- ingenieure centre de donnees
|
|
1601
|
+
- ingenieur observabilite
|
|
1602
|
+
- ingenieure observabilite
|
|
1603
|
+
- systems performance engineer
|
|
1604
|
+
- storage engineer
|
|
1605
|
+
- storage systems engineer
|
|
1606
|
+
- database reliability engineer
|
|
1607
|
+
- database platform engineer
|
|
1608
|
+
- cloud reliability engineer
|
|
1609
|
+
- cloud systems engineer
|
|
1610
|
+
- cloud network engineer
|
|
1611
|
+
- sre developer
|
|
1612
|
+
- service mesh engineer
|
|
1613
|
+
- kubernetes platform engineer
|
|
1614
|
+
- container platform engineer
|
|
1615
|
+
- infrastructure as code engineer
|
|
1616
|
+
- platform automation engineer
|
|
1617
|
+
- configuration management engineer
|
|
1618
|
+
- release automation engineer
|
|
1619
|
+
- ci engineer
|
|
1620
|
+
- build tooling engineer
|
|
1621
|
+
- capacity engineer
|
|
1622
|
+
- software defined networking engineer
|
|
1623
|
+
- network operating systems engineer
|
|
1624
|
+
- control plane engineer
|
|
1625
|
+
- data plane engineer
|
|
1626
|
+
- packet processing engineer
|
|
1627
|
+
- routing engineer
|
|
1628
|
+
- switching engineer
|
|
1629
|
+
- transport protocols engineer
|
|
1630
|
+
- network telemetry engineer
|
|
1631
|
+
- telecom protocols engineer
|
|
1632
|
+
- carrier systems engineer
|
|
1633
|
+
- edge networking engineer
|
|
1634
|
+
- ingenieur performance des systemes
|
|
1635
|
+
- ingenieure performance des systemes
|
|
1636
|
+
- ingenieur stockage
|
|
1637
|
+
- ingenieure stockage
|
|
1638
|
+
- ingenieur systemes de stockage
|
|
1639
|
+
- ingenieure systemes de stockage
|
|
1640
|
+
- ingenieur fiabilite des bases de donnees
|
|
1641
|
+
- ingenieure fiabilite des bases de donnees
|
|
1642
|
+
- ingenieur plateforme de bases de donnees
|
|
1643
|
+
- ingenieure plateforme de bases de donnees
|
|
1644
|
+
- ingenieur fiabilite infonuagique
|
|
1645
|
+
- ingenieure fiabilite infonuagique
|
|
1646
|
+
- ingenieur systemes infonuagiques
|
|
1647
|
+
- ingenieure systemes infonuagiques
|
|
1648
|
+
- ingenieur reseau infonuagique
|
|
1649
|
+
- ingenieure reseau infonuagique
|
|
1650
|
+
- developpeur sre
|
|
1651
|
+
- developpeuse sre
|
|
1652
|
+
- ingenieur maillage de services
|
|
1653
|
+
- ingenieure maillage de services
|
|
1654
|
+
- ingenieur plateforme kubernetes
|
|
1655
|
+
- ingenieure plateforme kubernetes
|
|
1656
|
+
- ingenieur plateforme de conteneurs
|
|
1657
|
+
- ingenieure plateforme de conteneurs
|
|
1658
|
+
- ingenieur infrastructure comme code
|
|
1659
|
+
- ingenieure infrastructure comme code
|
|
1660
|
+
- ingenieur automatisation de plateforme
|
|
1661
|
+
- ingenieure automatisation de plateforme
|
|
1662
|
+
- ingenieur gestion de configuration
|
|
1663
|
+
- ingenieure gestion de configuration
|
|
1664
|
+
- ingenieur automatisation des versions
|
|
1665
|
+
- ingenieure automatisation des versions
|
|
1666
|
+
- ingenieur ci
|
|
1667
|
+
- ingenieure ci
|
|
1668
|
+
- ingenieur outillage de build
|
|
1669
|
+
- ingenieure outillage de build
|
|
1670
|
+
- ingenieur capacite
|
|
1671
|
+
- ingenieure capacite
|
|
1672
|
+
- ingenieur reseaux definis par logiciel
|
|
1673
|
+
- ingenieure reseaux definis par logiciel
|
|
1674
|
+
- ingenieur systemes exploitation reseau
|
|
1675
|
+
- ingenieure systemes exploitation reseau
|
|
1676
|
+
- ingenieur plan de controle
|
|
1677
|
+
- ingenieure plan de controle
|
|
1678
|
+
- ingenieur plan de donnees
|
|
1679
|
+
- ingenieure plan de donnees
|
|
1680
|
+
- ingenieur traitement de paquets
|
|
1681
|
+
- ingenieure traitement de paquets
|
|
1682
|
+
- ingenieur routage
|
|
1683
|
+
- ingenieure routage
|
|
1684
|
+
- ingenieur commutation
|
|
1685
|
+
- ingenieure commutation
|
|
1686
|
+
- ingenieur protocoles de transport
|
|
1687
|
+
- ingenieure protocoles de transport
|
|
1688
|
+
- ingenieur telemetrie reseau
|
|
1689
|
+
- ingenieure telemetrie reseau
|
|
1690
|
+
- ingenieur protocoles telecom
|
|
1691
|
+
- ingenieure protocoles telecom
|
|
1692
|
+
- ingenieur systemes operateurs
|
|
1693
|
+
- ingenieure systemes operateurs
|
|
1694
|
+
- ingenieur reseautage peripherique
|
|
1695
|
+
- ingenieure reseautage peripherique
|
|
1696
|
+
|
|
1697
|
+
- api gateway engineer
|
|
1698
|
+
- reverse proxy engineer
|
|
1699
|
+
- cloud finops engineering
|
|
1700
|
+
- capacity planning engineer
|
|
1701
|
+
- chaos engineering
|
|
1702
|
+
- resilience engineering
|
|
1703
|
+
- disaster recovery engineering
|
|
1704
|
+
- backup and recovery engineer
|
|
1705
|
+
- edge platform engineer
|
|
1706
|
+
- search infrastructure engineer
|
|
1707
|
+
- tracing engineer
|
|
1708
|
+
- incident management engineering
|
|
1709
|
+
- production tooling engineer
|
|
1710
|
+
- engineering productivity
|
|
1711
|
+
- software configuration management
|
|
1712
|
+
- wireless systems software
|
|
1713
|
+
- 6g research
|
|
1714
|
+
- radio access network software
|
|
1715
|
+
- cdn engineer
|
|
1716
|
+
- dns engineer
|
|
1717
|
+
- web infrastructure
|
|
1718
|
+
- internet infrastructure
|
|
1719
|
+
- browser engine
|
|
1720
|
+
- protocol engineer
|
|
1721
|
+
- passerelle api
|
|
1722
|
+
- proxy inverse
|
|
1723
|
+
- finops infonuagique
|
|
1724
|
+
- planification de capacite
|
|
1725
|
+
- ingenierie du chaos
|
|
1726
|
+
- ingenierie de resilience
|
|
1727
|
+
- reprise apres sinistre
|
|
1728
|
+
- sauvegarde et recuperation
|
|
1729
|
+
- infrastructure de developpement
|
|
1730
|
+
- plateforme peripherique
|
|
1731
|
+
- infrastructure de moteur de recherche
|
|
1732
|
+
- maille de services
|
|
1733
|
+
- tracage distribue
|
|
1734
|
+
- gestion d incidents d ingenierie
|
|
1735
|
+
- outils de production
|
|
1736
|
+
- productivite de l ingenierie
|
|
1737
|
+
- gestion de configuration logicielle
|
|
1738
|
+
- logiciel de systemes sans fil
|
|
1739
|
+
- recherche 6g
|
|
1740
|
+
- logiciel de reseau d acces radio
|
|
1741
|
+
- reseau de diffusion de contenu
|
|
1742
|
+
- ingenieur dns
|
|
1743
|
+
- ingenieure dns
|
|
1744
|
+
- infrastructure web
|
|
1745
|
+
- infrastructure internet
|
|
1746
|
+
- moteur de navigateur
|
|
1747
|
+
- ingenieur de protocoles
|
|
1748
|
+
- ingenieure de protocoles
|
|
1749
|
+
- routing algorithm
|
|
1750
|
+
- browser performance
|
|
1751
|
+
- power optimization software
|
|
1752
|
+
- energy efficiency software
|
|
1753
|
+
- ml operations engineer
|
|
1754
|
+
- model deployment engineer
|
|
1755
|
+
- cloud engineering
|
|
1756
|
+
- content infrastructure
|
|
1757
|
+
- algorithmes de routage
|
|
1758
|
+
- performance de navigateur
|
|
1759
|
+
- logiciel d optimisation energetique
|
|
1760
|
+
- logiciel d efficacite energetique
|
|
1761
|
+
- operations d apprentissage automatique
|
|
1762
|
+
- deploiement de modeles
|
|
1763
|
+
- ingenierie infonuagique
|
|
1764
|
+
- infrastructure de contenu
|
|
1765
|
+
- database engineering
|
|
1766
|
+
- ai for intent based networking
|
|
1767
|
+
- ingénierie de bases de données
|
|
1768
|
+
- ia pour les réseaux pilotés par intention
|
|
1769
|
+
- cloud solution
|
|
1770
|
+
- solution infonuagique
|
|
1771
|
+
- ai infra
|
|
1772
|
+
- infrastructure ia
|
|
1773
|
+
embedded:
|
|
1774
|
+
- controls engineering
|
|
1775
|
+
- automation and controls
|
|
1776
|
+
- controls co op
|
|
1777
|
+
- vehicle software
|
|
1778
|
+
- vehicle controls
|
|
1779
|
+
- logiciel de véhicule
|
|
1780
|
+
- logicielle de véhicule
|
|
1781
|
+
- commandes de véhicule
|
|
1782
|
+
- commandes de véhicules
|
|
1783
|
+
- embedded engineer
|
|
1784
|
+
- embedded software
|
|
1785
|
+
- embedded systems
|
|
1786
|
+
- embedded software engineer
|
|
1787
|
+
- embedded software engineering
|
|
1788
|
+
- embedded systems engineer
|
|
1789
|
+
- embedded software developer
|
|
1790
|
+
- firmware
|
|
1791
|
+
- firmware engineer
|
|
1792
|
+
- device driver
|
|
1793
|
+
- rtos
|
|
1794
|
+
- bare metal
|
|
1795
|
+
- microcontroller
|
|
1796
|
+
- robotics software
|
|
1797
|
+
- control systems
|
|
1798
|
+
- logiciel embarque
|
|
1799
|
+
- systemes embarques
|
|
1800
|
+
- micrologiciel
|
|
1801
|
+
- microcontrôleur
|
|
1802
|
+
- robotique
|
|
1803
|
+
- robotics engineer
|
|
1804
|
+
- robotics engineering
|
|
1805
|
+
- controls engineer
|
|
1806
|
+
- control engineer
|
|
1807
|
+
- systèmes de contrôle
|
|
1808
|
+
- ingénieur en robotique
|
|
1809
|
+
- embedded developer
|
|
1810
|
+
- embedded systems developer
|
|
1811
|
+
- embedded linux engineer
|
|
1812
|
+
- embedded quality and fielded systems
|
|
1813
|
+
- real time systems engineer
|
|
1814
|
+
- rtos engineer
|
|
1815
|
+
- iot developer
|
|
1816
|
+
- iot software engineer
|
|
1817
|
+
- connected devices engineer
|
|
1818
|
+
- edge ai engineer
|
|
1819
|
+
- robotics software engineer
|
|
1820
|
+
- robotics programmer
|
|
1821
|
+
- autonomous systems
|
|
1822
|
+
- flight software
|
|
1823
|
+
- logiciel de vol
|
|
1824
|
+
- ingénieur logiciel de vol
|
|
1825
|
+
- ingénieure logicielle de vol
|
|
1826
|
+
- interior sensing
|
|
1827
|
+
- détection de l'habitacle
|
|
1828
|
+
- autonomous vehicle software
|
|
1829
|
+
- autonomous driving
|
|
1830
|
+
- adas software
|
|
1831
|
+
- controls software engineer
|
|
1832
|
+
- industrial automation software
|
|
1833
|
+
- automotive software engineer
|
|
1834
|
+
- telematics software
|
|
1835
|
+
- drone software engineer
|
|
1836
|
+
- developpeur embarque
|
|
1837
|
+
- developpeuse embarquee
|
|
1838
|
+
- developpeur de systemes embarques
|
|
1839
|
+
- developpeuse de systemes embarques
|
|
1840
|
+
- ingenieur en systemes embarques
|
|
1841
|
+
- ingenieure en systemes embarques
|
|
1842
|
+
- systeme embarque
|
|
1843
|
+
- systemes temps reel
|
|
1844
|
+
- logiciel temps reel
|
|
1845
|
+
- ingenieur micrologiciel
|
|
1846
|
+
- ingenieure micrologiciel
|
|
1847
|
+
- internet des objets
|
|
1848
|
+
- firmware developer
|
|
1849
|
+
- industrial control systems
|
|
1850
|
+
- autonomous robotics
|
|
1851
|
+
- navigation software engineer
|
|
1852
|
+
- perception software engineer
|
|
1853
|
+
- computer vision robotics
|
|
1854
|
+
- developpeur micrologiciel
|
|
1855
|
+
- ingenieur robotique
|
|
1856
|
+
- ingenieure robotique
|
|
1857
|
+
- ingenierie robotique
|
|
1858
|
+
- securite iot
|
|
1859
|
+
- systemes de controle industriel
|
|
1860
|
+
- robotique autonome
|
|
1861
|
+
- ingenieur logiciel de navigation
|
|
1862
|
+
- ingenieure logicielle de navigation
|
|
1863
|
+
- ingenieur logiciel de perception
|
|
1864
|
+
- ingenieure logicielle de perception
|
|
1865
|
+
- vision par ordinateur robotique
|
|
1866
|
+
- embedded platform engineer
|
|
1867
|
+
- embedded systems architect
|
|
1868
|
+
- embedded application engineer
|
|
1869
|
+
- firmware validation engineer
|
|
1870
|
+
- firmware test engineer
|
|
1871
|
+
- embedded connectivity engineer
|
|
1872
|
+
- wireless embedded engineer
|
|
1873
|
+
- can software engineer
|
|
1874
|
+
- autosar engineer
|
|
1875
|
+
- automotive embedded software
|
|
1876
|
+
- robotics perception engineer
|
|
1877
|
+
- robotics autonomy engineer
|
|
1878
|
+
- robotics controls engineer
|
|
1879
|
+
- motion planning engineer
|
|
1880
|
+
- sensor fusion engineer
|
|
1881
|
+
- autonomous navigation engineer
|
|
1882
|
+
- drone autonomy engineer
|
|
1883
|
+
- robot operating system
|
|
1884
|
+
- embedded ai engineer
|
|
1885
|
+
- edge robotics
|
|
1886
|
+
- ingenieur plateforme embarquee
|
|
1887
|
+
- ingenieure plateforme embarquee
|
|
1888
|
+
- architecte systemes embarques
|
|
1889
|
+
- ingenieur applications embarquees
|
|
1890
|
+
- ingenieure applications embarquees
|
|
1891
|
+
- ingenieur validation micrologiciel
|
|
1892
|
+
- ingenieure validation micrologiciel
|
|
1893
|
+
- ingenieur tests micrologiciel
|
|
1894
|
+
- ingenieure tests micrologiciel
|
|
1895
|
+
- ingenieur connectivite embarquee
|
|
1896
|
+
- ingenieure connectivite embarquee
|
|
1897
|
+
- ingenieur embarque sans fil
|
|
1898
|
+
- ingenieure embarquee sans fil
|
|
1899
|
+
- ingenieur logiciel can
|
|
1900
|
+
- ingenieure logiciel can
|
|
1901
|
+
- ingenieur autosar
|
|
1902
|
+
- ingenieure autosar
|
|
1903
|
+
- logiciel automobile embarque
|
|
1904
|
+
- ingenieur perception robotique
|
|
1905
|
+
- ingenieure perception robotique
|
|
1906
|
+
- ingenieur autonomie robotique
|
|
1907
|
+
- ingenieure autonomie robotique
|
|
1908
|
+
- ingenieur controle robotique
|
|
1909
|
+
- ingenieure controle robotique
|
|
1910
|
+
- ingenieur planification de mouvement
|
|
1911
|
+
- ingenieure planification de mouvement
|
|
1912
|
+
- ingenieur fusion de capteurs
|
|
1913
|
+
- ingenieure fusion de capteurs
|
|
1914
|
+
- ingenieur navigation autonome
|
|
1915
|
+
- ingenieure navigation autonome
|
|
1916
|
+
- ingenieur autonomie de drone
|
|
1917
|
+
- ingenieure autonomie de drone
|
|
1918
|
+
- systeme exploitation robotique
|
|
1919
|
+
- ingenieur ia embarquee
|
|
1920
|
+
- ingenieure ia embarquee
|
|
1921
|
+
- robotique peripherique
|
|
1922
|
+
- fpga
|
|
1923
|
+
- soc
|
|
1924
|
+
- gpu
|
|
1925
|
+
- embedded
|
|
1926
|
+
- platform architecture
|
|
1927
|
+
|
|
1928
|
+
- motion control software
|
|
1929
|
+
- robot simulation
|
|
1930
|
+
- human robot interaction
|
|
1931
|
+
- robotics infrastructure
|
|
1932
|
+
- robotics testing
|
|
1933
|
+
- connected vehicle systems
|
|
1934
|
+
- smart building software
|
|
1935
|
+
- building automation software
|
|
1936
|
+
- battery management systems
|
|
1937
|
+
- precision agriculture software
|
|
1938
|
+
- agricultural robotics
|
|
1939
|
+
- farm automation software
|
|
1940
|
+
- drone mapping software
|
|
1941
|
+
- industrial iot engineer
|
|
1942
|
+
- factory automation software
|
|
1943
|
+
- warehouse automation software
|
|
1944
|
+
- scada software
|
|
1945
|
+
- process control software
|
|
1946
|
+
- industrial digital twin
|
|
1947
|
+
- consumer devices software
|
|
1948
|
+
- wearable software engineer
|
|
1949
|
+
- bluetooth software engineer
|
|
1950
|
+
- sensor software engineer
|
|
1951
|
+
- logiciel de controle de mouvement
|
|
1952
|
+
- simulation robotique
|
|
1953
|
+
- interaction humain robot
|
|
1954
|
+
- infrastructure robotique
|
|
1955
|
+
- essais robotiques
|
|
1956
|
+
- systemes de vehicules connectes
|
|
1957
|
+
- logiciel de batiment intelligent
|
|
1958
|
+
- logiciel d automatisation de batiment
|
|
1959
|
+
- systemes de gestion de batterie
|
|
1960
|
+
- logiciel d agriculture de precision
|
|
1961
|
+
- robotique agricole
|
|
1962
|
+
- logiciel d automatisation agricole
|
|
1963
|
+
- logiciel de cartographie par drone
|
|
1964
|
+
- ingenieur iot industriel
|
|
1965
|
+
- ingenieure iot industriel
|
|
1966
|
+
- logiciel d automatisation d usine
|
|
1967
|
+
- logiciel d automatisation d entrepot
|
|
1968
|
+
- logiciel scada
|
|
1969
|
+
- logiciel de controle des procedes
|
|
1970
|
+
- jumeau numerique industriel
|
|
1971
|
+
- logiciel d appareils grand public
|
|
1972
|
+
- logiciel pour objets portables
|
|
1973
|
+
- logiciel bluetooth
|
|
1974
|
+
- logiciel de capteurs
|
|
1975
|
+
- smart grid software
|
|
1976
|
+
- digital manufacturing
|
|
1977
|
+
- laboratory automation software
|
|
1978
|
+
- logiciel de reseau electrique intelligent
|
|
1979
|
+
- fabrication numerique
|
|
1980
|
+
- logiciel d automatisation de laboratoire
|
|
1981
|
+
- ai for functional avionics
|
|
1982
|
+
- ia pour l avionique fonctionnelle
|
|
1983
|
+
- robotics
|
|
1984
|
+
general-cs:
|
|
1985
|
+
- computer science
|
|
1986
|
+
- computer engineering
|
|
1987
|
+
- computer scientist
|
|
1988
|
+
- computing
|
|
1989
|
+
- computing science
|
|
1990
|
+
- computational engineering
|
|
1991
|
+
- informatique
|
|
1992
|
+
- genie informatique
|
|
1993
|
+
- sciences informatiques
|
|
1994
|
+
- technology intern
|
|
1995
|
+
- technology internship
|
|
1996
|
+
- technology co op
|
|
1997
|
+
- technical intern
|
|
1998
|
+
- technical internship
|
|
1999
|
+
- technical co op
|
|
2000
|
+
- stage technique
|
|
2001
|
+
- stagiaire technique
|
|
2002
|
+
|
|
2003
|
+
source_categories:
|
|
2004
|
+
swe:
|
|
2005
|
+
- Software
|
|
2006
|
+
- Software Engineering
|
|
2007
|
+
quant:
|
|
2008
|
+
- Quant
|
|
2009
|
+
- Quantitative Finance
|
|
2010
|
+
security:
|
|
2011
|
+
- Security
|
|
2012
|
+
- Cybersecurity
|