2026-01-20 18:08:11 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > Job Board< / title >
< style >
:root {
--bg: #1a1a1a;
--fg: #e0e0e0;
--accent: #4a9eff;
--muted: #888;
--border: #333;
--highlight: #2a2a2a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", monospace;
font-size: 14px;
line-height: 1.6;
background: var(--bg);
color: var(--fg);
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
header {
border-bottom: 1px solid var(--border);
padding-bottom: 15px;
margin-bottom: 20px;
}
h1 {
font-size: 18px;
font-weight: normal;
color: var(--accent);
}
.meta {
color: var(--muted);
font-size: 12px;
margin-top: 5px;
}
.filters {
margin: 15px 0;
padding: 10px;
background: var(--highlight);
border-radius: 4px;
}
.filters input {
background: var(--bg);
border: 1px solid var(--border);
color: var(--fg);
padding: 8px 12px;
width: 100%;
max-width: 400px;
font-family: inherit;
font-size: 14px;
border-radius: 4px;
}
.filters input:focus {
outline: none;
border-color: var(--accent);
}
.stats {
display: flex;
gap: 20px;
margin: 10px 0;
font-size: 12px;
color: var(--muted);
}
.company {
margin-bottom: 25px;
}
.company-header {
display: flex;
align-items: baseline;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid var(--border);
cursor: pointer;
}
.company-header:hover {
color: var(--accent);
}
.company-name {
font-weight: bold;
color: var(--accent);
}
.company-count {
color: var(--muted);
font-size: 12px;
}
.jobs {
margin-left: 0;
}
.job {
padding: 6px 0;
border-bottom: 1px solid var(--border);
display: flex;
justify-content: space-between;
gap: 20px;
align-items: baseline;
}
.job:last-child {
border-bottom: none;
}
.job:hover {
background: var(--highlight);
}
.job-title {
overflow: hidden;
text-overflow: ellipsis;
}
.job-title a {
color: var(--fg);
text-decoration: none;
}
.job-title a:hover {
color: var(--accent);
text-decoration: underline;
}
.job-location {
color: var(--muted);
font-size: 12px;
text-align: right;
white-space: nowrap;
flex-shrink: 0;
}
.tag {
display: inline-block;
padding: 2px 6px;
border-radius: 3px;
font-size: 11px;
margin-left: 5px;
}
.tag-remote {
background: #1a4a1a;
color: #4ade80;
}
.tag-canada {
background: #4a1a1a;
color: #f87171;
}
.tag-berlin {
background: #4a4a1a;
color: #facc15;
}
2026-01-20 18:27:17 +00:00
.tag-emea {
background: #1a3a4a;
color: #60a5fa;
}
.tag-americas {
background: #3a1a4a;
color: #c084fc;
}
.tag-worldwide {
background: #1a4a3a;
color: #34d399;
}
2026-01-20 18:08:11 +00:00
.hidden {
display: none;
}
.toc {
margin: 20px 0;
padding: 15px;
background: var(--highlight);
border-radius: 4px;
}
.toc-title {
font-size: 12px;
color: var(--muted);
margin-bottom: 10px;
}
.toc-links {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.toc-links a {
color: var(--accent);
text-decoration: none;
font-size: 13px;
}
.toc-links a:hover {
text-decoration: underline;
}
2026-01-20 18:27:17 +00:00
.toc-links .empty {
color: var(--muted);
cursor: default;
}
.toc-links .empty:hover {
text-decoration: none;
}
2026-01-20 18:08:11 +00:00
.filter-buttons {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.filter-btn {
background: var(--bg);
border: 1px solid var(--border);
color: var(--muted);
padding: 4px 12px;
font-family: inherit;
font-size: 12px;
border-radius: 4px;
cursor: pointer;
transition: all 0.15s;
}
.filter-btn:hover {
border-color: var(--accent);
color: var(--fg);
}
.filter-btn.active {
background: var(--accent);
border-color: var(--accent);
color: var(--bg);
}
< / style >
< / head >
< body >
< header >
< h1 > $ job-board< / h1 >
< div class = "meta" >
2026-01-20 18:27:17 +00:00
Last updated: 2026-01-20 13:24:03 |
421 jobs | Monitoring 28 companies
2026-01-20 18:08:11 +00:00
< / div >
< / header >
< div class = "filters" >
< input type = "text" id = "search" placeholder = "Filter jobs... (e.g. 'senior engineer', 'remote', 'canada')" autofocus >
< div class = "filter-buttons" >
< button class = "filter-btn" data-filter = "" > All< / button >
< button class = "filter-btn" data-filter = "engineer" > Engineering< / button >
< button class = "filter-btn" data-filter = "senior engineer" > Senior Eng< / button >
< button class = "filter-btn" data-filter = "staff principal" > Staff+< / button >
< button class = "filter-btn" data-filter = "manager director" > Management< / button >
< button class = "filter-btn" data-filter = "product" > Product< / button >
< button class = "filter-btn" data-filter = "design" > Design< / button >
< button class = "filter-btn" data-filter = "security" > Security< / button >
< button class = "filter-btn" data-filter = "remote" > Remote< / button >
2026-01-20 18:27:17 +00:00
< button class = "filter-btn" data-filter = "canada" > Canada< / button >
< button class = "filter-btn" data-filter = "germany" > Germany< / button >
< button class = "filter-btn" data-filter = "emea" > EMEA< / button >
< button class = "filter-btn" data-filter = "americas" > Americas< / button >
< button class = "filter-btn" data-filter = "worldwide" > Worldwide< / button >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "stats" >
2026-01-20 18:27:17 +00:00
< span id = "visible-count" > 421 jobs shown< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< div class = "toc" >
< div class = "toc-title" > Jump to company:< / div >
< div class = "toc-links" >
< a href = "#1password" > 1Password (21)< / a >
2026-01-20 18:27:17 +00:00
< a href = "#automattic" > Automattic (6)< / a >
< span class = "empty" > Bitwarden (0)< / span >
< a href = "#canonical" > Canonical (141)< / a >
< a href = "#clickhouse" > ClickHouse (22)< / a >
< span class = "empty" > Cloudflare (0)< / span >
< span class = "empty" > CockroachLabs (0)< / span >
< a href = "#datadog" > Datadog (2)< / a >
< span class = "empty" > Discord (0)< / span >
< a href = "#dropbox" > Dropbox (34)< / a >
< a href = "#duckduckgo" > DuckDuckGo (4)< / a >
< span class = "empty" > Fastly (0)< / span >
< a href = "#gitlab" > GitLab (45)< / a >
< a href = "#grafanalabs" > GrafanaLabs (12)< / a >
2026-01-20 18:08:11 +00:00
< a href = "#honeycomb" > Honeycomb (2)< / a >
2026-01-20 18:27:17 +00:00
< a href = "#jetbrains" > JetBrains (58)< / a >
< span class = "empty" > Materialize (0)< / span >
< a href = "#pingcap" > PingCAP (1)< / a >
2026-01-20 18:08:11 +00:00
< a href = "#railway" > Railway (2)< / a >
2026-01-20 18:27:17 +00:00
< span class = "empty" > Render (0)< / span >
2026-01-20 18:08:11 +00:00
< a href = "#rerun" > Rerun (4)< / a >
2026-01-20 18:27:17 +00:00
< a href = "#sentry" > Sentry (7)< / a >
< span class = "empty" > Signal (0)< / span >
< span class = "empty" > Sourcegraph (0)< / span >
< a href = "#stripe" > Stripe (28)< / a >
2026-01-20 18:08:11 +00:00
< a href = "#supabase" > Supabase (19)< / a >
< a href = "#tailscale" > Tailscale (12)< / a >
2026-01-20 18:27:17 +00:00
< a href = "#tigerdata" > TigerData (1)< / a >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< main id = "job-list" >
< div class = "company" id = "1password" >
< div class = "company-header" >
< span class = "company-name" > 1Password< / span >
< span class = "company-count" > 21 positions< / span >
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "build engineer remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/f5203cfa-3112-4b71-b510-04b8f9cada2f" target = "_blank" > Build Engineer < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer, backend remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/8481df25-44f3-4a9b-b3ce-ec244276db31" target = "_blank" > Developer, Backend< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer, enterprise ready remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/d9d59de0-430a-4412-ae96-cbb2c8805cc2" target = "_blank" > Developer, Enterprise Ready< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "director, product management - platforms remote (united states | canada) product remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/7964085d-9682-47f9-8061-df4a18a5248e" target = "_blank" > Director, Product Management - Platforms< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "director, security research remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/dd4d2fdf-fb4f-4b0d-b8af-40c953358345" target = "_blank" > Director, Security Research< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, product engineering remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/eef5c8da-33b5-4120-943e-cbdf7f08fa42" target = "_blank" > Engineering Manager, Product Engineering< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "manager, security incident response remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/4244dbf0-de55-4b87-8d1b-7ff502a2252a" target = "_blank" > Manager, Security Incident Response< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal developer, ai & developer team remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/89b98aff-a5d0-496f-8a62-53fcc91029e7" target = "_blank" > Principal Developer, AI & Developer Team< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal product marketing manager, developer remote (united states | canada) product remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/b5c6d8bd-a522-435f-9e4b-cb854225a156" target = "_blank" > Principal Product Marketing Manager, Developer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security engineer, corporate security remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/34aea01c-fc26-4f06-b138-c5994545efc6" target = "_blank" > Security Engineer, Corporate Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior developer, data security remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/a9f9112e-0658-437a-b1cf-baa3ee8010cc" target = "_blank" > Senior Developer, Data Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior director, developer platform remote (united states | canada) g&a remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/64b2e82b-0230-4ff8-8c41-05e301db3d88" target = "_blank" > Senior Director, Developer Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior it engineer remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/8edbaf88-85a6-4051-bde8-41bf3d336dc0" target = "_blank" > Senior IT Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security engineer, application security remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/66e2df4b-8036-41a0-9e2d-72f37451cae0" target = "_blank" > Senior Security Engineer, Application Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security engineer, detection and response remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/2951e57f-d0c1-4cdc-b0b7-ed62075aaf9a" target = "_blank" > Senior Security Engineer, Detection and Response< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security engineer, grc automation remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/8880085e-5005-4dcd-b186-58f42e6a1766" target = "_blank" > Senior Security Engineer, GRC Automation< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security engineer, threat intelligence remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/7323da26-15a1-46f5-b268-1b5e91ed7158" target = "_blank" > Senior Security Engineer, Threat Intelligence< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "solutions engineer, commercial remote (united states | canada) gtm remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/42d46688-3661-45c1-a195-8627b809c59b" target = "_blank" > Solutions Engineer, Commercial< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff developer, authentication enablement remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/6ca48ccd-07c1-47fd-97c4-7597228a6d2a" target = "_blank" > Staff Developer, Authentication Enablement< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff developer, enterprise ready remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/0a2c4d03-8e64-4f50-a743-ce0d1b69df53" target = "_blank" > Staff Developer, Enterprise Ready< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff it engineer, enterprise tools remote (united states | canada) technology remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/1password/b6b2fd3f-c7df-45a8-88f5-a8f396783791" target = "_blank" > Staff IT Engineer, Enterprise Tools< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "automattic" >
< div class = "company-header" >
< span class = "company-name" > Automattic< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 6 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "experienced software engineer remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/5862239" target = "_blank" > Experienced Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "happiness engineer – customer support & success remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/6216089" target = "_blank" > Happiness Engineer – Customer Support & Success< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "merchant sales & solution engineer remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/7475297" target = "_blank" > Merchant Sales & Solution Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior systems engineer remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/5980233" target = "_blank" > Senior Systems Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "solutions engineer - wordpress vip remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/6382273" target = "_blank" > Solutions Engineer - WordPress VIP< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff test engineer remote remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/automatticcareers/jobs/7158820" target = "_blank" > Staff Test Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
< / div >
< / div >
< div class = "company" id = "canonical" >
< div class = "company-header" >
< span class = "company-name" > Canonical< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 141 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "alliances field engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3433732" target = "_blank" > Alliances Field Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "associate linux support engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6448444" target = "_blank" > Associate Linux Support Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "c++/rust graphics and windowing system software engineer - mir home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4439935" target = "_blank" > C++/Rust Graphics and Windowing System Software Engineer - Mir< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "c, golang software engineer working on dqlite, a raft extension for sqlite home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4124053" target = "_blank" > C, Golang Software Engineer working on dqlite, a Raft extension for SQLite< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cloud engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4676649" target = "_blank" > Cloud Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cloud field engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6132532" target = "_blank" > Cloud Field Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cloud field engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7410479" target = "_blank" > Cloud Field Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cloud support engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2456563" target = "_blank" > Cloud Support Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "community engineer (multiple roles and seniority levels) home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3275433" target = "_blank" > Community Engineer (multiple roles and seniority levels)< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "containerization & virtualisation engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5172247" target = "_blank" > Containerization & Virtualisation Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer relations engineer home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5143011" target = "_blank" > Developer Relations Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "distributed systems testing software engineer, python / go home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2969042" target = "_blank" > Distributed Systems Testing Software Engineer, Python / Go< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "embedded & desktop linux systems engineer - optimisation home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3821346" target = "_blank" > Embedded & Desktop Linux Systems Engineer - Optimisation< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "embedded linux field engineer for devices/iot home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3362765" target = "_blank" > Embedded Linux Field Engineer for Devices/IoT< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "embedded linux field engineering manager (americas only) home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3756791" target = "_blank" > Embedded Linux Field Engineering Manager (Americas only)< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "embedded linux senior software engineer - optimisation home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6189337" target = "_blank" > Embedded Linux Senior Software Engineer - Optimisation< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5188002" target = "_blank" > Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - app stores home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5127399" target = "_blank" > Engineering Manager - App Stores< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - apparmor home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6215502" target = "_blank" > Engineering Manager - AppArmor< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - build and release infrastructure home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2290636" target = "_blank" > Engineering Manager - Build and Release Infrastructure< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - data platform home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5667860" target = "_blank" > Engineering Manager - Data Platform< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - mlops & analytics home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4810491" target = "_blank" > Engineering Manager - MLOps & Analytics< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - public cloud, python, golang home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4144793" target = "_blank" > Engineering Manager - Public Cloud, Python, Golang< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - python and k8s home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3740499" target = "_blank" > Engineering Manager - Python and K8s< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - security standards and hardening home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6215514" target = "_blank" > Engineering Manager - Security Standards and Hardening< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - solutions engineering home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3313558" target = "_blank" > Engineering Manager - Solutions Engineering< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - ubuntu core home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5612564" target = "_blank" > Engineering Manager - Ubuntu Core< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - ubuntu security home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4192903" target = "_blank" > Engineering Manager - Ubuntu Security< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - web home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4754075" target = "_blank" > Engineering Manager - Web< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager for iam (identity and access management) home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5869156" target = "_blank" > Engineering Manager for IAM (Identity and Access Management)< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3657756" target = "_blank" > Engineering Manager, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, managed services home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4676823" target = "_blank" > Engineering Manager, Managed Services< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager- ceph & distributed storage home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4175808" target = "_blank" > Engineering Manager- Ceph & Distributed Storage< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "gitops engineering manager home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5894889" target = "_blank" > GitOps Engineering Manager< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "golang engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5146709" target = "_blank" > Golang Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "golang engineering manager, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5692058" target = "_blank" > Golang Engineering Manager, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "golang system software engineer - containers / virtualisation home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4960407" target = "_blank" > Golang System Software Engineer - Containers / Virtualisation< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "graduate software engineer, open source and linux, canonical ubuntu home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7471759" target = "_blank" > Graduate Software Engineer, Open Source and Linux, Canonical Ubuntu< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "hpc software engineer home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5291040" target = "_blank" > HPC Software Engineer< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "head of security operations home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4209375" target = "_blank" > Head of Security Operations< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "iot data engineer home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4581200" target = "_blank" > IoT Data Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "juju software engineer (go) home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6426388" target = "_blank" > Juju Software Engineer (Go)< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "junior cloud field engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6600932" target = "_blank" > Junior Cloud Field Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "junior data engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6642917" target = "_blank" > Junior Data Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "junior linux kernel engineer - ubuntu home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5370815" target = "_blank" > Junior Linux Kernel Engineer - Ubuntu< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "junior software developer - observability home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2166631" target = "_blank" > Junior Software Developer - Observability< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "junior ubuntu software engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6707669" target = "_blank" > Junior Ubuntu Software Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "kernel build automation engineer - ubuntu linux home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7334725" target = "_blank" > Kernel Build Automation Engineer - Ubuntu Linux< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "lead data governance engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6394147" target = "_blank" > Lead Data Governance Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "lead golang software engineer, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4827747" target = "_blank" > Lead Golang Software Engineer, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "lead linux kernel engineer - ubuntu home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6010955" target = "_blank" > Lead Linux Kernel Engineer - Ubuntu< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "lead python software engineer, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6401160" target = "_blank" > Lead Python Software Engineer, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux cryptography and security engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4717512" target = "_blank" > Linux Cryptography and Security Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux desktop & devices support engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5169198" target = "_blank" > Linux Desktop & Devices Support Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux devices software engineer home based - worldwide; office based - taipei, taiwan worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5140562" target = "_blank" > Linux Devices Software Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux engineering manager - optimisation for latest hardware home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3666345" target = "_blank" > Linux Engineering Manager - Optimisation for Latest Hardware < / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux kernel engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5151903" target = "_blank" > Linux Kernel Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux platform integration - ubuntu systems senior engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6062471" target = "_blank" > Linux Platform Integration - Ubuntu Systems Senior Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux software engineer - ubuntu for next-gen silicon (multiple roles and seniority levels) home based - americas; home based - apac; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7432750" target = "_blank" > Linux Software Engineer - Ubuntu for Next-Gen Silicon (multiple roles and seniority levels)< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "linux devices software engineer - snapd home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4394058" target = "_blank" > Linux devices software engineer - snapd< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "maas data center infrastructure engineer (toronto area) office based - toronto, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6177790" target = "_blank" > MAAS Data Center Infrastructure Engineer (Toronto area)< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "maas systems engineer - python (toronto area) office based - toronto, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6177794" target = "_blank" > MAAS Systems Engineer - Python (Toronto area)< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "mlops field engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6783943" target = "_blank" > MLOps Field Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "microservices engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5191982" target = "_blank" > Microservices Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "observability engineering manager home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5739500" target = "_blank" > Observability Engineering Manager< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "open source networking software engineer - tor switch / smartnic / dpu home based - americas; home based - apac; office based - beijing, china; office based - taipei, taiwan americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5660661" target = "_blank" > Open Source Networking Software Engineer - ToR Switch / SmartNIC / DPU < / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "openstack engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4676858" target = "_blank" > OpenStack Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "performance engineer - open source home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5792361" target = "_blank" > Performance Engineer - Open Source< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "product manager - security home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6643483" target = "_blank" > Product Manager - Security< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "python engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5143074" target = "_blank" > Python Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "python engineering manager, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5692059" target = "_blank" > Python Engineering Manager, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "python software engineer - ubuntu hardware certification team home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3658005" target = "_blank" > Python Software Engineer - Ubuntu Hardware Certification Team< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "python and kubernetes software engineer - data, workflows, ai/ml & analytics home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5703396" target = "_blank" > Python and Kubernetes Software Engineer - Data, Workflows, AI/ML & Analytics< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "revenue accounting manager - software industry, ifrs 15, netsuite home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5830044" target = "_blank" > Revenue Accounting Manager - Software Industry, IFRS 15, NetSuite< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "rust engineering lead - linux and open source home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5833620" target = "_blank" > Rust Engineering Lead - Linux and Open Source< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "salesforce/netsuite engineering manager, commercial systems home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4582078" target = "_blank" > Salesforce/NetSuite Engineering Manager, Commercial Systems< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security risk management specialist home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5422575" target = "_blank" > Security Risk Management Specialist< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security software engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5146620" target = "_blank" > Security Software Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior design manager (infrastructure) home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5995321" target = "_blank" > Senior Design Manager (Infrastructure)< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior growth engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5307612" target = "_blank" > Senior Growth Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior juju software engineer (go) home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5566674" target = "_blank" > Senior Juju Software Engineer (Go)< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security operations engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5391149" target = "_blank" > Senior Security Operations Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior site reliability / gitops engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5517891" target = "_blank" > Senior Site Reliability / Gitops Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior site reliability engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3029798" target = "_blank" > Senior Site Reliability Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer (backend) home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3142044" target = "_blank" > Senior Software Engineer (Backend)< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - maas home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3003389" target = "_blank" > Senior Software Engineer - MAAS< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - python/mongodb home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5937947" target = "_blank" > Senior Software Engineer - Python/MongoDB< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior ubuntu embedded iot system engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4706463" target = "_blank" > Senior Ubuntu Embedded IoT System Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior web engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4417916" target = "_blank" > Senior Web Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior/staff/principal engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5142887" target = "_blank" > Senior/Staff/Principal Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "site reliability / gitops engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/1747487" target = "_blank" > Site Reliability / Gitops Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "site reliability engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4468036" target = "_blank" > Site Reliability Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "site reliability engineering manager home based - apac; home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5535122" target = "_blank" > Site Reliability Engineering Manager< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software architect - containers / virtualisation home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5881447" target = "_blank" > Software Architect - Containers / Virtualisation< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (backend saas) home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4647417" target = "_blank" > Software Developer (Backend SaaS)< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer (python/linux/packaging) home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2413329" target = "_blank" > Software Engineer (Python/Linux/Packaging)< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - app stores home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3159992" target = "_blank" > Software Engineer - App Stores< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - cloud images home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4398031" target = "_blank" > Software Engineer - Cloud Images< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - data infrastructure home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3014391" target = "_blank" > Software Engineer - Data Infrastructure < / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - data infrastructure - kafka home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5218601" target = "_blank" > Software Engineer - Data Infrastructure - Kafka< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - data infrastructure - opensearch/elasticsearch home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5002072" target = "_blank" > Software Engineer - Data Infrastructure - OpenSearch/ElasticSearch< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - industrial iot home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2614095" target = "_blank" > Software Engineer - Industrial IoT< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - l3 support home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6635671" target = "_blank" > Software Engineer - L3 Support< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - openstack home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2579550" target = "_blank" > Software Engineer - OpenStack< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - python - cloud - graduate level home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3257589" target = "_blank" > Software Engineer - Python - Cloud - graduate level< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - python - container images home based - americas; home based - apac; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6222476" target = "_blank" > Software Engineer - Python - Container Images< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - python and k8s home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3752633" target = "_blank" > Software Engineer - Python and K8s< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - python/golang - kubernetes home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2928962" target = "_blank" > Software Engineer - Python/Golang - Kubernetes< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - solutions engineering home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3290946" target = "_blank" > Software Engineer - Solutions Engineering< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer - ubuntu server certification home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4272811" target = "_blank" > Software Engineer - Ubuntu Server Certification< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, ceph & distributed storage home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/1861978" target = "_blank" > Software Engineer, Ceph & Distributed Storage< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, cloud - sustaining engineering home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3062022" target = "_blank" > Software Engineer, Cloud - Sustaining Engineering< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, sustaining engineering home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3326693" target = "_blank" > Software Engineer, Sustaining Engineering< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering director home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5211861" target = "_blank" > Software Engineering Director< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering manager (backend saas) home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4283003" target = "_blank" > Software Engineering Manager (Backend SaaS)< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering manager - container and virtualisation infrastructure home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4086684" target = "_blank" > Software Engineering Manager - Container and Virtualisation Infrastructure< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering manager - sustaining engineering home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4410480" target = "_blank" > Software Engineering Manager - Sustaining Engineering< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering manager - ubuntu linux kernel home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3542384" target = "_blank" > Software Engineering Manager - Ubuntu Linux Kernel< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software maintenance engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6635681" target = "_blank" > Software Maintenance Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software platform engineering manager - ubuntu for next-gen silicon home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/4279483" target = "_blank" > Software Platform Engineering Manager - Ubuntu for Next-Gen Silicon< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software support engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6635593" target = "_blank" > Software Support Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff engineer, development lifecycle home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5103218" target = "_blank" > Staff Engineer, Development Lifecycle< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff security operations engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6485081" target = "_blank" > Staff Security Operations Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff software engineer for identity management (go/golang) home based - americas; home based - emea emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3880952" target = "_blank" > Staff Software Engineer for Identity Management (Go/Golang)< / a > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6854119" target = "_blank" > Support Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "sustaining operations engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3737190" target = "_blank" > Sustaining Operations Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical product marketing manager - cybersecurity home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6793868" target = "_blank" > Technical Product Marketing Manager - Cybersecurity< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "telco cloud engineer (5g, openran, openstack, python) - americas home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3748266" target = "_blank" > Telco Cloud Engineer (5G, OpenRan, OpenStack, Python) - Americas< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ux designer - developer experience home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7043026" target = "_blank" > UX Designer - Developer experience< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ux designer - infrastructure home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6072086" target = "_blank" > UX Designer - Infrastructure< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu core software engineer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/3182672" target = "_blank" > Ubuntu Core Software Engineer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu engineering lead home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6707885" target = "_blank" > Ubuntu Engineering Lead< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu engineering manager home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7521220" target = "_blank" > Ubuntu Engineering Manager< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu linux kernel engineer - silicon enablement home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6076909" target = "_blank" > Ubuntu Linux Kernel Engineer - Silicon Enablement< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu sales engineer (english/spanish required) home based - americas americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6969562" target = "_blank" > Ubuntu Sales Engineer (English/Spanish Required)< / a > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu sales engineer (entry-level) home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5643282" target = "_blank" > Ubuntu Sales Engineer (Entry-Level)< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu security engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2925180" target = "_blank" > Ubuntu Security Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ubuntu software engineer home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/6707824" target = "_blank" > Ubuntu Software Engineer< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "usability engineer - user science home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/7528952" target = "_blank" > Usability Engineer - User Science< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "web developer home based - emea emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/2804965" target = "_blank" > Web Developer< / a > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "web frontend engineer - js, css, react, flutter home based - worldwide worldwide" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/canonical/jobs/5150422" target = "_blank" > Web Frontend Engineer - JS, CSS, React, Flutter< / a > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "clickhouse" >
< div class = "company-header" >
< span class = "company-name" > ClickHouse< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 22 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cloud software engineer - observability platform canada (remote) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5658009004" target = "_blank" > Cloud Software Engineer - Observability Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "core software engineer (c++) - remote germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5755092004" target = "_blank" > Core Software Engineer (C++) - Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "database reliability engineer - core team germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5643312004" target = "_blank" > Database Reliability Engineer - Core Team< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - database integrations germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5661451004" target = "_blank" > Engineering Manager - Database Integrations< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "full stack software engineer - billing team germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5584382004" target = "_blank" > Full Stack Software Engineer - Billing Team< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "full stack software engineer - control plane germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5587665004" target = "_blank" > Full Stack Software Engineer - Control Plane< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
< / div >
< div class = "job" data-search = "incident response security engineer canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5425593004" target = "_blank" > Incident Response Security Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "product security engineer canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5726452004" target = "_blank" > Product Security Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "qa engineer - core database (remote) germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5654023004" target = "_blank" > QA Engineer - Core Database (remote)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer - data ingestion (clickpipes) canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5718377004" target = "_blank" > Senior Backend Engineer - Data Ingestion (ClickPipes)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior cloud engineer - product metrics canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5674366004" target = "_blank" > Senior Cloud Engineer - Product Metrics< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior consulting engineer - emea emea (remote) remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5726641004" target = "_blank" > Senior Consulting Engineer - EMEA< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior full stack engineer - hyperdx canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5748780004" target = "_blank" > Senior Full Stack Engineer - HyperDX< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior full stack engineer - hyperdx germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5748779004" target = "_blank" > Senior Full Stack Engineer - HyperDX< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer (infrastructure) - hyperdx germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5727347004" target = "_blank" > Senior Software Engineer (Infrastructure) - HyperDX< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - clickpipes (database integration) germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5664563004" target = "_blank" > Senior Software Engineer - ClickPipes (Database Integration)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - data integration & jvm ecosystem canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5722213004" target = "_blank" > Senior Software Engineer - Data Integration & JVM Ecosystem< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - data integration & jvm ecosystem germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5722219004" target = "_blank" > Senior Software Engineer - Data Integration & JVM Ecosystem< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - postgres canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5635752004" target = "_blank" > Senior Software Engineer - Postgres< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical customer support engineer - dutch speaking germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5585871004" target = "_blank" > Technical Customer Support Engineer - Dutch speaking< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical customer support engineer - emea emea (remote) remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5726597004" target = "_blank" > Technical Customer Support Engineer - EMEA< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical customer support engineer - german speaking germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/clickhouse/jobs/5585851004" target = "_blank" > Technical Customer Support Engineer - German speaking< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< / div >
< / div >
< div class = "company" id = "datadog" >
< div class = "company-header" >
< span class = "company-name" > Datadog< / span >
< span class = "company-count" > 2 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "manager i, developer advocacy canada, remote remote canada" >
< span class = "job-title" > < a href = "https://careers.datadoghq.com/detail/7440560/?gh_jid=7440560" target = "_blank" > Manager I, Developer Advocacy< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer – ide integrations (vs code & cursor) denmark, remote; france, remote; germany, remote; ireland, remote; italy, remote; poland, remote; spain, remote; sweden, remote; switzerland, remote; the netherlands, remote; united kingdom, remote remote germany" >
< span class = "job-title" > < a href = "https://careers.datadoghq.com/detail/7391302/?gh_jid=7391302" target = "_blank" > Senior Software Engineer – IDE Integrations (VS Code & Cursor)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< / div >
< / div >
< div class = "company" id = "dropbox" >
< div class = "company-header" >
< span class = "company-name" > Dropbox< / span >
< span class = "company-count" > 34 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "cx software engineer remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7181370?gh_jid=7181370" target = "_blank" > CX Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, docsend remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7466635?gh_jid=7466635" target = "_blank" > Engineering Manager, DocSend< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "fullstack product software engineer, core web experience remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/6936210?gh_jid=6936210" target = "_blank" > Fullstack Product Software Engineer, Core Web Experience< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "fullstack product software engineer, docsend remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7344971?gh_jid=7344971" target = "_blank" > Fullstack Product Software Engineer, DocSend< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "fullstack product software engineer, growth monetization remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7344955?gh_jid=7344955" target = "_blank" > Fullstack Product Software Engineer, Growth Monetization< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "infrastructure software engineer, metadata remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7356507?gh_jid=7356507" target = "_blank" > Infrastructure Software Engineer, Metadata < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "machine learning engineer, dash remote - germany remote germany" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7384405?gh_jid=7384405" target = "_blank" > Machine Learning Engineer, Dash< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal product manager - ai security, data access governance and dlp remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7183788?gh_jid=7183788" target = "_blank" > Principal Product Manager - AI Security, Data Access Governance and DLP< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal software engineer remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7324931?gh_jid=7324931" target = "_blank" > Principal Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal software engineer, core sharing & collaboration remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7344930?gh_jid=7344930" target = "_blank" > Principal Software Engineer, Core Sharing & Collaboration< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal software engineer, developer productivity remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7294105?gh_jid=7294105" target = "_blank" > Principal Software Engineer, Developer Productivity< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "product backend software engineer, search platform remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7491863?gh_jid=7491863" target = "_blank" > Product Backend Software Engineer, Search Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior android software engineer, mobile experience remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7466469?gh_jid=7466469" target = "_blank" > Senior Android Software Engineer, Mobile Experience< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend product software engineer remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/6330339?gh_jid=6330339" target = "_blank" > Senior Backend Product Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend product software engineer, reclaim remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7384348?gh_jid=7384348" target = "_blank" > Senior Backend Product Software Engineer, Reclaim< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior business intelligence engineer remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7362683?gh_jid=7362683" target = "_blank" > Senior Business Intelligence Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior engineering manager, core ai platform remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7344922?gh_jid=7344922" target = "_blank" > Senior Engineering Manager, Core AI Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior full stack product software engineer remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7536345?gh_jid=7536345" target = "_blank" > Senior Full Stack Product Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior fullstack product software engineer, core growth remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7466643?gh_jid=7466643" target = "_blank" > Senior Fullstack Product Software Engineer, Core Growth< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior fullstack product software engineer, corporate it remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7244917?gh_jid=7244917" target = "_blank" > Senior Fullstack Product Software Engineer, Corporate IT< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior fullstack product software engineer, docsend remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7469399?gh_jid=7469399" target = "_blank" > Senior Fullstack Product Software Engineer, DocSend< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior infrastructure software engineer, storage remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7336428?gh_jid=7336428" target = "_blank" > Senior Infrastructure Software Engineer, Storage< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior machine learning engineer, dash remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7384398?gh_jid=7384398" target = "_blank" > Senior Machine Learning Engineer, Dash < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
< / div >
< div class = "job" data-search = "senior network engineer, corporate it remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7409613?gh_jid=7409613" target = "_blank" > Senior Network Engineer, Corporate IT< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior salesforce developer, managed storefront remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7341927?gh_jid=7341927" target = "_blank" > Senior Salesforce Developer, Managed Storefront< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior ios software engineer, design systems remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7274113?gh_jid=7274113" target = "_blank" > Senior iOS Software Engineer, Design Systems< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend product software engineer, core remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7421124?gh_jid=7421124" target = "_blank" > Staff Backend Product Software Engineer, Core< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend product software engineer, core intelligence & media remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/6936186?gh_jid=6936186" target = "_blank" > Staff Backend Product Software Engineer, Core Intelligence & Media< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend product software engineer, core sync remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7260582?gh_jid=7260582" target = "_blank" > Staff Backend Product Software Engineer, Core Sync< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend product software engineer, multi-product experience remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7415613?gh_jid=7415613" target = "_blank" > Staff Backend Product Software Engineer, Multi-Product Experience < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff fullstack software engineer, growth monetization remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7421153?gh_jid=7421153" target = "_blank" > Staff Fullstack Software Engineer, Growth Monetization< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff product manager, security remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7484489?gh_jid=7484489" target = "_blank" > Staff Product Manager, Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff technical program manager, engineering productivity remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7387350?gh_jid=7387350" target = "_blank" > Staff Technical Program Manager, Engineering Productivity< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ios software engineer, mobile infrastructure remote - canada: select locations remote canada" >
< span class = "job-title" > < a href = "https://jobs.dropbox.com/listing/7053880?gh_jid=7053880" target = "_blank" > iOS Software Engineer, Mobile Infrastructure< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< / div >
< / div >
< div class = "company" id = "duckduckgo" >
< div class = "company-header" >
< span class = "company-name" > DuckDuckGo< / span >
< span class = "company-count" > 4 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "engineering director, browser platform remote engineering remote" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/duck-duck-go/0541f1f3-4302-4b76-93a9-f6cd96f66e80" target = "_blank" > Engineering Director, Browser Platform < / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior privacy engineer remote engineering remote" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/duck-duck-go/72ec81ce-54a2-447a-9a8a-9de84ae53f8f" target = "_blank" > Senior Privacy Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer, windows desktop app (new positions!) remote engineering remote" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/duck-duck-go/47e569c6-f995-4955-a892-a3829ad0f39b" target = "_blank" > Senior Software Engineer, Windows Desktop App (New Positions!)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior web security engineer, browser platform remote engineering remote" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/duck-duck-go/12b7b49c-ee06-4d70-8504-657343ebe4d0" target = "_blank" > Senior Web Security Engineer, Browser Platform< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< / div >
< / div >
< div class = "company" id = "gitlab" >
< div class = "company-header" >
< span class = "company-name" > GitLab< / span >
< span class = "company-count" > 45 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "assigned support engineer (amer) remote, canada; remote, chile; remote, costa rica; remote, mexico; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8287957002" target = "_blank" > Assigned Support Engineer (AMER)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "associate support engineer (amer - pst / mst) remote, canada; remote, chile; remote, costa rica; remote, mexico; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8231973002" target = "_blank" > Associate Support Engineer (AMER - PST / MST)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "associate support engineer (emea) remote, emea remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8324426002" target = "_blank" > Associate Support Engineer (EMEA)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer relations engineer remote, emea remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8219920002" target = "_blank" > Developer Relations Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, create:source code remote, americas remote americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8366115002" target = "_blank" > Engineering Manager, Create:Source Code< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, database reliability, scalability & operations remote, canada; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8293419002" target = "_blank" > Engineering Manager, Database Reliability, Scalability & Operations< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, fulfillment remote, canada; remote, north america remote canada americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8239293002" target = "_blank" > Engineering Manager, Fulfillment < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, gitlab delivery remote, canada; remote, emea remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8331155002" target = "_blank" > Engineering Manager, Gitlab Delivery< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, infrastructure platforms remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8337454002" target = "_blank" > Engineering Manager, Infrastructure Platforms< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, software supply chain security: auth infrastructure remote, canada; remote, emea; remote, us remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8158501002" target = "_blank" > Engineering Manager, Software Supply Chain Security: Auth Infrastructure< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, software supply chain security: pipeline security remote remote" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8339221002" target = "_blank" > Engineering Manager, Software Supply Chain Security: Pipeline Security < / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate backend (go) engineer, gitlab delivery -operate remote, canada; remote, emea remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8323112002" target = "_blank" > Intermediate Backend (Go) Engineer, Gitlab Delivery -Operate< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate backend engineer (go), verify: runner core remote, canada; remote, netherlands; remote, united kingdom; remote, us-southeast remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8292364002" target = "_blank" > Intermediate Backend Engineer (Go), Verify: Runner Core< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate backend engineer (ruby on rails), analytics instrumentation remote, apac; remote, canada; remote, emea; remote, netherlands; remote, united kingdom remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8161980002" target = "_blank" > Intermediate Backend Engineer (Ruby on Rails), Analytics Instrumentation < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate fullstack engineer (typescript), ai engineering: editor extensions – multi-platform remote, apac; remote, canada; remote, netherlands; remote, united kingdom remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8315155002" target = "_blank" > Intermediate Fullstack Engineer (TypeScript), AI Engineering: Editor Extensions – Multi-Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate site reliability engineer, database operations remote, emea remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8199072002" target = "_blank" > Intermediate Site Reliability Engineer, Database Operations< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate site reliability engineer, environment automation remote, emea remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8242652002" target = "_blank" > Intermediate Site Reliability Engineer, Environment Automation< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate site reliability engineer, tenant scale: tenant services remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8358825002" target = "_blank" > Intermediate Site Reliability Engineer, Tenant Scale: Tenant Services< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "intermediate support engineer (amer - pst / mst) remote, canada; remote, chile; remote, costa rica; remote, mexico; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8359317002" target = "_blank" > Intermediate Support Engineer (AMER - PST / MST)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "manager, customer success engineers remote, canada; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8340423002" target = "_blank" > Manager, Customer Success Engineers< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "practice engineer - amer remote, canada; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8334773002" target = "_blank" > Practice Engineer - AMER< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal database engineer, data engineering remote, emea; remote, north america remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8231379002" target = "_blank" > Principal Database Engineer, Data Engineering< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal engineer, infrastructure platforms remote remote" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8366595002" target = "_blank" > Principal Engineer, Infrastructure Platforms< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal engineer, software supply chain security remote, canada; remote, israel; remote, netherlands; remote, united kingdom; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8373553002" target = "_blank" > Principal Engineer, Software Supply Chain Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal infrastructure security architect remote, apac; remote, canada; remote, emea; remote, us remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8304223002" target = "_blank" > Principal Infrastructure Security Architect< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal product manager, security & compliance remote, canada; remote, united kingdom; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8332925002" target = "_blank" > Principal Product Manager, Security & Compliance< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal product marketing manager, application security remote, americas remote americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8297604002" target = "_blank" > Principal Product Marketing Manager, Application Security < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal product marketing manager, devsecops platform remote, canada; remote, us remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8372777002" target = "_blank" > Principal Product Marketing Manager, DevSecOps Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "principal security engineer, application security remote, apac; remote, emea; remote, north america; remote, us remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8196202002" target = "_blank" > Principal Security Engineer, Application Security < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend (go) engineer, gitlab delivery -operate remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8323728002" target = "_blank" > Senior Backend (Go) Engineer, Gitlab Delivery -Operate< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer (ruby on rails), verify: pipeline execution remote, apac; remote, canada; remote, netherlands; remote, united kingdom remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8307019002" target = "_blank" > Senior Backend Engineer (Ruby on Rails), Verify: Pipeline Execution< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer (ruby), tenant scale, geo remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8291374002" target = "_blank" > Senior Backend Engineer (Ruby), Tenant Scale, Geo< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer(golang),software supply chain security: auth infrastructure remote, americas; remote, apac; remote, canada remote canada americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8157520002" target = "_blank" > Senior Backend Engineer(Golang),Software Supply Chain Security: Auth Infrastructure< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior frontend engineer, ai engineering: duo chat remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8202813002" target = "_blank" > Senior Frontend Engineer, AI Engineering: Duo Chat< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior fullstack engineer (ror/vue.js), software supply chain security: authorization remote, canada; remote, netherlands; remote, united kingdom remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8230719002" target = "_blank" > Senior Fullstack Engineer (RoR/vue.js), Software Supply Chain Security: Authorization< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior infrastructure security engineer remote, australia; remote, emea; remote, japan; remote, new zealand remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8326388002" target = "_blank" > Senior Infrastructure Security Engineer < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior manager, developer advocacy remote, emea; remote, north america remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8168744002" target = "_blank" > Senior Manager, Developer Advocacy< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior psirt security engineer, emea remote, emea remote emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8247677002" target = "_blank" > Senior PSIRT Security Engineer, EMEA< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior site reliability engineer, environment automation remote, americas; remote, canada remote canada americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8136108002" target = "_blank" > Senior Site Reliability Engineer, Environment Automation< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineering manager, application security testing: composition analysis & dynamic analysis remote remote" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8002169002" target = "_blank" > Software Engineering Manager, Application Security Testing: Composition Analysis & Dynamic Analysis< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend engineer, developer experience (ruby) remote, apac; remote, canada; remote, emea; remote, netherlands; remote, united kingdom remote canada emea" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8199765002" target = "_blank" > Staff Backend Engineer, Developer Experience (Ruby)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < span class = "tag tag-emea" > emea< / span > < / span >
< span class = "job-location" > EMEA< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff engineer, gitlab delivery - operate remote, americas; remote, emea remote emea americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8225800002" target = "_blank" > Staff Engineer, GitLab Delivery - Operate< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-emea" > emea< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff frontend engineer (vue.js), plan:knowledge remote, americas; remote, apac; remote, us remote americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8375833002" target = "_blank" > Staff Frontend Engineer (Vue.js), Plan:Knowledge< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff product manager, software supply chain security remote remote" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8332463002" target = "_blank" > Staff Product Manager, Software Supply Chain Security< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff salesforce engineer, crm systems remote, north america remote americas" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/gitlab/jobs/8171644002" target = "_blank" > Staff Salesforce Engineer, CRM Systems< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "company" id = "grafanalabs" >
2026-01-20 18:08:11 +00:00
< div class = "company-header" >
2026-01-20 18:27:17 +00:00
< span class = "company-name" > GrafanaLabs< / span >
< span class = "company-count" > 12 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager - kubernetes monitoring | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5740500004" target = "_blank" > Engineering Manager - Kubernetes Monitoring | Canada | Remote < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior ai engineer - grafana ops, ai/ml | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5689201004" target = "_blank" > Senior AI Engineer - Grafana Ops, AI/ML | Canada | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior ai engineer, genai & ml evaluation frameworks - grafana ops, ai/ml | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5559977004" target = "_blank" > Senior AI Engineer, GenAI & ML Evaluation Frameworks - Grafana Ops, AI/ML | Canada | Remote < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer - grafana app platform | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5711140004" target = "_blank" > Senior Backend Engineer - Grafana App Platform | Canada | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend software engineer, alerting | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5602687004" target = "_blank" > Senior Backend Software Engineer, Alerting | Canada | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer, grafana oss big tent | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5616277004" target = "_blank" > Senior Software Engineer, Grafana OSS Big Tent | Canada | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software security engineer, detection engineering | germany | remote germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5688180004" target = "_blank" > Senior Software Security Engineer, Detection Engineering | Germany | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior solutions engineer | germany | remote germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5697434004" target = "_blank" > Senior Solutions Engineer | Germany | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff ai engineer - grafana ops, ai/ml | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5689219004" target = "_blank" > Staff AI Engineer - Grafana Ops, AI/ML | Canada | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend engineer - grafana databases, loki ingest | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5681886004" target = "_blank" > Staff Backend Engineer - Grafana Databases, Loki Ingest | Canada | Remote < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend engineer - grafana k6 | canada | remote canada (remote) remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5693691004" target = "_blank" > Staff Backend Engineer - Grafana k6 | Canada | Remote < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff backend software engineer - databases - loki ingest | emea | remote germany (remote) remote germany" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/grafanalabs/jobs/5632838004" target = "_blank" > Staff Backend Software Engineer - Databases - Loki Ingest | EMEA | Remote< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< / div >
< / div >
< div class = "company" id = "honeycomb" >
< div class = "company-header" >
< span class = "company-name" > Honeycomb< / span >
< span class = "company-count" > 2 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "senior engineering manager - signals team remote - canada remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/honeycomb/jobs/5013402008" target = "_blank" > Senior Engineering Manager - Signals Team< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff ai engineer remote - canada remote canada" >
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/honeycomb/jobs/5020718008" target = "_blank" > Staff AI Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "jetbrains" >
< div class = "company-header" >
< span class = "company-name" > JetBrains< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 58 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "(senior) backend developer (java/kotlin) - business application development belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4696975101" target = "_blank" > (Senior) Backend Developer (Java/Kotlin) - Business Application Development< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering squad lead (jetbrains research) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4724875101" target = "_blank" > Engineering Squad Lead (JetBrains Research)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "fullstack ml developer amsterdam, netherlands; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695330101" target = "_blank" > FullStack ML Developer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "head of corporate security amsterdam, netherlands; berlin, germany; munich, germany germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4696712101" target = "_blank" > Head of Corporate Security< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "infrastructure security engineer amsterdam, netherlands; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4696844101" target = "_blank" > Infrastructure Security Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "java developer (backend) ‒ teamcity, build tools integration belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4696876101" target = "_blank" > Java Developer (Backend) ‒ TeamCity, Build Tools Integration< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "jetbrains go developer advocate (developer advocacy) amsterdam, netherlands; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695590101" target = "_blank" > JetBrains Go Developer Advocate (Developer Advocacy)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "jetbrains rust developer advocate amsterdam, netherlands; berlin, germany; boston, massachusetts; london, united kingdom; munich, germany germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4752770101" target = "_blank" > JetBrains Rust Developer Advocate< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "jetbrains web developer advocate (developer advocacy) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; madrid, spain; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4697973101" target = "_blank" > JetBrains Web Developer Advocate (Developer Advocacy)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "kotlin backend developer (kocelot team, platform) berlin, germany; paphos, cyprus; prague, czech republic germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695258101" target = "_blank" > Kotlin Backend Developer (Kocelot Team, Platform)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "kotlin developer advocate amsterdam, netherlands; berlin, germany; dubai, united arab emirates; limassol, cyprus; london, united kingdom; madrid, spain; munich, germany; prague, czech republic germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4698240101" target = "_blank" > Kotlin Developer Advocate< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "machine learning evaluation engineer (agentic mobile app generator) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695576101" target = "_blank" > Machine Learning Evaluation Engineer (Agentic Mobile App Generator)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "project maintainer – dpai arena evaluation infrastructure amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4726508101" target = "_blank" > Project Maintainer – DPAI Arena Evaluation Infrastructure< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "project manager (software engineering research) berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695328101" target = "_blank" > Project Manager (Software Engineering Research)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "qa engineer (kotlin build tools) belgrade, serbia; berlin, germany; limassol, cyprus; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4737688101" target = "_blank" > QA Engineer (Kotlin Build Tools)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "qa engineer (kotlin compiler frontend) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695270101" target = "_blank" > QA Engineer (Kotlin Compiler Frontend)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "qa engineer (rider ide) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4700041101" target = "_blank" > QA Engineer (Rider IDE)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "quality engineer (ides department) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4716472101" target = "_blank" > Quality Engineer (IDEs department) < / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "research engineer (agentic models) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4754978101" target = "_blank" > Research Engineer (Agentic Models)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "research engineer (llm training and performance) amsterdam, netherlands; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695363101" target = "_blank" > Research Engineer (LLM Training and Performance)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "research engineer - jetbrains ai amsterdam, netherlands; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695262101" target = "_blank" > Research Engineer - JetBrains AI< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "sdet engineer in ked qa automation team berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4698726101" target = "_blank" > SDET Engineer in KED QA Automation team< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "sdet engineer in kotlin performance qa team belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695559101" target = "_blank" > SDET Engineer in Kotlin Performance QA team< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "ssh & remote development engineer belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4705153101" target = "_blank" > SSH & Remote Development Engineer< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security compliance specialist amsterdam, netherlands; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695272101" target = "_blank" > Security Compliance Specialist< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security engineer in product security amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4696793101" target = "_blank" > Security Engineer in Product Security< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior backend engineer (matter) berlin, germany; munich, germany; remote, germany remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4742193101" target = "_blank" > Senior Backend Engineer (Matter)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior developer at rider (gamedev tools) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4703861101" target = "_blank" > Senior Developer at Rider (GameDev Tools) < / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior kotlin backend developer (biokb project) berlin, germany; paphos, cyprus; prague, czech republic germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695311101" target = "_blank" > Senior Kotlin Backend Developer (BioKB Project)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior ml engineer (jetbrains research) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4713663101" target = "_blank" > Senior ML Engineer (JetBrains Research)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior machine learning engineer (intellij ai) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4705225101" target = "_blank" > Senior Machine Learning Engineer (IntelliJ AI)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior product manager (ai bi platform) amsterdam, netherlands; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695574101" target = "_blank" > Senior Product Manager (AI BI Platform)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior product manager (intellij platform) amsterdam, netherlands; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695260101" target = "_blank" > Senior Product Manager (IntelliJ Platform)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior qa engineer (bad) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695264101" target = "_blank" > Senior QA engineer (BAD)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software developer (intellij ai) belgrade, serbia; berlin, germany; limassol, cyprus; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4743509101" target = "_blank" > Senior Software Developer (IntelliJ AI)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software developer (qodana core) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695266101" target = "_blank" > Senior Software Developer (Qodana Core)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software developer (quality infrastructure) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4710023101" target = "_blank" > Senior Software Developer (Quality Infrastructure) < / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software developer (rider) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4704053101" target = "_blank" > Senior Software Developer (Rider)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software developer - kotlin native belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4739443101" target = "_blank" > Senior Software Developer - Kotlin Native< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer (.net tooling core) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4698962101" target = "_blank" > Senior Software Engineer (.NET tooling Core)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer – intellij ultimate team amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4705207101" target = "_blank" > Senior Software Engineer – IntelliJ Ultimate Team< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior/staff software developer - kotlin multiplatform tooling belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4703937101" target = "_blank" > Senior/Staff Software Developer - Kotlin Multiplatform Tooling< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (intellij platform – version control experience) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4700014101" target = "_blank" > Software Developer (IntelliJ Platform – Version Control Experience)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (intellij platform) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4726522101" target = "_blank" > Software Developer (IntelliJ Platform)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (orca) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4697030101" target = "_blank" > Software Developer (Orca)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (platform/ remote development) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4712644101" target = "_blank" > Software Developer (Platform/ Remote Development)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software developer (station/toolbox app) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4700012101" target = "_blank" > Software Developer (Station/Toolbox App)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software development engineer in test (rider) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4698743101" target = "_blank" > Software Development Engineer in Test (Rider)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer (intellij platfrom licensing) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4705219101" target = "_blank" > Software Engineer (IntelliJ Platfrom Licensing)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff product manager (high performance data infrastructure) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; tel aviv, israel; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4694847101" target = "_blank" > Staff Product Manager (High Performance Data Infrastructure)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff software developer (kotlin libraries) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; london, united kingdom; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4695526101" target = "_blank" > Staff Software Developer (Kotlin Libraries)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (business applications development) berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4698710101" target = "_blank" > Support Engineer (Business Applications Development)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (ide services) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4753790101" target = "_blank" > Support Engineer (IDE Services)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (jetbrains academy) berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4706331101" target = "_blank" > Support Engineer (JetBrains Academy)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (jetbrains console) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4726407101" target = "_blank" > Support Engineer (JetBrains Console)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (jetbrains hub) belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4716575101" target = "_blank" > Support Engineer (JetBrains Hub)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical lead (intellij platform) amsterdam, netherlands; belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; warsaw, poland; yerevan, armenia germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4699241101" target = "_blank" > Technical Lead (IntelliJ Platform)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "youtrack internal automation engineer belgrade, serbia; berlin, germany; limassol, cyprus; munich, germany; paphos, cyprus; prague, czech republic; remote, germany; warsaw, poland; yerevan, armenia remote germany" >
< span class = "job-title" > < a href = "https://job-boards.eu.greenhouse.io/jetbrains/jobs/4724893101" target = "_blank" > YouTrack Internal Automation Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-berlin" > germany< / span > < / span >
< span class = "job-location" > Germany< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "pingcap" >
< div class = "company-header" >
< span class = "company-name" > PingCAP< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 1 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer - distributed storage remote - united states or canada remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/pingcap/jobs/4006528009" target = "_blank" > Senior Software Engineer - Distributed Storage< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "railway" >
< div class = "company-header" >
< span class = "company-name" > Railway< / span >
< span class = "company-count" > 2 positions< / span >
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior platform engineer: storage global platform remote worldwide" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/Railway/25d8444a-47dc-4084-ae56-29a0f0b19b74" target = "_blank" > Senior Platform Engineer: Storage< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "solution engineer global engineer remote worldwide" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/Railway/fe33d49c-3502-4d73-80fc-c2c260576846" target = "_blank" > Solution Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-worldwide" > worldwide< / span > < / span >
< span class = "job-location" > Worldwide< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "rerun" >
< div class = "company-header" >
< span class = "company-name" > Rerun< / span >
< span class = "company-count" > 4 positions< / span >
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "dataframe sdk engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/rerun/d4fc6d62-2690-42e6-a321-16926233fa6d" target = "_blank" > Dataframe SDK Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer relations engineer (content-first) remote cross org remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/rerun/387508cc-9b4e-433f-8f77-6e55ca8877b0" target = "_blank" > Developer Relations Engineer (Content-First)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "full-stack engineer - customer experience remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/rerun/5317fb4c-5b29-4f8f-a361-c3b7ca6269ce" target = "_blank" > Full-stack Engineer - Customer Experience< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer (rust) - backend remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/rerun/2f640bfb-a26e-4a88-b78a-8989218527cc" target = "_blank" > Software Engineer (Rust) - Backend < / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
< / div >
< / div >
< div class = "company" id = "sentry" >
< div class = "company-header" >
< span class = "company-name" > Sentry< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 7 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, data browsing toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/2f48f301-c17e-4b07-931b-4574695b8188" target = "_blank" > Engineering Manager, Data Browsing< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior frontend engineer, data browsing toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/9f25171f-fe67-42aa-91c9-4d9dcb4fa15f" target = "_blank" > Senior Frontend Engineer, Data Browsing< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior full stack engineer, core product toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/30d1a587-0c96-44c6-9570-0562426b96d9" target = "_blank" > Senior Full Stack Engineer, Core Product < / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior fullstack engineer, data browsing toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/5e3233e8-556e-44c6-ad1b-5ba42d999e48" target = "_blank" > Senior Fullstack Engineer, Data Browsing< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior security engineer, application & platform security toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/3c3064ea-4d49-491e-ba93-05e66bda9ed8" target = "_blank" > Senior Security Engineer, Application & Platform Security< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer, infrastructure toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/a933a4c6-442a-4674-8387-675f392645dc" target = "_blank" > Senior Software Engineer, Infrastructure< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "senior software engineer, ingest toronto, ontario, canada engineering canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/sentry/344cdbe1-1e36-40c4-b41f-6a4970eaf735" target = "_blank" > Senior Software Engineer, Ingest< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "stripe" >
< div class = "company-header" >
< span class = "company-name" > Stripe< / span >
2026-01-20 18:27:17 +00:00
< span class = "company-count" > 28 positions< / span >
2026-01-20 18:08:11 +00:00
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = " android engineer, link toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7311137" target = "_blank" > Android Engineer, Link< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "account executive, platforms (german-speaking) berlin germany" >
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7458835" target = "_blank" > Account Executive, Platforms (German-speaking)< / a > < span class = "tag tag-berlin" > germany< / span > < / span >
2026-01-20 18:08:11 +00:00
< span class = "job-location" > Berlin< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, deep toronto canada, remote in canada remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7292520" target = "_blank" > Backend Engineer, DEeP< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, data canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6865161" target = "_blank" > Backend Engineer, Data< / a > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, link toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7316285" target = "_blank" > Backend Engineer, Link < / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, revenue and financial automation toronto, can-remote remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7217048" target = "_blank" > Backend Engineer, Revenue and Financial Automation< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer/api, payments and risk toronto, canada remote remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6692166" target = "_blank" > Backend Engineer/API, Payments and Risk< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend/api engineer, money as a service (canada) canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6176763" target = "_blank" > Backend/API Engineer, Money as a Service (Canada)< / a > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "client onboarding integration engineer toronto, ca; chicago, il canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7227066" target = "_blank" > Client Onboarding Integration Engineer< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "design engineer, presence us, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7144975" target = "_blank" > Design Engineer, Presence< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "engineering manager, product and business canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6615981" target = "_blank" > Engineering Manager, Product and Business< / a > < span class = "tag tag-canada" > canada< / span > < / span >
< span class = "job-location" > Canada< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "full stack engineer, enterprise & ecosystem toronto, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7403151" target = "_blank" > Full Stack Engineer, Enterprise & Ecosystem< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "full stack engineer, link toronto, remote in canada remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6447175" target = "_blank" > Full Stack Engineer, Link< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "integration engineer, professional services toronto, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6651831" target = "_blank" > Integration Engineer, Professional Services< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "integration reliability engineer, technical operations, cards toronto, remote in canada remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7353393" target = "_blank" > Integration Reliability Engineer, Technical Operations, Cards< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "integration reliability engineer, technical operations, commerce systems toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7525280" target = "_blank" > Integration Reliability Engineer, Technical Operations, Commerce Systems< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "integration reliability engineer, technical operations, local payment methods toronto, remote in canada remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7286378" target = "_blank" > Integration Reliability Engineer, Technical Operations, Local Payment Methods< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "launch integration engineer toronto, ca canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7250097" target = "_blank" > Launch Integration Engineer< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security engineer, new grad seattle, wa; san francisco, ca; toronto, can canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7477571" target = "_blank" > Security Engineer, New Grad < / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, intern toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7206389" target = "_blank" > Software Engineer, Intern< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, machine learning infrastructure toronto, canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6099228" target = "_blank" > Software Engineer, Machine Learning Infrastructure< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, new grad toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7206505" target = "_blank" > Software Engineer, New Grad< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff product designer, developer ai us / canada canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7164051" target = "_blank" > Staff Product Designer, Developer AI< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff security engineer, security partnerships remote, north america remote americas" >
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6892149" target = "_blank" > Staff Security Engineer, Security Partnerships< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-americas" > americas< / span > < / span >
< span class = "job-location" > Americas< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff software engineer, billing toronto, canada, canada remote remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=5846766" target = "_blank" > Staff Software Engineer, Billing< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff software engineer, data toronto, canada, canada remote remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=6482105" target = "_blank" > Staff Software Engineer, Data< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "staff software engineer, stream infrastructure toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7517258" target = "_blank" > Staff Software Engineer, Stream Infrastructure< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "technical operations engineer, gtm toronto canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://stripe.com/jobs/search?gh_jid=7525282" target = "_blank" > Technical Operations Engineer, GTM< / a > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< div class = "company" id = "supabase" >
< div class = "company-header" >
< span class = "company-name" > Supabase< / span >
< span class = "company-count" > 19 positions< / span >
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "cli engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/1e7a99f9-da65-4c1a-a4eb-b718680404ac" target = "_blank" > CLI Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "database support engineer (amer) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/f18b1173-51c3-4ff6-bcda-89f8111931f4" target = "_blank" > Database Support Engineer (AMER)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "database support engineer (apac) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/62945518-2468-4cf5-9f36-904b60f75183" target = "_blank" > Database Support Engineer (APAC)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "database support engineer (emea) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/3889002e-536e-4046-a330-70e942b0cc96" target = "_blank" > Database Support Engineer (EMEA)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer productivity engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/4a7b66f8-9c95-4a60-8166-37dbb11d1446" target = "_blank" > Developer Productivity Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "developer relations engineer (san francisco, ca) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/a1320bbf-bfae-49a8-a1b7-12eeccaf39ca" target = "_blank" > Developer Relations Engineer (San Francisco, CA)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "finops engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/5342dc96-7ee5-46fe-bb55-1b52bacfd40f" target = "_blank" > FinOps Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "multigres deployment engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/f035bda1-b5d3-4c5b-8736-b9c335fe1c3b" target = "_blank" > Multigres Deployment Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "multigres engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/2e718684-4f75-4a99-8d6b-3b6bd44e4228" target = "_blank" > Multigres Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "platform engineer: general compute remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/e15854cc-d2f4-44e8-b516-8f582865fe64" target = "_blank" > Platform Engineer: General Compute< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "platform engineer: kubernetes remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/bf46e5cf-526a-425c-951b-bf2a7f85bd9d" target = "_blank" > Platform Engineer: Kubernetes< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "postgres engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/c16bd707-29f2-46fb-8409-7270ff00978b" target = "_blank" > Postgres Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "rust engineer remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/eb61a78d-9b5f-43f6-8d17-94c7b685d121" target = "_blank" > Rust Engineer< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer: platform services remote engineering remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/497d99f8-a848-4e33-8dba-1fd64f83f48b" target = "_blank" > Software Engineer: Platform Services< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (amer - weekends) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/dcf09dfe-55bc-44ba-b5db-1a2de7f33216" target = "_blank" > Support Engineer (AMER - Weekends)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (amer) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/e4e3ccb7-7b7d-42a2-be0f-26cbb5ae4abd" target = "_blank" > Support Engineer (AMER)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (apac) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/142135ae-a15f-4ec7-90bb-cb4e7968bc09" target = "_blank" > Support Engineer (APAC)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (emea - weekends) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/590a0742-97f1-47f4-81a2-567efc939ae2" target = "_blank" > Support Engineer (EMEA - Weekends)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "support engineer (emea) remote growth remote" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/supabase/c01f7436-1fdd-4a3e-8b96-8cadc33b006e" target = "_blank" > Support Engineer (EMEA)< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
< / div >
< / div >
< / div >
< div class = "company" id = "tailscale" >
< div class = "company-header" >
< span class = "company-name" > Tailscale< / span >
< span class = "company-count" > 12 positions< / span >
< / div >
< div class = "jobs" >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "analytics engineer, data remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4562134005" target = "_blank" > Analytics Engineer, Data< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, identity remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4480088005" target = "_blank" > Backend Engineer, Identity< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "backend engineer, platform remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4601479005" target = "_blank" > Backend Engineer, Platform< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "manager, solutions engineering - enterprise remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4340744005" target = "_blank" > Manager, Solutions Engineering - Enterprise< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "product growth engineer remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4527063005" target = "_blank" > Product Growth Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security infrastructure engineer remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4648927005" target = "_blank" > Security Infrastructure Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "security software engineer remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4648921005" target = "_blank" > Security Software Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, networking remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4525229005" target = "_blank" > Software Engineer, Networking< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "software engineer, product strategy remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4631831005" target = "_blank" > Software Engineer, Product Strategy< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "solutions engineer - commercial (expansion sales) remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4647684005" target = "_blank" > Solutions Engineer - Commercial (Expansion Sales)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "solutions engineer - commercial (new business) remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4343774005" target = "_blank" > Solutions Engineer - Commercial (New Business)< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
2026-01-20 18:08:11 +00:00
< / div >
2026-01-20 18:27:17 +00:00
< div class = "job" data-search = "test automation engineer remote (canada) remote canada" >
2026-01-20 18:08:11 +00:00
< span class = "job-title" > < a href = "https://job-boards.greenhouse.io/tailscale/jobs/4571294005" target = "_blank" > Test Automation Engineer< / a > < span class = "tag tag-remote" > remote< / span > < span class = "tag tag-canada" > canada< / span > < / span >
2026-01-20 18:27:17 +00:00
< span class = "job-location" > Canada< / span >
< / div >
< / div >
< / div >
< div class = "company" id = "tigerdata" >
< div class = "company-header" >
< span class = "company-name" > TigerData< / span >
< span class = "company-count" > 1 positions< / span >
< / div >
< div class = "jobs" >
< div class = "job" data-search = "senior software engineer, ai tools – tiger labs remote engineering remote" >
< span class = "job-title" > < a href = "https://jobs.ashbyhq.com/tigerdata/d5d07fbd-89f5-4328-9b3c-5dcaae528130" target = "_blank" > Senior Software Engineer, AI Tools – Tiger Labs< / a > < span class = "tag tag-remote" > remote< / span > < / span >
< span class = "job-location" > Remote< / span >
2026-01-20 18:08:11 +00:00
< / div >
< / div >
< / div >
< / main >
< script >
const search = document.getElementById('search');
const jobs = document.querySelectorAll('.job');
const companies = document.querySelectorAll('.company');
const visibleCount = document.getElementById('visible-count');
const filterBtns = document.querySelectorAll('.filter-btn');
function filterJobs(query) {
let visible = 0;
const terms = query.toLowerCase().trim().split(/\s+/).filter(t => t);
companies.forEach(company => {
const companyJobs = company.querySelectorAll('.job');
let companyVisible = 0;
companyJobs.forEach(job => {
const searchText = job.dataset.search;
// Match if ANY term matches (OR logic for filter buttons)
const matches = terms.length === 0 || terms.some(term => searchText.includes(term));
job.classList.toggle('hidden', !matches);
if (matches) {
companyVisible++;
visible++;
}
});
company.classList.toggle('hidden', companyVisible === 0);
});
visibleCount.textContent = `${visible} jobs shown`;
}
search.addEventListener('input', (e) => {
// Clear active button when typing
filterBtns.forEach(btn => btn.classList.remove('active'));
filterJobs(e.target.value);
});
// Filter buttons
filterBtns.forEach(btn => {
btn.addEventListener('click', () => {
const filter = btn.dataset.filter;
search.value = filter;
filterBtns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
filterJobs(filter);
});
});
// Keyboard shortcut: / to focus search
document.addEventListener('keydown', (e) => {
if (e.key === '/' & & document.activeElement !== search) {
e.preventDefault();
search.focus();
}
if (e.key === 'Escape') {
search.value = '';
filterBtns.forEach(b => b.classList.remove('active'));
filterJobs('');
search.blur();
}
});
// Set "All" as active by default
filterBtns[0].classList.add('active');
< / script >
< / body >
< / html >