jobcrawl 0.1.0
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.
- package/.prettierrc.json +10 -0
- package/CHANGELOG.md +40 -0
- package/README.md +232 -0
- package/dist/core/aggregators/yc.d.ts +7 -0
- package/dist/core/aggregators/yc.js +320 -0
- package/dist/core/browser.d.ts +30 -0
- package/dist/core/browser.js +196 -0
- package/dist/core/cache.d.ts +13 -0
- package/dist/core/cache.js +41 -0
- package/dist/core/detect-provider.d.ts +7 -0
- package/dist/core/detect-provider.js +125 -0
- package/dist/core/discover-careers.d.ts +18 -0
- package/dist/core/discover-careers.js +92 -0
- package/dist/core/extract-jobs.d.ts +14 -0
- package/dist/core/extract-jobs.js +36 -0
- package/dist/core/fetch-page.d.ts +11 -0
- package/dist/core/fetch-page.js +39 -0
- package/dist/core/format-output.d.ts +2 -0
- package/dist/core/format-output.js +59 -0
- package/dist/core/match-jobs.d.ts +6 -0
- package/dist/core/match-jobs.js +43 -0
- package/dist/core/providers/ashby.d.ts +6 -0
- package/dist/core/providers/ashby.js +58 -0
- package/dist/core/providers/generic.d.ts +6 -0
- package/dist/core/providers/generic.js +294 -0
- package/dist/core/providers/greenhouse.d.ts +6 -0
- package/dist/core/providers/greenhouse.js +47 -0
- package/dist/core/providers/lever.d.ts +7 -0
- package/dist/core/providers/lever.js +60 -0
- package/dist/core/providers/yc.d.ts +7 -0
- package/dist/core/providers/yc.js +320 -0
- package/dist/core/resolve-iframe.d.ts +6 -0
- package/dist/core/resolve-iframe.js +51 -0
- package/dist/core/save-raw.d.ts +4 -0
- package/dist/core/save-raw.js +13 -0
- package/dist/data/companies.d.ts +9 -0
- package/dist/data/companies.js +2849 -0
- package/dist/entrypoints/cli/app.d.ts +3 -0
- package/dist/entrypoints/cli/app.js +91 -0
- package/dist/entrypoints/cli/components/crawl-view.d.ts +1 -0
- package/dist/entrypoints/cli/components/crawl-view.js +94 -0
- package/dist/entrypoints/cli/components/discover-view.d.ts +1 -0
- package/dist/entrypoints/cli/components/discover-view.js +67 -0
- package/dist/entrypoints/cli/crawl-aggregators.d.ts +26 -0
- package/dist/entrypoints/cli/crawl-aggregators.js +76 -0
- package/dist/entrypoints/cli/crawl-url.d.ts +26 -0
- package/dist/entrypoints/cli/crawl-url.js +54 -0
- package/dist/entrypoints/cli/crawl.d.ts +32 -0
- package/dist/entrypoints/cli/crawl.js +108 -0
- package/dist/entrypoints/cli/discover.d.ts +10 -0
- package/dist/entrypoints/cli/discover.js +69 -0
- package/dist/entrypoints/cli/index.d.ts +2 -0
- package/dist/entrypoints/cli/index.js +197 -0
- package/dist/entrypoints/cli/init.d.ts +9 -0
- package/dist/entrypoints/cli/init.js +94 -0
- package/dist/entrypoints/cli/plain.d.ts +6 -0
- package/dist/entrypoints/cli/plain.js +77 -0
- package/dist/events.d.ts +114 -0
- package/dist/events.js +17 -0
- package/dist/orchestrators/crawl-all.d.ts +2 -0
- package/dist/orchestrators/crawl-all.js +66 -0
- package/dist/orchestrators/discover-all.d.ts +10 -0
- package/dist/orchestrators/discover-all.js +39 -0
- package/dist/threads/pool.d.ts +5 -0
- package/dist/threads/pool.js +23 -0
- package/dist/threads/process-url.d.ts +9 -0
- package/dist/threads/process-url.js +229 -0
- package/dist/types/index.d.ts +83 -0
- package/dist/types/index.js +6 -0
- package/dist/utils/config.d.ts +17 -0
- package/dist/utils/config.js +57 -0
- package/dist/utils/google-search.d.ts +19 -0
- package/dist/utils/google-search.js +139 -0
- package/dist/utils/llm.d.ts +8 -0
- package/dist/utils/llm.js +25 -0
- package/package.json +42 -0
- package/src/core/aggregators/yc.ts +415 -0
- package/src/core/browser.ts +239 -0
- package/src/core/detect-provider.ts +162 -0
- package/src/core/discover-careers.ts +117 -0
- package/src/core/extract-jobs.ts +50 -0
- package/src/core/fetch-page.ts +41 -0
- package/src/core/format-output.ts +80 -0
- package/src/core/match-jobs.ts +56 -0
- package/src/core/providers/ashby.ts +84 -0
- package/src/core/providers/generic.ts +332 -0
- package/src/core/providers/greenhouse.ts +74 -0
- package/src/core/providers/lever.ts +90 -0
- package/src/core/resolve-iframe.ts +59 -0
- package/src/core/save-raw.ts +18 -0
- package/src/data/companies.ts +2859 -0
- package/src/entrypoints/cli/app.tsx +173 -0
- package/src/entrypoints/cli/components/crawl-view.tsx +163 -0
- package/src/entrypoints/cli/components/discover-view.tsx +138 -0
- package/src/entrypoints/cli/crawl-aggregators.ts +112 -0
- package/src/entrypoints/cli/crawl-url.ts +87 -0
- package/src/entrypoints/cli/crawl.ts +163 -0
- package/src/entrypoints/cli/discover.ts +96 -0
- package/src/entrypoints/cli/index.ts +252 -0
- package/src/entrypoints/cli/init.ts +117 -0
- package/src/entrypoints/cli/plain.ts +104 -0
- package/src/events.ts +79 -0
- package/src/orchestrators/crawl-all.ts +96 -0
- package/src/orchestrators/discover-all.ts +61 -0
- package/src/threads/pool.ts +29 -0
- package/src/threads/process-url.ts +312 -0
- package/src/types/index.ts +110 -0
- package/src/utils/config.ts +79 -0
- package/src/utils/google-search.ts +155 -0
- package/src/utils/llm.ts +33 -0
- package/test/integration/process-url.test.ts +301 -0
- package/test/integration/providers/ashby.test.ts +163 -0
- package/test/integration/providers/greenhouse.test.ts +191 -0
- package/test/integration/providers/lever.test.ts +188 -0
- package/test/unit/config.test.ts +64 -0
- package/test/unit/detect-provider.test.ts +165 -0
- package/test/unit/events.test.ts +104 -0
- package/test/unit/format-output.test.ts +165 -0
- package/test/unit/match-jobs.test.ts +257 -0
- package/test/unit/pool.test.ts +74 -0
- package/test/unit/providers/generic.test.ts +139 -0
- package/test/unit/resolve-iframe.test.ts +100 -0
- package/tsconfig.json +19 -0
- package/vitest.config.ts +7 -0
|
@@ -0,0 +1,2849 @@
|
|
|
1
|
+
export const companies = [
|
|
2
|
+
// --- AI Foundation Models ---
|
|
3
|
+
{
|
|
4
|
+
company: "OpenAI",
|
|
5
|
+
slug: "openai",
|
|
6
|
+
provider: "ashby",
|
|
7
|
+
section: "AI Foundation Models",
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
company: "Anthropic",
|
|
11
|
+
slug: "anthropic",
|
|
12
|
+
provider: "greenhouse",
|
|
13
|
+
section: "AI Foundation Models",
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
company: "DeepMind",
|
|
17
|
+
slug: "deepmind",
|
|
18
|
+
provider: "greenhouse",
|
|
19
|
+
section: "AI Foundation Models",
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
company: "xAI",
|
|
23
|
+
slug: "xai",
|
|
24
|
+
provider: "greenhouse",
|
|
25
|
+
section: "AI Foundation Models",
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
company: "Cohere",
|
|
29
|
+
slug: "cohere",
|
|
30
|
+
provider: "ashby",
|
|
31
|
+
section: "AI Foundation Models",
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
company: "Mistral AI",
|
|
35
|
+
slug: "mistral",
|
|
36
|
+
provider: "lever",
|
|
37
|
+
section: "AI Foundation Models",
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
company: "Inflection AI",
|
|
41
|
+
slug: "inflectionai",
|
|
42
|
+
provider: "greenhouse",
|
|
43
|
+
section: "AI Foundation Models",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
company: "Perplexity",
|
|
47
|
+
slug: "perplexity",
|
|
48
|
+
provider: "ashby",
|
|
49
|
+
section: "AI Foundation Models",
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
company: "Character AI",
|
|
53
|
+
slug: "character",
|
|
54
|
+
provider: "ashby",
|
|
55
|
+
section: "AI Foundation Models",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
company: "Stability AI",
|
|
59
|
+
slug: "stabilityai",
|
|
60
|
+
provider: "greenhouse",
|
|
61
|
+
section: "AI Foundation Models",
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
company: "AI21 Labs",
|
|
65
|
+
slug: "ai21labs",
|
|
66
|
+
fallback: "https://www.ai21.com/careers",
|
|
67
|
+
section: "AI Foundation Models",
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
company: "Adept AI",
|
|
71
|
+
slug: "adeptai",
|
|
72
|
+
fallback: "https://www.adept.ai/careers",
|
|
73
|
+
section: "AI Foundation Models",
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
company: "Runway",
|
|
77
|
+
slug: "runway",
|
|
78
|
+
provider: "ashby",
|
|
79
|
+
section: "AI Foundation Models",
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
company: "Hugging Face",
|
|
83
|
+
slug: "huggingface",
|
|
84
|
+
fallback: "https://huggingface.co/jobs",
|
|
85
|
+
section: "AI Foundation Models",
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
company: "Together AI",
|
|
89
|
+
slug: "togetherai",
|
|
90
|
+
provider: "greenhouse",
|
|
91
|
+
section: "AI Foundation Models",
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
company: "ElevenLabs",
|
|
95
|
+
slug: "elevenlabs",
|
|
96
|
+
provider: "ashby",
|
|
97
|
+
section: "AI Foundation Models",
|
|
98
|
+
},
|
|
99
|
+
// --- AI Creative & Generative ---
|
|
100
|
+
{
|
|
101
|
+
company: "Midjourney",
|
|
102
|
+
slug: "midjourney",
|
|
103
|
+
fallback: "https://www.midjourney.com/careers/",
|
|
104
|
+
section: "AI Creative & Generative",
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
company: "Luma Labs",
|
|
108
|
+
slug: "lumalabs",
|
|
109
|
+
fallback: "https://lumalabs.ai/careers",
|
|
110
|
+
section: "AI Creative & Generative",
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
company: "Pika",
|
|
114
|
+
slug: "pika",
|
|
115
|
+
provider: "ashby",
|
|
116
|
+
section: "AI Creative & Generative",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
company: "Ideogram",
|
|
120
|
+
slug: "ideogram",
|
|
121
|
+
provider: "ashby",
|
|
122
|
+
section: "AI Creative & Generative",
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
company: "Kuaishou",
|
|
126
|
+
slug: "kuaishou",
|
|
127
|
+
fallback: "https://www.kuaishou.com/en/careers",
|
|
128
|
+
section: "AI Creative & Generative",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
company: "Suno",
|
|
132
|
+
slug: "suno",
|
|
133
|
+
provider: "ashby",
|
|
134
|
+
section: "AI Creative & Generative",
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
company: "Udio",
|
|
138
|
+
slug: "udio",
|
|
139
|
+
provider: "greenhouse",
|
|
140
|
+
section: "AI Creative & Generative",
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
company: "Synthesia",
|
|
144
|
+
slug: "synthesia",
|
|
145
|
+
provider: "ashby",
|
|
146
|
+
section: "AI Creative & Generative",
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
company: "Typeface",
|
|
150
|
+
slug: "typeface",
|
|
151
|
+
provider: "greenhouse",
|
|
152
|
+
section: "AI Creative & Generative",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
company: "Recraft",
|
|
156
|
+
slug: "recraft",
|
|
157
|
+
provider: "ashby",
|
|
158
|
+
section: "AI Creative & Generative",
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
company: "Black Forest Labs",
|
|
162
|
+
slug: "blackforestlabs",
|
|
163
|
+
provider: "greenhouse",
|
|
164
|
+
section: "AI Creative & Generative",
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
company: "Sakana AI",
|
|
168
|
+
slug: "sakanaai",
|
|
169
|
+
fallback: "https://sakana.ai/careers/",
|
|
170
|
+
section: "AI Creative & Generative",
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
company: "Aleph Alpha",
|
|
174
|
+
slug: "alephalpha",
|
|
175
|
+
provider: "ashby",
|
|
176
|
+
section: "AI Creative & Generative",
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
company: "01.AI",
|
|
180
|
+
slug: "01ai",
|
|
181
|
+
fallback: "https://www.01.ai/careers",
|
|
182
|
+
section: "AI Creative & Generative",
|
|
183
|
+
},
|
|
184
|
+
// --- AI Infrastructure & MLOps ---
|
|
185
|
+
{
|
|
186
|
+
company: "Databricks",
|
|
187
|
+
slug: "databricks",
|
|
188
|
+
provider: "greenhouse",
|
|
189
|
+
section: "AI Infrastructure & MLOps",
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
company: "Scale AI",
|
|
193
|
+
slug: "scaleai",
|
|
194
|
+
provider: "greenhouse",
|
|
195
|
+
section: "AI Infrastructure & MLOps",
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
company: "Weights & Biases",
|
|
199
|
+
slug: "weightsbiases",
|
|
200
|
+
fallback: "https://wandb.ai/site/careers",
|
|
201
|
+
section: "AI Infrastructure & MLOps",
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
company: "Anyscale",
|
|
205
|
+
slug: "anyscale",
|
|
206
|
+
provider: "ashby",
|
|
207
|
+
section: "AI Infrastructure & MLOps",
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
company: "Modal",
|
|
211
|
+
slug: "modal",
|
|
212
|
+
provider: "ashby",
|
|
213
|
+
section: "AI Infrastructure & MLOps",
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
company: "Replicate",
|
|
217
|
+
slug: "replicate",
|
|
218
|
+
fallback: "https://replicate.com/careers",
|
|
219
|
+
section: "AI Infrastructure & MLOps",
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
company: "Pinecone",
|
|
223
|
+
slug: "pinecone",
|
|
224
|
+
provider: "ashby",
|
|
225
|
+
section: "AI Infrastructure & MLOps",
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
company: "Weaviate",
|
|
229
|
+
slug: "weaviate",
|
|
230
|
+
provider: "ashby",
|
|
231
|
+
section: "AI Infrastructure & MLOps",
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
company: "LangChain",
|
|
235
|
+
slug: "langchain",
|
|
236
|
+
provider: "ashby",
|
|
237
|
+
section: "AI Infrastructure & MLOps",
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
company: "Baseten",
|
|
241
|
+
slug: "baseten",
|
|
242
|
+
provider: "ashby",
|
|
243
|
+
section: "AI Infrastructure & MLOps",
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
company: "Groq",
|
|
247
|
+
slug: "groq",
|
|
248
|
+
fallback: "https://groq.com/careers/",
|
|
249
|
+
section: "AI Infrastructure & MLOps",
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
company: "Cerebras",
|
|
253
|
+
slug: "cerebrassystems",
|
|
254
|
+
provider: "greenhouse",
|
|
255
|
+
section: "AI Infrastructure & MLOps",
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
company: "SambaNova",
|
|
259
|
+
slug: "sambanovasystems",
|
|
260
|
+
provider: "greenhouse",
|
|
261
|
+
section: "AI Infrastructure & MLOps",
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
company: "CoreWeave",
|
|
265
|
+
slug: "coreweave",
|
|
266
|
+
provider: "greenhouse",
|
|
267
|
+
section: "AI Infrastructure & MLOps",
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
company: "Lambda",
|
|
271
|
+
slug: "lambda",
|
|
272
|
+
provider: "ashby",
|
|
273
|
+
section: "AI Infrastructure & MLOps",
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
company: "Fireworks AI",
|
|
277
|
+
slug: "fireworksai",
|
|
278
|
+
provider: "greenhouse",
|
|
279
|
+
section: "AI Infrastructure & MLOps",
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
company: "OctoAI",
|
|
283
|
+
slug: "octoai",
|
|
284
|
+
fallback: "https://octo.ai/careers/",
|
|
285
|
+
section: "AI Infrastructure & MLOps",
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
company: "BentoML",
|
|
289
|
+
slug: "bentoml",
|
|
290
|
+
fallback: "https://www.bentoml.com/careers",
|
|
291
|
+
section: "AI Infrastructure & MLOps",
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
company: "Chroma",
|
|
295
|
+
slug: "trychroma",
|
|
296
|
+
provider: "ashby",
|
|
297
|
+
section: "AI Infrastructure & MLOps",
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
company: "Qdrant",
|
|
301
|
+
slug: "qdrant",
|
|
302
|
+
fallback: "https://qdrant.tech/careers/",
|
|
303
|
+
section: "AI Infrastructure & MLOps",
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
company: "Zilliz",
|
|
307
|
+
slug: "zilliz",
|
|
308
|
+
provider: "lever",
|
|
309
|
+
section: "AI Infrastructure & MLOps",
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
company: "Unstructured",
|
|
313
|
+
slug: "unstructured",
|
|
314
|
+
provider: "ashby",
|
|
315
|
+
section: "AI Infrastructure & MLOps",
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
company: "Labelbox",
|
|
319
|
+
slug: "labelbox",
|
|
320
|
+
provider: "greenhouse",
|
|
321
|
+
section: "AI Infrastructure & MLOps",
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
company: "Humanloop",
|
|
325
|
+
slug: "humanloop",
|
|
326
|
+
fallback: "https://humanloop.com/careers",
|
|
327
|
+
section: "AI Infrastructure & MLOps",
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
company: "Confident AI",
|
|
331
|
+
slug: "confidentai",
|
|
332
|
+
fallback: "https://www.confident-ai.com/careers",
|
|
333
|
+
section: "AI Infrastructure & MLOps",
|
|
334
|
+
},
|
|
335
|
+
// --- AI Coding & Dev Tools ---
|
|
336
|
+
{
|
|
337
|
+
company: "Cursor",
|
|
338
|
+
slug: "cursor",
|
|
339
|
+
provider: "ashby",
|
|
340
|
+
section: "AI Coding & Dev Tools",
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
company: "Replit",
|
|
344
|
+
slug: "replit",
|
|
345
|
+
provider: "ashby",
|
|
346
|
+
section: "AI Coding & Dev Tools",
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
company: "Codeium",
|
|
350
|
+
slug: "codeium",
|
|
351
|
+
fallback: "https://codeium.com/careers",
|
|
352
|
+
section: "AI Coding & Dev Tools",
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
company: "Sourcegraph",
|
|
356
|
+
slug: "sourcegraph",
|
|
357
|
+
fallback: "https://about.sourcegraph.com/jobs",
|
|
358
|
+
section: "AI Coding & Dev Tools",
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
company: "Tabnine",
|
|
362
|
+
slug: "tabnine",
|
|
363
|
+
fallback: "https://www.tabnine.com/careers",
|
|
364
|
+
section: "AI Coding & Dev Tools",
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
company: "Poolside AI",
|
|
368
|
+
slug: "poolside",
|
|
369
|
+
provider: "ashby",
|
|
370
|
+
section: "AI Coding & Dev Tools",
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
company: "Magic",
|
|
374
|
+
slug: "magic",
|
|
375
|
+
provider: "greenhouse",
|
|
376
|
+
section: "AI Coding & Dev Tools",
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
company: "Augment Code",
|
|
380
|
+
slug: "augmentcode",
|
|
381
|
+
fallback: "https://www.augmentcode.com/careers",
|
|
382
|
+
section: "AI Coding & Dev Tools",
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
company: "Cognition",
|
|
386
|
+
slug: "cognition",
|
|
387
|
+
provider: "ashby",
|
|
388
|
+
section: "AI Coding & Dev Tools",
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
company: "Bolt",
|
|
392
|
+
slug: "bolt",
|
|
393
|
+
provider: "ashby",
|
|
394
|
+
section: "AI Coding & Dev Tools",
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
company: "Lovable",
|
|
398
|
+
slug: "lovable",
|
|
399
|
+
provider: "greenhouse",
|
|
400
|
+
section: "AI Coding & Dev Tools",
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
company: "Vercel",
|
|
404
|
+
slug: "vercel",
|
|
405
|
+
provider: "greenhouse",
|
|
406
|
+
section: "AI Coding & Dev Tools",
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
company: "Sweep",
|
|
410
|
+
slug: "sweep",
|
|
411
|
+
provider: "ashby",
|
|
412
|
+
section: "AI Coding & Dev Tools",
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
company: "Codegen",
|
|
416
|
+
slug: "codegen",
|
|
417
|
+
fallback: "https://www.codegen.com/careers",
|
|
418
|
+
section: "AI Coding & Dev Tools",
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
company: "Continue",
|
|
422
|
+
slug: "continue",
|
|
423
|
+
provider: "ashby",
|
|
424
|
+
section: "AI Coding & Dev Tools",
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
company: "Pieces",
|
|
428
|
+
slug: "pieces",
|
|
429
|
+
fallback: "https://pieces.app/careers",
|
|
430
|
+
section: "AI Coding & Dev Tools",
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
company: "Aider",
|
|
434
|
+
slug: "aider",
|
|
435
|
+
fallback: "https://aider.chat/careers",
|
|
436
|
+
section: "AI Coding & Dev Tools",
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
company: "Cosine",
|
|
440
|
+
slug: "cosine",
|
|
441
|
+
provider: "ashby",
|
|
442
|
+
section: "AI Coding & Dev Tools",
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
company: "Factory",
|
|
446
|
+
slug: "factory",
|
|
447
|
+
provider: "ashby",
|
|
448
|
+
section: "AI Coding & Dev Tools",
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
company: "All Hands AI",
|
|
452
|
+
slug: "openhands",
|
|
453
|
+
provider: "ashby",
|
|
454
|
+
section: "AI Coding & Dev Tools",
|
|
455
|
+
},
|
|
456
|
+
// --- AI Enterprise & Applications ---
|
|
457
|
+
{
|
|
458
|
+
company: "Glean",
|
|
459
|
+
slug: "glean",
|
|
460
|
+
fallback: "https://www.glean.com/careers",
|
|
461
|
+
section: "AI Enterprise & Applications",
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
company: "Writer",
|
|
465
|
+
slug: "writer",
|
|
466
|
+
provider: "ashby",
|
|
467
|
+
section: "AI Enterprise & Applications",
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
company: "Jasper",
|
|
471
|
+
slug: "jasper",
|
|
472
|
+
fallback: "https://www.jasper.ai/careers",
|
|
473
|
+
section: "AI Enterprise & Applications",
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
company: "Copy.ai",
|
|
477
|
+
slug: "copyai",
|
|
478
|
+
fallback: "https://www.copy.ai/careers",
|
|
479
|
+
section: "AI Enterprise & Applications",
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
company: "Harvey",
|
|
483
|
+
slug: "harvey",
|
|
484
|
+
provider: "ashby",
|
|
485
|
+
section: "AI Enterprise & Applications",
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
company: "Sierra",
|
|
489
|
+
slug: "sierra",
|
|
490
|
+
provider: "ashby",
|
|
491
|
+
section: "AI Enterprise & Applications",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
company: "Dust",
|
|
495
|
+
slug: "dust",
|
|
496
|
+
provider: "ashby",
|
|
497
|
+
section: "AI Enterprise & Applications",
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
company: "Fixie",
|
|
501
|
+
slug: "fixie",
|
|
502
|
+
fallback: "https://fixie.ai/careers",
|
|
503
|
+
section: "AI Enterprise & Applications",
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
company: "Langfuse",
|
|
507
|
+
slug: "langfuse",
|
|
508
|
+
provider: "ashby",
|
|
509
|
+
section: "AI Enterprise & Applications",
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
company: "Hebbia",
|
|
513
|
+
slug: "hebbia",
|
|
514
|
+
provider: "greenhouse",
|
|
515
|
+
section: "AI Enterprise & Applications",
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
company: "Moveworks",
|
|
519
|
+
slug: "moveworks",
|
|
520
|
+
provider: "greenhouse",
|
|
521
|
+
section: "AI Enterprise & Applications",
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
company: "Ada",
|
|
525
|
+
slug: "ada",
|
|
526
|
+
fallback: "https://www.ada.cx/careers",
|
|
527
|
+
section: "AI Enterprise & Applications",
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
company: "Forethought",
|
|
531
|
+
slug: "forethought",
|
|
532
|
+
provider: "greenhouse",
|
|
533
|
+
section: "AI Enterprise & Applications",
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
company: "Assembled",
|
|
537
|
+
slug: "assembled",
|
|
538
|
+
fallback: "https://www.assembled.com/careers",
|
|
539
|
+
section: "AI Enterprise & Applications",
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
company: "Decagon",
|
|
543
|
+
slug: "decagon",
|
|
544
|
+
provider: "ashby",
|
|
545
|
+
section: "AI Enterprise & Applications",
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
company: "11x",
|
|
549
|
+
slug: "11x",
|
|
550
|
+
fallback: "https://www.11x.ai/careers",
|
|
551
|
+
section: "AI Enterprise & Applications",
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
company: "Relevance AI",
|
|
555
|
+
slug: "relevanceai",
|
|
556
|
+
provider: "ashby",
|
|
557
|
+
section: "AI Enterprise & Applications",
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
company: "Voiceflow",
|
|
561
|
+
slug: "voiceflow",
|
|
562
|
+
fallback: "https://www.voiceflow.com/careers",
|
|
563
|
+
section: "AI Enterprise & Applications",
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
company: "Rasa",
|
|
567
|
+
slug: "rasa",
|
|
568
|
+
provider: "ashby",
|
|
569
|
+
section: "AI Enterprise & Applications",
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
company: "Bland AI",
|
|
573
|
+
slug: "bland",
|
|
574
|
+
provider: "ashby",
|
|
575
|
+
section: "AI Enterprise & Applications",
|
|
576
|
+
},
|
|
577
|
+
// --- Developer Platforms & Infrastructure ---
|
|
578
|
+
{
|
|
579
|
+
company: "GitHub",
|
|
580
|
+
slug: "github",
|
|
581
|
+
fallback: "https://github.com/about/careers",
|
|
582
|
+
section: "Developer Platforms & Infrastructure",
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
company: "GitLab",
|
|
586
|
+
slug: "gitlab",
|
|
587
|
+
provider: "greenhouse",
|
|
588
|
+
section: "Developer Platforms & Infrastructure",
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
company: "Supabase",
|
|
592
|
+
slug: "supabase",
|
|
593
|
+
provider: "ashby",
|
|
594
|
+
section: "Developer Platforms & Infrastructure",
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
company: "Netlify",
|
|
598
|
+
slug: "netlify",
|
|
599
|
+
provider: "greenhouse",
|
|
600
|
+
section: "Developer Platforms & Infrastructure",
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
company: "Railway",
|
|
604
|
+
slug: "railway",
|
|
605
|
+
provider: "ashby",
|
|
606
|
+
section: "Developer Platforms & Infrastructure",
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
company: "Render",
|
|
610
|
+
slug: "render",
|
|
611
|
+
provider: "ashby",
|
|
612
|
+
section: "Developer Platforms & Infrastructure",
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
company: "Fly.io",
|
|
616
|
+
slug: "flyio",
|
|
617
|
+
fallback: "https://fly.io/jobs/",
|
|
618
|
+
section: "Developer Platforms & Infrastructure",
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
company: "Neon",
|
|
622
|
+
slug: "neon",
|
|
623
|
+
provider: "ashby",
|
|
624
|
+
section: "Developer Platforms & Infrastructure",
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
company: "PlanetScale",
|
|
628
|
+
slug: "planetscale",
|
|
629
|
+
provider: "greenhouse",
|
|
630
|
+
section: "Developer Platforms & Infrastructure",
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
company: "Turso",
|
|
634
|
+
slug: "turso",
|
|
635
|
+
fallback: "https://turso.tech/careers",
|
|
636
|
+
section: "Developer Platforms & Infrastructure",
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
company: "Convex",
|
|
640
|
+
slug: "convex",
|
|
641
|
+
fallback: "https://www.convex.dev/careers",
|
|
642
|
+
section: "Developer Platforms & Infrastructure",
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
company: "Temporal",
|
|
646
|
+
slug: "temporal",
|
|
647
|
+
provider: "greenhouse",
|
|
648
|
+
section: "Developer Platforms & Infrastructure",
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
company: "LaunchDarkly",
|
|
652
|
+
slug: "launchdarkly",
|
|
653
|
+
provider: "greenhouse",
|
|
654
|
+
section: "Developer Platforms & Infrastructure",
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
company: "PostHog",
|
|
658
|
+
slug: "posthog",
|
|
659
|
+
provider: "ashby",
|
|
660
|
+
section: "Developer Platforms & Infrastructure",
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
company: "Depot",
|
|
664
|
+
slug: "depot",
|
|
665
|
+
fallback: "https://depot.dev/careers",
|
|
666
|
+
section: "Developer Platforms & Infrastructure",
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
company: "Axiom",
|
|
670
|
+
slug: "axiom",
|
|
671
|
+
provider: "greenhouse",
|
|
672
|
+
section: "Developer Platforms & Infrastructure",
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
company: "Prisma",
|
|
676
|
+
slug: "prisma",
|
|
677
|
+
fallback: "https://www.prisma.io/careers",
|
|
678
|
+
section: "Developer Platforms & Infrastructure",
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
company: "Deno",
|
|
682
|
+
slug: "deno",
|
|
683
|
+
fallback: "https://deno.com/jobs",
|
|
684
|
+
section: "Developer Platforms & Infrastructure",
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
company: "Bun",
|
|
688
|
+
slug: "bun",
|
|
689
|
+
fallback: "https://bun.sh/careers",
|
|
690
|
+
section: "Developer Platforms & Infrastructure",
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
company: "Resend",
|
|
694
|
+
slug: "resend",
|
|
695
|
+
provider: "ashby",
|
|
696
|
+
section: "Developer Platforms & Infrastructure",
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
company: "Inngest",
|
|
700
|
+
slug: "inngest",
|
|
701
|
+
provider: "ashby",
|
|
702
|
+
section: "Developer Platforms & Infrastructure",
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
company: "Expo",
|
|
706
|
+
slug: "expo",
|
|
707
|
+
fallback: "https://expo.dev/careers",
|
|
708
|
+
section: "Developer Platforms & Infrastructure",
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
company: "Raycast",
|
|
712
|
+
slug: "raycast",
|
|
713
|
+
provider: "ashby",
|
|
714
|
+
section: "Developer Platforms & Infrastructure",
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
company: "Val Town",
|
|
718
|
+
slug: "valtown",
|
|
719
|
+
fallback: "https://val.town/careers",
|
|
720
|
+
section: "Developer Platforms & Infrastructure",
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
company: "Zed",
|
|
724
|
+
slug: "zed",
|
|
725
|
+
provider: "ashby",
|
|
726
|
+
section: "Developer Platforms & Infrastructure",
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
company: "Warp",
|
|
730
|
+
slug: "warp",
|
|
731
|
+
provider: "greenhouse",
|
|
732
|
+
section: "Developer Platforms & Infrastructure",
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
company: "Fig",
|
|
736
|
+
slug: "fig",
|
|
737
|
+
provider: "ashby",
|
|
738
|
+
section: "Developer Platforms & Infrastructure",
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
company: "SST",
|
|
742
|
+
slug: "sst",
|
|
743
|
+
fallback: "https://sst.dev/careers",
|
|
744
|
+
section: "Developer Platforms & Infrastructure",
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
company: "Upstash",
|
|
748
|
+
slug: "upstash",
|
|
749
|
+
fallback: "https://upstash.com/careers",
|
|
750
|
+
section: "Developer Platforms & Infrastructure",
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
company: "Stainless",
|
|
754
|
+
slug: "stainlessapi",
|
|
755
|
+
provider: "ashby",
|
|
756
|
+
section: "Developer Platforms & Infrastructure",
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
company: "Speakeasy",
|
|
760
|
+
slug: "speakeasy",
|
|
761
|
+
provider: "ashby",
|
|
762
|
+
section: "Developer Platforms & Infrastructure",
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
company: "Grafbase",
|
|
766
|
+
slug: "grafbase",
|
|
767
|
+
fallback: "https://grafbase.com/careers",
|
|
768
|
+
section: "Developer Platforms & Infrastructure",
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
company: "Trigger.dev",
|
|
772
|
+
slug: "triggerdev",
|
|
773
|
+
provider: "ashby",
|
|
774
|
+
section: "Developer Platforms & Infrastructure",
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
company: "Mintlify",
|
|
778
|
+
slug: "mintlify",
|
|
779
|
+
provider: "ashby",
|
|
780
|
+
section: "Developer Platforms & Infrastructure",
|
|
781
|
+
},
|
|
782
|
+
// --- Design Tools ---
|
|
783
|
+
{
|
|
784
|
+
company: "Figma",
|
|
785
|
+
slug: "figma",
|
|
786
|
+
provider: "greenhouse",
|
|
787
|
+
section: "Design Tools",
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
company: "Canva",
|
|
791
|
+
slug: "canva",
|
|
792
|
+
fallback: "https://www.canva.com/careers/",
|
|
793
|
+
section: "Design Tools",
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
company: "Framer",
|
|
797
|
+
slug: "framer",
|
|
798
|
+
fallback: "https://www.framer.com/careers/",
|
|
799
|
+
section: "Design Tools",
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
company: "Webflow",
|
|
803
|
+
slug: "webflow",
|
|
804
|
+
provider: "greenhouse",
|
|
805
|
+
section: "Design Tools",
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
company: "Miro",
|
|
809
|
+
slug: "miro",
|
|
810
|
+
fallback: "https://miro.com/careers/",
|
|
811
|
+
section: "Design Tools",
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
company: "Spline",
|
|
815
|
+
slug: "spline-design",
|
|
816
|
+
provider: "lever",
|
|
817
|
+
section: "Design Tools",
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
company: "Rive",
|
|
821
|
+
slug: "rive",
|
|
822
|
+
fallback: "https://rive.app/careers",
|
|
823
|
+
section: "Design Tools",
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
company: "LottieFiles",
|
|
827
|
+
slug: "lottiefiles",
|
|
828
|
+
fallback: "https://lottiefiles.com/careers",
|
|
829
|
+
section: "Design Tools",
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
company: "Pitch",
|
|
833
|
+
slug: "pitch",
|
|
834
|
+
fallback: "https://pitch.com/careers",
|
|
835
|
+
section: "Design Tools",
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
company: "ProtoPie",
|
|
839
|
+
slug: "protopie",
|
|
840
|
+
fallback: "https://www.protopie.io/careers",
|
|
841
|
+
section: "Design Tools",
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
company: "Readymag",
|
|
845
|
+
slug: "readymag",
|
|
846
|
+
fallback: "https://readymag.com/careers",
|
|
847
|
+
section: "Design Tools",
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
company: "Plasmic",
|
|
851
|
+
slug: "plasmic",
|
|
852
|
+
fallback: "https://www.plasmic.app/careers",
|
|
853
|
+
section: "Design Tools",
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
company: "Penpot",
|
|
857
|
+
slug: "penpot",
|
|
858
|
+
fallback: "https://penpot.app/careers",
|
|
859
|
+
section: "Design Tools",
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
company: "Dora",
|
|
863
|
+
slug: "dora",
|
|
864
|
+
fallback: "https://www.dora.run/careers",
|
|
865
|
+
section: "Design Tools",
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
company: "Galileo AI",
|
|
869
|
+
slug: "galileo",
|
|
870
|
+
provider: "greenhouse",
|
|
871
|
+
section: "Design Tools",
|
|
872
|
+
},
|
|
873
|
+
// --- Big Tech ---
|
|
874
|
+
{
|
|
875
|
+
company: "Apple",
|
|
876
|
+
slug: "apple",
|
|
877
|
+
fallback: "https://www.apple.com/careers/",
|
|
878
|
+
section: "Big Tech",
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
company: "Google",
|
|
882
|
+
slug: "google",
|
|
883
|
+
fallback: "https://www.google.com/about/careers/",
|
|
884
|
+
section: "Big Tech",
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
company: "Microsoft",
|
|
888
|
+
slug: "microsoft",
|
|
889
|
+
fallback: "https://careers.microsoft.com/",
|
|
890
|
+
section: "Big Tech",
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
company: "Meta",
|
|
894
|
+
slug: "meta",
|
|
895
|
+
fallback: "https://www.metacareers.com/",
|
|
896
|
+
section: "Big Tech",
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
company: "Amazon",
|
|
900
|
+
slug: "amazon",
|
|
901
|
+
fallback: "https://www.amazon.jobs/",
|
|
902
|
+
section: "Big Tech",
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
company: "Netflix",
|
|
906
|
+
slug: "netflix",
|
|
907
|
+
fallback: "https://jobs.netflix.com/",
|
|
908
|
+
section: "Big Tech",
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
company: "NVIDIA",
|
|
912
|
+
slug: "nvidia",
|
|
913
|
+
fallback: "https://www.nvidia.com/en-us/about-nvidia/careers/",
|
|
914
|
+
section: "Big Tech",
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
company: "Salesforce",
|
|
918
|
+
slug: "salesforce",
|
|
919
|
+
fallback: "https://careers.salesforce.com/",
|
|
920
|
+
section: "Big Tech",
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
company: "Adobe",
|
|
924
|
+
slug: "adobe",
|
|
925
|
+
fallback: "https://www.adobe.com/careers.html",
|
|
926
|
+
section: "Big Tech",
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
company: "Spotify",
|
|
930
|
+
slug: "spotify",
|
|
931
|
+
provider: "lever",
|
|
932
|
+
section: "Big Tech",
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
company: "Snap",
|
|
936
|
+
slug: "snap",
|
|
937
|
+
fallback: "https://snap.com/en-US/jobs",
|
|
938
|
+
section: "Big Tech",
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
company: "Block",
|
|
942
|
+
slug: "block",
|
|
943
|
+
provider: "greenhouse",
|
|
944
|
+
section: "Big Tech",
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
company: "Palantir",
|
|
948
|
+
slug: "palantir",
|
|
949
|
+
provider: "lever",
|
|
950
|
+
section: "Big Tech",
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
company: "Oracle",
|
|
954
|
+
slug: "oracle",
|
|
955
|
+
fallback: "https://www.oracle.com/careers/",
|
|
956
|
+
section: "Big Tech",
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
company: "IBM",
|
|
960
|
+
slug: "ibm",
|
|
961
|
+
fallback: "https://www.ibm.com/careers",
|
|
962
|
+
section: "Big Tech",
|
|
963
|
+
},
|
|
964
|
+
// --- Fintech ---
|
|
965
|
+
{
|
|
966
|
+
company: "Stripe",
|
|
967
|
+
slug: "stripe",
|
|
968
|
+
provider: "greenhouse",
|
|
969
|
+
section: "Fintech",
|
|
970
|
+
},
|
|
971
|
+
{ company: "Plaid", slug: "plaid", provider: "ashby", section: "Fintech" },
|
|
972
|
+
{ company: "Ramp", slug: "ramp", provider: "ashby", section: "Fintech" },
|
|
973
|
+
{ company: "Brex", slug: "brex", provider: "greenhouse", section: "Fintech" },
|
|
974
|
+
{
|
|
975
|
+
company: "Mercury",
|
|
976
|
+
slug: "mercury",
|
|
977
|
+
provider: "greenhouse",
|
|
978
|
+
section: "Fintech",
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
company: "Rippling",
|
|
982
|
+
slug: "rippling",
|
|
983
|
+
fallback: "https://www.rippling.com/careers",
|
|
984
|
+
section: "Fintech",
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
company: "Gusto",
|
|
988
|
+
slug: "gusto",
|
|
989
|
+
provider: "greenhouse",
|
|
990
|
+
section: "Fintech",
|
|
991
|
+
},
|
|
992
|
+
{ company: "Deel", slug: "deel", provider: "ashby", section: "Fintech" },
|
|
993
|
+
{
|
|
994
|
+
company: "Affirm",
|
|
995
|
+
slug: "affirm",
|
|
996
|
+
provider: "greenhouse",
|
|
997
|
+
section: "Fintech",
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
company: "Coinbase",
|
|
1001
|
+
slug: "coinbase",
|
|
1002
|
+
provider: "greenhouse",
|
|
1003
|
+
section: "Fintech",
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
company: "Robinhood",
|
|
1007
|
+
slug: "robinhood",
|
|
1008
|
+
provider: "greenhouse",
|
|
1009
|
+
section: "Fintech",
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
company: "Klarna",
|
|
1013
|
+
slug: "klarna",
|
|
1014
|
+
fallback: "https://www.klarna.com/careers/",
|
|
1015
|
+
section: "Fintech",
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
company: "Wise",
|
|
1019
|
+
slug: "wise",
|
|
1020
|
+
fallback: "https://www.wise.jobs/",
|
|
1021
|
+
section: "Fintech",
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
company: "Marqeta",
|
|
1025
|
+
slug: "marqeta",
|
|
1026
|
+
provider: "greenhouse",
|
|
1027
|
+
section: "Fintech",
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
company: "Navan",
|
|
1031
|
+
slug: "navan",
|
|
1032
|
+
fallback: "https://navan.com/careers",
|
|
1033
|
+
section: "Fintech",
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
company: "Carta",
|
|
1037
|
+
slug: "carta",
|
|
1038
|
+
provider: "greenhouse",
|
|
1039
|
+
section: "Fintech",
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
company: "Checkout.com",
|
|
1043
|
+
slug: "checkoutcom",
|
|
1044
|
+
fallback: "https://www.checkout.com/careers",
|
|
1045
|
+
section: "Fintech",
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
company: "Adyen",
|
|
1049
|
+
slug: "adyen",
|
|
1050
|
+
provider: "greenhouse",
|
|
1051
|
+
section: "Fintech",
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
company: "Chime",
|
|
1055
|
+
slug: "chime",
|
|
1056
|
+
provider: "greenhouse",
|
|
1057
|
+
section: "Fintech",
|
|
1058
|
+
},
|
|
1059
|
+
{ company: "SoFi", slug: "sofi", provider: "greenhouse", section: "Fintech" },
|
|
1060
|
+
// --- Cloud & Data Infrastructure ---
|
|
1061
|
+
{
|
|
1062
|
+
company: "Cloudflare",
|
|
1063
|
+
slug: "cloudflare",
|
|
1064
|
+
provider: "greenhouse",
|
|
1065
|
+
section: "Cloud & Data Infrastructure",
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
company: "HashiCorp",
|
|
1069
|
+
slug: "hashicorp",
|
|
1070
|
+
fallback: "https://www.hashicorp.com/careers",
|
|
1071
|
+
section: "Cloud & Data Infrastructure",
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
company: "Datadog",
|
|
1075
|
+
slug: "datadog",
|
|
1076
|
+
provider: "greenhouse",
|
|
1077
|
+
section: "Cloud & Data Infrastructure",
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
company: "Snowflake",
|
|
1081
|
+
slug: "snowflake",
|
|
1082
|
+
provider: "ashby",
|
|
1083
|
+
section: "Cloud & Data Infrastructure",
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
company: "CockroachDB",
|
|
1087
|
+
slug: "cockroachlabs",
|
|
1088
|
+
provider: "greenhouse",
|
|
1089
|
+
section: "Cloud & Data Infrastructure",
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
company: "DigitalOcean",
|
|
1093
|
+
slug: "digitalocean",
|
|
1094
|
+
fallback: "https://www.digitalocean.com/careers",
|
|
1095
|
+
section: "Cloud & Data Infrastructure",
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
company: "Elastic",
|
|
1099
|
+
slug: "elastic",
|
|
1100
|
+
provider: "greenhouse",
|
|
1101
|
+
section: "Cloud & Data Infrastructure",
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
company: "Confluent",
|
|
1105
|
+
slug: "confluent",
|
|
1106
|
+
provider: "ashby",
|
|
1107
|
+
section: "Cloud & Data Infrastructure",
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
company: "MongoDB",
|
|
1111
|
+
slug: "mongodb",
|
|
1112
|
+
fallback: "https://www.mongodb.com/careers",
|
|
1113
|
+
section: "Cloud & Data Infrastructure",
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
company: "Redis",
|
|
1117
|
+
slug: "redis",
|
|
1118
|
+
provider: "ashby",
|
|
1119
|
+
section: "Cloud & Data Infrastructure",
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
company: "Aiven",
|
|
1123
|
+
slug: "aiven",
|
|
1124
|
+
fallback: "https://aiven.io/careers",
|
|
1125
|
+
section: "Cloud & Data Infrastructure",
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
company: "Tigris Data",
|
|
1129
|
+
slug: "tigrisdata",
|
|
1130
|
+
fallback: "https://www.tigrisdata.com/careers",
|
|
1131
|
+
section: "Cloud & Data Infrastructure",
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
company: "MinIO",
|
|
1135
|
+
slug: "minio",
|
|
1136
|
+
provider: "greenhouse",
|
|
1137
|
+
section: "Cloud & Data Infrastructure",
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
company: "Timescale",
|
|
1141
|
+
slug: "timescale",
|
|
1142
|
+
fallback: "https://www.timescale.com/careers",
|
|
1143
|
+
section: "Cloud & Data Infrastructure",
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
company: "ClickHouse",
|
|
1147
|
+
slug: "clickhouse",
|
|
1148
|
+
provider: "greenhouse",
|
|
1149
|
+
section: "Cloud & Data Infrastructure",
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
company: "SingleStore",
|
|
1153
|
+
slug: "singlestore",
|
|
1154
|
+
provider: "greenhouse",
|
|
1155
|
+
section: "Cloud & Data Infrastructure",
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
company: "Materialize",
|
|
1159
|
+
slug: "materialize",
|
|
1160
|
+
provider: "greenhouse",
|
|
1161
|
+
section: "Cloud & Data Infrastructure",
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
company: "Starburst",
|
|
1165
|
+
slug: "starburst",
|
|
1166
|
+
provider: "greenhouse",
|
|
1167
|
+
section: "Cloud & Data Infrastructure",
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
company: "Vultr",
|
|
1171
|
+
slug: "vultr",
|
|
1172
|
+
provider: "ashby",
|
|
1173
|
+
section: "Cloud & Data Infrastructure",
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
company: "Hetzner",
|
|
1177
|
+
slug: "hetzner",
|
|
1178
|
+
fallback: "https://www.hetzner.com/careers/",
|
|
1179
|
+
section: "Cloud & Data Infrastructure",
|
|
1180
|
+
},
|
|
1181
|
+
// --- Cybersecurity ---
|
|
1182
|
+
{
|
|
1183
|
+
company: "CrowdStrike",
|
|
1184
|
+
slug: "crowdstrike",
|
|
1185
|
+
fallback: "https://www.crowdstrike.com/careers/",
|
|
1186
|
+
section: "Cybersecurity",
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
company: "Palo Alto Networks",
|
|
1190
|
+
slug: "paloaltonetworks",
|
|
1191
|
+
fallback: "https://jobs.paloaltonetworks.com/",
|
|
1192
|
+
section: "Cybersecurity",
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
company: "Snyk",
|
|
1196
|
+
slug: "snyk",
|
|
1197
|
+
provider: "ashby",
|
|
1198
|
+
section: "Cybersecurity",
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
company: "1Password",
|
|
1202
|
+
slug: "1password",
|
|
1203
|
+
provider: "ashby",
|
|
1204
|
+
section: "Cybersecurity",
|
|
1205
|
+
},
|
|
1206
|
+
{ company: "Wiz", slug: "wiz", provider: "ashby", section: "Cybersecurity" },
|
|
1207
|
+
{
|
|
1208
|
+
company: "Lacework",
|
|
1209
|
+
slug: "lacework",
|
|
1210
|
+
fallback: "https://www.lacework.com/careers/",
|
|
1211
|
+
section: "Cybersecurity",
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
company: "Vanta",
|
|
1215
|
+
slug: "vanta",
|
|
1216
|
+
provider: "ashby",
|
|
1217
|
+
section: "Cybersecurity",
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
company: "Drata",
|
|
1221
|
+
slug: "drata",
|
|
1222
|
+
provider: "ashby",
|
|
1223
|
+
section: "Cybersecurity",
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
company: "Orca Security",
|
|
1227
|
+
slug: "orcasecurity",
|
|
1228
|
+
provider: "greenhouse",
|
|
1229
|
+
section: "Cybersecurity",
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
company: "SentinelOne",
|
|
1233
|
+
slug: "sentinelone",
|
|
1234
|
+
fallback: "https://www.sentinelone.com/careers/",
|
|
1235
|
+
section: "Cybersecurity",
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
company: "Chainguard",
|
|
1239
|
+
slug: "chainguard",
|
|
1240
|
+
provider: "greenhouse",
|
|
1241
|
+
section: "Cybersecurity",
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
company: "Socket",
|
|
1245
|
+
slug: "socket",
|
|
1246
|
+
provider: "greenhouse",
|
|
1247
|
+
section: "Cybersecurity",
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
company: "Tessian",
|
|
1251
|
+
slug: "tessian",
|
|
1252
|
+
fallback: "https://www.tessian.com/careers/",
|
|
1253
|
+
section: "Cybersecurity",
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
company: "Semgrep",
|
|
1257
|
+
slug: "semgrep",
|
|
1258
|
+
provider: "ashby",
|
|
1259
|
+
section: "Cybersecurity",
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
company: "Bitwarden",
|
|
1263
|
+
slug: "bitwarden",
|
|
1264
|
+
provider: "greenhouse",
|
|
1265
|
+
section: "Cybersecurity",
|
|
1266
|
+
},
|
|
1267
|
+
// --- Productivity & Collaboration ---
|
|
1268
|
+
{
|
|
1269
|
+
company: "Notion",
|
|
1270
|
+
slug: "notion",
|
|
1271
|
+
provider: "ashby",
|
|
1272
|
+
section: "Productivity & Collaboration",
|
|
1273
|
+
},
|
|
1274
|
+
{
|
|
1275
|
+
company: "Linear",
|
|
1276
|
+
slug: "linear",
|
|
1277
|
+
provider: "ashby",
|
|
1278
|
+
section: "Productivity & Collaboration",
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
company: "Coda",
|
|
1282
|
+
slug: "coda",
|
|
1283
|
+
fallback: "https://coda.io/careers",
|
|
1284
|
+
section: "Productivity & Collaboration",
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
company: "Airtable",
|
|
1288
|
+
slug: "airtable",
|
|
1289
|
+
provider: "greenhouse",
|
|
1290
|
+
section: "Productivity & Collaboration",
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
company: "Loom",
|
|
1294
|
+
slug: "loom",
|
|
1295
|
+
provider: "ashby",
|
|
1296
|
+
section: "Productivity & Collaboration",
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
company: "Calendly",
|
|
1300
|
+
slug: "calendly",
|
|
1301
|
+
provider: "greenhouse",
|
|
1302
|
+
section: "Productivity & Collaboration",
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
company: "Retool",
|
|
1306
|
+
slug: "retool",
|
|
1307
|
+
provider: "ashby",
|
|
1308
|
+
section: "Productivity & Collaboration",
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
company: "Zapier",
|
|
1312
|
+
slug: "zapier",
|
|
1313
|
+
provider: "ashby",
|
|
1314
|
+
section: "Productivity & Collaboration",
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
company: "Monday.com",
|
|
1318
|
+
slug: "mondaycom",
|
|
1319
|
+
fallback: "https://monday.com/careers",
|
|
1320
|
+
section: "Productivity & Collaboration",
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
company: "ClickUp",
|
|
1324
|
+
slug: "clickup",
|
|
1325
|
+
provider: "ashby",
|
|
1326
|
+
section: "Productivity & Collaboration",
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
company: "Asana",
|
|
1330
|
+
slug: "asana",
|
|
1331
|
+
provider: "greenhouse",
|
|
1332
|
+
section: "Productivity & Collaboration",
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
company: "Slack",
|
|
1336
|
+
slug: "slack",
|
|
1337
|
+
fallback: "https://slack.com/careers",
|
|
1338
|
+
section: "Productivity & Collaboration",
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
company: "Atlassian",
|
|
1342
|
+
slug: "atlassian",
|
|
1343
|
+
provider: "lever",
|
|
1344
|
+
section: "Productivity & Collaboration",
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
company: "Superhuman",
|
|
1348
|
+
slug: "superhuman",
|
|
1349
|
+
provider: "ashby",
|
|
1350
|
+
section: "Productivity & Collaboration",
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
company: "Missive",
|
|
1354
|
+
slug: "missive",
|
|
1355
|
+
fallback: "https://missiveapp.com/careers",
|
|
1356
|
+
section: "Productivity & Collaboration",
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
company: "Height",
|
|
1360
|
+
slug: "height",
|
|
1361
|
+
fallback: "https://height.app/careers",
|
|
1362
|
+
section: "Productivity & Collaboration",
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
company: "Taskade",
|
|
1366
|
+
slug: "taskade",
|
|
1367
|
+
fallback: "https://www.taskade.com/careers",
|
|
1368
|
+
section: "Productivity & Collaboration",
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
company: "Mem",
|
|
1372
|
+
slug: "mem",
|
|
1373
|
+
provider: "ashby",
|
|
1374
|
+
section: "Productivity & Collaboration",
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
company: "Craft",
|
|
1378
|
+
slug: "craft",
|
|
1379
|
+
fallback: "https://www.craft.do/careers",
|
|
1380
|
+
section: "Productivity & Collaboration",
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
company: "Fibery",
|
|
1384
|
+
slug: "fibery",
|
|
1385
|
+
fallback: "https://fibery.io/careers",
|
|
1386
|
+
section: "Productivity & Collaboration",
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
company: "Shortcut",
|
|
1390
|
+
slug: "shortcut",
|
|
1391
|
+
fallback: "https://shortcut.com/careers",
|
|
1392
|
+
section: "Productivity & Collaboration",
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
company: "Rows",
|
|
1396
|
+
slug: "rows",
|
|
1397
|
+
fallback: "https://rows.com/careers",
|
|
1398
|
+
section: "Productivity & Collaboration",
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
company: "tldraw",
|
|
1402
|
+
slug: "tldraw",
|
|
1403
|
+
provider: "ashby",
|
|
1404
|
+
section: "Productivity & Collaboration",
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
company: "Obsidian",
|
|
1408
|
+
slug: "obsidian",
|
|
1409
|
+
fallback: "https://obsidian.md/careers",
|
|
1410
|
+
section: "Productivity & Collaboration",
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
company: "Anytype",
|
|
1414
|
+
slug: "anytype",
|
|
1415
|
+
fallback: "https://anytype.io/careers",
|
|
1416
|
+
section: "Productivity & Collaboration",
|
|
1417
|
+
},
|
|
1418
|
+
// --- Data & Analytics ---
|
|
1419
|
+
{
|
|
1420
|
+
company: "dbt Labs",
|
|
1421
|
+
slug: "dbtlabs",
|
|
1422
|
+
fallback: "https://www.getdbt.com/careers/",
|
|
1423
|
+
section: "Data & Analytics",
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
company: "Fivetran",
|
|
1427
|
+
slug: "fivetran",
|
|
1428
|
+
provider: "greenhouse",
|
|
1429
|
+
section: "Data & Analytics",
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
company: "Hex",
|
|
1433
|
+
slug: "hex",
|
|
1434
|
+
fallback: "https://hex.tech/careers/",
|
|
1435
|
+
section: "Data & Analytics",
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
company: "Census",
|
|
1439
|
+
slug: "census",
|
|
1440
|
+
fallback: "https://www.getcensus.com/careers",
|
|
1441
|
+
section: "Data & Analytics",
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
company: "Amplitude",
|
|
1445
|
+
slug: "amplitude",
|
|
1446
|
+
provider: "greenhouse",
|
|
1447
|
+
section: "Data & Analytics",
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
company: "Mixpanel",
|
|
1451
|
+
slug: "mixpanel",
|
|
1452
|
+
provider: "greenhouse",
|
|
1453
|
+
section: "Data & Analytics",
|
|
1454
|
+
},
|
|
1455
|
+
{
|
|
1456
|
+
company: "Segment",
|
|
1457
|
+
slug: "segment",
|
|
1458
|
+
fallback: "https://segment.com/careers/",
|
|
1459
|
+
section: "Data & Analytics",
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
company: "Hightouch",
|
|
1463
|
+
slug: "hightouch",
|
|
1464
|
+
provider: "greenhouse",
|
|
1465
|
+
section: "Data & Analytics",
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
company: "Monte Carlo",
|
|
1469
|
+
slug: "montecarlodata",
|
|
1470
|
+
provider: "ashby",
|
|
1471
|
+
section: "Data & Analytics",
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
company: "Metabase",
|
|
1475
|
+
slug: "metabase",
|
|
1476
|
+
provider: "lever",
|
|
1477
|
+
section: "Data & Analytics",
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
company: "Preset",
|
|
1481
|
+
slug: "preset",
|
|
1482
|
+
fallback: "https://preset.io/careers/",
|
|
1483
|
+
section: "Data & Analytics",
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
company: "Dagster",
|
|
1487
|
+
slug: "dagsterlabs",
|
|
1488
|
+
provider: "greenhouse",
|
|
1489
|
+
section: "Data & Analytics",
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
company: "Prefect",
|
|
1493
|
+
slug: "prefect",
|
|
1494
|
+
provider: "ashby",
|
|
1495
|
+
section: "Data & Analytics",
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
company: "Great Expectations",
|
|
1499
|
+
slug: "greatexpectations",
|
|
1500
|
+
fallback: "https://greatexpectations.io/careers",
|
|
1501
|
+
section: "Data & Analytics",
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
company: "Lightdash",
|
|
1505
|
+
slug: "lightdash",
|
|
1506
|
+
provider: "ashby",
|
|
1507
|
+
section: "Data & Analytics",
|
|
1508
|
+
},
|
|
1509
|
+
// --- E-Commerce & Marketplace ---
|
|
1510
|
+
{
|
|
1511
|
+
company: "Shopify",
|
|
1512
|
+
slug: "shopify",
|
|
1513
|
+
fallback: "https://www.shopify.com/careers",
|
|
1514
|
+
section: "E-Commerce & Marketplace",
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
company: "Instacart",
|
|
1518
|
+
slug: "instacart",
|
|
1519
|
+
provider: "greenhouse",
|
|
1520
|
+
section: "E-Commerce & Marketplace",
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
company: "DoorDash",
|
|
1524
|
+
slug: "doordash",
|
|
1525
|
+
fallback: "https://careers.doordash.com/",
|
|
1526
|
+
section: "E-Commerce & Marketplace",
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
company: "Faire",
|
|
1530
|
+
slug: "faire",
|
|
1531
|
+
provider: "greenhouse",
|
|
1532
|
+
section: "E-Commerce & Marketplace",
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
company: "Flexport",
|
|
1536
|
+
slug: "flexport",
|
|
1537
|
+
provider: "greenhouse",
|
|
1538
|
+
section: "E-Commerce & Marketplace",
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
company: "Bolt (Transport)",
|
|
1542
|
+
slug: "bolttransport",
|
|
1543
|
+
fallback: "https://www.bolt.com/careers",
|
|
1544
|
+
section: "E-Commerce & Marketplace",
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
company: "Gorgias",
|
|
1548
|
+
slug: "gorgias",
|
|
1549
|
+
provider: "ashby",
|
|
1550
|
+
section: "E-Commerce & Marketplace",
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
company: "Yotpo",
|
|
1554
|
+
slug: "yotpo",
|
|
1555
|
+
provider: "greenhouse",
|
|
1556
|
+
section: "E-Commerce & Marketplace",
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
company: "BigCommerce",
|
|
1560
|
+
slug: "bigcommerce",
|
|
1561
|
+
fallback: "https://www.bigcommerce.com/careers/",
|
|
1562
|
+
section: "E-Commerce & Marketplace",
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
company: "Salsify",
|
|
1566
|
+
slug: "salsify",
|
|
1567
|
+
provider: "greenhouse",
|
|
1568
|
+
section: "E-Commerce & Marketplace",
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
company: "Algolia",
|
|
1572
|
+
slug: "algolia",
|
|
1573
|
+
provider: "greenhouse",
|
|
1574
|
+
section: "E-Commerce & Marketplace",
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
company: "Constructor",
|
|
1578
|
+
slug: "constructor",
|
|
1579
|
+
provider: "ashby",
|
|
1580
|
+
section: "E-Commerce & Marketplace",
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
company: "Attentive",
|
|
1584
|
+
slug: "attentive",
|
|
1585
|
+
provider: "greenhouse",
|
|
1586
|
+
section: "E-Commerce & Marketplace",
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
company: "Klaviyo",
|
|
1590
|
+
slug: "klaviyo",
|
|
1591
|
+
provider: "greenhouse",
|
|
1592
|
+
section: "E-Commerce & Marketplace",
|
|
1593
|
+
},
|
|
1594
|
+
{
|
|
1595
|
+
company: "Shippo",
|
|
1596
|
+
slug: "shippo",
|
|
1597
|
+
fallback: "https://goshippo.com/careers/",
|
|
1598
|
+
section: "E-Commerce & Marketplace",
|
|
1599
|
+
},
|
|
1600
|
+
// --- Health & Biotech ---
|
|
1601
|
+
{
|
|
1602
|
+
company: "Tempus",
|
|
1603
|
+
slug: "tempus",
|
|
1604
|
+
fallback: "https://www.tempus.com/careers/",
|
|
1605
|
+
section: "Health & Biotech",
|
|
1606
|
+
},
|
|
1607
|
+
{ company: "Ro", slug: "ro", provider: "lever", section: "Health & Biotech" },
|
|
1608
|
+
{
|
|
1609
|
+
company: "Noom",
|
|
1610
|
+
slug: "noom",
|
|
1611
|
+
fallback: "https://www.noom.com/careers/",
|
|
1612
|
+
section: "Health & Biotech",
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
company: "Hims & Hers",
|
|
1616
|
+
slug: "hims-and-hers",
|
|
1617
|
+
provider: "ashby",
|
|
1618
|
+
section: "Health & Biotech",
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
company: "Oscar Health",
|
|
1622
|
+
slug: "oscar",
|
|
1623
|
+
provider: "greenhouse",
|
|
1624
|
+
section: "Health & Biotech",
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
company: "Flatiron Health",
|
|
1628
|
+
slug: "flatironhealth",
|
|
1629
|
+
provider: "greenhouse",
|
|
1630
|
+
section: "Health & Biotech",
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
company: "Veracyte",
|
|
1634
|
+
slug: "veracyte",
|
|
1635
|
+
provider: "greenhouse",
|
|
1636
|
+
section: "Health & Biotech",
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
company: "Elation Health",
|
|
1640
|
+
slug: "elationhealth",
|
|
1641
|
+
provider: "greenhouse",
|
|
1642
|
+
section: "Health & Biotech",
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
company: "Heal",
|
|
1646
|
+
slug: "heal",
|
|
1647
|
+
fallback: "https://heal.com/careers",
|
|
1648
|
+
section: "Health & Biotech",
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
company: "Spring Health",
|
|
1652
|
+
slug: "springhealth",
|
|
1653
|
+
fallback: "https://www.springhealth.com/careers",
|
|
1654
|
+
section: "Health & Biotech",
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
company: "Cerebral",
|
|
1658
|
+
slug: "cerebral",
|
|
1659
|
+
provider: "greenhouse",
|
|
1660
|
+
section: "Health & Biotech",
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
company: "Abridge",
|
|
1664
|
+
slug: "abridge",
|
|
1665
|
+
provider: "ashby",
|
|
1666
|
+
section: "Health & Biotech",
|
|
1667
|
+
},
|
|
1668
|
+
// --- Communications ---
|
|
1669
|
+
{
|
|
1670
|
+
company: "Twilio",
|
|
1671
|
+
slug: "twilio",
|
|
1672
|
+
provider: "greenhouse",
|
|
1673
|
+
section: "Communications",
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
company: "Discord",
|
|
1677
|
+
slug: "discord",
|
|
1678
|
+
provider: "greenhouse",
|
|
1679
|
+
section: "Communications",
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
company: "Intercom",
|
|
1683
|
+
slug: "intercom",
|
|
1684
|
+
provider: "greenhouse",
|
|
1685
|
+
section: "Communications",
|
|
1686
|
+
},
|
|
1687
|
+
{
|
|
1688
|
+
company: "Sendbird",
|
|
1689
|
+
slug: "sendbird",
|
|
1690
|
+
provider: "greenhouse",
|
|
1691
|
+
section: "Communications",
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
company: "Stream",
|
|
1695
|
+
slug: "stream",
|
|
1696
|
+
provider: "ashby",
|
|
1697
|
+
section: "Communications",
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
company: "LiveKit",
|
|
1701
|
+
slug: "livekit",
|
|
1702
|
+
provider: "ashby",
|
|
1703
|
+
section: "Communications",
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
company: "Daily",
|
|
1707
|
+
slug: "daily",
|
|
1708
|
+
fallback: "https://www.daily.co/careers",
|
|
1709
|
+
section: "Communications",
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
company: "Vonage",
|
|
1713
|
+
slug: "vonage",
|
|
1714
|
+
provider: "greenhouse",
|
|
1715
|
+
section: "Communications",
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
company: "MessageBird",
|
|
1719
|
+
slug: "messagebird",
|
|
1720
|
+
fallback: "https://messagebird.com/careers/",
|
|
1721
|
+
section: "Communications",
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
company: "Knock",
|
|
1725
|
+
slug: "knock",
|
|
1726
|
+
provider: "greenhouse",
|
|
1727
|
+
section: "Communications",
|
|
1728
|
+
},
|
|
1729
|
+
// --- Autonomous & Robotics ---
|
|
1730
|
+
{
|
|
1731
|
+
company: "Waymo",
|
|
1732
|
+
slug: "waymo",
|
|
1733
|
+
provider: "greenhouse",
|
|
1734
|
+
section: "Autonomous & Robotics",
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
company: "Cruise",
|
|
1738
|
+
slug: "cruise",
|
|
1739
|
+
fallback: "https://www.getcruise.com/careers/",
|
|
1740
|
+
section: "Autonomous & Robotics",
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
company: "Tesla",
|
|
1744
|
+
slug: "tesla",
|
|
1745
|
+
fallback: "https://www.tesla.com/careers",
|
|
1746
|
+
section: "Autonomous & Robotics",
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
company: "Anduril",
|
|
1750
|
+
slug: "andurilindustries",
|
|
1751
|
+
provider: "greenhouse",
|
|
1752
|
+
section: "Autonomous & Robotics",
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
company: "Figure",
|
|
1756
|
+
slug: "figure",
|
|
1757
|
+
provider: "greenhouse",
|
|
1758
|
+
section: "Autonomous & Robotics",
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
company: "Covariant",
|
|
1762
|
+
slug: "covariant",
|
|
1763
|
+
fallback: "https://covariant.ai/careers/",
|
|
1764
|
+
section: "Autonomous & Robotics",
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
company: "SpaceX",
|
|
1768
|
+
slug: "spacex",
|
|
1769
|
+
fallback: "https://www.spacex.com/careers/",
|
|
1770
|
+
section: "Autonomous & Robotics",
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
company: "Relativity Space",
|
|
1774
|
+
slug: "relativityspace",
|
|
1775
|
+
fallback: "https://www.relativityspace.com/careers",
|
|
1776
|
+
section: "Autonomous & Robotics",
|
|
1777
|
+
},
|
|
1778
|
+
{
|
|
1779
|
+
company: "Astranis",
|
|
1780
|
+
slug: "astranis",
|
|
1781
|
+
provider: "greenhouse",
|
|
1782
|
+
section: "Autonomous & Robotics",
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
company: "Shield AI",
|
|
1786
|
+
slug: "shieldai",
|
|
1787
|
+
provider: "lever",
|
|
1788
|
+
section: "Autonomous & Robotics",
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
company: "Skydio",
|
|
1792
|
+
slug: "skydio",
|
|
1793
|
+
provider: "ashby",
|
|
1794
|
+
section: "Autonomous & Robotics",
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
company: "Physical Intelligence",
|
|
1798
|
+
slug: "physicalintelligence",
|
|
1799
|
+
provider: "ashby",
|
|
1800
|
+
section: "Autonomous & Robotics",
|
|
1801
|
+
},
|
|
1802
|
+
// --- CMS & Headless ---
|
|
1803
|
+
{
|
|
1804
|
+
company: "Contentful",
|
|
1805
|
+
slug: "contentful",
|
|
1806
|
+
provider: "greenhouse",
|
|
1807
|
+
section: "CMS & Headless",
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
company: "Sanity",
|
|
1811
|
+
slug: "sanity",
|
|
1812
|
+
provider: "ashby",
|
|
1813
|
+
section: "CMS & Headless",
|
|
1814
|
+
},
|
|
1815
|
+
// --- Auth & Identity ---
|
|
1816
|
+
{
|
|
1817
|
+
company: "Stytch",
|
|
1818
|
+
slug: "stytch",
|
|
1819
|
+
provider: "ashby",
|
|
1820
|
+
section: "Auth & Identity",
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
company: "WorkOS",
|
|
1824
|
+
slug: "workos",
|
|
1825
|
+
provider: "ashby",
|
|
1826
|
+
section: "Auth & Identity",
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
company: "Clerk",
|
|
1830
|
+
slug: "clerk",
|
|
1831
|
+
provider: "ashby",
|
|
1832
|
+
section: "Auth & Identity",
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
company: "Okta",
|
|
1836
|
+
slug: "okta",
|
|
1837
|
+
provider: "greenhouse",
|
|
1838
|
+
section: "Auth & Identity",
|
|
1839
|
+
},
|
|
1840
|
+
// --- Observability & DevOps ---
|
|
1841
|
+
{
|
|
1842
|
+
company: "Sentry",
|
|
1843
|
+
slug: "sentry",
|
|
1844
|
+
provider: "ashby",
|
|
1845
|
+
section: "Observability & DevOps",
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
company: "PagerDuty",
|
|
1849
|
+
slug: "pagerduty",
|
|
1850
|
+
provider: "greenhouse",
|
|
1851
|
+
section: "Observability & DevOps",
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
company: "Grafana Labs",
|
|
1855
|
+
slug: "grafanalabs",
|
|
1856
|
+
provider: "greenhouse",
|
|
1857
|
+
section: "Observability & DevOps",
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
company: "Kong",
|
|
1861
|
+
slug: "kong",
|
|
1862
|
+
provider: "ashby",
|
|
1863
|
+
section: "Observability & DevOps",
|
|
1864
|
+
},
|
|
1865
|
+
// --- Media & Video ---
|
|
1866
|
+
{ company: "Mux", slug: "mux", provider: "ashby", section: "Media & Video" },
|
|
1867
|
+
{
|
|
1868
|
+
company: "Cloudinary",
|
|
1869
|
+
slug: "cloudinary",
|
|
1870
|
+
provider: "lever",
|
|
1871
|
+
section: "Media & Video",
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
company: "imgix",
|
|
1875
|
+
slug: "imgix",
|
|
1876
|
+
fallback: "https://www.imgix.com/careers",
|
|
1877
|
+
section: "Media & Video",
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
company: "SendGrid",
|
|
1881
|
+
slug: "sendgrid",
|
|
1882
|
+
fallback: "https://sendgrid.com/careers",
|
|
1883
|
+
section: "Media & Video",
|
|
1884
|
+
},
|
|
1885
|
+
// --- Automation & Low-Code ---
|
|
1886
|
+
{
|
|
1887
|
+
company: "Workato",
|
|
1888
|
+
slug: "workato",
|
|
1889
|
+
provider: "greenhouse",
|
|
1890
|
+
section: "Automation & Low-Code",
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
company: "Tines",
|
|
1894
|
+
slug: "tines",
|
|
1895
|
+
provider: "greenhouse",
|
|
1896
|
+
section: "Automation & Low-Code",
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
company: "n8n",
|
|
1900
|
+
slug: "n8n",
|
|
1901
|
+
provider: "ashby",
|
|
1902
|
+
section: "Automation & Low-Code",
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
company: "Appsmith",
|
|
1906
|
+
slug: "appsmith",
|
|
1907
|
+
fallback: "https://www.appsmith.com/careers",
|
|
1908
|
+
section: "Automation & Low-Code",
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
company: "Budibase",
|
|
1912
|
+
slug: "budibase",
|
|
1913
|
+
fallback: "https://budibase.com/careers",
|
|
1914
|
+
section: "Automation & Low-Code",
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
company: "Directus",
|
|
1918
|
+
slug: "directus",
|
|
1919
|
+
fallback: "https://directus.io/careers",
|
|
1920
|
+
section: "Automation & Low-Code",
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
company: "Strapi",
|
|
1924
|
+
slug: "strapi",
|
|
1925
|
+
provider: "lever",
|
|
1926
|
+
section: "Automation & Low-Code",
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
company: "Payload CMS",
|
|
1930
|
+
slug: "payloadcms",
|
|
1931
|
+
fallback: "https://payloadcms.com/careers",
|
|
1932
|
+
section: "Automation & Low-Code",
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
company: "Novu",
|
|
1936
|
+
slug: "novu",
|
|
1937
|
+
fallback: "https://novu.co/careers",
|
|
1938
|
+
section: "Automation & Low-Code",
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
company: "Flagsmith",
|
|
1942
|
+
slug: "flagsmith",
|
|
1943
|
+
fallback: "https://www.flagsmith.com/careers",
|
|
1944
|
+
section: "Automation & Low-Code",
|
|
1945
|
+
},
|
|
1946
|
+
// --- Gaming ---
|
|
1947
|
+
{
|
|
1948
|
+
company: "Epic Games",
|
|
1949
|
+
slug: "epicgames",
|
|
1950
|
+
provider: "greenhouse",
|
|
1951
|
+
section: "Gaming",
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
company: "Unity",
|
|
1955
|
+
slug: "unity",
|
|
1956
|
+
fallback: "https://careers.unity.com/",
|
|
1957
|
+
section: "Gaming",
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
company: "Roblox",
|
|
1961
|
+
slug: "roblox",
|
|
1962
|
+
provider: "greenhouse",
|
|
1963
|
+
section: "Gaming",
|
|
1964
|
+
},
|
|
1965
|
+
{ company: "Niantic", slug: "niantic", provider: "ashby", section: "Gaming" },
|
|
1966
|
+
{
|
|
1967
|
+
company: "Rec Room",
|
|
1968
|
+
slug: "recroom",
|
|
1969
|
+
fallback: "https://recroom.com/careers",
|
|
1970
|
+
section: "Gaming",
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
company: "Playable Worlds",
|
|
1974
|
+
slug: "playableworlds",
|
|
1975
|
+
fallback: "https://www.playableworlds.com/careers",
|
|
1976
|
+
section: "Gaming",
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
company: "Beamable",
|
|
1980
|
+
slug: "beamable",
|
|
1981
|
+
fallback: "https://beamable.com/careers",
|
|
1982
|
+
section: "Gaming",
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
company: "Manticore Games",
|
|
1986
|
+
slug: "manticoregames",
|
|
1987
|
+
provider: "greenhouse",
|
|
1988
|
+
section: "Gaming",
|
|
1989
|
+
},
|
|
1990
|
+
// --- Education ---
|
|
1991
|
+
{
|
|
1992
|
+
company: "Duolingo",
|
|
1993
|
+
slug: "duolingo",
|
|
1994
|
+
provider: "greenhouse",
|
|
1995
|
+
section: "Education",
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
company: "Coursera",
|
|
1999
|
+
slug: "coursera",
|
|
2000
|
+
provider: "greenhouse",
|
|
2001
|
+
section: "Education",
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
company: "Khan Academy",
|
|
2005
|
+
slug: "khanacademy",
|
|
2006
|
+
provider: "greenhouse",
|
|
2007
|
+
section: "Education",
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
company: "Brilliant",
|
|
2011
|
+
slug: "brilliant",
|
|
2012
|
+
provider: "lever",
|
|
2013
|
+
section: "Education",
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
company: "Quizlet",
|
|
2017
|
+
slug: "quizlet",
|
|
2018
|
+
fallback: "https://quizlet.com/careers",
|
|
2019
|
+
section: "Education",
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
company: "Teachable",
|
|
2023
|
+
slug: "teachable",
|
|
2024
|
+
fallback: "https://teachable.com/careers",
|
|
2025
|
+
section: "Education",
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
company: "Maven",
|
|
2029
|
+
slug: "maven",
|
|
2030
|
+
provider: "greenhouse",
|
|
2031
|
+
section: "Education",
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
company: "Synthesis",
|
|
2035
|
+
slug: "synthesis",
|
|
2036
|
+
fallback: "https://www.synthesis.is/careers",
|
|
2037
|
+
section: "Education",
|
|
2038
|
+
},
|
|
2039
|
+
// --- Social & Community ---
|
|
2040
|
+
{
|
|
2041
|
+
company: "Reddit",
|
|
2042
|
+
slug: "reddit",
|
|
2043
|
+
provider: "greenhouse",
|
|
2044
|
+
section: "Social & Community",
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
company: "Pinterest",
|
|
2048
|
+
slug: "pinterest",
|
|
2049
|
+
provider: "greenhouse",
|
|
2050
|
+
section: "Social & Community",
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
company: "Substack",
|
|
2054
|
+
slug: "substack",
|
|
2055
|
+
provider: "ashby",
|
|
2056
|
+
section: "Social & Community",
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
company: "BeReal",
|
|
2060
|
+
slug: "bereal",
|
|
2061
|
+
fallback: "https://bereal.com/careers/",
|
|
2062
|
+
section: "Social & Community",
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
company: "Arc",
|
|
2066
|
+
slug: "arc",
|
|
2067
|
+
fallback: "https://arc.net/careers",
|
|
2068
|
+
section: "Social & Community",
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
company: "Bluesky",
|
|
2072
|
+
slug: "bluesky",
|
|
2073
|
+
fallback: "https://bsky.social/about/careers",
|
|
2074
|
+
section: "Social & Community",
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
company: "Mastodon",
|
|
2078
|
+
slug: "mastodon",
|
|
2079
|
+
provider: "ashby",
|
|
2080
|
+
section: "Social & Community",
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
company: "Strava",
|
|
2084
|
+
slug: "strava",
|
|
2085
|
+
provider: "ashby",
|
|
2086
|
+
section: "Social & Community",
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
company: "Bumble",
|
|
2090
|
+
slug: "bumble",
|
|
2091
|
+
provider: "ashby",
|
|
2092
|
+
section: "Social & Community",
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
company: "Hinge",
|
|
2096
|
+
slug: "hinge",
|
|
2097
|
+
fallback: "https://hinge.co/careers",
|
|
2098
|
+
section: "Social & Community",
|
|
2099
|
+
},
|
|
2100
|
+
// --- Travel & Transport ---
|
|
2101
|
+
{
|
|
2102
|
+
company: "Airbnb",
|
|
2103
|
+
slug: "airbnb",
|
|
2104
|
+
provider: "greenhouse",
|
|
2105
|
+
section: "Travel & Transport",
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
company: "Uber",
|
|
2109
|
+
slug: "uber",
|
|
2110
|
+
fallback: "https://www.uber.com/careers/",
|
|
2111
|
+
section: "Travel & Transport",
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
company: "Lyft",
|
|
2115
|
+
slug: "lyft",
|
|
2116
|
+
provider: "greenhouse",
|
|
2117
|
+
section: "Travel & Transport",
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
company: "Hopper",
|
|
2121
|
+
slug: "hopper",
|
|
2122
|
+
provider: "ashby",
|
|
2123
|
+
section: "Travel & Transport",
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
company: "FlixBus",
|
|
2127
|
+
slug: "flixbus",
|
|
2128
|
+
fallback: "https://www.flixbus.com/careers",
|
|
2129
|
+
section: "Travel & Transport",
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
company: "Lime",
|
|
2133
|
+
slug: "lime",
|
|
2134
|
+
fallback: "https://www.li.me/careers",
|
|
2135
|
+
section: "Travel & Transport",
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
company: "Bird",
|
|
2139
|
+
slug: "bird",
|
|
2140
|
+
provider: "greenhouse",
|
|
2141
|
+
section: "Travel & Transport",
|
|
2142
|
+
},
|
|
2143
|
+
// --- Real Estate ---
|
|
2144
|
+
{
|
|
2145
|
+
company: "Zillow",
|
|
2146
|
+
slug: "zillow",
|
|
2147
|
+
fallback: "https://zillow.wd5.myworkdayjobs.com/Zillow_Group_Careers",
|
|
2148
|
+
section: "Real Estate",
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
company: "Opendoor",
|
|
2152
|
+
slug: "opendoor",
|
|
2153
|
+
provider: "greenhouse",
|
|
2154
|
+
section: "Real Estate",
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
company: "Compass",
|
|
2158
|
+
slug: "compass",
|
|
2159
|
+
fallback: "https://www.compass.com/careers/",
|
|
2160
|
+
section: "Real Estate",
|
|
2161
|
+
},
|
|
2162
|
+
{ company: "Loft", slug: "loft", provider: "ashby", section: "Real Estate" },
|
|
2163
|
+
{
|
|
2164
|
+
company: "Pacaso",
|
|
2165
|
+
slug: "pacaso",
|
|
2166
|
+
provider: "greenhouse",
|
|
2167
|
+
section: "Real Estate",
|
|
2168
|
+
},
|
|
2169
|
+
// --- Legal Tech ---
|
|
2170
|
+
{
|
|
2171
|
+
company: "Ironclad",
|
|
2172
|
+
slug: "ironclad",
|
|
2173
|
+
fallback: "https://ironcladapp.com/careers/",
|
|
2174
|
+
section: "Legal Tech",
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
company: "Clio",
|
|
2178
|
+
slug: "clio",
|
|
2179
|
+
fallback: "https://www.clio.com/careers/",
|
|
2180
|
+
section: "Legal Tech",
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
company: "EvenUp",
|
|
2184
|
+
slug: "evenup",
|
|
2185
|
+
fallback: "https://www.evenuplaw.com/careers",
|
|
2186
|
+
section: "Legal Tech",
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
company: "Luminance",
|
|
2190
|
+
slug: "luminance",
|
|
2191
|
+
fallback: "https://www.luminance.com/careers",
|
|
2192
|
+
section: "Legal Tech",
|
|
2193
|
+
},
|
|
2194
|
+
// --- Climate & Energy ---
|
|
2195
|
+
{
|
|
2196
|
+
company: "Watershed",
|
|
2197
|
+
slug: "watershed",
|
|
2198
|
+
provider: "greenhouse",
|
|
2199
|
+
section: "Climate & Energy",
|
|
2200
|
+
},
|
|
2201
|
+
{
|
|
2202
|
+
company: "Arcadia",
|
|
2203
|
+
slug: "arcadia",
|
|
2204
|
+
provider: "lever",
|
|
2205
|
+
section: "Climate & Energy",
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
company: "Palmetto",
|
|
2209
|
+
slug: "palmetto",
|
|
2210
|
+
provider: "greenhouse",
|
|
2211
|
+
section: "Climate & Energy",
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
company: "Commonwealth Fusion Systems",
|
|
2215
|
+
slug: "commonwealthfusionsystems",
|
|
2216
|
+
fallback: "https://cfs.energy/careers",
|
|
2217
|
+
section: "Climate & Energy",
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
company: "Form Energy",
|
|
2221
|
+
slug: "formenergy",
|
|
2222
|
+
provider: "ashby",
|
|
2223
|
+
section: "Climate & Energy",
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
company: "Redwood Materials",
|
|
2227
|
+
slug: "redwoodmaterials",
|
|
2228
|
+
provider: "greenhouse",
|
|
2229
|
+
section: "Climate & Energy",
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
company: "Span",
|
|
2233
|
+
slug: "span",
|
|
2234
|
+
provider: "ashby",
|
|
2235
|
+
section: "Climate & Energy",
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
company: "Solugen",
|
|
2239
|
+
slug: "solugen",
|
|
2240
|
+
fallback: "https://solugen.com/careers",
|
|
2241
|
+
section: "Climate & Energy",
|
|
2242
|
+
},
|
|
2243
|
+
// --- HR & People ---
|
|
2244
|
+
{
|
|
2245
|
+
company: "Lattice",
|
|
2246
|
+
slug: "lattice",
|
|
2247
|
+
provider: "greenhouse",
|
|
2248
|
+
section: "HR & People",
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
company: "BambooHR",
|
|
2252
|
+
slug: "bamboohr",
|
|
2253
|
+
fallback: "https://www.bamboohr.com/careers/",
|
|
2254
|
+
section: "HR & People",
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
company: "Culture Amp",
|
|
2258
|
+
slug: "cultureamp",
|
|
2259
|
+
provider: "greenhouse",
|
|
2260
|
+
section: "HR & People",
|
|
2261
|
+
},
|
|
2262
|
+
{
|
|
2263
|
+
company: "Ashby",
|
|
2264
|
+
slug: "ashby",
|
|
2265
|
+
provider: "ashby",
|
|
2266
|
+
section: "HR & People",
|
|
2267
|
+
},
|
|
2268
|
+
{
|
|
2269
|
+
company: "Greenhouse",
|
|
2270
|
+
slug: "greenhouse",
|
|
2271
|
+
provider: "greenhouse",
|
|
2272
|
+
section: "HR & People",
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
company: "Lever",
|
|
2276
|
+
slug: "lever",
|
|
2277
|
+
provider: "lever",
|
|
2278
|
+
section: "HR & People",
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
company: "Remote",
|
|
2282
|
+
slug: "remote",
|
|
2283
|
+
provider: "greenhouse",
|
|
2284
|
+
section: "HR & People",
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
company: "Oyster HR",
|
|
2288
|
+
slug: "oysterhr",
|
|
2289
|
+
fallback: "https://www.oysterhr.com/careers",
|
|
2290
|
+
section: "HR & People",
|
|
2291
|
+
},
|
|
2292
|
+
// --- Biotech & Life Sciences ---
|
|
2293
|
+
{
|
|
2294
|
+
company: "Benchling",
|
|
2295
|
+
slug: "benchling",
|
|
2296
|
+
provider: "ashby",
|
|
2297
|
+
section: "Biotech & Life Sciences",
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
company: "Ginkgo Bioworks",
|
|
2301
|
+
slug: "ginkgobioworks",
|
|
2302
|
+
provider: "greenhouse",
|
|
2303
|
+
section: "Biotech & Life Sciences",
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
company: "Recursion",
|
|
2307
|
+
slug: "recursion",
|
|
2308
|
+
fallback: "https://www.recursion.com/careers",
|
|
2309
|
+
section: "Biotech & Life Sciences",
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
company: "Insilico Medicine",
|
|
2313
|
+
slug: "insilicomedicine",
|
|
2314
|
+
fallback: "https://insilico.com/careers",
|
|
2315
|
+
section: "Biotech & Life Sciences",
|
|
2316
|
+
},
|
|
2317
|
+
// --- AI Agents & Ops ---
|
|
2318
|
+
{
|
|
2319
|
+
company: "Coframe",
|
|
2320
|
+
slug: "coframe",
|
|
2321
|
+
provider: "ashby",
|
|
2322
|
+
section: "AI Agents & Ops",
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
company: "Ema",
|
|
2326
|
+
slug: "ema",
|
|
2327
|
+
provider: "ashby",
|
|
2328
|
+
section: "AI Agents & Ops",
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
company: "Patronus AI",
|
|
2332
|
+
slug: "patronusai",
|
|
2333
|
+
fallback: "https://www.patronus.ai/careers",
|
|
2334
|
+
section: "AI Agents & Ops",
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
company: "Braintrust",
|
|
2338
|
+
slug: "braintrust",
|
|
2339
|
+
provider: "ashby",
|
|
2340
|
+
section: "AI Agents & Ops",
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
company: "Vellum",
|
|
2344
|
+
slug: "vellum",
|
|
2345
|
+
provider: "ashby",
|
|
2346
|
+
section: "AI Agents & Ops",
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
company: "Arize AI",
|
|
2350
|
+
slug: "arizeai",
|
|
2351
|
+
provider: "greenhouse",
|
|
2352
|
+
section: "AI Agents & Ops",
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
company: "Poe",
|
|
2356
|
+
slug: "poe",
|
|
2357
|
+
fallback: "https://poe.com/careers",
|
|
2358
|
+
section: "AI Agents & Ops",
|
|
2359
|
+
},
|
|
2360
|
+
// --- CRM & Customer Support ---
|
|
2361
|
+
{
|
|
2362
|
+
company: "HubSpot",
|
|
2363
|
+
slug: "hubspot",
|
|
2364
|
+
provider: "greenhouse",
|
|
2365
|
+
section: "CRM & Customer Support",
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
company: "Freshworks",
|
|
2369
|
+
slug: "freshworks",
|
|
2370
|
+
provider: "lever",
|
|
2371
|
+
section: "CRM & Customer Support",
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
company: "Zendesk",
|
|
2375
|
+
slug: "zendesk",
|
|
2376
|
+
fallback: "https://www.zendesk.com/jobs/",
|
|
2377
|
+
section: "CRM & Customer Support",
|
|
2378
|
+
},
|
|
2379
|
+
{
|
|
2380
|
+
company: "ServiceNow",
|
|
2381
|
+
slug: "servicenow",
|
|
2382
|
+
fallback: "https://www.servicenow.com/careers.html",
|
|
2383
|
+
section: "CRM & Customer Support",
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
company: "Front",
|
|
2387
|
+
slug: "front",
|
|
2388
|
+
fallback: "https://front.com/careers",
|
|
2389
|
+
section: "CRM & Customer Support",
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
company: "Vitally",
|
|
2393
|
+
slug: "vitally",
|
|
2394
|
+
provider: "ashby",
|
|
2395
|
+
section: "CRM & Customer Support",
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
company: "Pendo",
|
|
2399
|
+
slug: "pendo",
|
|
2400
|
+
provider: "greenhouse",
|
|
2401
|
+
section: "CRM & Customer Support",
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
company: "Contentsquare",
|
|
2405
|
+
slug: "contentsquare",
|
|
2406
|
+
provider: "lever",
|
|
2407
|
+
section: "CRM & Customer Support",
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
company: "FullStory",
|
|
2411
|
+
slug: "fullstory",
|
|
2412
|
+
provider: "ashby",
|
|
2413
|
+
section: "CRM & Customer Support",
|
|
2414
|
+
},
|
|
2415
|
+
// --- CI/CD & DevOps ---
|
|
2416
|
+
{
|
|
2417
|
+
company: "CircleCI",
|
|
2418
|
+
slug: "circleci",
|
|
2419
|
+
provider: "greenhouse",
|
|
2420
|
+
section: "CI/CD & DevOps",
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
company: "Buildkite",
|
|
2424
|
+
slug: "buildkite",
|
|
2425
|
+
provider: "greenhouse",
|
|
2426
|
+
section: "CI/CD & DevOps",
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
company: "Harness",
|
|
2430
|
+
slug: "harness",
|
|
2431
|
+
fallback: "https://www.harness.io/company/careers",
|
|
2432
|
+
section: "CI/CD & DevOps",
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
company: "Spacelift",
|
|
2436
|
+
slug: "spacelift",
|
|
2437
|
+
fallback: "https://spacelift.io/careers",
|
|
2438
|
+
section: "CI/CD & DevOps",
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
company: "env0",
|
|
2442
|
+
slug: "env0",
|
|
2443
|
+
fallback: "https://www.env0.com/careers",
|
|
2444
|
+
section: "CI/CD & DevOps",
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
company: "Pulumi",
|
|
2448
|
+
slug: "pulumi",
|
|
2449
|
+
fallback: "https://www.pulumi.com/careers/",
|
|
2450
|
+
section: "CI/CD & DevOps",
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
company: "Akuity",
|
|
2454
|
+
slug: "akuity",
|
|
2455
|
+
provider: "greenhouse",
|
|
2456
|
+
section: "CI/CD & DevOps",
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
company: "Gitpod",
|
|
2460
|
+
slug: "gitpod",
|
|
2461
|
+
fallback: "https://www.gitpod.io/careers",
|
|
2462
|
+
section: "CI/CD & DevOps",
|
|
2463
|
+
},
|
|
2464
|
+
{
|
|
2465
|
+
company: "Coder",
|
|
2466
|
+
slug: "coder",
|
|
2467
|
+
provider: "ashby",
|
|
2468
|
+
section: "CI/CD & DevOps",
|
|
2469
|
+
},
|
|
2470
|
+
// --- Frontend Frameworks & Tooling ---
|
|
2471
|
+
{
|
|
2472
|
+
company: "Astro",
|
|
2473
|
+
slug: "astro",
|
|
2474
|
+
fallback: "https://astro.build/careers",
|
|
2475
|
+
section: "Frontend Frameworks & Tooling",
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
company: "SolidJS",
|
|
2479
|
+
slug: "solidjs",
|
|
2480
|
+
fallback: "https://www.solidjs.com/careers",
|
|
2481
|
+
section: "Frontend Frameworks & Tooling",
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
company: "Chromatic",
|
|
2485
|
+
slug: "chromatic",
|
|
2486
|
+
provider: "ashby",
|
|
2487
|
+
section: "Frontend Frameworks & Tooling",
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
company: "Builder.io",
|
|
2491
|
+
slug: "builder",
|
|
2492
|
+
provider: "greenhouse",
|
|
2493
|
+
section: "Frontend Frameworks & Tooling",
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
company: "StackBlitz",
|
|
2497
|
+
slug: "stackblitz",
|
|
2498
|
+
provider: "greenhouse",
|
|
2499
|
+
section: "Frontend Frameworks & Tooling",
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
company: "CodeSandbox",
|
|
2503
|
+
slug: "codesandbox",
|
|
2504
|
+
fallback: "https://codesandbox.io/careers",
|
|
2505
|
+
section: "Frontend Frameworks & Tooling",
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
company: "Storyblok",
|
|
2509
|
+
slug: "storyblok",
|
|
2510
|
+
provider: "greenhouse",
|
|
2511
|
+
section: "Frontend Frameworks & Tooling",
|
|
2512
|
+
},
|
|
2513
|
+
{
|
|
2514
|
+
company: "Hygraph",
|
|
2515
|
+
slug: "hygraph",
|
|
2516
|
+
fallback: "https://hygraph.com/careers",
|
|
2517
|
+
section: "Frontend Frameworks & Tooling",
|
|
2518
|
+
},
|
|
2519
|
+
// --- Auth & Permissions ---
|
|
2520
|
+
{
|
|
2521
|
+
company: "Descope",
|
|
2522
|
+
slug: "descope",
|
|
2523
|
+
fallback: "https://www.descope.com/careers",
|
|
2524
|
+
section: "Auth & Permissions",
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
company: "FusionAuth",
|
|
2528
|
+
slug: "fusionauth",
|
|
2529
|
+
fallback: "https://fusionauth.io/careers",
|
|
2530
|
+
section: "Auth & Permissions",
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
company: "PropelAuth",
|
|
2534
|
+
slug: "propelauth",
|
|
2535
|
+
fallback: "https://www.propelauth.com/careers",
|
|
2536
|
+
section: "Auth & Permissions",
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
company: "Permit.io",
|
|
2540
|
+
slug: "permitio",
|
|
2541
|
+
fallback: "https://www.permit.io/careers",
|
|
2542
|
+
section: "Auth & Permissions",
|
|
2543
|
+
},
|
|
2544
|
+
{
|
|
2545
|
+
company: "Cerbos",
|
|
2546
|
+
slug: "cerbos",
|
|
2547
|
+
fallback: "https://cerbos.dev/careers",
|
|
2548
|
+
section: "Auth & Permissions",
|
|
2549
|
+
},
|
|
2550
|
+
// --- Supply Chain & Logistics ---
|
|
2551
|
+
{
|
|
2552
|
+
company: "project44",
|
|
2553
|
+
slug: "project44",
|
|
2554
|
+
provider: "greenhouse",
|
|
2555
|
+
section: "Supply Chain & Logistics",
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
company: "FourKites",
|
|
2559
|
+
slug: "fourkites",
|
|
2560
|
+
provider: "greenhouse",
|
|
2561
|
+
section: "Supply Chain & Logistics",
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
company: "ShipBob",
|
|
2565
|
+
slug: "shipbob",
|
|
2566
|
+
fallback: "https://www.shipbob.com/careers/",
|
|
2567
|
+
section: "Supply Chain & Logistics",
|
|
2568
|
+
},
|
|
2569
|
+
{
|
|
2570
|
+
company: "Locus Robotics",
|
|
2571
|
+
slug: "locusrobotics",
|
|
2572
|
+
provider: "greenhouse",
|
|
2573
|
+
section: "Supply Chain & Logistics",
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
company: "Gatik",
|
|
2577
|
+
slug: "gatik",
|
|
2578
|
+
fallback: "https://gatik.ai/careers/",
|
|
2579
|
+
section: "Supply Chain & Logistics",
|
|
2580
|
+
},
|
|
2581
|
+
// --- Publishing & Newsletters ---
|
|
2582
|
+
{
|
|
2583
|
+
company: "Ghost",
|
|
2584
|
+
slug: "ghost",
|
|
2585
|
+
provider: "greenhouse",
|
|
2586
|
+
section: "Publishing & Newsletters",
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
company: "Beehiiv",
|
|
2590
|
+
slug: "beehiiv",
|
|
2591
|
+
fallback: "https://www.beehiiv.com/careers",
|
|
2592
|
+
section: "Publishing & Newsletters",
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
company: "ConvertKit",
|
|
2596
|
+
slug: "convertkit",
|
|
2597
|
+
fallback: "https://convertkit.com/careers",
|
|
2598
|
+
section: "Publishing & Newsletters",
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
company: "Buttondown",
|
|
2602
|
+
slug: "buttondown",
|
|
2603
|
+
fallback: "https://buttondown.com/careers",
|
|
2604
|
+
section: "Publishing & Newsletters",
|
|
2605
|
+
},
|
|
2606
|
+
// --- Freelance & Gig ---
|
|
2607
|
+
{
|
|
2608
|
+
company: "Thumbtack",
|
|
2609
|
+
slug: "thumbtack",
|
|
2610
|
+
provider: "greenhouse",
|
|
2611
|
+
section: "Freelance & Gig",
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
company: "TaskRabbit",
|
|
2615
|
+
slug: "taskrabbit",
|
|
2616
|
+
provider: "greenhouse",
|
|
2617
|
+
section: "Freelance & Gig",
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
company: "Fiverr",
|
|
2621
|
+
slug: "fiverr",
|
|
2622
|
+
fallback: "https://www.fiverr.com/jobs",
|
|
2623
|
+
section: "Freelance & Gig",
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
company: "Upwork",
|
|
2627
|
+
slug: "upwork",
|
|
2628
|
+
provider: "greenhouse",
|
|
2629
|
+
section: "Freelance & Gig",
|
|
2630
|
+
},
|
|
2631
|
+
{
|
|
2632
|
+
company: "Toptal",
|
|
2633
|
+
slug: "toptal",
|
|
2634
|
+
provider: "lever",
|
|
2635
|
+
section: "Freelance & Gig",
|
|
2636
|
+
},
|
|
2637
|
+
// --- Food Tech ---
|
|
2638
|
+
{
|
|
2639
|
+
company: "Impossible Foods",
|
|
2640
|
+
slug: "impossible-foods",
|
|
2641
|
+
provider: "ashby",
|
|
2642
|
+
section: "Food Tech",
|
|
2643
|
+
},
|
|
2644
|
+
{
|
|
2645
|
+
company: "Apeel Sciences",
|
|
2646
|
+
slug: "apeelsciences",
|
|
2647
|
+
fallback: "https://www.apeel.com/careers",
|
|
2648
|
+
section: "Food Tech",
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
company: "Bowery Farming",
|
|
2652
|
+
slug: "boweryfarming",
|
|
2653
|
+
fallback: "https://boweryfarming.com/careers",
|
|
2654
|
+
section: "Food Tech",
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
company: "Plenty",
|
|
2658
|
+
slug: "plenty",
|
|
2659
|
+
fallback: "https://www.plenty.ag/careers/",
|
|
2660
|
+
section: "Food Tech",
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
company: "NotCo",
|
|
2664
|
+
slug: "notco",
|
|
2665
|
+
fallback: "https://notco.com/careers",
|
|
2666
|
+
section: "Food Tech",
|
|
2667
|
+
},
|
|
2668
|
+
// --- Defense & Government ---
|
|
2669
|
+
{
|
|
2670
|
+
company: "Rebellion Defense",
|
|
2671
|
+
slug: "rebelliondefense",
|
|
2672
|
+
provider: "greenhouse",
|
|
2673
|
+
section: "Defense & Government",
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
company: "Second Front Systems",
|
|
2677
|
+
slug: "secondfrontsystems",
|
|
2678
|
+
provider: "lever",
|
|
2679
|
+
section: "Defense & Government",
|
|
2680
|
+
},
|
|
2681
|
+
// --- Web3 & Crypto ---
|
|
2682
|
+
{
|
|
2683
|
+
company: "Alchemy",
|
|
2684
|
+
slug: "alchemy",
|
|
2685
|
+
provider: "greenhouse",
|
|
2686
|
+
section: "Web3 & Crypto",
|
|
2687
|
+
},
|
|
2688
|
+
{
|
|
2689
|
+
company: "Chainalysis",
|
|
2690
|
+
slug: "chainalysis",
|
|
2691
|
+
fallback: "https://www.chainalysis.com/careers/",
|
|
2692
|
+
section: "Web3 & Crypto",
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
company: "Consensys",
|
|
2696
|
+
slug: "consensys",
|
|
2697
|
+
provider: "greenhouse",
|
|
2698
|
+
section: "Web3 & Crypto",
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
company: "Uniswap Labs",
|
|
2702
|
+
slug: "uniswap",
|
|
2703
|
+
provider: "ashby",
|
|
2704
|
+
section: "Web3 & Crypto",
|
|
2705
|
+
},
|
|
2706
|
+
{
|
|
2707
|
+
company: "Offchain Labs",
|
|
2708
|
+
slug: "offchainlabs",
|
|
2709
|
+
provider: "lever",
|
|
2710
|
+
section: "Web3 & Crypto",
|
|
2711
|
+
},
|
|
2712
|
+
// --- Insurance ---
|
|
2713
|
+
{
|
|
2714
|
+
company: "Lemonade",
|
|
2715
|
+
slug: "lemonade",
|
|
2716
|
+
provider: "ashby",
|
|
2717
|
+
section: "Insurance",
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
company: "Root Insurance",
|
|
2721
|
+
slug: "rootinsurance",
|
|
2722
|
+
fallback: "https://www.joinroot.com/careers/",
|
|
2723
|
+
section: "Insurance",
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
company: "Coalition",
|
|
2727
|
+
slug: "coalition",
|
|
2728
|
+
provider: "greenhouse",
|
|
2729
|
+
section: "Insurance",
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
company: "Hippo",
|
|
2733
|
+
slug: "hippo",
|
|
2734
|
+
fallback: "https://www.hippo.com/careers",
|
|
2735
|
+
section: "Insurance",
|
|
2736
|
+
},
|
|
2737
|
+
// --- Construction & Real Estate Tech ---
|
|
2738
|
+
{
|
|
2739
|
+
company: "Procore",
|
|
2740
|
+
slug: "procore",
|
|
2741
|
+
fallback: "https://www.procore.com/careers",
|
|
2742
|
+
section: "Construction & Real Estate Tech",
|
|
2743
|
+
},
|
|
2744
|
+
{
|
|
2745
|
+
company: "Built",
|
|
2746
|
+
slug: "built",
|
|
2747
|
+
fallback: "https://www.getbuilt.com/careers",
|
|
2748
|
+
section: "Construction & Real Estate Tech",
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
company: "Matterport",
|
|
2752
|
+
slug: "matterport",
|
|
2753
|
+
fallback: "https://matterport.com/careers",
|
|
2754
|
+
section: "Construction & Real Estate Tech",
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
company: "Autodesk",
|
|
2758
|
+
slug: "autodesk",
|
|
2759
|
+
fallback: "https://www.autodesk.com/careers",
|
|
2760
|
+
section: "Construction & Real Estate Tech",
|
|
2761
|
+
},
|
|
2762
|
+
// --- Testing & QA ---
|
|
2763
|
+
{
|
|
2764
|
+
company: "LambdaTest",
|
|
2765
|
+
slug: "lambdatest",
|
|
2766
|
+
fallback: "https://www.lambdatest.com/careers",
|
|
2767
|
+
section: "Testing & QA",
|
|
2768
|
+
},
|
|
2769
|
+
{
|
|
2770
|
+
company: "BrowserStack",
|
|
2771
|
+
slug: "browserstack",
|
|
2772
|
+
fallback: "https://www.browserstack.com/careers",
|
|
2773
|
+
section: "Testing & QA",
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
company: "Sauce Labs",
|
|
2777
|
+
slug: "saucelabs",
|
|
2778
|
+
provider: "greenhouse",
|
|
2779
|
+
section: "Testing & QA",
|
|
2780
|
+
},
|
|
2781
|
+
// --- Warehouse & Industrial Robotics ---
|
|
2782
|
+
{
|
|
2783
|
+
company: "Symbotic",
|
|
2784
|
+
slug: "symbotic",
|
|
2785
|
+
fallback: "https://www.symbotic.com/careers/",
|
|
2786
|
+
section: "Warehouse & Industrial Robotics",
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
company: "Vecna Robotics",
|
|
2790
|
+
slug: "vecnarobotics",
|
|
2791
|
+
fallback: "https://www.vecnarobotics.com/careers",
|
|
2792
|
+
section: "Warehouse & Industrial Robotics",
|
|
2793
|
+
},
|
|
2794
|
+
{
|
|
2795
|
+
company: "6 River Systems",
|
|
2796
|
+
slug: "6riversystems",
|
|
2797
|
+
fallback: "https://6river.com/careers/",
|
|
2798
|
+
section: "Warehouse & Industrial Robotics",
|
|
2799
|
+
},
|
|
2800
|
+
// --- AI Writing & Productivity ---
|
|
2801
|
+
{
|
|
2802
|
+
company: "Grammarly",
|
|
2803
|
+
slug: "grammarly",
|
|
2804
|
+
fallback: "https://www.grammarly.com/careers",
|
|
2805
|
+
section: "AI Writing & Productivity",
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
company: "Otter.ai",
|
|
2809
|
+
slug: "otterai",
|
|
2810
|
+
provider: "greenhouse",
|
|
2811
|
+
section: "AI Writing & Productivity",
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
company: "Descript",
|
|
2815
|
+
slug: "descript",
|
|
2816
|
+
provider: "greenhouse",
|
|
2817
|
+
section: "AI Writing & Productivity",
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
company: "Tome",
|
|
2821
|
+
slug: "tome",
|
|
2822
|
+
fallback: "https://tome.app/careers",
|
|
2823
|
+
section: "AI Writing & Productivity",
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
company: "Gamma",
|
|
2827
|
+
slug: "gamma",
|
|
2828
|
+
provider: "ashby",
|
|
2829
|
+
section: "AI Writing & Productivity",
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
company: "Beautiful.ai",
|
|
2833
|
+
slug: "beautifulai",
|
|
2834
|
+
provider: "greenhouse",
|
|
2835
|
+
section: "AI Writing & Productivity",
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
company: "Krisp",
|
|
2839
|
+
slug: "krisp",
|
|
2840
|
+
fallback: "https://krisp.ai/careers/",
|
|
2841
|
+
section: "AI Writing & Productivity",
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
company: "AssemblyAI",
|
|
2845
|
+
slug: "assemblyai",
|
|
2846
|
+
provider: "greenhouse",
|
|
2847
|
+
section: "AI Writing & Productivity",
|
|
2848
|
+
},
|
|
2849
|
+
];
|