Showing preview only (528K chars total). Download the full file or copy to clipboard to get everything.
Repository: speedyapply/2026-SWE-College-Jobs
Branch: main
Commit: 2014ca00f414
Files: 20
Total size: 511.9 KB
Directory structure:
gitextract_04rigmut/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── config.yml
│ │ ├── new.yml
│ │ ├── other.yml
│ │ └── update.yml
│ ├── scripts/
│ │ ├── .gitignore
│ │ ├── package.json
│ │ ├── src/
│ │ │ ├── add-or-update-job.ts
│ │ │ ├── config.ts
│ │ │ ├── get-jobs.ts
│ │ │ ├── mutations.ts
│ │ │ ├── queries.ts
│ │ │ └── types/
│ │ │ ├── job-counts.schema.ts
│ │ │ └── job.schema.ts
│ │ └── tsconfig.json
│ └── workflows/
│ ├── add-or-update-job.yml
│ └── get-jobs.yml
├── INTERN_INTL.md
├── NEW_GRAD_INTL.md
├── NEW_GRAD_USA.md
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: SpeedyApply Support
url: https://www.speedyapply.com/contact
about: Reach out with feedback or suggestions here.
================================================
FILE: .github/ISSUE_TEMPLATE/new.yml
================================================
name: New Position
description: Add a new grad or intern job position.
title: "New Position"
labels: ["new"]
body:
- type: markdown
attributes:
value: |
## New SWE Position Form
To contribute to the job lists, fill out the form below. We **ONLY** accept Software Engineering roles for internships or new college graduates.
We appreciate your contribution.
- type: input
id: job_title
attributes:
label: Position Title
placeholder: e.g. New Grad Software Engineer
validations:
required: true
- type: input
id: job_url
attributes:
label: Position Application Link
placeholder: e.g. https://company.com/posting
validations:
required: true
- type: input
id: company_name
attributes:
label: Company Name
placeholder: e.g. Amazon
validations:
required: true
- type: input
id: company_url
attributes:
label: Company Link
placeholder: e.g. https://amazon.com
validations:
required: true
- type: input
id: location
attributes:
label: Location
placeholder: e.g. San Franciso, CA
validations:
required: true
- type: dropdown
id: job_type
attributes:
label: Is this a new grad position or an internship?
multiple: false
options:
- New Grad
- Internship
validations:
required: true
- type: dropdown
id: usa
attributes:
label: Is this position based in the USA?
multiple: false
options:
- No, it's international.
- Yes, it's based in the USA.
validations:
required: true
- type: input
id: github
attributes:
label: Your GitHub Email
description: |
(Optional) Include your GitHub email here if you would like the credit for this contribution when the job is added to our lists.
placeholder: e.g. bot@speedyapply.com
validations:
required: false
================================================
FILE: .github/ISSUE_TEMPLATE/other.yml
================================================
name: Repo Issue or Suggestion
description: Tell us about an issue or feature request.
title: "Other Issue"
body:
- type: markdown
attributes:
value: |
Tell us about an issue or feature request.
We appreciate your input.
- type: textarea
attributes:
label: Issue or Feature Request
validations:
required: true
================================================
FILE: .github/ISSUE_TEMPLATE/update.yml
================================================
name: Update Position
description: Update a new grad or intern job position.
title: "Update Position"
labels: ["update"]
body:
- type: markdown
attributes:
value: |
## Update SWE Position Form
Copy and paste the posting/application link from the position you would like to update, so we know which position to edit. **ONLY** fill out the fields that you would to update for this position and leave the rest blank.
We appreciate your contribution.
- type: input
id: job_url
attributes:
label: Position Application Link
placeholder: e.g. https://company.com/posting
validations:
required: true
- type: input
id: job_title
attributes:
label: Position Title
placeholder: e.g. New Grad Software Engineer
validations:
required: false
- type: input
id: company_name
attributes:
label: Company Name
placeholder: e.g. Amazon
validations:
required: false
- type: input
id: company_url
attributes:
label: Company Link
placeholder: e.g. https://amazon.com
validations:
required: false
- type: input
id: location
attributes:
label: Location
placeholder: e.g. San Franciso, CA
validations:
required: false
- type: dropdown
id: job_type
attributes:
label: Is this a new grad position or an internship?
multiple: false
options:
- New Grad
- Internship
validations:
required: false
- type: dropdown
id: usa
attributes:
label: Is this position based in the USA?
multiple: false
options:
- No, it's international.
- Yes, it's based in the USA.
validations:
required: false
- type: dropdown
id: status
attributes:
label: Is this position accepting applications?
multiple: false
options:
- No, it's closed.
- Yes, it's available.
validations:
required: false
- type: input
id: github
attributes:
label: Your GitHub Email
description: |
Include your GitHub email here if you would like the credit for this contribution when this job is updated.
placeholder: e.g. bot@speedyapply.com
validations:
required: false
================================================
FILE: .github/scripts/.gitignore
================================================
/node_modules
/build
.env
================================================
FILE: .github/scripts/package.json
================================================
{
"name": "swe-college-jobs",
"version": "1.0.0",
"description": "The most comprehensive SWE internship & new graduate job list on GitHub.",
"scripts": {
"build": "tsc",
"get-jobs": "tsc && node build/get-jobs.js",
"add-or-update-job": "tsc && node build/add-or-update-job.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@supabase/supabase-js": "^2.39.1",
"dotenv": "^16.3.1",
"zod": "^3.22.4"
}
}
================================================
FILE: .github/scripts/src/add-or-update-job.ts
================================================
import * as core from "@actions/core";
import * as github from "@actions/github";
import dotenv from "dotenv";
import { addNewJob, updateJob } from "./mutations";
dotenv.config();
const GIT_USER_NAME = process.env.GIT_USER_NAME;
const GIT_USER_EMAIL = process.env.GIT_USER_EMAIL;
function parseIssueBody(issueBody: string) {
const extractData = (regex: RegExp, text: string) => {
const match = text.match(regex);
const data = match ? match[1].trim() : null;
return data === "_No response_" || data === "None" ? null : data;
};
const jobTitleRegex = /### Position Title\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const jobUrlRegex =
/### Position Application Link\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const companyNameRegex = /### Company Name\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const companyUrlRegex = /### Company Link\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const locationRegex = /### Location\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const typeRegex =
/### Is this a new grad position or an internship\?\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const usaRegex =
/### Is this position based in the USA\?\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const statusRegex =
/### Is this position accepting applications\?\r?\n\r?\n(.+?)\r?\n\r?\n###/s;
const githubEmailRegex =
/### Your GitHub Email\r?\n\r?\n(.+?)(\r?\n\r?\n###|$)/s;
const jobTitle = extractData(jobTitleRegex, issueBody);
const jobUrl = extractData(jobUrlRegex, issueBody);
const companyName = extractData(companyNameRegex, issueBody);
const companyUrl = extractData(companyUrlRegex, issueBody);
const location = extractData(locationRegex, issueBody);
const type = extractData(typeRegex, issueBody);
const usa = extractData(usaRegex, issueBody);
const status = extractData(statusRegex, issueBody);
const githubEmail = extractData(githubEmailRegex, issueBody);
return {
jobTitle,
jobUrl,
companyName,
companyUrl,
location,
type,
usa,
status,
githubEmail,
};
}
async function main() {
try {
const context = github.context;
if (context.payload.issue) {
const issue = context.payload.issue;
const username = issue.user.login;
const labelNames = issue.labels.map(
(label: { name: string }) => label.name
);
const formInputs = parseIssueBody(issue.body || "");
if (
labelNames.includes("new") &&
formInputs.jobTitle &&
formInputs.jobUrl &&
formInputs.companyName &&
formInputs.companyUrl &&
formInputs.location &&
formInputs.type &&
formInputs.usa
) {
await addNewJob(
formInputs.jobUrl,
formInputs.jobTitle,
formInputs.companyName,
formInputs.companyUrl,
formInputs.location,
formInputs.type === "New Grad" ? "new_grad" : "intern",
formInputs.usa === "Yes, it's based in the USA."
);
core.setOutput("commit_message", "chore: add new position");
} else if (labelNames.includes("update") && formInputs.jobUrl) {
await updateJob(
formInputs.jobUrl,
formInputs.jobTitle,
formInputs.companyName,
formInputs.companyUrl,
formInputs.location,
formInputs.type
? formInputs.type === "New Grad"
? "new_grad"
: "intern"
: null,
formInputs.usa
? formInputs.usa === "Yes, it's based in the USA."
: null,
formInputs.status
? formInputs.status === "Yes, it's available."
? "active"
: "inactive"
: null
);
core.setOutput("commit_message", "chore: update position");
}
if (formInputs.githubEmail) {
core.setOutput("git_user_email", formInputs.githubEmail);
core.setOutput("git_user_name", username);
} else {
core.setOutput("git_user_name", GIT_USER_NAME);
core.setOutput("git_user_email", GIT_USER_EMAIL);
}
}
} catch (error) {
let errorMessage = "An unknown error occurred";
if (error instanceof Error) {
errorMessage = error.message;
}
core.setFailed(errorMessage);
core.setOutput("error", errorMessage);
}
}
main();
================================================
FILE: .github/scripts/src/config.ts
================================================
export const TABLES = [
{
path: "../../../README.md",
salary: true,
interval: "hr",
query: {
job_type: "intern",
is_usa: true,
},
},
{
path: "../../../NEW_GRAD_USA.md",
salary: true,
interval: "yr",
query: {
job_type: "new_grad",
is_usa: true,
},
},
{
path: "../../../INTERN_INTL.md",
salary: false,
interval: undefined,
query: {
job_type: "intern",
is_usa: false,
},
},
{
path: "../../../NEW_GRAD_INTL.md",
salary: false,
interval: undefined,
query: {
job_type: "new_grad",
is_usa: false,
},
},
] as const;
export const HEADERS = ["Company", "Position", "Location", "Posting", "Age"];
export const MARKERS = {
faang: {
start: "<!-- TABLE_FAANG_START -->",
end: "<!-- TABLE_FAANG_END -->",
},
quant: {
start: "<!-- TABLE_QUANT_START -->",
end: "<!-- TABLE_QUANT_END -->",
},
other: { start: "<!-- TABLE_START -->", end: "<!-- TABLE_END -->" },
} as const;
================================================
FILE: .github/scripts/src/get-jobs.ts
================================================
import * as fs from "fs";
import * as path from "path";
import * as core from "@actions/core";
import dotenv from "dotenv";
import { fetchJobCounts, fetchJobs } from "./queries";
import { Job } from "./types/job.schema";
import { HEADERS, MARKERS, TABLES } from "./config";
dotenv.config();
const APPLY_IMG_URL = process.env.APPLY_IMG_URL;
function generateMarkdownTable(
jobs: Job[],
salary?: boolean,
interval: string = "yr"
) {
const headers = salary
? [...HEADERS.slice(0, 3), "Salary", ...HEADERS.slice(3)]
: HEADERS;
let table = `| ${headers.join(" | ")} |\n`;
table += `|${headers.map(() => "---").join("|")}|\n`;
jobs.forEach((job) => {
const applyCell = `<a href="${job.job_url}"><img src="${APPLY_IMG_URL}" alt="Apply" width="70"/></a>`;
const companyCell = job.company_url
? `<a href="${job.company_url}"><strong>${
job.company_name || ""
}</strong></a>`
: `<strong>${job.company_name || ""}</strong>`;
const row = [
companyCell,
job.job_title || "",
job.job_locations || "",
applyCell,
`${job.age}d`,
];
if (salary && job.salary) {
const salary =
job.salary >= 1000
? `${(job.salary / 1000).toFixed(0)}k`
: job.salary.toString();
const salaryCell = `$${salary}/${interval}`;
row.splice(3, 0, salaryCell);
} else if (salary && !job.salary) {
const salaryCell = "";
row.splice(3, 0, salaryCell);
}
table += `| ${row.join(" | ")} |\n`;
});
return table;
}
function updateTable(
readmeContent: string,
marker: { start: string; end: string },
tableContent: string
): string {
const { start, end } = marker;
const before = readmeContent.split(start)[0];
const after = readmeContent.split(end)[1] ?? "";
return `${before}${start}\n${tableContent}\n${end}${after}`;
}
function updateReadme(
tables: { [K in keyof typeof MARKERS]: string },
filePath: string
) {
const readmePath = path.join(__dirname, filePath);
let readmeContent = fs.readFileSync(readmePath, "utf8");
readmeContent = updateTable(readmeContent, MARKERS.faang, tables.faang);
readmeContent = updateTable(readmeContent, MARKERS.quant, tables.quant);
readmeContent = updateTable(readmeContent, MARKERS.other, tables.other);
fs.writeFileSync(readmePath, readmeContent, "utf8");
}
async function updateCounts(filePath: string) {
const readmePath = path.join(__dirname, filePath);
let readmeContent = fs.readFileSync(readmePath, { encoding: "utf8" });
const jobCounts = await fetchJobCounts();
readmeContent = readmeContent.replace(
/(\[Internships :books:\]\(\/\))(\s+-\s+\*\*\d+\*\*\s+available)/,
`$1 - **${jobCounts.intern_usa_count}** available`
);
readmeContent = readmeContent.replace(
/(\[New Graduate :mortar_board:\]\(\/NEW_GRAD_USA\.md\))(\s+-\s+\*\*\d+\*\* available)?/,
`$1 - **${jobCounts.new_grad_usa_count}** available`
);
readmeContent = readmeContent.replace(
/(\[Internships :books:\]\(\/INTERN_INTL\.md\))(\s+-\s+\*\*\d+\*\*)?/,
`$1 - **${jobCounts.intern_intl_count}**`
);
readmeContent = readmeContent.replace(
/(\[New Graduate :mortar_board:\]\(\/NEW_GRAD_INTL\.md\))(\s+-\s+\*\*\d+\*\* available)?/,
`$1 - **${jobCounts.new_grad_intl_count}** available`
);
fs.writeFileSync(readmePath, readmeContent, { encoding: "utf8" });
}
async function main() {
try {
for (const table of TABLES) {
const faangJobs = await fetchJobs({
...table.query,
company_type: "faang",
});
const quantJobs = await fetchJobs({
...table.query,
company_type: "financial",
});
const jobs = await fetchJobs({
...table.query,
company_type: "other",
});
const tables = {
faang: generateMarkdownTable(faangJobs, table.salary, table.interval),
quant: generateMarkdownTable(quantJobs, table.salary, table.interval),
other: generateMarkdownTable(jobs),
};
updateReadme(tables, table.path);
updateCounts(table.path);
}
} catch (error) {
if (error instanceof Error) {
core.setFailed(error.message);
} else {
core.setFailed("An unknown error occurred");
}
}
}
main();
================================================
FILE: .github/scripts/src/mutations.ts
================================================
import dotenv from "dotenv";
import { createClient } from "@supabase/supabase-js";
dotenv.config();
const SUPABASE_URL = process.env.SUPABASE_URL;
const SUPABASE_KEY = process.env.SUPABASE_KEY;
const supabase =
SUPABASE_URL && SUPABASE_KEY
? createClient(SUPABASE_URL, SUPABASE_KEY)
: null;
export async function addNewJob(
jobUrl: string,
jobTitle: string,
companyName: string,
companyUrl: string,
location: string,
type: "new_grad" | "intern",
usa: boolean
) {
if (!supabase) {
throw new Error("Supabase client is not initialized.");
}
const { data, error } = await supabase.rpc("add_new_job", {
_job_title: jobTitle,
_job_url: jobUrl,
_company_name: companyName,
_company_url: companyUrl,
_location: location,
_type: type,
_usa: usa,
});
if (error) {
throw new Error(error.message);
}
}
export async function updateJob(
jobUrl: string,
jobTitle: string | null,
companyName: string | null,
companyUrl: string | null,
location: string | null,
type: "new_grad" | "intern" | null,
usa: boolean | null,
status: "active" | "inactive" | null
) {
if (!supabase) {
throw new Error("Supabase client is not initialized.");
}
const { data, error } = await supabase.rpc("update_job", {
_job_url: jobUrl,
_new_job_title: jobTitle,
_new_company_name: companyName,
_new_company_url: companyUrl,
_new_location: location,
_new_type: type,
_new_usa: usa,
_new_status: status,
});
if (error) {
throw new Error(error.message);
}
}
================================================
FILE: .github/scripts/src/queries.ts
================================================
import dotenv from "dotenv";
import { createClient } from "@supabase/supabase-js";
import { JobListSchema } from "./types/job.schema";
import { JobCountsSchema } from "./types/job-counts.schema";
dotenv.config();
const supabaseUrl = process.env.SUPABASE_URL;
const supabaseKey = process.env.SUPABASE_KEY;
const supabase =
supabaseUrl && supabaseKey ? createClient(supabaseUrl, supabaseKey) : null;
export async function fetchJobs(params: {
job_type: string;
is_usa: boolean;
company_type: string;
}) {
if (!supabase) {
throw new Error("Supabase client is not initialized.");
}
const { data, error } = await supabase.rpc("get_jobs", params);
if (error) {
throw new Error(`Supabase query error: ${error.message}`);
}
try {
return JobListSchema.parse(data);
} catch (validationError) {
throw new Error(`Data validation error: ${validationError}`);
}
}
export async function fetchJobCounts() {
if (!supabase) {
throw new Error("Supabase client is not initialized.");
}
const { data, error } = await supabase.rpc("get_swe_job_counts");
if (error) {
throw new Error(`Supabase query error: ${error.message}`);
}
try {
return JobCountsSchema.parse(data);
} catch (validationError) {
throw new Error(`Data validation error: ${validationError}`);
}
}
================================================
FILE: .github/scripts/src/types/job-counts.schema.ts
================================================
import z from "zod";
export const JobCountsSchema = z.object({
intern_usa_count: z.number(),
new_grad_usa_count: z.number(),
intern_intl_count: z.number(),
new_grad_intl_count: z.number(),
});
export type JobCounts = z.infer<typeof JobCountsSchema>;
================================================
FILE: .github/scripts/src/types/job.schema.ts
================================================
import z from "zod";
const JobSchema = z.object({
company_name: z.string(),
company_url: z.string().nullable(),
job_title: z.string(),
job_locations: z.string().nullable(),
job_url: z.string(),
age: z.number(),
salary: z.number().nullable().optional(),
});
export const JobListSchema = z.array(JobSchema);
export type Job = z.infer<typeof JobSchema>;
================================================
FILE: .github/scripts/tsconfig.json
================================================
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
/* Projects */
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
/* Language and Environment */
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
// "jsx": "preserve", /* Specify what JSX code is generated. */
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
/* Modules */
"module": "commonjs" /* Specify what module code is generated. */,
"rootDir": "./src", /* Specify the root folder within your source files. */
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
// "resolveJsonModule": true, /* Enable importing .json files. */
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
/* JavaScript Support */
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
/* Emit */
// "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
"outDir": "./build" /* Specify an output folder for all emitted files. */,
// "removeComments": true, /* Disable emitting comments. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
// "newLine": "crlf", /* Set the newline character for emitting files. */
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
/* Interop Constraints */
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
/* Type Checking */
"strict": true /* Enable all strict type-checking options. */,
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}
================================================
FILE: .github/workflows/add-or-update-job.yml
================================================
name: Add or Update Job
on:
issues:
types: ["labeled"]
jobs:
update-or-add-job:
runs-on: ubuntu-latest
if: github.event.label.name == 'approved'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install dependencies
run: npm install
working-directory: .github/scripts
- name: Update or Add Job
run: npm run add-or-update-job
id: add_or_update_job
working-directory: .github/scripts
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }}
GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
- name: Get Jobs and Update Tables
if: success()
run: npm run get-jobs
working-directory: .github/scripts
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
APPLY_IMG_URL: ${{ secrets.APPLY_IMG_URL }}
- name: Commit Markdown changes
if: success()
run: |
git config --local user.name ${{ steps.add_or_update_job.outputs.git_user_name }}
git config --local user.email ${{ steps.add_or_update_job.outputs.git_user_email }}
git add README.md INTERN_INTL.md NEW_GRAD_USA.md NEW_GRAD_INTL.md
git diff --staged --exit-code || git commit -m "${{ steps.add_or_update_job.outputs.commit_message }}"
- name: Push changes
if: success()
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
- name: Action Succeeded
if: success()
run: |
gh issue close --comment "Your contribution has been approved. Closing this issue..." ${{ github.event.issue.number }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Action Failed
if: failure()
run: |
gh issue comment ${{ github.event.issue.number }} --body "There was an error updating or adding this job. Error: ${{ steps.add_or_update_job.outputs.error }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
================================================
FILE: .github/workflows/get-jobs.yml
================================================
name: Get Jobs and Update Tables
on:
schedule:
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
get-jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install dependencies
run: npm install
working-directory: .github/scripts
- name: Get Jobs and Update Tables
run: npm run get-jobs
working-directory: .github/scripts
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
APPLY_IMG_URL: ${{ secrets.APPLY_IMG_URL }}
- name: Commit Markdown changes
if: success()
run: |
git config --local user.name ${{ secrets.GIT_USER_NAME }}
git config --local user.email ${{ secrets.GIT_USER_EMAIL }}
git add README.md INTERN_INTL.md NEW_GRAD_USA.md NEW_GRAD_INTL.md
git diff --staged --exit-code || git commit -m "chore: update tables"
- name: Push changes
if: success()
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
force: true
================================================
FILE: INTERN_INTL.md
================================================
## 2026 International SWE Internships :books::globe_with_meridians:
### USA Positions :eagle:
- [Internships :books:](/) - **424** available ([FAANG+](/#faang), [Quant](/#quant), [Other](/#other))
- [New Graduate :mortar_board:](/NEW_GRAD_USA.md) - **400** available ([FAANG+](/NEW_GRAD_USA.md#faang), [Quant](/NEW_GRAD_USA.md#quant), [Other](/NEW_GRAD_USA.md#other))
### International Positions :globe_with_meridians:
- [Internships :books:](/INTERN_INTL.md) - **393** available ([FAANG+](#faang), [Quant](#quant), [Other](#other))
- [New Graduate :mortar_board:](/NEW_GRAD_INTL.md) - **455** available ([FAANG+](/NEW_GRAD_INTL.md#faang), [Quant](/NEW_GRAD_INTL.md#quant), [Other](/NEW_GRAD_INTL.md#other))
[:arrow_down_small:End of List](#bottom)
<a name="top"></a>
### FAANG+
<!-- TABLE_FAANG_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Nsight Systems - 2026 | Remote | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Poland-Remote/Software-Engineering-Intern--Nsight-Systems---2026_JR2007248"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Enterprise Software Test Development Intern - 2026 | Taiwan, Taipei | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Taiwan-Taipei/Enterprise-Software-Test-Development-Intern---2026_JR2014404"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Next Step Software Engineer Intern - 2026 - Portuguese | S o Paulo, State of S o Paulo, Brazil | <a href="https://www.google.com/about/careers/applications/jobs/results/73530024208016070"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Test Development - 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/Software-Engineering-Intern--Test-Development---2026_JR2013853"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Test Development - 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/Software-Engineering-Intern--Test-Development---2026_JR2013852"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | System Software Engineering Intern - Systems Infrastructure - Summer 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/System-Software-Engineer-Intern--Systems-Infrastructure--Summer-2026_JR2006824"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Manufacturing &Ops 2026 Shenzhen | Shenzhen, CHN | <a href="https://www.amazon.jobs/jobs/3179511/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Sustaining Operations 2026 Shanghai | Shanghai, CHN | <a href="https://www.amazon.jobs/jobs/3179525/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Test Development - 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/Software-Engineering-Intern--Test-Development---2026_JR2007443-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 38d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Autonomous Vehicles - 2026 | China, Shenzhen | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shenzhen/Software-Engineering-Intern--Autonomous-Vehicles---2026_JR2012899"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 39d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Software Engineering Intern - 2026 | Tokyo, Japan | <a href="https://www.google.com/about/careers/applications/jobs/results/88214363847959238"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Alexa 2026 Shenzhen | Shenzhen, CHN | <a href="https://www.amazon.jobs/jobs/3174779/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Graphics Engineer Intern - Tegra System Software - Summer 2026 | Japan, Tokyo | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Japan-Tokyo/Graphics-Engineer-Intern--Tegra-System-Software---Summer-2026_JR2011824"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Manufacturing&Ops 2026 Shanghai | Shanghai, CHN | <a href="https://www.amazon.jobs/jobs/3165273/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 56d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | System Software Engineer Intern - AI Performance And Efficiency Tools - Summer 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/System-Software-Engineer-Intern--AI-Performance-And-Efficiency-Tools--Summer-2026_JR2006462"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 56d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Autonomous Vehicle Calibration | Switzerland, Zurich | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Switzerland-Zurich/Software-Engineering-Intern--Autonomous-Vehicle-Calibration_JR2007151-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | Software Engineering Intern - Robotics Simulation - Summer 2026 | Canada, Toronto | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Canada-Toronto/Software-Engineering-Intern--Robotics-Simulation---Summer-2026_JR2008030"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | AI Computing Software Development Intern - 2026 | China, Shanghai | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/China-Shanghai/AI-Computing-Software-Development-Intern---2026_JR2007089"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | AI Computing Software Development Intern - 2026 | Taiwan, Taipei | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Taiwan-Taipei/AI-Computing-Software-Development-Intern---2026_JR2010926"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Devices 2026 Shanghai | Shanghai, CHN | <a href="https://www.amazon.jobs/jobs/3160701/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 63d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Devices 2026 Beijing | Beijing, CHN | <a href="https://www.amazon.jobs/jobs/3160019/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 63d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - 2026 Shanghai | Shanghai, CHN | <a href="https://www.amazon.jobs/jobs/3160700/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 63d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - 2026 Beijing | Beijing, CHN | <a href="https://www.amazon.jobs/jobs/3160004/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 64d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Seed Engineer Program - Software Development Engineer Intern - 2026 Shenzhen | Shenzhen, CHN | <a href="https://www.amazon.jobs/jobs/3159987/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 64d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Embedded Firmware QA Engineer Intern - eero | Taipei City, TWN | <a href="https://www.amazon.jobs/jobs/3150067/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 79d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Software Dev Engineer Intern - Embedded System - eero | Taipei City, TWN | <a href="https://www.amazon.jobs/jobs/3149107/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 85d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | 2026 Software Dev Engineer Intern - ZAF | Cape Town, South Africa | <a href="https://www.amazon.jobs/jobs/3141770/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 98d |
| <a href="https://www.amazon.com"><strong>Amazon</strong></a> | Robotics - Software Development Engineer Intern - 2026 - Toronto | Toronto, Canada | <a href="https://www.amazon.jobs/jobs/3136815/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 106d |
<!-- TABLE_FAANG_END -->
### Quant
<!-- TABLE_QUANT_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://www.citadelsecurities.com/careers"><strong>Citadel Securities</strong></a> | Software Engineer - Intern - Asia | Singapore | <a href="https://www.citadelsecurities.com/careers/details/software-engineer-intern-asia/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.citadelsecurities.com/careers"><strong>Citadel Securities</strong></a> | Software Engineer - Intern - Europe | London | <a href="https://www.citadelsecurities.com/careers/details/software-engineer-intern-europe/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.citadel.com/careers"><strong>Citadel</strong></a> | Software Engineer - Intern - Europe | London | <a href="https://www.citadel.com/careers/details/software-engineer-intern-europe/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 16d |
| <a href="https://www.citadel.com/careers"><strong>Citadel</strong></a> | Software Engineer - Intern - Asia | Singapore | <a href="https://www.citadel.com/careers/details/software-engineer-intern-asia/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 16d |
| <a href="https://www.hudsonrivertrading.com"><strong>Hudson River Trading</strong></a> | C++ Software Engineering Internship - Summer 2026 | Singapore | <a href="https://www.hudsonrivertrading.com/careers/job/?gh_jid=6998788"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 34d |
| <a href="https://www.jumptrading.com"><strong>Jump Trading</strong></a> | Campus Software - Trading Team - Intern | Hong Kong | <a href="https://www.jumptrading.com/hr/job?gh_jid=7565728"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://www.jumptrading.com"><strong>Jump Trading</strong></a> | Campus Software Engineer - Intern - Dec 2026 - Feb 2027 | Sydney | <a href="https://www.jumptrading.com/hr/job?gh_jid=7543377"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 57d |
| <a href="https://www.janestreet.com"><strong>Jane Street</strong></a> | Software Engineer Summer Internship - December-February | HKG | <a href="https://www.janestreet.com/join-jane-street/position/7582902002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 58d |
| <a href="https://optiver.com"><strong>Optiver</strong></a> | Software Developer Internship - 2026-27 | Sydney, Australia | <a href="https://optiver.com/working-at-optiver/career-opportunities/7985973002/?gh_jid=7985973002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 64d |
<!-- TABLE_QUANT_END -->
### Other
<!-- TABLE_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://www.caterpillar.com"><strong>Caterpillar</strong></a> | Software Designer Intern / Stagiaire en conception de logiciels | Laval, Quebec | <a href="https://cat.wd5.myworkdayjobs.com/en-US/caterpillarcareers/job/Laval-Quebec/Software-Designer-Intern---Stagiaire-en-conception-de-logiciels_R0000346179"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.gevernova.com/"><strong>GE Vernova</strong></a> | Embedded Systems / Firmware Engineering Intern-2 | Stafford | <a href="https://gevernova.wd5.myworkdayjobs.com/en-US/only_confidential_executive_recruiting/job/Stafford/Embedded-Systems---Firmware-Engineering-Intern-2_R5035163-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.gevernova.com/"><strong>GE Vernova</strong></a> | Embedded Systems / Firmware Engineering Intern-1 | Stafford | <a href="https://gevernova.wd5.myworkdayjobs.com/en-US/only_confidential_executive_recruiting/job/Stafford/Embedded-Systems---Firmware-Engineering-Intern-1_R5035165-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.gendigital.com"><strong>Gen</strong></a> | Software QA Engineer Intern | Brno Czech | <a href="https://gen.wd1.myworkdayjobs.com/en-US/careers/job/Brno-Czech/Software-QA-Engineer-Intern_55280-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://hitachi.com/"><strong>Hitachi</strong></a> | Hitachi Rail Talent Programme - Software Tester Engineer Intern | Madrid | <a href="https://gtsgbu.wd3.myworkdayjobs.com/en-US/careers/job/Madrid/Hitachi-Rail-Talent-Programme---Software-Tester-Engineer-Intern_R1011984"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://hitachi.com/"><strong>Hitachi</strong></a> | Hitachi Rail Talent Programme - Software Engineering Intern | Madrid | <a href="https://gtsgbu.wd3.myworkdayjobs.com/en-US/careers/job/Madrid/Hitachi-Rail-Talent-Programme---Software-Engineering-Intern_R1011920"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | DevOps Software Engineering Intern | Poland, Gdansk | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Poland-Gdansk/DevOps-Software-Engineering-Intern_JR0281969"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.jamf.com"><strong>Jamf</strong></a> | Software Engineer - Test - Internship | Brno, Czechia | <a href="https://www.jamf.com/about/careers/jobs/?gh_jid=5825549004&gh_jid=5825549004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.motorolasolutions.com"><strong>Motorola Solutions</strong></a> | Intern Software Developer - JS/Node.js | Krakow, Poland | <a href="https://motorolasolutions.wd5.myworkdayjobs.com/en-US/careers/job/Krakow-Poland/Intern-Software-Developer--JS-Nodejs-_R63076"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.nxp.com"><strong>NXP Semiconductors</strong></a> | Internship: Software Developer - Tools - m/f/d | Gratkorn | <a href="https://nxp.wd3.myworkdayjobs.com/en-US/careers/job/Gratkorn/Internship--Software-Developer---Tools--m-f-d-_R-10062132"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="http://www.orionhealth.com/"><strong>Orion Health</strong></a> | Pre-Registration: Software Engineering Summer Internships - Nov 2026 | Auckland, Auckland, NZ | <a href="https://apply.workable.com/orion-health/j/86E93DEDF7/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://solink.com/"><strong>Solink</strong></a> | Software Engineer Co-Op - AI/ML | Ottawa Office | <a href="https://jobs.ashbyhq.com/solink/4460f7ac-b697-4c9c-946d-16196a8ef58b"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | Backend Development Intern | Singapore CapitaSky | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Singapore-CapitaSky/Backend-Development-Intern_R107170"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | Backend Development Intern | Singapore CapitaSky | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Singapore-CapitaSky/Backend-Development-Intern_R107137"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | Backend Development Intern | Singapore CapitaSky | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Singapore-CapitaSky/Backend-Development-Intern_R107138"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://thetradedesk.com"><strong>The Trade Desk</strong></a> | 2026 Toronto Software Engineering Internship | Toronto | <a href="https://job-boards.greenhouse.io/thetradedesk/jobs/4959712007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://global.abb/"><strong>ABB</strong></a> | Internship: Digital Operations & Cloud Intelligence | Madrid, Madrid, Spain | <a href="https://abb.wd3.myworkdayjobs.com/en-US/external_career_page/job/Madrid-Madrid-Spain/Internship--Digital-Operations---Cloud-Intelligence_JR00029314"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.cloudsek.com"><strong>CloudSEK</strong></a> | SDE Intern - Frontend | Bengaluru, Karnataka, India | <a href="https://job-boards.greenhouse.io/cloudsek/jobs/5831215004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://covergo.com/"><strong>CoverGo</strong></a> | Software Engineer Intern - .Net - Vue/React | Ho Chi Minh City, VN | <a href="https://apply.workable.com/covergo/j/681A933D1F/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://creatify.ai/"><strong>Creatify</strong></a> | Software Engineer Intern 2026 | Mountain View | <a href="https://jobs.ashbyhq.com/creatify/75a1f1ad-13d2-4513-952c-71b6dfcaa84f"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.hitachi.com"><strong>Hitachi</strong></a> | Internship - Full-stack Software Engineer | Krakow, Lesser Poland, Poland | <a href="https://hitachi.wd1.myworkdayjobs.com/en-US/hitachi/job/Krakow-Lesser-Poland-Poland/Internship---Full-stack-Software-Engineer_R0122401-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.hitachi.com"><strong>Hitachi</strong></a> | Internship - DevOps Software Engineer | Krakow, Lesser Poland, Poland | <a href="https://hitachi.wd1.myworkdayjobs.com/en-US/hitachi/job/Krakow-Lesser-Poland-Poland/Internship---DevOps-Software-Engineer_R0122410-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://tamara.co"><strong>Tamara</strong></a> | Associate Software Engineer - Builders Program - Co-op training or Internship | Riyadh, Saudi Arabia | <a href="https://job-boards.eu.greenhouse.io/tamara/jobs/4792932101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.tel.com/"><strong>Tokyo Electron</strong></a> | Software Engineer Intern - Summer 2026 | Chaska | <a href="https://tel.wd3.myworkdayjobs.com/en-US/tel-careers/job/Chaska/Software-Engineer-Intern--Summer-2026-_R25-01193"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.bostonfed.org"><strong>Federal Reserve Bank of Boston</strong></a> | Summer 2026 Intern: Software Engineering | | <a href="https://rb.wd5.myworkdayjobs.com/en-US/FRS/job/Summer-2026-Intern--Software-Engineering_R-0000031107-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.ventitechnologies.com"><strong>GoVenti</strong></a> | Autonomous Vehicle Integration & Validation Intern - Software Tools | Singapore | <a href="https://jobs.ashbyhq.com/goventi/60954aca-104b-4810-b0d4-70682f64742a"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.riotgames.com"><strong>Riot Games</strong></a> | Software Engineering Intern - Sydney | Sydney, Australia | <a href="https://www.riotgames.com/en/work-with-us/job/7702419?gh_jid=7702419"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="http://www.roku.com"><strong>Roku</strong></a> | Software Engineer Intern - AI-Powered Picture Quality Tools | Hsinchu, Taiwan | <a href="https://www.weareroku.com/jobs/7725549?gh_jid=7725549"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.juliusbaer.com"><strong>Julius Baer</strong></a> | Summer Internship 2026 - Software Engineer 100% - f/m/d | Zurich | <a href="https://juliusbaer.wd3.myworkdayjobs.com/en-US/external/job/Zurich/Summer-Internship-2026---Software-Engineer-100----f-m-d-_r-17993-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.motorolasolutions.com"><strong>Motorola Solutions</strong></a> | Intern Software Developer - LINUX | Krakow, Poland | <a href="https://motorolasolutions.wd5.myworkdayjobs.com/en-US/careers/job/Krakow-Poland/Intern-Software-Developer--LINUX-_R62649"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Software Engineer Internship - Puerto Rico | US PR SANTA ISABEL B Felicia Industrial Park St B BLDG | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-SANTA-ISABEL-B1--Felicia-Industrial-Park---St-B1--BLDG-1/Software-Engineer-Internship--Puerto-Rico-_01823678"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.razer.com"><strong>Razer</strong></a> | Data Engineer Intern | Singapore | <a href="https://razer.wd3.myworkdayjobs.com/en-US/careers/job/Singapore/Data-Engineer-Intern_JR2026007096"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://remitly.com/"><strong>Remitly</strong></a> | Software Development Engineering Intern | Krakow, Poland | <a href="https://remitly.wd5.myworkdayjobs.com/en-US/remitly_careers/job/Krakow-Poland/Software-Development-Engineering-Intern_R_106005"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.spacex.com"><strong>SpaceX</strong></a> | Fall 2026 Software Engineering Internship/Co-op | Flexible Any SpaceX Site | <a href="https://boards.greenhouse.io/spacex/jobs/8403219002?gh_jid=8403219002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.exploration.space/"><strong>The Exploration Company</strong></a> | Internship - Engine Controller Software | Munich, Germany | <a href="https://jobs.ashbyhq.com/the-exploration-company/39622e66-f1e8-45f8-9521-702a85900beb"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.gevernova.com/"><strong>GE Vernova</strong></a> | Software / Systems Engineering Intern-2 | Stafford | <a href="https://gevernova.wd5.myworkdayjobs.com/en-US/only_confidential_executive_recruiting/job/Stafford/Software---Systems-Engineering-Intern-2_R5035166-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.gevernova.com/"><strong>GE Vernova</strong></a> | Software / Systems Engineering Intern-1 | Stafford | <a href="https://gevernova.wd5.myworkdayjobs.com/en-US/only_confidential_executive_recruiting/job/Stafford/Software---Systems-Engineering-Intern-1_R5035167-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.juliusbaer.com"><strong>Julius Baer</strong></a> | Summer Internship 2026- Initiative Coordinator for Software Quality & Operational Resilience 100% - f/m/d | Zurich | <a href="https://juliusbaer.wd3.myworkdayjobs.com/en-US/external/job/Zurich/Summer-Internship-2026--Initiative-Coordinator-for-Software-Quality---Operational-Resilience-100---f-m-d-_r-18028-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.proofpoint.com"><strong>Proofpoint</strong></a> | Data Engineer - Detection Intern | Tel Aviv, Israel | <a href="https://proofpoint.wd5.myworkdayjobs.com/en-US/proofpointcareers/job/Tel-Aviv-Israel/Detection-Engineer-Intern_R13806"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 5d |
| <a href="https://www.bosch.com/"><strong>Bosch</strong></a> | Software Function Developer intern | Budapest, hu | <a href="https://jobs.smartrecruiters.com/BoschGroup/744000114715647-software-function-developer-intern?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://doubleverify.com"><strong>DoubleVerify</strong></a> | Software Engineering Intern | Ghent Belgium | <a href="https://job-boards.greenhouse.io/doubleverify/jobs/8452605002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.bostonfed.org"><strong>Federal Reserve Bank of Boston</strong></a> | Fall 2026 Co-op: Software Engineering | | <a href="https://rb.wd5.myworkdayjobs.com/en-US/FRS/job/Fall-2026-Co-op--Software-Engineering_R-0000031108"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://rapsodo.com/"><strong>Rapsodo</strong></a> | R&D Intern - Software Engineering | Singapore, Singapore, SG | <a href="https://apply.workable.com/rapsodo/j/AFE84574FF/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://rodanenergy.com/"><strong>Rodan Energy Solutions</strong></a> | Co-op - Software Developer - Facility Intelligence | Mississauga, ON, Canada | <a href="http://rodanenergysolutionsinc.applytojob.com/apply/1JpYCjkza7/Coop-Software-Developer-Facility-Intelligence"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.asml.com"><strong>ASML</strong></a> | Working Student: D&E Automation & Software / Werkstudent:in D&E Automation & Software - no internship | Berlin, Germany | <a href="https://asml.wd3.myworkdayjobs.com/en-US/asmlext1/job/Berlin-Germany/Working-Student--D-E-Automation---Software---Working-Student--D-E-Automation---Software---Werkstudent-in-D-E-Automation---Software--no-internship-_J-00336448-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.bandwidth.com"><strong>Bandwidth</strong></a> | Software Development Intern | Romania Ia i | <a href="https://job-boards.greenhouse.io/bandwidth/jobs/7642056"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.bosch.com/"><strong>Bosch</strong></a> | Internship in Development of AI-Based Solutions for Embedded Middleware Software | Abstatt, BW, de | <a href="https://jobs.smartrecruiters.com/BoschGroup/744000114341386-internship-in-development-of-ai-based-solutions-for-embedded-middleware-software-?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.dotdashmeredith.com"><strong>Dotdash Meredith</strong></a> | Software Engineering Intern | Remote | <a href="https://meredith.wd5.myworkdayjobs.com/en-US/ext/job/Alberta-CAN-Remote/Software-Engineering-Intern_JR15315-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://gdmissionsystems.com"><strong>General Dynamics Mission Systems</strong></a> | Software Engineer - Intern | US Varies | <a href="https://careers-gdms.icims.com/jobs/71480/software-engineer---intern/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | C++ System Software Engineering Intern - GPU Compute | Poland, Gdansk | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Poland-Gdansk/C---System-Software-Engineering-Intern---GPU-Compute_JR0281965"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.jabil.com"><strong>Jabil</strong></a> | Software Development Intern - Materials | Guadalajara | <a href="https://jabil.wd5.myworkdayjobs.com/en-US/jabil_careers/job/Guadalajara/Software-Development-Intern--Materials-_J2442876"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.leidos.com"><strong>Leidos</strong></a> | Software Asset Administrator Intern | Remote | <a href="https://leidos.wd5.myworkdayjobs.com/en-US/external/job/6314-RemoteTeleworker-US/Software-Asset-Administrator-Intern_R-00178194"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.nxp.com"><strong>NXP Semiconductors</strong></a> | Internship: Embedded Software Developer - m/f/d | Gratkorn | <a href="https://nxp.wd3.myworkdayjobs.com/en-US/careers/job/Gratkorn/Internship--Embedded-Software-Developer--m-f-d-_R-10062129"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.nxp.com"><strong>NXP Semiconductors</strong></a> | Internship: Firmware Engineer - m/f/d | Gratkorn | <a href="https://nxp.wd3.myworkdayjobs.com/en-US/careers/job/Gratkorn/Internship--Firmware-Engineer--m-f-d-_R-10061740"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://visa.com/"><strong>Visa</strong></a> | Software Engineering Intern | Singapore, sg | <a href="https://jobs.smartrecruiters.com/Visa/744000114322541-software-engineering-intern?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://www.ispace-inc.com/"><strong>ispace, inc.</strong></a> | Avionics Software & Test Intern | Tokyo, Japan | <a href="https://jobs.lever.co/ispace-inc/908f1173-946d-4549-839d-6a4f0ed887ed/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.analog.com"><strong>Analog Devices</strong></a> | RF & Embedded Software Intern - Wireless Communications & RF | Germany, Munich, Otl Aicher Strasse | <a href="https://analogdevices.wd1.myworkdayjobs.com/en-US/external/job/Germany-Munich-Otl-Aicher-Strasse/RF---Embedded-Software-Intern--Wireless-Communications---RF-_R261470"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.hp.com"><strong>HP</strong></a> | Browser Software Engineer Intern | Cambridge, Cambridgeshire, United Kingdom | <a href="https://hp.wd5.myworkdayjobs.com/en-US/externalcareersite/job/Cambridge-Cambridgeshire-United-Kingdom/Browser-Software-Engineer-Intern_3160410-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://healthedge.com"><strong>HealthEdge</strong></a> | Power BI Cloud Infrastructure Analytics Internship - Summer 2026 | Remote | <a href="https://careers-healthedge.icims.com/jobs/7352/power-bi-cloud-infrastructure-analytics-internship---summer-2026/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.ing.com/"><strong>ING</strong></a> | Backend Engineer Intern | Madrid V a de los Poblados | <a href="https://ing.wd3.myworkdayjobs.com/en-US/icsgblcor/job/Madrid-Va-de-los-Poblados/Backend-Engineer-Intern_REQ-10111250"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.ing.com/"><strong>ING</strong></a> | Frontend Engineer Intern | Madrid V a de los Poblados | <a href="https://ing.wd3.myworkdayjobs.com/en-US/icsgblcor/job/Madrid-Va-de-los-Poblados/Frontend-Engineer-Intern_REQ-10111233"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | Foundry Data Engineer - Intern | Taiwan, Hsinchu | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Taiwan-Hsinchu/Foundry-Data-Engineer---Intern_JR0281772"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.nium.com"><strong>Nium</strong></a> | Software Engineer Intern — Summer 2025 - 8-12 Weeks | Malta | <a href="https://jobs.lever.co/nium/56ce917e-71b9-41ed-9b7f-69e060810273/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.nium.com"><strong>Nium</strong></a> | Data Engineer Intern — Summer 2025 - 8-12 Weeks | Malta | <a href="https://jobs.lever.co/nium/3e56b3c0-36ec-4439-8b9e-ac0e686fa4b2/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.trendmicro.com"><strong>Trend Micro</strong></a> | Cybersecurity & Cloud Engineering Intern - DVAS | Taipei | <a href="https://trendmicro.wd3.myworkdayjobs.com/en-US/external/job/Taipei/Cybersecurity---Cloud-Engineering-Intern--DVAS-_R0009287"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.udemy.com"><strong>Udemy</strong></a> | Software Engineering Intern - Product Design and UXR | Dublin, Ireland | <a href="https://app.careerpuck.com/job-board/udemy/job/5809875004?gh_jid=5809875004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.udemy.com"><strong>Udemy</strong></a> | Software Engineering Intern | Istanbul, Turkey | <a href="https://app.careerpuck.com/job-board/udemy/job/5809883004?gh_jid=5809883004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://draftkings.com/"><strong>DraftKings</strong></a> | Software Engineering Intern | Sofia, BG | <a href="https://draftkings.wd1.myworkdayjobs.com/en-US/employee_referral_portal/job/Sofia-BG/Software-Engineering-Intern_JR13562"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.geocomply.com/"><strong>GeoComply</strong></a> | Data Engineer Intern | Ho Chi Minh, Vietnam | <a href="https://jobs.lever.co/geocomply-2/859559aa-5ae2-4bd1-a006-43a3b8f6844c/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.here.com"><strong>HERE Technologies</strong></a> | Software Internship | PL Krakow | <a href="https://careers-here.icims.com/jobs/81004/software-internship/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.hp.com"><strong>Hewlett-Packard</strong></a> | Browser Software Engineer Intern | Cambridge, Cambridgeshire, United Kingdom | <a href="https://hp.wd5.myworkdayjobs.com/en-US/exteu-ac-careersite/job/Cambridge-Cambridgeshire-United-Kingdom/Browser-Software-Engineer-Intern_3160410"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://konghq.com/"><strong>Kong</strong></a> | Software Engineer Intern - Gateway | China Shanghai | <a href="https://jobs.ashbyhq.com/kong/77e71a3e-662d-4b51-bc16-41a69f85ba91"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.mckesson.com"><strong>McKesson</strong></a> | Stagiaire en développement logiciel - Été 2026 / Software Developer Intern - Summer 2026 | CAN, QC, Montreal, Ville Saint Laurent | <a href="https://mckesson.wd3.myworkdayjobs.com/en-US/external_careers/job/CAN-QC-Montreal-Ville-Saint-Laurent/Stagiaire-en-dveloppement-logiciel---t-2026---Software-Developer-Intern---Summer-2026_JR0143774-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.partly.com/"><strong>Partly</strong></a> | Intern Software Engineer | Christchurch, New Zealand | <a href="https://jobs.ashbyhq.com/partly.com/899fcf9b-07ec-4289-993f-57a2aba0f26d"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://redbull.com/"><strong>Red Bull</strong></a> | Internship Data Engineer - Analytics Enablement | Elsbethen, Salzburg, at | <a href="https://jobs.smartrecruiters.com/RedBull/744000113665658-internship-data-engineer-analytics-enablement?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://solink.com/"><strong>Solink</strong></a> | Software Developer Internship | Ottawa Office | <a href="https://jobs.ashbyhq.com/solink/506e5910-4e59-4464-b38d-341151fc71d1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | Software Engineer - Global Payment Systems - Intern | Singapore CapitaSky | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Singapore-CapitaSky/Software-Engineer--Global-Payment-Systems--Intern-_R107093"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.draftkings.com"><strong>DraftKings</strong></a> | Software Engineering Intern | Sofia, BG | <a href="https://draftkings.wd1.myworkdayjobs.com/en-US/campus_career_portal/job/Sofia-BG/Software-Engineering-Intern_JR13562-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://draftkings.com"><strong>DraftKings</strong></a> | Software Engineering Intern | Sofia, BG | <a href="https://draftkings.wd1.myworkdayjobs.com/en-US/draftkings/job/Sofia-BG/Engineering-Intern_JR13562"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="http://www.maintainx.com"><strong>MaintainX</strong></a> | Software Development Intern | Montreal, Canada | <a href="https://job-boards.greenhouse.io/maintainx/jobs/5068433007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.nxp.com"><strong>NXP Semiconductors</strong></a> | AI Software Student/Intern | Brno | <a href="https://nxp.wd3.myworkdayjobs.com/en-US/careers/job/Brno/AI-Software-Student-Intern_R-10062130"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.nxp.com"><strong>NXP Semiconductors</strong></a> | Summer Internship: Software Development - m/f/d | Gratkorn | <a href="https://nxp.wd3.myworkdayjobs.com/en-US/careers/job/Gratkorn/Summer-Internship--Software-Development--m-f-d-_R-10061943"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://rodanenergy.com/"><strong>Rodan Energy Solutions</strong></a> | Co-op - Software Developer - Market Intelligence | Mississauga, ON, Canada | <a href="http://rodanenergysolutionsinc.applytojob.com/apply/eO6CWuhTtN/Coop-Software-Developer-Market-Intelligence"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | WeChat - Backend Developer Intern | Singapore CapitaSky | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Singapore-CapitaSky/WeChat---Backend-Developer-Intern_R107005"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="http://geaerospace.com/"><strong>GE Aerospace</strong></a> | Engines Engineering Co-op - Computer or Software Engineering - US - Fall 2027 - Returning Students | Evendale | <a href="https://geaerospace.wd5.myworkdayjobs.com/en-US/ge_externalsite/job/Evendale/Engines-Engineering-Co-op---Computer-or-Software-Engineering---US---Fall-2027---Returning-Students_R5030075-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="http://geaerospace.com/"><strong>GE Aerospace</strong></a> | Engines Engineering Intern - Computer or Software Engineering - US - Summer 2027 - Returning Students | Evendale | <a href="https://geaerospace.wd5.myworkdayjobs.com/en-US/ge_externalsite/job/Evendale/Engines-Engineering-Intern---Computer-or-Software-Engineering---US---Summer-2027---Returning-Students_R5030074-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="http://geaerospace.com/"><strong>GE Aerospace</strong></a> | Engines Engineering Co-op - Computer or Software Engineering - US - Spring 2027 - Returning Students | Evendale | <a href="https://geaerospace.wd5.myworkdayjobs.com/en-US/ge_externalsite/job/Evendale/Engines-Engineering-Co-op---Computer-or-Software-Engineering---US---Spring-2027---Returning-Students_R5030073-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="https://vanderlande.com/"><strong>Vanderlande</strong></a> | Internship: A Systematic Approach to Automated PLC Software Analysis for Ensuring Global Code Integrity and Performance Reliability | Veghel | <a href="https://vanderlande.wd3.myworkdayjobs.com/en-US/careers/job/Veghel/LogicLens--A-Systematic-Approach-to-Automated-PLC-Software-Analysis-for-Ensuring-Global-Code-Integrity-and-Performance-Reliability_JR35947"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="http://www.roku.com"><strong>Roku</strong></a> | Software Engineer Intern - Observability | Cardiff, United Kingdom | <a href="https://www.weareroku.com/jobs/7687825?gh_jid=7687825"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 12d |
| <a href="https://www.bosch.com/"><strong>Bosch</strong></a> | Embedded Software Engineer intern- Automotive Camera & Sensor Platforms | Budapest, hu | <a href="https://jobs.smartrecruiters.com/BoschGroup/744000113165702-embedded-software-engineer-intern-automotive-camera-sensor-platforms?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://gxbank.my/"><strong>GXS</strong></a> | Software Engineering Intern | Bangalore, India | <a href="https://gxs.wd3.myworkdayjobs.com/en-US/grxst/job/Bangalore-India/Software-Engineering-Intern_R-2026-03-101778"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://www.guidewire.com"><strong>Guidewire</strong></a> | Front-End Developer Intern | Canada Toronto | <a href="https://guidewire.wd5.myworkdayjobs.com/en-US/external/job/Canada---Toronto/Front-End-Developer-Intern_JR_14453"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://www.intapp.com"><strong>Intapp</strong></a> | Software Engineer Intern | Belfast, UK | <a href="https://intapp.wd1.myworkdayjobs.com/en-US/intapp/job/Belfast-UK/Engineering-Intern_R2024786-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://www.thoughtmachine.net/"><strong>Thought Machine</strong></a> | Software Engineering Intern | United Kingdom, London | <a href="https://jobs.ashbyhq.com/thought-machine/367a97c3-a78e-485b-82c9-80fe5a6c5c1e"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://about.udemy.com"><strong>BEDI Partnerships</strong></a> | Software Engineering Intern - Platform Engineering | Mexico City, Mexico | <a href="https://job-boards.greenhouse.io/udemybedi/jobs/5820343004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.clio.com/"><strong>Clio</strong></a> | Software Developer - Co-op | Toronto | <a href="https://clio.wd3.myworkdayjobs.com/en-US/cliocareersite/job/Software-Developer--Co-op_REQ-1577"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://healthedge.com"><strong>HealthEdge</strong></a> | Software Engineer Internship | Remote | <a href="https://careers-healthedge.icims.com/jobs/7361/software-engineer-internship/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.ing.com/"><strong>ING</strong></a> | Front End Engineering Intern — InfraPort DMS | HBP Amsterdam Haarlerbergpark | <a href="https://ing.wd3.myworkdayjobs.com/en-US/icsgblcor/job/HBP-Amsterdam---Haarlerbergpark/Front-End-Engineering-Intern---InfraPort-DMS_REQ-10110703"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.ing.com/"><strong>ING</strong></a> | Intern - Quantitative Analyst or Data Engineer at RiskHub Warsaw - Risk Hub Summer Internship Programme | Warszawa Pa ska | <a href="https://ing.wd3.myworkdayjobs.com/en-US/icsgblcor/job/Warszawa-Paska-97/Intern---Quantitative-Analyst-or-Data-Engineer-at-RiskHub-Warsaw--Risk-Hub-Summer-Internship-Programme-_REQ-10110980-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.ing.com"><strong>ING</strong></a> | Intern - Quantitative Analyst or Data Engineer at RiskHub Warsaw - Risk Hub Summer Internship Programme | Warszawa Pa ska | <a href="https://ing.wd3.myworkdayjobs.com/en-US/jvsgblcor/job/Warszawa-Paska-97/Intern---Quantitative-Analyst-or-Data-Engineer-at-RiskHub-Warsaw--Risk-Hub-Summer-Internship-Programme-_REQ-10110980"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.proofpoint.com"><strong>Proofpoint</strong></a> | Backend Engineer Intern - Placement Year 2026 | Belfast, Northern Ireland | <a href="https://proofpoint.wd5.myworkdayjobs.com/en-US/proofpointcareers/job/Belfast-Northern-Ireland/Backend-Engineer-Intern---Placement-Year-2026_R13856"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.runna.com/"><strong>Runna</strong></a> | Software Engineering Intern - Platform | Runna London | <a href="https://jobs.ashbyhq.com/runna/7fc97919-0c65-4e12-accc-59b0e9404682"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.runna.com/"><strong>Runna</strong></a> | Software Engineering Intern - App | Runna London | <a href="https://jobs.ashbyhq.com/runna/0be60bb2-d632-4321-a2b1-7bbcbe183b28"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.runna.com/"><strong>Runna</strong></a> | Full Stack Engineer Intern - Growth | Runna London | <a href="https://jobs.ashbyhq.com/runna/8c77e853-d758-425f-a896-c81c1ca9ea2d"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.thalesgroup.com"><strong>Thales</strong></a> | Software Engineer Intern - Embedded Applications | SINGAPORE | <a href="https://thales.wd3.myworkdayjobs.com/en-US/careers/job/SINGAPORE/Software-Engineer-Intern--Embedded-Applications-_R0319345"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.udemy.com"><strong>Udemy</strong></a> | Software Engineering Intern - Platform Engineering | Mexico City, Mexico | <a href="https://app.careerpuck.com/job-board/udemy/job/5809886004?gh_jid=5809886004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
| <a href="https://www.airwallex.com/"><strong>Airwallex</strong></a> | 2026/27 Software Engineering Intern Program | AU Melbourne | <a href="https://jobs.ashbyhq.com/airwallex/98cef827-ceb6-4caa-a2fd-e4d6e8c7d2a9"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://about.udemy.com"><strong>BEDI Partnerships</strong></a> | Software Engineering Intern | Mexico City, Mexico | <a href="https://job-boards.greenhouse.io/udemybedi/jobs/5819415004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.calix.com"><strong>Calix</strong></a> | Software Project Management Intern | Remote | <a href="https://calix.wd1.myworkdayjobs.com/en-US/external/job/Remote---North-America/Software-Project-Management-Intern_R-11503"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.caterpillar.com"><strong>Caterpillar</strong></a> | Software Intern | Wuxi, Jiangsu | <a href="https://cat.wd5.myworkdayjobs.com/en-US/caterpillarcareers/job/Wuxi-Jiangsu/Software-Intern_R0000347199"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.relativity.com/"><strong>Relativity</strong></a> | Software Engineering Intern - Infrastructure | Krak w | <a href="https://kcura.wd1.myworkdayjobs.com/en-US/external_career_site/job/Krakw/Software-Engineering-Intern--Infrastructure-_26-0104"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.relativity.com/"><strong>Relativity</strong></a> | Software Engineering Intern - Infrastructure | Krak w | <a href="https://kcura.wd1.myworkdayjobs.com/en-US/external_career_site/job/Krakw/Software-Engineering-Intern--Infrastructure-_26-0108"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.relativity.com/"><strong>Relativity</strong></a> | Software Engineering Intern - Discovery+ | Krak w | <a href="https://kcura.wd1.myworkdayjobs.com/en-US/external_career_site/job/Krakw/Software-Engineering-Intern--Discovery--_26-0107-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.relativity.com/"><strong>Relativity</strong></a> | Software Engineering Intern - Automation Services | Krak w | <a href="https://kcura.wd1.myworkdayjobs.com/en-US/external_career_site/job/Krakw/Software-Engineering-Intern--Automation-Services-_26-0102"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="http://www.roku.com"><strong>Roku</strong></a> | Software Engineer Intern | Hsinchu, Taiwan | <a href="https://www.weareroku.com/jobs/7676232?gh_jid=7676232"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.udemy.com"><strong>Udemy</strong></a> | Software Engineering Intern | Mexico City, Mexico | <a href="https://app.careerpuck.com/job-board/udemy/job/5809885004?gh_jid=5809885004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.marvell.com"><strong>Marvell</strong></a> | Firmware Intern | Cordoba, Argentina | <a href="https://marvell.wd1.myworkdayjobs.com/en-US/marvellcareers/job/Cordoba-Argentina/Firmware-Intern_2600638"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 16d |
| <a href="https://www.monarchmoney.com"><strong>Monarch Money</strong></a> | Software Engineering Intern - Summer 2026 | Remote | <a href="https://jobs.ashbyhq.com/monarchmoney/b62fbd01-4082-4ddf-9a39-ec0ae1e526ee"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 16d |
| <a href="https://alan.com/"><strong>Alan</strong></a> | Software Engineer Internship - 6 months | Paris | <a href="https://jobs.ashbyhq.com/alan/8495ecac-a205-4c26-a831-2043d4503416"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.amexglobalbusinesstravel.com"><strong>American Express GBT</strong></a> | Software Development Intern | Paris, France | <a href="https://travelhrportal.wd1.myworkdayjobs.com/en-US/jobs/job/Paris-France/Software-Development-Intern_J-79378-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://bolt.eu"><strong>Bolt</strong></a> | Software Engineering Intern | Tartu, Estonia | <a href="https://bolt.eu/en/careers/positions/8438905002?gh_jid=8438905002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://bolt.eu"><strong>Bolt</strong></a> | Software Engineering Intern | Tallinn, Estonia | <a href="https://bolt.eu/en/careers/positions/8438904002?gh_jid=8438904002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.dell.com"><strong>Dell</strong></a> | 2026 Server Software Engineer Summer Intern | Taipei, Taiwan | <a href="https://dell.wd1.myworkdayjobs.com/en-US/external/job/Taipei-Taiwan/XMLNAME-2026-Server-Software-Engineer-Summer-Intern_R272880-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.dell.com"><strong>Dell</strong></a> | 2026 Server Software Engineer Summer Intern | Taipei, Taiwan | <a href="https://dell.wd1.myworkdayjobs.com/en-US/external/job/Taipei-Taiwan/XMLNAME-2026-Server-Software-Engineer-Summer-Intern_R272881-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.dell.com"><strong>Dell</strong></a> | 2026 Server Software Engineer Summer Intern | Taipei, Taiwan | <a href="https://dell.wd1.myworkdayjobs.com/en-US/external/job/Taipei-Taiwan/XMLNAME-2026-Server-Software-Engineer-Summer-Intern---_R272883-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.dell.com"><strong>Dell</strong></a> | 2026 Server Software Engineer Summer Intern | Taipei, Taiwan | <a href="https://dell.wd1.myworkdayjobs.com/en-US/external/job/Taipei-Taiwan/XMLNAME-2026-Server-Software-Engineer-Summer-Intern_R272882-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://league.com"><strong>League</strong></a> | Data Engineer - Co-op - Spring/Summer Term | Toronto | <a href="https://job-boards.greenhouse.io/leagueinc/jobs/5817019004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.roberthalf.com"><strong>Robert Half</strong></a> | Software Engineer Virtual Internship | SAN RAMON | <a href="https://roberthalf.wd1.myworkdayjobs.com/en-US/roberthalfcareers/job/SAN-RAMON/Software-Engineer-Virtual-Internship_JR-259698"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.stackadapt.com"><strong>StackAdapt - Confidential</strong></a> | Software Engineer Intern - Spring/Summer 2026 | Canada | <a href="https://job-boards.greenhouse.io/stackadapt-confidential/jobs/4100773009"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 17d |
| <a href="https://www.dell.com"><strong>Dell</strong></a> | 2026 Server Software Engineer Summer Intern | Taipei, Taiwan | <a href="https://dell.wd1.myworkdayjobs.com/en-US/external/job/Taipei-Taiwan/XMLNAME-2026-Server-Software-Engineer-Summer-Intern---_R272885-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 18d |
| <a href="https://www.genesys.com/"><strong>Genesys</strong></a> | Software Engineer Intern | Budapest, Hungary | <a href="https://genesys.wd1.myworkdayjobs.com/en-US/genesys/job/Budapest-Hungary/Software-Engineer-Intern_JR110267"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 18d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | AI software engineer intern | PRC, Shanghai | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/PRC-Shanghai/AI-software-engineer-intern_JR0280531"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 18d |
| <a href="https://www.stryker.com"><strong>Stryker</strong></a> | R&D Internship Software Development - Cloud Applications - 6 Monate- Sept/Okt 2026 | Freiburg, Germany | <a href="https://stryker.wd1.myworkdayjobs.com/en-US/strykercareers/job/Freiburg-Germany/R-D-Internship-Software-Development---Cloud-Applications-----6-Monate--Sept-Okt-2026-_R549645"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 19d |
| <a href="https://www.stryker.com"><strong>Stryker</strong></a> | Software Development Internship for innovative - computer-assisted surgery solutions - 6 months - Sept/Oct 2026 | Freiburg, Germany | <a href="https://stryker.wd1.myworkdayjobs.com/en-US/strykercareers/job/Freiburg-Germany/Software-Development-Internship-for-innovative--computer-assisted-surgery-solutions--6-months---Sept-Oct-2026-_R549517"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 19d |
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | Internship - d/f/m within Mission Planning - Plug-in development for interface control software | Manching | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Manching/Internship--d-f-m--within-Mission-Planning---Plug-in-development-for-interface-control-software_JR10392476"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.axon.com"><strong>Axon</strong></a> | 2026 Vietnam Software Engineering Internship | Ho Chi Minh City, Ho Chi Minh City, Vietnam | <a href="https://job-boards.greenhouse.io/axon/jobs/7645458003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.dashlane.com"><strong>Dashlane</strong></a> | Software Engineer Intern - Backend | Lisbon, Portugal | <a href="https://job-boards.greenhouse.io/dashlane/jobs/7610076"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.graphcore.ai/"><strong>Graphcore</strong></a> | 2026 Software Engineering Intern - ML Kernels & Runtime Team | Bristol, UK | <a href="https://job-boards.greenhouse.io/graphcore/jobs/8441326002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.graphcore.ai/"><strong>Graphcore</strong></a> | 2026 Software Engineering Intern - Drivers | Bristol, UK | <a href="https://job-boards.greenhouse.io/graphcore/jobs/8441333002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.graphcore.ai/"><strong>Graphcore</strong></a> | Copy of 2026 Software Engineering Intern - Drivers | Cambridge, UK | <a href="https://job-boards.greenhouse.io/graphcore/jobs/8441356002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.motorolasolutions.com"><strong>Motorola Solutions</strong></a> | Software Engineering Internship | Glasgow, UK ZUK , More | <a href="https://motorolasolutions.wd5.myworkdayjobs.com/en-US/careers/job/Glasgow-UK-ZUK118/Software-Engineering-Internship_R62644"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.proofpoint.com"><strong>Proofpoint</strong></a> | Junior Software Engineer Intern | Cordoba, Argentina | <a href="https://proofpoint.wd5.myworkdayjobs.com/en-US/proofpointcareers/job/Cordoba-Argentina/Junior-Software-Engineer-Intern_R13678"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Software Engineer Co-Op - Puerto Rico | US PR SANTA ISABEL B Felicia Industrial Park St B BLDG | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-SANTA-ISABEL-B1--Felicia-Industrial-Park---St-B1--BLDG-1/Software-Engineer-Co-Op--Puerto-Rico-_01823327"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Software Engineer Co-Op - Puerto Rico | US PR AGUADILLA Rd N Km RD | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-AGUADILLA-110--Rd-110-N-Km-288--RD110/Software-Engineer-Co-Op--Puerto-Rico-_01823447"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Software Engineering Co-Op - Puerto Rico | US PR AGUADILLA Rd N Km RD | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-AGUADILLA-110--Rd-110-N-Km-288--RD110/Software-Engineering-Co-Op--Puerto-Rico-_01824088"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Software Engineering Co-Op - Puerto Rico | US PR AGUADILLA Rd N Km RD | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-AGUADILLA-110--Rd-110-N-Km-288--RD110/Software-Engineering-Co-Op--Puerto-Rico-_01823799"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="http://www.roku.com"><strong>Roku</strong></a> | Software Engineer Intern - UI | Cambridge, United Kingdom | <a href="https://www.weareroku.com/jobs/7626180?gh_jid=7626180"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.showpad.com"><strong>Showpad</strong></a> | Cloud Platform Engineer Intern | Bucharest | <a href="https://job-boards.greenhouse.io/showpad/jobs/7661363"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://careers.aptean.com"><strong>Aptean</strong></a> | Software Engineering Intern | | <a href="https://americas-aptean.icims.com/jobs/5985/software-engineering-intern/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Intern - Software Development Engineer - COO-GET-ENG | Singapore, SGP | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Singapore-SGP/Intern--Software-Development-Engineer--COO-GET-ENG-_25WD94025"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.bosch.com/"><strong>Bosch</strong></a> | BSV Embedded Software Testing Intern - C/C++ - Modeling Language | Hanoi, vn | <a href="https://jobs.smartrecruiters.com/BoschGroup/744000111574140--bsv-embedded-software-testing-intern-c-c-modeling-language-?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.bosch.com/"><strong>Bosch</strong></a> | Internship Full Stack Development for Release Automation of Automotive Embedded Middleware Software | Abstatt, BW, de | <a href="https://jobs.smartrecruiters.com/BoschGroup/744000111562651-internship-full-stack-development-for-release-automation-of-automotive-embedded-middleware-software?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="http://grammarly.com/jobs"><strong>Grammarly</strong></a> | Software Engineer Intern - Summer 2026 | Ukraine | <a href="https://job-boards.greenhouse.io/grammarly/jobs/7657265"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.razer.com"><strong>Razer</strong></a> | Software Cloud Intern | Singapore | <a href="https://razer.wd3.myworkdayjobs.com/en-US/careers/job/Singapore/Software-Cloud-Intern_JR2026007085"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="http://www.roku.com"><strong>Roku</strong></a> | Software Engineer Intern - Observability | Cambridge, United Kingdom | <a href="https://www.weareroku.com/jobs/7653744?gh_jid=7653744"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 21d |
| <a href="https://www.ada.cx"><strong>Ada</strong></a> | Software Engineering Intern | Remote | <a href="https://job-boards.greenhouse.io/ada18/jobs/5063079007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 22d |
| <a href="https://cresta.com/"><strong>Cresta</strong></a> | Junior Software Engineer - Internship | Cluj Napoca, Cluj, Romania | <a href="https://job-boards.greenhouse.io/cresta/jobs/5132105008"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 22d |
| <a href="https://www.proofpoint.com"><strong>Proofpoint</strong></a> | Backend Software Engineer Intern | Singapore | <a href="https://proofpoint.wd5.myworkdayjobs.com/en-US/proofpointcareers/job/Singapore/Backend-Software-Engineer-Intern_R13778"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 22d |
| <a href="https://brex.com"><strong>Brex</strong></a> | Software Engineer - Internship - 2026 | S o Paulo, S o Paulo, Brazil | <a href="https://www.brex.com/careers/8434385002?gh_jid=8434385002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://cresta.com/"><strong>Cresta</strong></a> | Junior Software Engineer - Internship | Bucharest, Bucharest, Romania | <a href="https://job-boards.greenhouse.io/cresta/jobs/5124131008"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.harman.com"><strong>Harman</strong></a> | Intern - Multimedia Software | Chengdu Chengdu, China Chenglong Ave | <a href="https://harman.wd3.myworkdayjobs.com/en-US/harman/job/Chengdu---Chengdu-China---888-Chenglong-Ave/Intern--Multimedia-Software_R-51346-2026"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Software Intern - Bachelor's / Master's | Aguadilla, Puerto Rico, Puerto Rico | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Aguadilla-Puerto-Rico-Puerto-Rico/Software-Intern---Bachelor-s---Master-s_1203425"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Software Engineer Internship | Tlaquepaque, Jalisco, Mexico | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Tlaquepaque-Jalisco-Mexico/Software-Engineer-Internship_1194615"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | Middleware Software Engineering Intern | Poland, Gdansk | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Poland-Gdansk/Middleware-Software-Engineering-Intern_JR0281253"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.signify.com"><strong>Signify</strong></a> | Cloud Development Intern | Hong Kong | <a href="https://lighting.wd3.myworkdayjobs.com/en-US/jobs-and-careers/job/Hong-Kong/Cloud-Development-Intern_363154"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://starz.com"><strong>Starz</strong></a> | STARZ Intern - Software Development | Remote | <a href="https://starz.wd5.myworkdayjobs.com/en-US/starz/job/US-Remote/STARZ-Intern--Software-Development_JR100319"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://starz.com"><strong>Starz</strong></a> | STARZ Intern - Software Development-Streaming Video | Remote | <a href="https://starz.wd5.myworkdayjobs.com/en-US/starz/job/US-Remote/STARZ-Intern--Software-Development-Streaming-Video_JR100333"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.worldquant.com"><strong>WorldQuant</strong></a> | Software Engineer Intern | Budapest | <a href="https://job-boards.greenhouse.io/worldquant/jobs/4655484006"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.d-matrix.ai/"><strong>d-Matrix</strong></a> | Software Engineering Intern - Kernels | Toronto | <a href="https://jobs.ashbyhq.com/d-matrix/a7010650-8d5d-4b89-8126-152abd02726a"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.cae.com"><strong>CAE</strong></a> | Software Engineering Intern - C++ - Java - QA Automation - DevOps | Krakow | <a href="https://cae.wd3.myworkdayjobs.com/en-US/career/job/Krakow/Software-Engineering-Intern--C----Java--QA-Automation--DevOps-_120078"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 24d |
| <a href="https://www.oclc.org"><strong>OCLC</strong></a> | Software Engineer Summer Intern | Corporate Office Dublin | <a href="https://oclc.wd1.myworkdayjobs.com/en-US/oclc_careers/job/Corporate-Office---Dublin/Technical-Intern_R0003780"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 24d |
| <a href="https://www.thalesgroup.com"><strong>Thales</strong></a> | Software IVVQ Intern - Internship | Gorgonzola | <a href="https://thales.wd3.myworkdayjobs.com/en-US/careers/job/Gorgonzola/Software-IVVQ-Intern--Internship-_R0318069-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 24d |
| <a href="https://www.worldquant.com"><strong>WorldQuant</strong></a> | Software Engineer Intern | Hanoi | <a href="https://job-boards.greenhouse.io/worldquant/jobs/4652485006"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 24d |
| <a href="https://www.trybree.com/"><strong>Bree</strong></a> | Software / Design Co-op & Internship Program | Toronto | <a href="https://jobs.ashbyhq.com/bree/4b995914-d2e4-45f7-ab60-f0a9303ca52c"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 26d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Cloud Developer Intern | Aguadilla, Puerto Rico, Puerto Rico | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Aguadilla-Puerto-Rico-Puerto-Rico/Cloud-Developer-Intern_1203758"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 27d |
| <a href="https://www.imprivata.com"><strong>Imprivata</strong></a> | Software Development Engineer in Test Co-op - March-August | | <a href="https://www.imprivata.com/company/join-team?p=job%2FoYfIzfwe"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 27d |
| <a href="https://www.rockwellautomation.com"><strong>Rockwell Automation</strong></a> | Internship - Software Engineer | Prague, Czech Republic | <a href="https://rockwellautomation.wd1.myworkdayjobs.com/en-US/external_rockwell_automation/job/Prague-Czech-Republic/Internship--Software-Engineer_R26-764"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 27d |
| <a href="https://electroluxgroup.com/"><strong>Electrolux Group</strong></a> | Internship - Test Engineer - Mobile App & Backend | Petaling Jaya | <a href="https://electrolux.wd3.myworkdayjobs.com/en-US/electroluxcareersite/job/Petaling-Jaya/Internship---Test-Engineer--Mobile-App---Backend-_JR75849"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 28d |
| <a href="https://redbull.com/"><strong>Red Bull</strong></a> | Internship Software Engineer for Media Service | Elsbethen, Salzburg, at | <a href="https://jobs.smartrecruiters.com/RedBull/744000110099636-internship-software-engineer-for-media-service-?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 28d |
| <a href="https://www.datacamp.com"><strong>DataCamp</strong></a> | Full Stack Engineer Intern - TypeScript/JS | Leuven, Belgium | <a href="https://job-boards.greenhouse.io/datacamp/jobs/7630615"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 29d |
| <a href="https://www.roberthalf.com"><strong>Robert Half</strong></a> | Software Engineer Virtual Internship | SAN RAMON | <a href="https://roberthalf.wd1.myworkdayjobs.com/en-US/roberthalfcareers/job/SAN-RAMON/Software-Engineer-Virtual-Internship_JR-259598"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 29d |
| <a href="https://www.trybree.com/"><strong>Bree</strong></a> | Software Engineer - Machine Learning Co-op | Toronto | <a href="https://jobs.ashbyhq.com/bree/5e79b2fd-164c-4e72-91ef-1b8fd1c5518a"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://www.trybree.com/"><strong>Bree</strong></a> | Software Engineer - Product / Mobile / Full-Stack Co-op | Toronto | <a href="https://jobs.ashbyhq.com/bree/d7622c53-c0ed-442f-a39d-22b3dd4615bf"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://www.trybree.com/"><strong>Bree</strong></a> | Software Engineer - Backend Co-op | Toronto | <a href="https://jobs.ashbyhq.com/bree/0459eb9c-1f1a-4434-a941-a486a077d804"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://www.dropbox.com"><strong>Dropbox</strong></a> | PARENT- Poland Gen SWE Intern Summer 2026 | Remote | <a href="https://jobs.dropbox.com/listing/7309198?gh_jid=7309198"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://www.hitachi.com"><strong>Hitachi</strong></a> | Internship in BiMOS Backend 80 - 100% - f/m/d | Lenzburg, Aargau, Switzerland | <a href="https://hitachi.wd1.myworkdayjobs.com/en-US/hitachi/job/Lenzburg-Aargau-Switzerland/Internship-in-BiMOS-Backend-80---100---f-m-d-_R0119561-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://www.imprivata.com"><strong>Imprivata</strong></a> | Software Engineer Co-op - March-August | | <a href="https://www.imprivata.com/company/join-team?p=job%2FoqyGzfwX"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 30d |
| <a href="https://global.abb/"><strong>ABB</strong></a> | Software Engineering Intern | Tallinn, Harju, Estonia | <a href="https://abb.wd3.myworkdayjobs.com/en-US/external_career_page/job/Tallinn-Harju-Estonia/Software-Engineering-Intern_JR00025167-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 31d |
| <a href="https://www.marvell.com"><strong>Marvell</strong></a> | Firmware Engineering Intern - Bachelor's Degree - Summer 2026 | Ottawa, Canada | <a href="https://marvell.wd1.myworkdayjobs.com/en-US/marvellcareers/job/Ottawa-Canada/Firmware-Engineering-Intern---Bachelor-s-Degree--Summer-2026-_2502464-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 31d |
| <a href="https://testrigor.com/"><strong>testRigor</strong></a> | Software Quality Assurance Intern | BR | <a href="https://apply.workable.com/testrigor/j/348D471A53/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 31d |
| <a href="https://www.euronext.com"><strong>Euronext</strong></a> | Euronext Securities - Data Engineer Intern | Milan | <a href="https://hrhub.wd3.myworkdayjobs.com/en-US/euronext_career_page/job/Milan/Euronext-Securities---Data-Engineer-Intern_R24197"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 32d |
| <a href="https://www.logitech.com/"><strong>Logitech</strong></a> | Software UX Design Intern | Cork, Ireland | <a href="https://logitech.wd5.myworkdayjobs.com/en-US/logitech/job/Cork-Ireland/Software-UX-Design-Intern_145423"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 32d |
| <a href="https://www.razer.com"><strong>Razer</strong></a> | Software Engineer Intern | Shah Alam | <a href="https://razer.wd3.myworkdayjobs.com/en-US/careers/job/Shah-Alam/Software-Engineer-Intern_JR2026006876"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 32d |
| <a href="https://www.razer.com"><strong>Razer</strong></a> | Software Engineer Intern | Shah Alam | <a href="https://razer.wd3.myworkdayjobs.com/en-US/careers/job/Shah-Alam/Software-Engineer-Intern_JR2026006875"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 32d |
| <a href="https://www.lumentum.com"><strong>Lumentum</strong></a> | Firmware Development Intern | China Shenzhen Nanshan | <a href="https://lumentum.wd5.myworkdayjobs.com/en-US/lite/job/China---Shenzhen-Nanshan/Firmware-Development-Intern_2026209"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 33d |
| <a href="https://www.avanade.com/"><strong>Avanade</strong></a> | Software Engineering Technical Intern | Singapore | <a href="https://accenture.wd103.myworkdayjobs.com/en-US/avanadecareers/job/Singapore/Software-Engineering-Technical-Intern_R00296971"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 34d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Intern - Software Engineer | Dublin, IRL | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Dublin-IRL/Intern--Software-Engineer_25WD92004-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Software QA Intern | Aguadilla, Puerto Rico, Puerto Rico | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Aguadilla-Puerto-Rico-Puerto-Rico/Software-QA-Intern_1203421"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Software Site Reliability Intern | Aguadilla, Puerto Rico, Puerto Rico | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Aguadilla-Puerto-Rico-Puerto-Rico/Software-Site-Reliability-Intern_1203424"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.lumentum.com"><strong>Lumentum</strong></a> | Embedded Software Developer Co-op - Optical Circuit Switch | Canada Ottawa Bill Leathem | <a href="https://lumentum.wd5.myworkdayjobs.com/en-US/lite/job/Canada---Ottawa-Bill-Leathem/Embedded-Software-Developer-Co-op--Optical-Circuit-Switch-_202668"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://csiperseus.com"><strong>Perseus</strong></a> | Software Developer Intern | Markham, Ontario CAN | <a href="https://talentmanagementsolution.wd3.myworkdayjobs.com/en-US/perseus-careers/job/Markham-Ontario---CAN/Software-Developer-Intern_R49472"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.roberthalf.com"><strong>Robert Half</strong></a> | Software Engineer Virtual Internship | SAN RAMON | <a href="https://roberthalf.wd1.myworkdayjobs.com/en-US/roberthalfcareers/job/SAN-RAMON/Software-Engineer-Virtual-Internship_JR-259561"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.roberthalf.com"><strong>Robert Half</strong></a> | Cloud Infrastructure Engineer Virtual Internship | SAN RAMON | <a href="https://roberthalf.wd1.myworkdayjobs.com/en-US/roberthalfcareers/job/SAN-RAMON/Cloud-Infrastructure-Engineer-Virtual-Internship_JR-259571"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.rockwellautomation.com"><strong>Rockwell Automation</strong></a> | Internship - Embedded Software Engineer | Prague, Czech Republic | <a href="https://rockwellautomation.wd1.myworkdayjobs.com/en-US/external_rockwell_automation/job/Prague-Czech-Republic/Internship--Embedded-Software-Engineer_R26-471"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 35d |
| <a href="https://www.gendigital.com"><strong>Gen</strong></a> | Backend Engineer - Intern - MoneyLion | Kuala Lumpur, Malaysia | <a href="https://gen.wd1.myworkdayjobs.com/en-US/careers/job/Kuala-Lumpur-Malaysia/Backend-Engineer--Intern---MoneyLion_55168"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 36d |
| <a href="https://gehealthcare.com/"><strong>GE HealthCare</strong></a> | Software Engineering Intern | HUN Budapest Vaci Greens C | <a href="https://gehc.wd5.myworkdayjobs.com/en-US/gehc_externalsite/job/HUN02-01-Budapest-Vaci-Greens-C/Software-Engineering-Intern_R4036151-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://www.kayak.com/"><strong>KAYAK Software Corporation</strong></a> | Frontend Software Engineering Intern | Kaunas Office | <a href="https://jobs.ashbyhq.com/kayak/4ea070cc-6117-4bdc-b613-14a77373bc3c"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://www.kayak.com/"><strong>KAYAK Software Corporation</strong></a> | Java Software Engineering Intern | Kaunas Office | <a href="https://jobs.ashbyhq.com/kayak/db036167-8aa1-4b6a-9bf4-c2dac2c160fd"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://www.marvell.com"><strong>Marvell</strong></a> | Firmware Intern | Cordoba, Argentina | <a href="https://marvell.wd1.myworkdayjobs.com/en-US/marvellcareers/job/Cordoba-Argentina/Firmware-Intern_2502689"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://www.proofpoint.com"><strong>Proofpoint</strong></a> | Junior Software Engineer Intern | Cordoba, Argentina | <a href="https://proofpoint.wd5.myworkdayjobs.com/en-US/proofpointcareers/job/Cordoba-Argentina/Junior-Software-Engineer-Intern_R13671"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://tricentis.com"><strong>Tricentis</strong></a> | Software Engineering Intern | CZ Prague | <a href="https://tricentis.wd1.myworkdayjobs.com/en-US/tricentis_careers/job/CZ---Prague/Software-Engineering-Intern_JR105423"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 38d |
| <a href="https://tricentis.com"><strong>Tricentis</strong></a> | Software Engineering Intern | CZ Prague | <a href="https://tricentis.wd1.myworkdayjobs.com/en-US/tricentis_careers/job/CZ---Prague/Software-Engineering-Intern_JR105422"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 38d |
| <a href="http://geaerospace.com/"><strong>GE Aerospace</strong></a> | Software Develop Summer Intern | Xi an | <a href="https://geaerospace.wd5.myworkdayjobs.com/en-US/ge_externalsite/job/Xian/Software-Develop-Summer-Intern_R5028172-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 39d |
| <a href="https://www.razer.com"><strong>Razer</strong></a> | Early Careers Software & Data Intern - Jun 2026 - Jan 2027 | Singapore | <a href="https://razer.wd3.myworkdayjobs.com/en-US/careers/job/Singapore/XMLNAME--Early-Careers--Software---Data-Intern--Jun-2026---Jan-2027-_JR2026006972"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 39d |
| <a href="https://constructor.tech"><strong>Constructor TECH</strong></a> | Frontend Engineer - Intern | Bremen, Germany | <a href="https://job-boards.eu.greenhouse.io/constructortech/jobs/4772104101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://constructor.tech"><strong>Constructor TECH</strong></a> | Software Engineer - Intern - C# | Bremen, Germany | <a href="https://job-boards.eu.greenhouse.io/constructortech/jobs/4772061101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://intrinsic.ai"><strong>Intrinsic</strong></a> | Intern: Software Engineer - Robotic Execution Model Interoperability | Munich, Germany | <a href="https://boards.greenhouse.io/intrinsicrobotics/jobs/5792750004?gh_jid=5792750004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://intrinsic.ai"><strong>Intrinsic</strong></a> | Intern: Software Engineering for Multi-View 3D Reconstruction | Munich, Germany | <a href="https://boards.greenhouse.io/intrinsicrobotics/jobs/5791412004?gh_jid=5791412004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://www.twilio.com"><strong>Twilio</strong></a> | Software Engineer Intern - June start - Remote-Ireland | Remote | <a href="https://job-boards.greenhouse.io/twilio/jobs/7585589"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 41d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Intern - Software Engineer - C++/.NET - 12 months | Sheffield, GBP | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Sheffield-GBP/Intern--Software-Engineer--C---NET----12-months_26WD95016-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://point72.com"><strong>Point72</strong></a> | 2026 Technology Internship - Software Engineer | Warsaw, Poland | <a href="https://boards.greenhouse.io/point72/jobs/8406727002?gh_jid=8406727002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://www.resmed.com"><strong>ResMed</strong></a> | Software Engineer Intern | Halifax, Canada | <a href="https://resmed.wd3.myworkdayjobs.com/en-US/resmed_external_careers/job/Halifax-Canada/Software-Engineer-Intern_JR_047978"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://www.rockwellautomation.com"><strong>Rockwell Automation</strong></a> | Internship - Software Engineer | Prague, Czech Republic | <a href="https://rockwellautomation.wd1.myworkdayjobs.com/en-US/external_rockwell_automation/job/Prague-Czech-Republic/Internship--Software-Engineer_R25-8225"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 42d |
| <a href="https://www.oligospace.com/"><strong>Oligo Space</strong></a> | Spacecraft Engineer Intern - Flight Software | Hawthorne | <a href="https://jobs.ashbyhq.com/oligo/45d070de-bbb0-4dea-a726-06bf64709e49"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 43d |
| <a href="http://parallel.ai/"><strong>Parallel Web Systems</strong></a> | Software Engineering Intern | Palo Alto | <a href="https://jobs.ashbyhq.com/parallel/c77e251e-c976-451a-85da-564bfe2fb454"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 43d |
| <a href="http://www.squarespace.com"><strong>Squarespace</strong></a> | Software Engineering Intern - Summer 2026 | Dublin | <a href="http://www.squarespace.com/about/careers?gh_jid=7589065"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 43d |
| <a href="https://tricentis.com"><strong>Tricentis</strong></a> | Software Engineering Intern | CZ Prague | <a href="https://tricentis.wd1.myworkdayjobs.com/en-US/tricentis_careers/job/CZ---Prague/Software-Engineering-Intern_JR105424"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 43d |
| <a href="https://www.amexglobalbusinesstravel.com"><strong>American Express GBT</strong></a> | Software Development Intern | Paris, France | <a href="https://travelhrportal.wd1.myworkdayjobs.com/en-US/jobs/job/Paris-France/Software-Development-Intern_J-79370"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 44d |
| <a href="https://www.confluent.io/"><strong>Confluent</strong></a> | Software Engineer Intern 12 month FTC | Remote - United Kingdom | <a href="https://jobs.ashbyhq.com/confluent/95338ba6-bdcd-4a0e-86e8-e30cf6308c31"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 44d |
| <a href="https://etsy.com/"><strong>Etsy</strong></a> | Software Engineering Intern - 2026 - Mexico City - MX | Ciudad de M xico, CDMX, Mexico | <a href="https://etsy.wd5.myworkdayjobs.com/en-US/etsy_careers/job/Ciudad-de-Mxico-CDMX-Mexico/Software-Engineering-Intern--2026--Mexico-City--MX-_JR5373"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 44d |
| <a href="https://www.accenture.com"><strong>Accenture</strong></a> | Software Intern | Ho ChiMinh, Viettel Building | <a href="https://accenture.wd103.myworkdayjobs.com/en-US/accenturecareers/job/Ho-ChiMinh-Viettel-Building/Software-Intern_R00259736"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 45d |
| <a href="https://www.accenture.com"><strong>Accenture</strong></a> | Cloud Operation Intern | Ho ChiMinh, Viettel Building | <a href="https://accenture.wd103.myworkdayjobs.com/en-US/accenturecareers/job/Ho-ChiMinh-Viettel-Building/Cloud-Operation-Intern_R00259740"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 45d |
| <a href="https://ahrefs.com/about"><strong>Ahrefs</strong></a> | Backend Engineering Intern - OCaml | Remote - Singapore | <a href="https://job-boards.greenhouse.io/ahrefsjobs/jobs/4118249004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 45d |
| <a href="https://www.cognex.com"><strong>Cognex</strong></a> | Student Worker / Internship Software Engineering | Aachen, Germany | <a href="https://cognex.wd1.myworkdayjobs.com/en-US/external_career_site/job/Aachen-Germany/Student-Worker---Internship-Software-Engineering_R0011679"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 45d |
| <a href="https://intrinsic.ai"><strong>Intrinsic</strong></a> | Intern: Open Source Developer Tools for Hard Real-Time Software Development | Munich, Germany | <a href="https://boards.greenhouse.io/intrinsicrobotics/jobs/5787430004?gh_jid=5787430004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 45d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Intern - Software Engineer - Quality Assurance | Krak w, POL | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Krakw-POL/Intern--Software-Engineer---Quality-Assurance_25WD92745-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 46d |
| <a href="https://www.resmed.com"><strong>ResMed</strong></a> | Software Engineer Intern - MyForms | Halifax, Canada | <a href="https://resmed.wd3.myworkdayjobs.com/en-US/resmed_external_careers/job/Halifax-Canada/Software-Engineer-Intern--MyForms-_JR_047980"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 46d |
| <a href="https://www.resmed.com"><strong>ResMed</strong></a> | Software Engineer Intern - GoScripts | Halifax, Canada | <a href="https://resmed.wd3.myworkdayjobs.com/en-US/resmed_external_careers/job/Halifax-Canada/Software-Engineer-Intern--GoScripts-_JR_047981"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 46d |
| <a href="https://www.gm.com"><strong>General Motors</strong></a> | 2026 Summer Intern - AI/ML Engineer - Cloud & Developer Infrastructure - Bachelor's | Mountain View Technical Center Mountain View Technical Center | <a href="https://generalmotors.wd5.myworkdayjobs.com/en-US/careers_gm/job/Mountain-View-California-United-States-of-America/XMLNAME-2026-Summer-Intern---AI-ML-Engineer---Cloud---Developer-Infrastructure--Bachelor-s-_JR-202524333"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 48d |
| <a href="https://www.aia.com"><strong>AIA Group</strong></a> | Intern - Cloud Application Transformation | Kuala Lumpur, AIA Digital Malaysia | <a href="https://aia.wd3.myworkdayjobs.com/en-US/external/job/Kuala-Lumpur-AIA-Digital-Malaysia/Intern---Cloud-Application-Transformation_JR-52207-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.aia.com"><strong>AIA Group</strong></a> | Intern - Cloud Application Transformation | Kuala Lumpur, AIA Digital Malaysia | <a href="https://aia.wd3.myworkdayjobs.com/en-US/external/job/Kuala-Lumpur-AIA-Digital-Malaysia/Intern---Cloud-Application-Transformation_JR-61493-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.blockchain.com"><strong>Blockchain.com</strong></a> | Software Engineering Intern - Activation | Paris, France | <a href="https://job-boards.greenhouse.io/blockchain/jobs/7574975"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.blockchain.com"><strong>Blockchain.com</strong></a> | Software Engineering Intern - Payments | London, United Kingdom | <a href="https://job-boards.greenhouse.io/blockchain/jobs/7574939"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.blockchain.com"><strong>Blockchain.com</strong></a> | Software Engineering Intern - Orders | London, United Kingdom | <a href="https://job-boards.greenhouse.io/blockchain/jobs/7574866"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.blockchain.com"><strong>Blockchain.com</strong></a> | Software Engineering Intern - Institutional | Paris, France | <a href="https://job-boards.greenhouse.io/blockchain/jobs/7575219"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.eqbank.ca"><strong>EQ Bank</strong></a> | Software Developer - Summer Intern 2026 | Toronto, Canada | <a href="https://jobs.lever.co/eqbank/a7418f84-e27f-4700-ac1c-81300f82c662/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.gendigital.com"><strong>Gen</strong></a> | Data Engineer - Intern | Kuala Lumpur, Malaysia | <a href="https://gen.wd1.myworkdayjobs.com/en-US/careers/job/Kuala-Lumpur-Malaysia/Data-Engineer--Intern_55141"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://responsiveads.com/careers"><strong>ResponsiveAds</strong></a> | ResponsiveAds Full-Stack Developer - 2026 Summer and Fall Internship | Vancouver, Canada | <a href="https://apply.workable.com/responsiveads-inc/j/493EAC12D6/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 49d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Intern - Software Engineer | Dublin, IRL | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Dublin-IRL/Intern--Software-Engineer_25WD92001-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.binance.com"><strong>Binance</strong></a> | Binance Accelerator Program - Software Engineer Intern - AI/LLM Experience a Plus | Asia | <a href="https://jobs.lever.co/binance/fe2b0bf9-95bb-40c5-959b-f991278a1cbe/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.lpl.com"><strong>LPL Financial</strong></a> | Internship Summer 2026 - Technology - Software Development | | <a href="https://lplfinancial.wd1.myworkdayjobs.com/en-US/external/job/San-Diego-CA/Internship-Summer-2026---Technology--Software-Development_R-046201-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.msd.com"><strong>MSD</strong></a> | Cloud Financial Analyst - Intern | SGP Singapore Singapore MYP Centre WeWork | <a href="https://msd.wd5.myworkdayjobs.com/en-US/searchjobs/job/SGP---Singapore---Singapore-MYP-Centre-WeWork/Cloud-Financial-Analyst--Intern-_R383110"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://motional.com"><strong>Motional</strong></a> | Software Engineer Intern - Cloud Apps | Singapore | <a href="https://motional.com/open-positions/?gh_jid=7600030003#/7600030003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://corporate.shopback.com"><strong>ShopBack</strong></a> | Software Engineer Intern - Backend - May - Dec 2026 | Singapore | <a href="https://jobs.lever.co/shopback-2/4e119b8f-3c8d-47e6-9dde-f232930e752c/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.worldquant.com"><strong>WorldQuant</strong></a> | Software Engineer Intern - Summer Internship | Singapore | <a href="https://job-boards.greenhouse.io/worldquant/jobs/4648851006"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 50d |
| <a href="https://www.cadence.com"><strong>Cadence</strong></a> | software engineering intern | BEIJING | <a href="https://cadence.wd1.myworkdayjobs.com/en-US/external_careers/job/BEIJING/software-engineering-intern_R52210"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 51d |
| <a href="https://motional.com"><strong>Motional</strong></a> | Software Engineering Internship - Remote Vehicle Assistance - RVA | Singapore | <a href="https://motional.com/open-positions/?gh_jid=7600038003#/7600038003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 51d |
| <a href="https://www.visier.com"><strong>Visier</strong></a> | Software Developer Intern - Jun - Dec 2026 | Singapore | <a href="https://job-boards.greenhouse.io/visiersolutionsinc/jobs/4648577006"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 51d |
| <a href="https://www.euronext.com"><strong>Euronext</strong></a> | GateLab - Software developer - Intern | Milan | <a href="https://hrhub.wd3.myworkdayjobs.com/en-US/euronext_career_page/job/Milan/GateLab---Software-developer--Intern_R22393-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 52d |
| <a href="https://www.gardacp.com"><strong>Garda Capital Partners</strong></a> | Software Engineer Intern - .NET | Geneva, Switzerland | <a href="https://job-boards.greenhouse.io/gardacp/jobs/4174197004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 52d |
| <a href="https://www.gm.com"><strong>General Motors</strong></a> | 2026 Co-Op - Software Developer - Virtualization and SIL Integration | Markham Elevation Centre Markham Elevation Centre | <a href="https://generalmotors.wd5.myworkdayjobs.com/en-US/careers_gm/job/Markham-Ontario-Canada/XMLNAME-2026-Co-Op---Software-Developer---Virtualization-and-SIL-Integration_JR-202519570"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 52d |
| <a href="https://motional.com"><strong>Motional</strong></a> | Software Engineer Intern - Motion Planning - Autonomous Vehicles | Singapore | <a href="https://motional.com/open-positions/?gh_jid=7599945003#/7599945003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 52d |
| <a href="https://thetradedesk.com"><strong>The Trade Desk</strong></a> | 2026 Australia Software Engineering Internship | Sydney, Australia | <a href="https://job-boards.greenhouse.io/thetradedesk/jobs/5033765007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 52d |
| <a href="https://www.dedale.com/"><strong>Dedale Intelligence</strong></a> | Software Engineer Intern - End-of-Studies Internship - start date ASAP | Paris | <a href="https://jobs.ashbyhq.com/dedale-intelligence/126539f3-149f-4b35-961d-a638e1bf8924"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 55d |
| <a href="https://www.hitachids.com/"><strong>Hitachi Digital Services</strong></a> | Fullstack Internship | Ho Chi Minh City, Vietnam | <a href="https://hitachids.com/careers/job-details/?jid=8363010002&gh_jid=8363010002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 56d |
| <a href="https://www.dowjones.com"><strong>Dow Jones</strong></a> | Summer 2026 Internship - Backend Search Engineer Intern | Barcelona, Spain | <a href="https://dowjones.wd1.myworkdayjobs.com/en-US/dow_jones_career/job/Spain---Barcelona/Summer-2026-Internship---Backend-Search-Engineer-Intern_Job_Req_51116"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 57d |
| <a href="https://www.agilent.com"><strong>Agilent Technologies</strong></a> | R&D Software Intern | China Shanghai | <a href="https://agilent.wd5.myworkdayjobs.com/en-US/agilent_student_careers/job/China-Shanghai/R-D-Software-Intern_4036430"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 58d |
| <a href="https://www.amexglobalbusinesstravel.com"><strong>American Express GBT</strong></a> | Software Developer Internship | Issy les Moulineaux, France | <a href="https://travelhrportal.wd1.myworkdayjobs.com/en-US/jobs/job/Issy-les-Moulineaux-France/Software-Developer-Internship_J-78915"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 58d |
| <a href="https://www.sas.com"><strong>SAS</strong></a> | Careerstart@SAS Program - SAS Administration - Cloud Services Intern - SYDNEY | Sydney | <a href="https://global-sas.icims.com/jobs/40711/careerstart%40sas-program-%7c-sas-administration-%28cloud-services%29-intern%2c-sydney/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 58d |
| <a href="https://makipeople.com/"><strong>MakiPeople</strong></a> | Software Engineer Intern | Paris | <a href="https://jobs.ashbyhq.com/maki/09050336-f7a2-4fd8-add0-80aef679a5ac"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 59d |
| <a href="https://www.airliquide.com"><strong>Air Liquide</strong></a> | INTERNSHIP -R&D - AI/ML Data Engineer - M/F | France, Les Loges en Josas | <a href="https://airliquidehr.wd3.myworkdayjobs.com/en-US/airliquideexternalcareer/job/France-Les-Loges-en-Josas/INTERNSHIP--R-D---AI-ML-Data-Engineer--M-F-_R10079460"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 60d |
| <a href="https://www.gm.com"><strong>General Motors</strong></a> | 2026 Summer Intern - AI/ML Engineer - Cloud and Developer Infrastructure - Master's | Mountain View Technical Center Mountain View Technical Center | <a href="https://generalmotors.wd5.myworkdayjobs.com/en-US/careers_gm/job/Mountain-View-California-United-States-of-America/XMLNAME-2026-Summer-Intern---AI-ML-Engineer--Cloud-and-Developer-Infrastructure--Master-s-_JR-202524316"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 60d |
| <a href="https://www.analog.com"><strong>Analog Devices</strong></a> | Embedded Software Apps Engineering Intern | Romania, Cluj Napoca | <a href="https://analogdevices.wd1.myworkdayjobs.com/en-US/external/job/Romania-Cluj-Napoca/Embedded-Software-Apps-Engineering-Intern_R257261"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.bakerhughes.com"><strong>Baker Hughes</strong></a> | University Internship - Software Test and Integration 2025 Opportunities - Vietnam | VN HO CHI MINH CACH MANG THANG TAM STREET | <a href="https://bakerhughes.wd5.myworkdayjobs.com/en-US/bakerhughes/job/VN-HO-CHI-MINH-285-CACH-MANG-THANG-TAM-STREET/University-Internship---Software-Test-and-Integration-2025-Opportunities--Vietnam-_R157908"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.cadence.com"><strong>Cadence</strong></a> | EDA PV Intern for Digital Backend Flow | SHANGHAI | <a href="https://cadence.wd1.myworkdayjobs.com/en-US/external_careers/job/SHANGHAI/EDA-PV-Intern-for-Digital-Backend-Flow_R52684"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.lumentum.com"><strong>Lumentum</strong></a> | Embedded Software DevSecOps Engineer - Co-op Student | Canada Ottawa Bill Leathem | <a href="https://lumentum.wd5.myworkdayjobs.com/en-US/lite/job/Canada---Ottawa-Bill-Leathem/Embedded-Software-DevSecOps-Engineer--Co-op-Student-_20251884"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.marvell.com"><strong>Marvell</strong></a> | Software/Firmware Engineering Intern | Ho Chi Minh | <a href="https://marvell.wd1.myworkdayjobs.com/en-US/marvellcareers/job/Ho-Chi-Minh/Software-Firmware-Engineering-Intern_2502455"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.marvell.com"><strong>Marvell</strong></a> | Firmware Engineer Intern - Master's Degree | Hsinchu City | <a href="https://marvell.wd1.myworkdayjobs.com/en-US/marvellcareers/job/Hsinchu-City/Firmware-Engineer-Intern---Master-s-Degree_2502399"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.pwc.com"><strong>PwC</strong></a> | Consulting - Digital - Cloud - Data - Internship | Jakarta | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/nonpublic_postings/job/Jakarta/Consulting---Digital--Cloud--Data---Internship_670490WD"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://www.pwc.com"><strong>PwC</strong></a> | ETIC - Fullstack Intern | Cairo | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/nonpublic_postings/job/Cairo/ETIC--Fullstack-Intern_538160WD"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 61d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Intern Software Engineer | Gdańsk, Poland | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/POL---Gdansk-Poland/Intern-Software-Engineer_JR2026492187-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 62d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Intern Software Engineer | Gdańsk, Poland | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_subsidiary/job/POL---Gdansk-Poland/Intern-Software-Engineer_JR2026492187"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 62d |
| <a href="https://www.cloudsek.com"><strong>CloudSEK</strong></a> | SDE - Backend - Intern | Bengaluru, India | <a href="https://job-boards.greenhouse.io/cloudsek/jobs/5766402004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 62d |
| <a href="https://waabi.ai"><strong>Waabi</strong></a> | Systems Software Engineer Internship/Co-op - Summer 2026 | Toronto, Canada | <a href="https://jobs.lever.co/waabi/9873fd9d-285f-4bf5-ac74-f69547615bc9/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 63d |
| <a href="https://www.exiger.com"><strong>Exiger</strong></a> | AI Data Engineer Intern - Summer 2026 | Toronto, Canada | <a href="https://www.exiger.com/careers/5751828004?gh_jid=5751828004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 64d |
| <a href="https://thetradedesk.com"><strong>The Trade Desk</strong></a> | 2026 Madrid Software Engineering Internship | Madrid, Spain | <a href="https://job-boards.greenhouse.io/thetradedesk/jobs/4844796007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 64d |
| <a href="https://www.perplexity.ai/"><strong>Perplexity</strong></a> | Internship - Search Backend Infra Engineer | Belgrade, Serbia | <a href="https://jobs.ashbyhq.com/perplexity/be94e89b-89d5-4f2a-a58b-7929c8d97f92"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 65d |
| <a href="https://cohere.com/"><strong>Cohere</strong></a> | Software Engineer Intern - Spring 2026 | Canada | <a href="https://jobs.ashbyhq.com/cohere/66c98ca3-334b-4a6a-a27c-5807b3686121"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 66d |
| <a href="https://www.guidewire.com"><strong>Guidewire</strong></a> | Software Engineer Intern | Malaysia Kuala Lumpur | <a href="https://guidewire.wd5.myworkdayjobs.com/en-US/external/job/Malaysia---Kuala-Lumpur/Solution-Engineer-Intern_JR_13916"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 67d |
| <a href="https://grnh.se/f78375ba1"><strong>Asana</strong></a> | Software Engineering Intern - Summer 2026 - Reykjavik | Reykjavík, Iceland | <a href="https://www.asana.com/jobs/apply/7490314?gh_jid=7490314"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 69d |
| <a href="https://grnh.se/f78375ba1"><strong>Asana</strong></a> | Software Engineering Intern - Summer 2026 - Warsaw | Warsaw, Poland | <a href="https://www.asana.com/jobs/apply/7490274?gh_jid=7490274"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 69d |
| <a href="https://www.cambridgeconsultants.com"><strong>Cambridge Consultants</strong></a> | Software Engineering Internship - 12 months | United Kingdom | <a href="https://job-boards.eu.greenhouse.io/cambridgeconsultantslimited/jobs/4696881101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 70d |
| <a href="https://www.cambridgeconsultants.com"><strong>Cambridge Consultants</strong></a> | Software Engineering Internship - 12 months | United Kingdom | <a href="https://job-boards.eu.greenhouse.io/cambridgeconsultantslimited/jobs/4696927101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 70d |
| <a href="https://konghq.com/"><strong>Kong</strong></a> | Software Engineer Intern - AI Gateway | Shanghai, China | <a href="https://jobs.ashbyhq.com/kong/1f890933-236e-4175-8e2c-a26a8f38dcd7"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 73d |
| <a href="https://corporate.shopback.com"><strong>ShopBack</strong></a> | Software Engineer Intern - QA | Vietnam | <a href="https://jobs.lever.co/shopback-2/43e531ba-6ffb-4355-92e2-5b49bfc4f025/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 79d |
| <a href="https://kirin.com/"><strong>Kirin</strong></a> | Software Engineering Intern - Consumer AI Apps | Shenzhen, China | <a href="https://jobs.ashbyhq.com/kirin/38772f01-84fd-4f09-a36d-e7fa86341b99"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 82d |
| <a href="https://www.eversana.com/"><strong>Eversana</strong></a> | Associate/ Intern- Fullstack developer | Bengaluru, India | <a href="https://jobs.smartrecruiters.com/EVERSANA1/744000100203818-associate-intern-fullstack-developer-?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 86d |
| <a href="https://woven.toyota"><strong>Woven by Toyota</strong></a> | Software Engineer - Arene Tooling - Internship | Japan | <a href="https://jobs.lever.co/woven-by-toyota/5d3711a5-e70a-4149-9abe-f33f2c6d8794/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 87d |
| <a href="https://woven.toyota"><strong>Woven by Toyota</strong></a> | Embedded Software Engineer - Internship | Japan | <a href="https://jobs.lever.co/woven-by-toyota/ab972354-4bd5-4f69-880d-05118b39570d/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 87d |
| <a href="https://www.calix.com/"><strong>Calix</strong></a> | Software Engineering Intern - IAE AXOS platform - Open | Nanjing, China | <a href="https://calix.wd1.myworkdayjobs.com/en-US/externalinternational/job/Nanjing/Software-Engineering-Intern---IAE-AXOS-platform--Open-_R-7335"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 91d |
| <a href="https://www.corpay.com/"><strong>Corpay</strong></a> | Software Developer - Co-op | Vancouver, Canada | <a href="https://corpay.wd103.myworkdayjobs.com/en-US/ext_001/job/Vancouver---Parking/Software-Developer--Co-op-_R05866"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 93d |
| <a href="https://www.paypal.com"><strong>PayPal</strong></a> | Software Engineer Intern- GPS | Singapore | <a href="https://paypal.wd1.myworkdayjobs.com/en-US/jobs/job/Central-Singapore-Singapore/Software-Engineer-Intern--GPS_R0133557"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 106d |
| <a href="https://www.snowflake.com/"><strong>Snowflake</strong></a> | Software Engineer Intern - AI/ML - 2026 | Warsaw, Poland | <a href="https://jobs.ashbyhq.com/snowflake/897e1850-c590-4462-b187-0516b65b2034"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 113d |
<!-- TABLE_END -->
<a name="bottom"></a>
[:arrow_up_small:Start of List](#top)
================================================
FILE: NEW_GRAD_INTL.md
================================================
## 2026 International SWE New Grad Positions :mortar_board::globe_with_meridians:
### USA Positions :eagle:
- [Internships :books:](/) - **424** available ([FAANG+](/#faang), [Quant](/#quant), [Other](/#other))
- [New Graduate :mortar_board:](/NEW_GRAD_USA.md) - **400** available ([FAANG+](/NEW_GRAD_USA.md#faang), [Quant](/NEW_GRAD_USA.md#quant), [Other](/NEW_GRAD_USA.md#other))
### International Positions :globe_with_meridians:
- [Internships :books:](/INTERN_INTL.md) - **393** available ([FAANG+](/INTERN_INTL.md#faang), [Quant](/INTERN_INTL.md#quant), [Other](/INTERN_INTL.md#other))
- [New Graduate :mortar_board:](/NEW_GRAD_INTL.md) - **455** available ([FAANG+](#faang), [Quant](#quant), [Other](#other))
[:arrow_down_small:End of List](#bottom)
<a name="top"></a>
### FAANG+
<!-- TABLE_FAANG_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://www.google.com"><strong>Google</strong></a> | System Lab Engineer - Google Cloud - University Graduate | Taipei, Taiwan | <a href="https://www.google.com/about/careers/applications/jobs/results/140160929214931654"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 15d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Software Engineer - Early Career | Mexico City, CDMX, Mexico | <a href="https://www.google.com/about/careers/applications/jobs/results/83756489516163782"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 20d |
| <a href="https://www.nvidia.com"><strong>NVIDIA</strong></a> | System Software Engineer - GPU - New College Graduate | Taiwan, Taipei | <a href="https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Taiwan-Taipei/System-Software-Engineer---GPU---New-College-Graduate_JR2014065-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 22d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Software Engineer I - Site Reliability Engineering | Sydney NSW, Australia | <a href="https://www.google.com/about/careers/applications/jobs/results/134251324798575302"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 23d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Software Engineering Apprenticeship - Engineering - September 2026 Start - English - French | Paris, France | <a href="https://www.google.com/about/careers/applications/jobs/results/126917553250280134"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 31d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Associate Software Engineer - Silicon - gReach Program for People with Disabilities - 장애인 채용 | Seoul, South Korea | <a href="https://www.google.com/about/careers/applications/jobs/results/140730541736370886"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 37d |
| <a href="https://www.roblox.com"><strong>Roblox</strong></a> | 2026 Canada Software Engineer - Geometry - Early Career | Vancouver, Canada | <a href="https://careers.roblox.com/jobs/7558821?gh_jid=7558821"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 51d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Mobile Software Engineer - Multiplatform - Early Careers | Mexico City, Mexico | <a href="https://www.google.com/about/careers/applications/jobs/results/123365080841495238"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 92d |
| <a href="https://www.google.com"><strong>Google</strong></a> | Software Engineer - Android Engineering Productivity - Early Career | Sydney, Australia | <a href="https://www.google.com/about/careers/applications/jobs/results/134703665653916358"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 94d |
<!-- TABLE_FAANG_END -->
### Quant
<!-- TABLE_QUANT_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://optiver.com"><strong>Optiver</strong></a> | Expressions of Interest - Graduate Software Developer 2027 | Sydney, Australia | <a href="https://optiver.com/working-at-optiver/career-opportunities/8450243002/?gh_jid=8450243002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 14d |
<!-- TABLE_QUANT_END -->
### Other
<!-- TABLE_START -->
| Company | Position | Location | Posting | Age |
|---|---|---|---|---|
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | ALT 2026 - Apprenti- e Ingénieur- e Cloud et Intelligence Artificielle - H/F | Marseille Area | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Marseille-Area/ALT-2026---Apprenti-e--en-Data-Science--H-F-_JR10393433"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.bbva.com"><strong>BBVA</strong></a> | SOFTWARE ASSOCIATE II MX 3 | Ciudad de Mexico, Miguel Hidalgo, | <a href="https://bbva.wd3.myworkdayjobs.com/en-US/bbva/job/Ciudad-de-Mexico-Miguel-Hidalgo-11320/SOFTWARE-ASSOCIATE-II-MX-3_JR00098840"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.blackrock.com/"><strong>BlackRock</strong></a> | Full Stack Developer - Aladdin Engineering - Associate | B G Skyline Belgrade, Kneza Milosa , Belgrade | <a href="https://blackrock.wd1.myworkdayjobs.com/en-US/blackrock_professional/job/B3G---Skyline-Belgrade-Kneza-Milosa-88-Belgrade/Full-Stack-Developer--Aladdin-Engineering--Associate_R261780"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="http://ciandt.com/"><strong>CI&T</strong></a> | Job-28285 Mid-Level Fullstack Java I Angular Developer - Brazil | Brazil | <a href="https://jobs.lever.co/ciandt/d87ec991-f58b-4a61-beb8-dd41f29641dc/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.hyland.com"><strong>Hyland Software</strong></a> | Junior Frontend Software Engineer | Remote | <a href="https://careers-hyland.icims.com/jobs/13400/junior-frontend-software-engineer/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.johncrane.com/"><strong>John Crane</strong></a> | Junior Software Test Engineer | Hemel Hempstead, England, gb | <a href="https://jobs.smartrecruiters.com/SmithsGroup2/744000115607288-junior-software-test-engineer?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.manulife.ca"><strong>Manulife</strong></a> | Associate Software Technical Analyst | Quezon City | <a href="https://manulife.wd3.myworkdayjobs.com/en-US/mfcjh_jobs/job/Quezon-City/Associate-Software-Technical-Analyst_JR26031024-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://careers.mmc.com/"><strong>Marsh McLennan</strong></a> | Junior Full-Stack Engineer | Mexico City Paseo | <a href="https://mmc.wd1.myworkdayjobs.com/en-US/mmc/job/Mexico-City---Paseo/Junior-Full-Stack-Engineer_R_341477"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="http://www.nutanix.com"><strong>Nutanix</strong></a> | Junior Software Engineer - Nutanix Hybrid Cloud Datastore | Belgrade, Serbia | <a href="https://jobs.jobvite.com/nutanix/job/oYWyzfwL"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="http://www.orionhealth.com/"><strong>Orion Health</strong></a> | Pre-Registration: Graduate Software Engineering Programme - Feb 2027 | Auckland, Auckland, NZ | <a href="https://apply.workable.com/orion-health/j/6415FD81B1/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.spglobal.com"><strong>S&P Global</strong></a> | Associate Software Engineer {Backend .Net} - Mobility | Gurugram, Haryana | <a href="https://spgi.wd5.myworkdayjobs.com/en-US/spgi_careers/job/Gurugram-Haryana/Associate-Software-Engineer--Backend-Net----Mobility_325894-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.tencent.com"><strong>Tencent</strong></a> | Tencent Cloud - Associate Sales Representative - Sales Trainee Program - Indonesia | Indonesia Jakarta | <a href="https://tencent.wd1.myworkdayjobs.com/en-US/tencent_careers/job/Indonesia-Jakarta/Tencent-Cloud---Associate-Sales-Representative--Sales-Trainee-Program----Indonesia_R107172"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.walmart.com"><strong>Walmart</strong></a> | CAN Front End Checkout Team Associate | Mississauga, ON | <a href="https://walmart.wd5.myworkdayjobs.com/en-US/walmartexternal/job/Mississauga-ON/XMLNAME--CAN--Front-End-Checkout-Team-Associate_R-2452561"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 0d |
| <a href="https://www.amerisourcebergen.com"><strong>AmerisourceBergen</strong></a> | Data Engineer I - Data Engineering-2 | Pune, India | <a href="https://myhrabc.wd5.myworkdayjobs.com/en-US/global/job/Pune-India/Data-Engineer-I---Data-Engineering-2_R264572-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.aspentech.com"><strong>AspenTech</strong></a> | Software Developer I | Mexico City | <a href="https://aspentech.wd5.myworkdayjobs.com/en-US/aspentech/job/Mexico-City/Software-Developer-I_R8707"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.aspentech.com"><strong>AspenTech</strong></a> | Software Developer I | Mexico City | <a href="https://aspentech.wd5.myworkdayjobs.com/en-US/aspentech/job/Mexico-City/Software-Developer-I_R8716"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.aspentech.com"><strong>AspenTech</strong></a> | Software Quality Engineer I | Bengaluru, India | <a href="https://aspentech.wd5.myworkdayjobs.com/en-US/aspentech/job/Bengaluru-India/Software-Quality-Engineer-I_R8761"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.bbva.com"><strong>BBVA</strong></a> | SOFTWARE EXPERT I - FINANZAS - ENGINEERING & DATA COLOMBIA | , Bogot D C , Distrito Capital de Bogot | <a href="https://bbva.wd3.myworkdayjobs.com/en-US/bbva/job/11001-Bogot-DC-Distrito-Capital-de-Bogot/SOFTWARE-EXPERT-I---FINANZAS---ENGINEERING---DATA-COLOMBIA_JR00098656"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://dev.pro/"><strong>Dev.Pro</strong></a> | Intermediate Software Engineer - Java - JavaScript - Node.js - Python - OP02082 | S o Paulo, State of S o Paulo, BR | <a href="https://apply.workable.com/devpro/j/94B93F6F78/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://flex.com"><strong>Flex</strong></a> | Junior Software Engineer | Hungary, Zalaegerszeg | <a href="https://flextronics.wd1.myworkdayjobs.com/en-US/careers/job/Hungary-Zalaegerszeg/Junior-Software-Engineer_WD216817"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.iqvia.com"><strong>IQVIA</strong></a> | Junior Big Data Engineer | Warsaw, Poland | <a href="https://iqvia.wd1.myworkdayjobs.com/en-US/iqvia/job/Warsaw-Poland/Junior-Big-Data-Engineer_R1529647"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://infotrust.com"><strong>InfoTrust</strong></a> | Associate Full-Stack Engineer - Remote - India | Remote, India | <a href="https://job-boards.greenhouse.io/infotrust/jobs/7670898003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.konrad.com"><strong>Konrad</strong></a> | Software Developer - Entry Level | London | <a href="https://www.konrad.com/careers/job/7669159003?gh_jid=7669159003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://navercorp.vn"><strong>NAVER VIETNAM</strong></a> | Junior Fullstack Engineer - Java/ReactJS - Naverse | Ho Chi Minh City, Vietnam | <a href="https://job-boards.greenhouse.io/navervietnam/jobs/5831079004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="http://www.smartbear.com"><strong>SmartBear</strong></a> | Junior Frontend Engineer - Swagger Functional Testing | Wroc aw, Lower Silesian Voivodeship, Poland | <a href="https://job-boards.greenhouse.io/smartbear/jobs/7659607003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://sofico.global"><strong>Sofico</strong></a> | Junior Software Engineer - m/f/d - Identity Access Management Specialist | Zwijnaarde, East Flanders, Belgium | <a href="https://job-boards.eu.greenhouse.io/soficonv/jobs/4814606101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://www.taskus.com"><strong>TaskUs</strong></a> | Associate Data Engineer | Remote | <a href="https://taskus.wd1.myworkdayjobs.com/en-US/careers/job/Colombia---Remote/Associate-Data-Engineer_R_2603_4118"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 1d |
| <a href="https://shop.advanceautoparts.com"><strong>Advance Auto Parts</strong></a> | Associate Data Engineer | Hyderabad, India | <a href="https://advanceauto.wd5.myworkdayjobs.com/en-US/advanceexternalcareers/job/Hyderabad-India/Associate-Data-Engineer_R-0576533"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://shop.advanceautoparts.com"><strong>Advance Auto Parts</strong></a> | Associate Data Engineer | Hyderabad, India | <a href="https://advanceauto.wd5.myworkdayjobs.com/en-US/advanceexternalcareers/job/Hyderabad-India/Associate-Data-Engineer_R-0576532"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.affirm.com"><strong>Affirm</strong></a> | Software Engineering Apprentice - Backend | Remote | <a href="https://job-boards.greenhouse.io/affirm/jobs/7647925003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="http://www.anaplan.com"><strong>Anaplan</strong></a> | Associate Software Engineer- ODL | Gurugram, India | <a href="https://job-boards.greenhouse.io/anaplan/jobs/8448239002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.backmarket.com/"><strong>Back Market</strong></a> | Associate Software Engineer - Care AI | Paris | <a href="https://jobs.ashbyhq.com/backmarket/6e78bdf8-57e3-473a-898b-611241530a27"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.blackrock.com/"><strong>BlackRock</strong></a> | Python Data Engineer - Risk & Analytics - Associate | Gurgaon, India | <a href="https://blackrock.wd1.myworkdayjobs.com/en-US/blackrock_professional/job/Gurgaon-India/Core-Risk-Governance--RQA--Associate_R261393"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://dxc.com"><strong>DXC Technology</strong></a> | Junior/Intermediate AI & Innovation Full Stack Engineer | AUS VIC MELBOURNE | <a href="https://dxctechnology.wd1.myworkdayjobs.com/en-US/dxcjobs/job/AUS---VIC---MELBOURNE/Junior-Intermediate-R-D-Full-Stack-Engineer_51558717"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="http://www.platformscience.com"><strong>Platform Science</strong></a> | Junior Software Engineer | Brazil | <a href="https://job-boards.greenhouse.io/platformscience/jobs/7667834003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.rtx.com"><strong>Raytheon</strong></a> | Embedded Software Engineer I - Hybrid - Aguadilla - PR | US PR AGUADILLA Rd N Km RD | <a href="https://globalhr.wd5.myworkdayjobs.com/en-US/rec_rtx_ext_gateway/job/US-PR-AGUADILLA-110--Rd-110-N-Km-288--RD110/Embedded-Software-Engineer-I--Hybrid---Aguadilla--PR-_01829219"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.santanderbank.com"><strong>Santander</strong></a> | Junior Software Engineer Banca Privada | Madrid | <a href="https://santander.wd3.myworkdayjobs.com/en-US/santandercareers/job/Madrid/Junior-Software-Engineer-Banca-Privada_Req1554152"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="http://www.smartbear.com"><strong>SmartBear</strong></a> | Junior Software Engineer ZE | Bengaluru, Karnataka, India | <a href="https://job-boards.greenhouse.io/smartbear/jobs/7667231003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://visa.com/"><strong>Visa</strong></a> | Graduate Software Engineer | Auckland, Auckland, nz | <a href="https://jobs.smartrecruiters.com/Visa/744000115129302-graduate-software-engineer?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.wexinc.com"><strong>WEX</strong></a> | Junior Software Development Engineer | Remote | <a href="https://wexinc.wd5.myworkdayjobs.com/en-US/wexinc/job/US---Remote/Junior-Software-Development-Engineer_R21266-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 2d |
| <a href="https://www.ahead.com"><strong>AHEAD</strong></a> | Associate Cloud Engineer- AWS | Gurugram, Haryana | <a href="https://jobs.lever.co/thinkahead/b53edd31-1772-4571-b4e1-1d0a623b652d/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.airliquide.com"><strong>Air Liquide</strong></a> | V.I.E. - Data Engineer - F/M/D | Japan, Yokosuka shi | <a href="https://airliquidehr.wd3.myworkdayjobs.com/en-US/airliquideexternalcareer/job/Japan-Yokosuka-shi/VIE---Data-Engineer--F-M-D-_R10087694"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | ALTERNANT- E 2026 - IA & Data Engineer - Al Gender | Marseille Area | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Marseille-Area/ALTERNANT-E--2026----IA---Data-Engineer--Al-Gender-_JR10400247"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | Alternant- e 2026 - AI Software Engineer apprentice - All Gender | Toulouse Area | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Toulouse-Area/XMLNAME--Alternant-e--2026---AI-Software-Engineer-apprentice--All-Gender--_JR10400233"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.bbva.com"><strong>BBVA</strong></a> | SOFTWARE EXPERT I - CREDIT CARDS PROGRAM - ENGINEERING & DATA COLOMBIA | , Bogot D C , Distrito Capital de Bogot | <a href="https://bbva.wd3.myworkdayjobs.com/en-US/bbva/job/11001-Bogot-DC-Distrito-Capital-de-Bogot/SOFTWARE-EXPERT-I---CREDIT-CARDS-PROGRAM---ENGINEERING---DATA-COLOMBIA_JR00097649"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.blackrock.com/"><strong>BlackRock</strong></a> | Full Stack Developer - Data Engineering - Associate | BU Budapest GTC White House, Vaci ut , District XIII, Budapest | <a href="https://blackrock.wd1.myworkdayjobs.com/en-US/blackrock_professional/job/BU3-Budapest-GTC-White-House-Vaci-ut-47-District-XIII-Budapest/Full-Stack-Developer--Data-Engineering--Associate_R261670"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://dxc.com"><strong>DXC Technology</strong></a> | Analyst I Software Engineering / RR-0214560 | IND HR NOIDA | <a href="https://dxctechnology.wd1.myworkdayjobs.com/en-US/dxcjobs/job/IND---HR---NOIDA/Analyst-I-Software-Engineering---RR-0214560_51557046"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://flex.com"><strong>Flex</strong></a> | Junior Embedded Software Tester | Netherlands, Woerden | <a href="https://flextronics.wd1.myworkdayjobs.com/en-US/careers/job/Netherlands-Woerden/Junior-Embedded-Software-Tester_WD217340"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.ing.com"><strong>ING</strong></a> | Big Data Engineer - junior/mid | Warszawa Pa ska | <a href="https://ing.wd3.myworkdayjobs.com/en-US/jvsgblcor/job/Warszawa-Paska-97/Big-Data-Engineer--junior-mid-_REQ-10111498"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.ing.com/"><strong>ING</strong></a> | Big Data Engineer - junior/mid | Warszawa Pa ska | <a href="https://ing.wd3.myworkdayjobs.com/en-US/icsgblcor/job/Warszawa-Paska-97/Big-Data-Engineer--junior-mid-_REQ-10111498-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://infotrust.com"><strong>InfoTrust</strong></a> | Associate Full-Stack Engineer | Cebu, Philippines, Manila, Manila, Philippines | <a href="https://job-boards.greenhouse.io/infotrust/jobs/7665953003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.jerry.ai/"><strong>Jerry</strong></a> | Associate Software Engineer | Toronto, Ontario | <a href="https://jobs.ashbyhq.com/jerry.ai/ae391882-ae86-495d-84a2-90f35b0e806d"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.johnsoncontrols.com"><strong>Johnson Controls</strong></a> | Procurement Data Engineer I | San Pedro Garza Garcia Nuevo Leon Mexico | <a href="https://jci.wd5.myworkdayjobs.com/en-US/jci/job/San-Pedro-Garza-Garcia-Nuevo-Leon-Mexico/Procurement-Data-Engineer-I_WD30264048"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="http://kla.com"><strong>KLA</strong></a> | Junior Engineer - Software Test Automation | Chennai, India | <a href="https://kla.wd1.myworkdayjobs.com/en-US/search/job/Chennai-India/Junior--Engineer--Software-Test-Automation_2634561-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.millerknoll.com"><strong>MillerKnoll</strong></a> | Associate Software Engineer | India Bengaluru | <a href="https://millerknoll.wd1.myworkdayjobs.com/en-US/millerknoll/job/India---Bengaluru/Associate-Software-Engineer_JR108598-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://nebius.com/"><strong>Nebius</strong></a> | Full Stack Developer - AI Infrastructure Early Career | Amsterdam, Netherlands | <a href="https://careers.nebius.com/?gh_jid=4812141101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://onci.oaknorth.com"><strong>OakNorth</strong></a> | Junior Software Engineer - AI Native Pod - Entry Level | London | <a href="https://jobs.lever.co/oaknorth.ai/28daf547-064c-4f8f-a69b-17b6a2aab2f5/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://onci.oaknorth.com"><strong>OakNorth</strong></a> | Junior Software Engineer- AI Native Pods | Gurugram | <a href="https://jobs.lever.co/oaknorth.ai/11c7d73e-cb47-4999-a206-4e54502dec82/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="http://www.pwc.com/"><strong>PwC</strong></a> | ICA - Managed Services - Associate - Python Full Stack Application Support Engineer - Operate | Bangalore SDC Bagmane Tech Park | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/crm_experienced_careers_site/job/Bangalore/ICA---Managed-Services---Associate----Python-Full-Stack-Application-Support-Engineer---Operate_712123WD-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 3d |
| <a href="https://www.avanade.com/"><strong>Avanade</strong></a> | MDM Junior Data Engineer | Sydney, International House, Sussex St | <a href="https://accenture.wd103.myworkdayjobs.com/en-US/avanadecareers/job/Sydney-International-House-3-Sussex-St/MDM-Junior-Data-Engineer_R00318549"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.avanade.com/"><strong>Avanade</strong></a> | Junior Data Engineer | Sydney, International House, Sussex St | <a href="https://accenture.wd103.myworkdayjobs.com/en-US/avanadecareers/job/Sydney-International-House-3-Sussex-St/Junior-Data-Engineer_R00318546"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://home.barclays/"><strong>Barclays</strong></a> | Junior Java Fullstack Engineer | Glasgow Campus | <a href="https://barclays.wd3.myworkdayjobs.com/en-US/external_career_site_barclays/job/Glasgow-Campus/Junior-Java-Fullstack-Engineer_JR-0000095276-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate DotNet Full Stack Developer | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/IND---Bangalore-India/Associate-DotNet-Full-Stack-Developer_JR2026499844-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate DotNet Full Stack Developer | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_subsidiary/job/IND---Bangalore-India/Associate-DotNet-Full-Stack-Developer_JR2026499844"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://gdmissionsystems.com/"><strong>General Dynamics Mission Systems</strong></a> | Software Engineering Developer - Junior/Intermediate | Calgary, AB, ca | <a href="https://jobs.smartrecruiters.com/GDMSI/744000114855497-software-engineering-developer-junior-intermediate-?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.hitachi.com"><strong>Hitachi</strong></a> | Software Engineer - Full Stack Developer - I&C | Chennai, Tamil Nadu, India | <a href="https://hitachi.wd1.myworkdayjobs.com/en-US/hitachi/job/Chennai-Tamil-Nadu-India/Software-Engineer---Full-Stack-Developer---I-C_R0118027"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 4d |
| <a href="https://www.mews.com"><strong>Mews</strong></a> | Junior Software Engineer | Czechia Spain | <a href="https://www.mews.com/en/careers/jobs/4793615101?gh_jid=4793615101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.sgs.com/"><strong>SGS</strong></a> | Junior Software Developer RBS | Bogot , Bogot , co | <a href="https://jobs.smartrecruiters.com/SGS/744000114755776-junior-software-developer-rbs?oga=true"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="http://www.smartbear.com"><strong>SmartBear</strong></a> | Junior Software Engineer - AI Services | Ahmedabad, Gujarat, India | <a href="https://job-boards.greenhouse.io/smartbear/jobs/7663631003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="http://www.smartbear.com"><strong>SmartBear</strong></a> | Junior Software Engineer - Java | Ahmedabad, Gujarat, India | <a href="https://job-boards.greenhouse.io/smartbear/jobs/7663625003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.sumup.com"><strong>SumUp</strong></a> | Junior Backend Engineer - Golang - Payments Tribe | Sofia, Bulgaria | <a href="https://sumup.com/careers/positions/8461784002?gh_jid=8461784002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.sumup.com"><strong>SumUp</strong></a> | Backend Engineer - Junior-Mid - Java - Payments Tribe | Sofia, Bulgaria | <a href="https://sumup.com/careers/positions/8461787002?gh_jid=8461787002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.valgenesis.com/"><strong>ValGenesis</strong></a> | Junior Cloud Admin | Chennai | <a href="https://jobs.lever.co/valgenesis/3ea1eb11-9207-43ee-8fbb-d827d0f4ce93/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 6d |
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | Alternant- e 2026 - Software Developer - All Gender | Toulouse Area | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Toulouse-Area/Alternant-e--2026---Software-Developer--All-Gender-_JR10399226"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.airbus.com/"><strong>Airbus</strong></a> | ALT 2026_ Apprenti développement logiciel Full Stack - DEVOPS pour des applications de simulation | Paris Area | <a href="https://ag.wd3.myworkdayjobs.com/en-US/airbus/job/Paris-Area/ALT-2026--Apprenti-dveloppement-logiciel-Full-Stack--DEVOPS-pour-des-applications-de-simulation_JR10393268"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://www.anaplan.com"><strong>Anaplan</strong></a> | Associate Software Engineer - .NET Full Stack | Gurugram, India | <a href="https://job-boards.greenhouse.io/anaplan/jobs/8448237002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.aptiv.com"><strong>Aptiv</strong></a> | Junior Salesforce Engineer - AI-Native - Full-Stack | Szombathely, Hungary | <a href="https://aptiv.wd5.myworkdayjobs.com/en-US/aptiv_careers/job/Szombathely-Hungary/Junior-Developer_J000693775-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.axis.com"><strong>Axis</strong></a> | Early Career Embedded Software Engineer in Linköping | Sweden Link ping | <a href="https://axis.wd3.myworkdayjobs.com/en-US/external_career_site/job/Sweden---Linkping/Early-Career-Embedded-Software-Engineer-in-Linkping_R-123260"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.bdo.ca/"><strong>BDO</strong></a> | Intermediate Associate - Cloud Accounting Services | Calgary th Ave SW | <a href="https://bdo.wd3.myworkdayjobs.com/en-US/bdo/job/Calgary---8th-Ave-SW/Intermediate-Associate--Cloud-Accounting-Services_JR5995"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.cvshealth.com/"><strong>CVS Health</strong></a> | Associate Software Development Engineer | IRL Galway | <a href="https://cvshealth.wd1.myworkdayjobs.com/en-US/cvs_health_careers/job/IRL---Galway/Associate-Software-Development-Engineer_R0848204"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.capco.com"><strong>Capco</strong></a> | I&O Cloud Hosting & Networks PM | India Bengaluru | <a href="https://job-boards.greenhouse.io/capco/jobs/7681391"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://dxc.com"><strong>DXC Technology</strong></a> | Analyst I Software Engineering - Smart400 | IND MH MUMBAI | <a href="https://dxctechnology.wd1.myworkdayjobs.com/en-US/dxcjobs/job/IND---MH---MUMBAI/Analyst-I-Software-Engineering--Smart400-_51571700"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.ecolab.com"><strong>Ecolab</strong></a> | Associate Data Engineer | IND Maharashtra Pune | <a href="https://ecolab.wd1.myworkdayjobs.com/en-US/ecolab_external/job/IND---Maharashtra---Pune/Associate-Data-Engineer_R00287551"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://www.euromonitor.com/"><strong>Euromonitor</strong></a> | Associate Data Engineer | Vilnius, Vilnius City Municipality, LT | <a href="https://apply.workable.com/euromonitor/j/F6A9ED0791/"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://gdmissionsystems.com"><strong>General Dynamics Mission Systems</strong></a> | Software Engineer - Entry Level | US Varies | <a href="https://careers-gdms.icims.com/jobs/71486/software-engineer-%e2%80%93-entry-level/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.hpe.com"><strong>Hewlett Packard Enterprise</strong></a> | Junior Software Support Engineer Graduate | Sofia, Sofia, Bulgaria | <a href="https://hpe.wd5.myworkdayjobs.com/en-US/jobsathpe/job/Sofia-Sofia-Bulgaria/Junior-Software-Support-Engineer-Graduate_1195937"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.hkexgroup.com/"><strong>Hong Kong Exchanges and Clearing Limited</strong></a> | Associate - Data Engineer - Chief Data Office | HK TWO ES F | <a href="https://hkex.wd3.myworkdayjobs.com/en-US/hkexcareerpage/job/HK-TWO-ES-8F/Associate---Data-Engineer---Chief-Data-Office_R003698"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://karbonhq.com"><strong>Karbon</strong></a> | Associate Software Engineer | Sydney, NSW, Australia | <a href="https://job-boards.greenhouse.io/karbon/jobs/5826331004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://karbonhq.com"><strong>Karbon</strong></a> | Associate Software Engineer | Sydney, NSW, Australia | <a href="https://job-boards.greenhouse.io/karbon/jobs/5826014004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://karbonhq.com"><strong>Karbon</strong></a> | Associate Software Engineer | Canberra, ACT, Australia | <a href="https://job-boards.greenhouse.io/karbon/jobs/5826008004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://karbonhq.com"><strong>Karbon</strong></a> | Associate Software Engineer | Sydney, NSW, Australia | <a href="https://job-boards.greenhouse.io/karbon/jobs/5826006004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://us.pg.com"><strong>P&G - Procter & Gamble</strong></a> | Software Development Industrial Placement 2026 | NEWCASTLE INNOVATION CENTRE | <a href="https://pg.wd5.myworkdayjobs.com/en-US/1000/job/NEWCASTLE-INNOVATION-CENTRE/Software-Development-Industrial-Placement-2026_R000147514"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="http://www.pwc.com/"><strong>PwC</strong></a> | Data engineer-Associate-Analytics as service - operate | Bangalore | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/crm_experienced_careers_site/job/Bangalore/Data-engineer-Associate-Analytics-as-service---operate_711705WD-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://td.com/"><strong>TD Bank</strong></a> | Associate Software Engineer | Toronto, Ontario | <a href="https://td.wd3.myworkdayjobs.com/en-US/td_bank_careers/job/Toronto-Ontario/Software-Engineer-I_R_1474550"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://td.com/"><strong>TD Bank</strong></a> | Software Engineer I - Mainframe | Toronto, Ontario | <a href="https://td.wd3.myworkdayjobs.com/en-US/td_bank_careers/job/Toronto-Ontario/Software-Engineer-I--Mainframe-_R_1476716"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 7d |
| <a href="https://www.acronis.com/"><strong>Acronis</strong></a> | Junior Cloud Services Advisor | Japan | <a href="https://acronis.wd502.myworkdayjobs.com/en-US/acronis_careers/job/Japan/Junior-Cloud-Services-Advisor_R-100909"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.blackrock.com/"><strong>BlackRock</strong></a> | Full Stack Engineer - Aladdin Engineering - Associate | Gurgaon, India | <a href="https://blackrock.wd1.myworkdayjobs.com/en-US/blackrock_professional/job/Gurgaon-India/Full-Stack-Engineer--Aladdin-Engineering--Associate_R261166"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="http://www.magna.com"><strong>Magna International</strong></a> | Junior Full Stack Developer - Smart Factory Solutions | Bangalore | <a href="https://wd3.myworkdaysite.com/recruiting/magna/Magna/job/Bangalore-IN/IoT-Developer_R00211153"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.morganstanley.com"><strong>Morgan Stanley</strong></a> | Associate - P2 - Software Engineer II | Hong Kong, Hong Kong | <a href="https://ms.wd5.myworkdayjobs.com/en-US/private/job/Hong-Kong-Hong-Kong/Associate--P2--Software-Engineer-II_PT-JR031954"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.plexus.com"><strong>Plexus</strong></a> | Frontend Test Engineer - SPI - AOI - XRAY New Graduated are Welcome | Bangkok, Thailand | <a href="https://plexus.wd5.myworkdayjobs.com/en-US/plexus_careers/job/Bangkok-Thailand/Frontend-Test-Engineer--SPI--AOI--XRAY--New-Graduated-are-Welcome_R037057"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.thalesgroup.com"><strong>Thales</strong></a> | COOP Software Developer Summer/Fall 2026 - 8 months term | Ottawa | <a href="https://thales.wd3.myworkdayjobs.com/en-US/careers/job/Ottawa/COOP-Software-Developer--Summer-Fall-2026--8-months-term-_R0318614"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://www.unisonglobal.com"><strong>Unison Software</strong></a> | Software Engineer - College | US | <a href="https://careers-unisonglobal.icims.com/jobs/1547/software-engineer---college/job"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 8d |
| <a href="https://global.abb/"><strong>ABB</strong></a> | Associate Software Engineer | Madrid, Madrid, Spain | <a href="https://abb.wd3.myworkdayjobs.com/en-US/external_career_page/job/Madrid-Madrid-Spain/Associate-Software-Engineer_JR00027335"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.alarm.com"><strong>Alarm.com</strong></a> | Junior Software Engineer - .NET - C# | Warszawa, Masovian Voivodeship, Poland | <a href="https://job-boards.greenhouse.io/alarmcom/jobs/8442364002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.alfasystems.com/"><strong>Alfa</strong></a> | Junior Cloud Operations Engineer | Poland | <a href="https://alfa.wd3.myworkdayjobs.com/en-US/alfa/job/Poland/Junior-Cloud-Operations-Engineer_R185-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.dat.com"><strong>DAT Freight & Analytics</strong></a> | Data Engineer I | Bengaluru, Karnataka, India | <a href="https://careers.dat.com/jobs/5776476004?gh_jid=5776476004"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://priceline.com/"><strong>Priceline</strong></a> | Associate Software Engineer | Mumbai | <a href="https://priceline.wd1.myworkdayjobs.com/en-US/priceline/job/Mumbai/Associate-Software-Engineer_R5490"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="http://www.pwc.com/"><strong>PwC</strong></a> | AC Manila - Full Stack Software Developer - AI Solutions Associate | Metro Manila | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/crm_experienced_careers_site/job/Metro-Manila/AC-Manila---Full-Stack-Software-Developer---AI-Solutions-Associate_711743WD"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 9d |
| <a href="https://www.amexglobalbusinesstravel.com"><strong>American Express GBT</strong></a> | Engineer I -Fullstack | Bangalore, India | <a href="https://travelhrportal.wd1.myworkdayjobs.com/en-US/jobs/job/Bangalore-India/Engineer-I--Fullstack_J-80212-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.amgen.com"><strong>Amgen</strong></a> | Software Development Engineer-Test I | India Hyderabad | <a href="https://amgen.wd1.myworkdayjobs.com/en-US/careers/job/India---Hyderabad/Software-Development-Engineer-Test-I_R-223446"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.anduril.com"><strong>Anduril Industries</strong></a> | Associate Software Engineer | Sydney, New South Wales, Australia | <a href="https://boards.greenhouse.io/andurilindustries/jobs/5073263007?gh_jid=5073263007"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.autodesk.com"><strong>Autodesk</strong></a> | Software Engineer - Junior | Norway Oslo | <a href="https://autodesk.wd1.myworkdayjobs.com/en-US/ext/job/Norway---Oslo/Software-Engineer--Junior-_26WD96366"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.axon.com"><strong>Axon</strong></a> | Software Engineer in Test I/ II | Ho Chi Minh City, Ho Chi Minh City, Vietnam | <a href="https://job-boards.greenhouse.io/axon/jobs/7598057003"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate Software Engineer - Analytics | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/IND---Bangalore-India/Associate-Software-Engineer---Analytics_JR2026499386"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate Software Engineer - Analytics | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_subsidiary/job/IND---Bangalore-India/Associate-Software-Engineer---Analytics_JR2026499386-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate Software Engineer - iOS | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_subsidiary/job/IND---Bangalore-India/Associate-Software-Engineer---iOS_JR2026498967"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://boeing.com"><strong>Boeing</strong></a> | Associate Software Engineer - iOS | IND Bangalore, India | <a href="https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/IND---Bangalore-India/Associate-Software-Engineer---iOS_JR2026498967-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://canonical.com"><strong>Canonical</strong></a> | Graduate Software Engineer - Open Source and Linux - Canonical Ubuntu | Remote | <a href="https://job-boards.greenhouse.io/canonical/jobs/7679138"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://flex.com"><strong>Flex</strong></a> | Junior Software Engineer | Hungary, Zalaegerszeg | <a href="https://flextronics.wd1.myworkdayjobs.com/en-US/careers/job/Hungary-Zalaegerszeg/Junior-Software-Engineer_WD216748"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | Graduate Talent - Software EDA Design Automation Engineer | Malaysia, Penang | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Malaysia-Penang/Graduate-Talent--Software-EDA-Design-Automation-Engineer-_JR0281605"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.intel.com"><strong>Intel</strong></a> | Graduate Talent - Development Tools Software Engineer | MYS Penang | <a href="https://intel.wd1.myworkdayjobs.com/en-US/external/job/Malaysia-Penang/Graduate-Talent--Development-Tools-Software-Engineer-_JR0281757"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.leidos.com"><strong>Leidos</strong></a> | Graduate Software Engineer - Melbourne | Melbourne, Victoria, Australia | <a href="https://leidos.wd5.myworkdayjobs.com/en-US/external/job/Melbourne-Victoria-Australia/Graduate-Software-Engineer---Melbourne_R-00176118"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.leidos.com"><strong>Leidos</strong></a> | Graduate Software Engineer - Canberra | Canberra, Australian Capital Territory, Australia | <a href="https://leidos.wd5.myworkdayjobs.com/en-US/external/job/Canberra-Australian-Capital-Territory-Australia/Graduate-Software-Engineer---Canberra_R-00176120"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.leidos.com"><strong>Leidos</strong></a> | Graduate Software Engineer - Scoresby | Scoresby, Victoria, Australia | <a href="https://leidos.wd5.myworkdayjobs.com/en-US/external/job/Scoresby-Victoria-Australia/Graduate-Software-Engineer---Scoresby_R-00176119"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.usa.philips.com"><strong>Philips</strong></a> | Software Technologist I -Test | Bangalore | <a href="https://philips.wd3.myworkdayjobs.com/en-US/jobs-and-careers/job/Bangalore/Software-Technologist-I--Test_565977"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="http://www.pwc.com/"><strong>PwC</strong></a> | Acceleration Center - Cloud Engineering - Data & Analytics - CEDA - Cloud Operations - Associate | Mexico Mariano Escobedo | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/crm_experienced_careers_site/job/Mexico-City/Acceleration-Center---Cloud-Engineering--Data---Analytics--CEDA----Cloud-Operations---Associate_711897WD"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="http://www.pwc.com/"><strong>PwC</strong></a> | Data engineer-Associate-Analytics as service - operate | Bangalore | <a href="https://pwc.wd3.myworkdayjobs.com/en-US/crm_experienced_careers_site/job/Bangalore/Data-engineer-Associate-Analytics-as-service---operate_705097WD"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.santanderbank.com"><strong>Santander</strong></a> | DATA ENGINEER I RISK - Plazo Fijo - Santiago | SANTIAGO | <a href="https://santander.wd3.myworkdayjobs.com/en-US/santandercareers/job/SANTIAGO/DATA-ENGINEER-I-RISK---Plazo-Fijo---Santiago_Req1548046"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="http://ultra.group"><strong>Ultra Group</strong></a> | Graduate Software Engineer | Weymouth GBR | <a href="https://ultra.wd3.myworkdayjobs.com/en-US/ultra-careers/job/Weymouth-Dorset-England-UK/Graduate-Software-Engineer_REQ-11623"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://xpansiv.com/careers"><strong>Xpansiv</strong></a> | Software Engineer I | Sydney, AU | <a href="https://jobs.lever.co/Xpansiv%20/b1d1bac8-6301-4f91-b458-d6b4209b4272/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 10d |
| <a href="https://www.blackrock.com/"><strong>BlackRock</strong></a> | Storage Cloud Engineer - Aladdin Engineering - Associate | Singapore, Singapore | <a href="https://blackrock.wd1.myworkdayjobs.com/en-US/blackrock_professional/job/Singapore-Singapore/Storage-Cloud-Engineer--Aladdin-Engineering--Associate_R260926-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="https://clario.com"><strong>Clario</strong></a> | Software Development Engineer I | Bangalore, India | <a href="https://clarioclinical.wd1.myworkdayjobs.com/en-US/clarioclinical_careers/job/Bangalore-India/Software-Development-Engineer_R16803-2"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 11d |
| <a href="https://www.jackandjill.ai/"><strong>Jack & Jill/External ATS</strong></a> | Junior Software Developer - + Equity at Joinkyber.com | London UK | <a href="https://jobs.ashbyhq.com/jack-jill-external-ats/de1bb1ae-58a6-4883-81aa-4c190566225c"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 12d |
| <a href="https://mars.com/"><strong>Mars</strong></a> | Stage Royal Canin Data Engineer - H/F/X - Septembre 2026 | FRA Gard Aimargues | <a href="https://mars.wd3.myworkdayjobs.com/en-US/external/job/FRA-Gard-Aimargues/Stage-Royal-Canin-Data-Engineer--H-F-X----Septembre-2026_R150442-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 12d |
| <a href="https://mars.com/"><strong>Mars</strong></a> | Stage Royal Canin Data Engineer Operations - H/F/X - September 2026 | FRA Gard Aimargues | <a href="https://mars.wd3.myworkdayjobs.com/en-US/external/job/FRA-Gard-Aimargues/Stage-Royal-Canin-Data-Engineer-Operations--H-F-X----September-2026_R150408-1"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 12d |
| <a href="https://tamara.co"><strong>Tamara</strong></a> | Associate Data Engineer - Builders Program | Riyadh, Saudi Arabia | <a href="https://job-boards.eu.greenhouse.io/tamara/jobs/4792926101"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 12d |
| <a href="http://www.anaplan.com"><strong>Anaplan</strong></a> | Associate Software Engineer - Rust -Kubernetes -K8 | Gurugram, India | <a href="https://job-boards.greenhouse.io/anaplan/jobs/8452039002"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://www.despegar.com"><strong>Despegar</strong></a> | Software Engineer I Full Stack - Buenos Aires | Buenos Aires | <a href="https://jobs.lever.co/despegar/e3c15bfd-54ec-44fa-87cb-8cab5de4ac7c/apply"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://instride.health"><strong>InStride Health</strong></a> | Junior Fullstack Engineer | Remote, US | <a href="https://job-boards.greenhouse.io/instridehealth/jobs/4670604005"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="https://www.santanderbank.com"><strong>Santander</strong></a> | Junior Back-End Engineer - SDS | Madrid | <a href="https://santander.wd3.myworkdayjobs.com/en-US/santandercareers/job/Madrid/Junior-Back-End-Engineer---SDS_Req1550953"><img src="https://i.imgur.com/JpkfjIq.png" alt="Apply" width="70"/></a> | 13d |
| <a href="http://sprout
gitextract_04rigmut/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── new.yml │ │ ├── other.yml │ │ └── update.yml │ ├── scripts/ │ │ ├── .gitignore │ │ ├── package.json │ │ ├── src/ │ │ │ ├── add-or-update-job.ts │ │ │ ├── config.ts │ │ │ ├── get-jobs.ts │ │ │ ├── mutations.ts │ │ │ ├── queries.ts │ │ │ └── types/ │ │ │ ├── job-counts.schema.ts │ │ │ └── job.schema.ts │ │ └── tsconfig.json │ └── workflows/ │ ├── add-or-update-job.yml │ └── get-jobs.yml ├── INTERN_INTL.md ├── NEW_GRAD_INTL.md ├── NEW_GRAD_USA.md └── README.md
SYMBOL INDEX (21 symbols across 7 files)
FILE: .github/scripts/src/add-or-update-job.ts
constant GIT_USER_NAME (line 7) | const GIT_USER_NAME = process.env.GIT_USER_NAME;
constant GIT_USER_EMAIL (line 8) | const GIT_USER_EMAIL = process.env.GIT_USER_EMAIL;
function parseIssueBody (line 10) | function parseIssueBody(issueBody: string) {
function main (line 55) | async function main() {
FILE: .github/scripts/src/config.ts
constant TABLES (line 1) | const TABLES = [
constant HEADERS (line 40) | const HEADERS = ["Company", "Position", "Location", "Posting", "Age"];
constant MARKERS (line 42) | const MARKERS = {
FILE: .github/scripts/src/get-jobs.ts
constant APPLY_IMG_URL (line 10) | const APPLY_IMG_URL = process.env.APPLY_IMG_URL;
function generateMarkdownTable (line 12) | function generateMarkdownTable(
function updateTable (line 60) | function updateTable(
function updateReadme (line 71) | function updateReadme(
function updateCounts (line 85) | async function updateCounts(filePath: string) {
function main (line 111) | async function main() {
FILE: .github/scripts/src/mutations.ts
constant SUPABASE_URL (line 5) | const SUPABASE_URL = process.env.SUPABASE_URL;
constant SUPABASE_KEY (line 6) | const SUPABASE_KEY = process.env.SUPABASE_KEY;
function addNewJob (line 13) | async function addNewJob(
function updateJob (line 41) | async function updateJob(
FILE: .github/scripts/src/queries.ts
function fetchJobs (line 13) | async function fetchJobs(params: {
function fetchJobCounts (line 35) | async function fetchJobCounts() {
FILE: .github/scripts/src/types/job-counts.schema.ts
type JobCounts (line 10) | type JobCounts = z.infer<typeof JobCountsSchema>;
FILE: .github/scripts/src/types/job.schema.ts
type Job (line 15) | type Job = z.infer<typeof JobSchema>;
Condensed preview — 20 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (544K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 173,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: SpeedyApply Support\n url: https://www.speedyapply.com/contact\n "
},
{
"path": ".github/ISSUE_TEMPLATE/new.yml",
"chars": 1989,
"preview": "name: New Position\ndescription: Add a new grad or intern job position.\ntitle: \"New Position\"\nlabels: [\"new\"]\nbody:\n - t"
},
{
"path": ".github/ISSUE_TEMPLATE/other.yml",
"chars": 369,
"preview": "name: Repo Issue or Suggestion\ndescription: Tell us about an issue or feature request.\ntitle: \"Other Issue\"\nbody:\n - ty"
},
{
"path": ".github/ISSUE_TEMPLATE/update.yml",
"chars": 2304,
"preview": "name: Update Position\ndescription: Update a new grad or intern job position.\ntitle: \"Update Position\"\nlabels: [\"update\"]"
},
{
"path": ".github/scripts/.gitignore",
"chars": 25,
"preview": "/node_modules\n/build\n.env"
},
{
"path": ".github/scripts/package.json",
"chars": 619,
"preview": "{\n \"name\": \"swe-college-jobs\",\n \"version\": \"1.0.0\",\n \"description\": \"The most comprehensive SWE internship & new grad"
},
{
"path": ".github/scripts/src/add-or-update-job.ts",
"chars": 4266,
"preview": "import * as core from \"@actions/core\";\nimport * as github from \"@actions/github\";\nimport dotenv from \"dotenv\";\nimport { "
},
{
"path": ".github/scripts/src/config.ts",
"chars": 1028,
"preview": "export const TABLES = [\n {\n path: \"../../../README.md\",\n salary: true,\n interval: \"hr\",\n query: {\n job"
},
{
"path": ".github/scripts/src/get-jobs.ts",
"chars": 4272,
"preview": "import * as fs from \"fs\";\nimport * as path from \"path\";\nimport * as core from \"@actions/core\";\nimport dotenv from \"doten"
},
{
"path": ".github/scripts/src/mutations.ts",
"chars": 1561,
"preview": "import dotenv from \"dotenv\";\nimport { createClient } from \"@supabase/supabase-js\";\n\ndotenv.config();\nconst SUPABASE_URL "
},
{
"path": ".github/scripts/src/queries.ts",
"chars": 1323,
"preview": "import dotenv from \"dotenv\";\nimport { createClient } from \"@supabase/supabase-js\";\nimport { JobListSchema } from \"./type"
},
{
"path": ".github/scripts/src/types/job-counts.schema.ts",
"chars": 260,
"preview": "import z from \"zod\";\n\nexport const JobCountsSchema = z.object({\n intern_usa_count: z.number(),\n new_grad_usa_count: z."
},
{
"path": ".github/scripts/src/types/job.schema.ts",
"chars": 368,
"preview": "import z from \"zod\";\n\nconst JobSchema = z.object({\n company_name: z.string(),\n company_url: z.string().nullable(),\n j"
},
{
"path": ".github/scripts/tsconfig.json",
"chars": 12119,
"preview": "{\n \"compilerOptions\": {\n /* Visit https://aka.ms/tsconfig to read more about this file */\n\n /* Projects */\n //"
},
{
"path": ".github/workflows/add-or-update-job.yml",
"chars": 2328,
"preview": "name: Add or Update Job\n\non:\n issues:\n types: [\"labeled\"]\n\njobs:\n update-or-add-job:\n runs-on: ubuntu-latest\n "
},
{
"path": ".github/workflows/get-jobs.yml",
"chars": 1312,
"preview": "name: Get Jobs and Update Tables\n\non:\n schedule:\n - cron: '0 12 * * *'\n workflow_dispatch:\n\njobs:\n get-jobs:\n r"
},
{
"path": "INTERN_INTL.md",
"chars": 112475,
"preview": "## 2026 International SWE Internships :books::globe_with_meridians:\n\n### USA Positions :eagle:\n- [Internships :books:](/"
},
{
"path": "NEW_GRAD_INTL.md",
"chars": 133830,
"preview": "## 2026 International SWE New Grad Positions :mortar_board::globe_with_meridians:\n\n### USA Positions :eagle:\n- [Internsh"
},
{
"path": "NEW_GRAD_USA.md",
"chars": 112241,
"preview": "## 2026 USA SWE New Graduate Positions :mortar_board::eagle:\n\n### USA Positions :eagle:\n- [Internships :books:](/) - **4"
},
{
"path": "README.md",
"chars": 131324,
"preview": "# 2026 Software Engineering Internship & New Grad Positions\n\nThis repository is a comprehensive list of Software Enginee"
}
]
About this extraction
This page contains the full source code of the speedyapply/2026-SWE-College-Jobs GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 20 files (511.9 KB), approximately 164.9k tokens, and a symbol index with 21 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.