Repository: vanshb03/New-Grad-2025
Branch: dev
Commit: df6bd92be5b9
Files: 18
Total size: 1.6 MB
Directory structure:
gitextract_9p3ggplw/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── edit_role.yaml
│ │ ├── feature_suggestion.yaml
│ │ ├── misc.yaml
│ │ └── new_role.yaml
│ ├── scripts/
│ │ ├── contribution_approved.py
│ │ ├── listings.json
│ │ ├── update_readmes.py
│ │ └── util.py
│ └── workflows/
│ ├── contribution_approved.yml
│ └── update_readmes.yml
├── .gitignore
├── CONTRIBUTING.md
├── Canada.md
├── LICENSE.txt
├── README.md
└── archived/
└── 2025/
├── Canada.md
├── README.md
└── listings.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/edit_role.yaml
================================================
name: Edit Role
description: Edit a Job Posting on our list
title: "Editing Role"
labels: ["edit_role"]
body:
- type: markdown
attributes:
value: |
## Edit Job Posting Form
Thanks for taking the time to contribute!
Make sure you've read `CONTRIBUTING.md` before submitting your edits
Please only fill in **link, reason, and whichever fields you would like to edit**
You may leave the others empty
- type: input
id: url
attributes:
label: Link to Job Posting
placeholder: ex. example.com/link/to/posting
validations:
required: true
- type: input
id: company_name
attributes:
label: Company Name
placeholder: ex. Google
validations:
required: false
- type: input
id: title
attributes:
label: Job Title
placeholder: ex. ML Software Engineer
validations:
required: false
- type: input
id: location
attributes:
label: Location
description: |
Where is the job located?
Please separate locations with a pipe "|" if there are multiple options.
Include Remote if remote option available.
placeholder: ex. San Franciso, CA | Austin, TX | Remote
validations:
required: false
- type: dropdown
id: sponsorship
attributes:
label: Does this job offer sponsorship?
description: |
If the posting does not fall into one of these
categories, select "Other" then specify in parentheses at the end of
the Job Title what the sponsorship status is
multiple: false
options:
- Offers Sponsorship
- Does Not Offer Sponsorship
- U.S. Citizenship is Required
- Other
validations:
required: false
- type: dropdown
id: active
attributes:
label: Is this job posting currently accepting applications?
description: Mark this as "false" if the job is no longer active.
multiple: false
options:
- "Yes"
- "No"
validations:
required: false
- type: checkboxes
id: is_visible
attributes:
label: Permanently remove this job from the list?
description: Only check this box if this job is fake, does not fit the theme of the repo, or is offensive. DO NOT check this box for jobs that are no longer active
options:
- label: "Yes, remove this job"
- type: input
id: email
attributes:
label: Email associated with your GitHub account (Optional)
description: |
If you would like to be listed as the contributor to the repository when our github action
commits your contribution to the repo, please provide your email. This is the only time your
email will be used. If left blank, your contribution will still be made, but it will be made
by the bot actions@github.com.
placeholder: ex. firstLast@gmail.com
validations:
required: false
- type: textarea
id: reason
attributes:
label: Reason for edit
description: If the reason for your edit is not obvious, please explain here.
placeholder: This job is no longer accepting applications...
validations:
required: false
================================================
FILE: .github/ISSUE_TEMPLATE/feature_suggestion.yaml
================================================
name: New Feature Request
description: Submit your ideas for improvements to the repo!
title: "New Feature Request"
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to suggest a new feature or improvement
- type: textarea
id: improvement
attributes:
label: Improvement
placeholder: ex. I think the repo should be more colorful...
validations:
required: true
================================================
FILE: .github/ISSUE_TEMPLATE/misc.yaml
================================================
name: Miscellaneous Issue
description: Ask us a question or tell us what we could do better
title: "Misc Issue"
labels: ["misc"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to give us feedback
- type: textarea
id: misc
attributes:
label: Issue/Question
description: Ask us a question or tell us what we could do better
placeholder: ex. There are a few jobs that aren't actually technical...
validations:
required: true
================================================
FILE: .github/ISSUE_TEMPLATE/new_role.yaml
================================================
name: New Role
description: Contribute a Job Posting to our list
title: "New Role"
labels: ["new_role"]
body:
- type: markdown
attributes:
value: |
## New Job Posting Contribution Form
Thanks for taking the time to contribute!
> Make sure you've read `CONTRIBUTING.md` before submitting your internship
- type: input
id: url
attributes:
label: Link to Job Posting
placeholder: ex. example.com/link/to/posting
validations:
required: true
- type: input
id: company_name
attributes:
label: Company Name
placeholder: ex. Google
validations:
required: true
- type: input
id: title
attributes:
label: Job Title
placeholder: ex. ML Software Engineer
validations:
required: true
- type: input
id: location
attributes:
label: Location
description: |
Where is the job located?
Please separate locations with a pipe "|" if there are multiple options.
Include Remote if remote option available.
placeholder: San Franciso, CA | Austin, TX | Remote
validations:
required: true
- type: dropdown
id: sponsorship
attributes:
label: Does this job offer sponsorship?
description: |
If the posting does not fall into one of these
categories, select "Other" then specify in parentheses at the end of
the Internship Title what the sponsorship status is
multiple: false
options:
- Offers Sponsorship
- Does Not Offer Sponsorship
- U.S. Citizenship is Required
- Other
validations:
required: true
- type: dropdown
id: active
attributes:
label: Is this internship currently accepting applications?
multiple: false
options:
- "Yes"
- "No"
validations:
required: true
- type: input
id: email
attributes:
label: Email associated with your GitHub account (Optional)
description: |
If you would like to be listed as the contributor to the repository when our github action
commits your contribution to the repo, please provide your email. This is the only time your
email will be used. If left blank, your contribution will still be made, but it will be made
by the bot actions@github.com.
placeholder: ex. firstLast@gmail.com
validations:
required: false
- type: textarea
id: reason
attributes:
label: Extra Notes (Optional)
description: |
Optionally, you may provide extra context/insights to our team about the job.
This will not be shown anywhere on the repo, but might ensure your contribution is accepted.
placeholder: This is an exciting new company in the vr space...
validations:
required: false
================================================
FILE: .github/scripts/contribution_approved.py
================================================
import sys
import json
import subprocess
import sys
import uuid
from datetime import datetime
import os
import util
import re
def add_https_to_url(url):
if not url.startswith(("http://", "https://")):
url = "https://" + url
return url
def getData(body, is_edit, username):
data = {}
lines = [text.strip("# ") for text in re.split('[\n\r]+', body)]
#["Company Name", "_No response_", "Internship Title", "_No response_", "Link to Internship Posting", "example.com/link/to/posting", "Locatio", "San Franciso, CA | Austin, TX | Remote" ,"What term(s) is this internship offered for?", "_No response_"]
data["date_updated"] = int(datetime.now().timestamp())
if "no response" not in lines[1].lower():
data["url"] = add_https_to_url(lines[1].strip())
if "no response" not in lines[3].lower():
data["company_name"] = lines[3]
if "no response" not in lines[5].lower():
data["title"] = lines[5]
if "no response" not in lines[7].lower():
data["locations"] = [line.strip() for line in lines[7].split("|")]
if "no response" not in lines[9].lower():
data["sponsorship"] = "Other"
for option in ["Offers Sponsorship", "Does Not Offer Sponsorship", "U.S. Citizenship is Required"]:
if option in lines[9]:
data["sponsorship"] = option
if "none" not in lines[11].lower():
data["active"] = "yes" in lines[11].lower()
if is_edit:
data["is_visible"] = "[x]" not in lines[13].lower()
email = lines[15 if is_edit else 13].lower()
if "no response" not in email:
util.setOutput("commit_email", email)
util.setOutput("commit_username", username)
else:
util.setOutput("commit_email", "action@github.com")
util.setOutput("commit_username", "GitHub Action")
return data
def main():
event_file_path = sys.argv[1]
with open(event_file_path) as f:
event_data = json.load(f)
# CHECK IF NEW OR OLD JOB
new_role = "new_role" in [label["name"] for label in event_data["issue"]["labels"]]
edit_role = "edit_role" in [label["name"] for label in event_data["issue"]["labels"]]
if not new_role and not edit_role:
util.fail("Only new_role and edit_role issues can be approved")
# GET DATA FROM ISSUE FORM
issue_body = event_data['issue']['body']
issue_user = event_data['issue']['user']['login']
data = getData(issue_body, is_edit=edit_role, username=issue_user)
if new_role:
data["source"] = issue_user
data["id"] = str(uuid.uuid4())
data["date_posted"] = int(datetime.now().timestamp())
data["company_url"] = ""
data["is_visible"] = True
# remove utm-source
utm = data["url"].find("?utm_source")
if utm == -1:
utm = data["url"].find("&utm_source")
if utm != -1:
data["url"] = data["url"][:utm]
# UPDATE LISTINGS
listings = []
with open(".github/scripts/listings.json", "r") as f:
listings = json.load(f)
listing_to_update = next(
(item for item in listings if item["url"] == data["url"]), None)
if listing_to_update:
if new_role:
util.fail("This role is already in our list. See CONTRIBUTING.md for how to edit a listing")
for key, value in data.items():
listing_to_update[key] = value
util.setOutput("commit_message", "updated listing: " + listing_to_update["title"] + " at " + listing_to_update["company_name"])
else:
if edit_role:
util.fail("We could not find this role in our list. Please double check you inserted the right url")
listings.append(data)
util.setOutput("commit_message", "added listing: " + data["title"] + " at " + data["company_name"])
with open(".github/scripts/listings.json", "w") as f:
f.write(json.dumps(listings, indent=4))
if __name__ == "__main__":
main()
================================================
FILE: .github/scripts/listings.json
================================================
[
{
"date_updated": 1743415809,
"url": "https://careers.qualcomm.com/careers/job/446704474013",
"company_name": "Qualcomm",
"title": "Embedded DSP Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "5dac35b2-b148-49f8-b3f5-828ba68da99c",
"date_posted": 1743415809,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649274,
"url": "https://redhat.wd5.myworkdayjobs.com/jobs/job/Raleigh/Software-Quality-Engineer_R-043779",
"company_name": "Red Hat",
"title": "Software Quality Engineer",
"locations": [
"Raleigh, NC"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "cvrve-bot",
"id": "9bd7188b-7f56-4003-8263-af808ccbfe0d",
"date_posted": 1743415983,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437821,
"url": "https://explore.jobs.netflix.net/careers/job/790301953900",
"company_name": "Netflix",
"title": "Software Engineer, Cloud Security",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "09c8ec92-f735-42fd-b7bc-2fba1c889d1b",
"date_posted": 1743416023,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649277,
"url": "https://nvidia.wd5.myworkdayjobs.com/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Deep-Learning-Computer-Architect---New-College-Grad-2025_JR1996025",
"company_name": "NVIDIA",
"title": "New Grad 2025: Deep Learning Computer Architect",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "d42bf112-3742-45ee-b464-478c12e27318",
"date_posted": 1743852912,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743853058,
"url": "https://www.qualtrics.com/careers/us/en/job/6774164/Machine-Learning-Engineer-I-Data-Insights",
"company_name": "Qualtrics",
"title": "Machine Learning Engineer I",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "1d46f93f-ca3b-4f28-9f10-1f05d72e7a8b",
"date_posted": 1743853058,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743853380,
"url": "https://www.amazon.jobs/en/jobs/2945843/system-development-engineer-project-kuiper",
"company_name": "Amazon",
"title": "System Development Engineer, Project Kuiper",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "9cbd8738-c04e-4434-9035-032d154629a3",
"date_posted": 1743853380,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743853467,
"url": "https://careers.roblox.com/jobs/6759944",
"company_name": "Roblox",
"title": "Software Engineer, Builder Tools",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "ee508fa1-ac39-4d8c-8b2a-4a04b4aa0997",
"date_posted": 1743853467,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649279,
"url": "https://bloomberg.wd1.myworkdayjobs.com/Bloombergindustrygroup_External_Career_Site/job/Arlington---1801-S-Bell-INDG/Software-Engineer--Associate_133810",
"company_name": "Bloomberg",
"title": "Software Engineer, Associate",
"locations": [
"Arlington, VA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "74669a0e-8162-41de-9b23-7366b720ebde",
"date_posted": 1743853506,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024602,
"url": "https://job-boards.greenhouse.io/twitch/jobs/7938822002",
"company_name": "Twitch",
"title": "Software Development Engineer - Safety ML",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "7e15c90e-ab8e-4fc6-bb07-a39b7a07cc43",
"date_posted": 1743853769,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198824,
"url": "https://jobs.lever.co/layup/e6d2ab2b-4c92-45bc-9b10-17217aa46181",
"company_name": "Layup Parts",
"title": "New Grad: Software Engineer",
"locations": [
"Huntington Beach, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "e58ea55f-088e-4821-a4ea-dfe11ff86f66",
"date_posted": 1743853814,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743853872,
"url": "https://www.amazon.jobs/en/jobs/2944002/software-engineer",
"company_name": "Twitch",
"title": "Software Engineer",
"locations": [
"Seattle, WA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "b4856bd2-329b-44a8-ad50-76aaad47a547",
"date_posted": 1743853872,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283134,
"url": "https://jobs.careers.microsoft.com/us/en/job/1816830/Software-Engineer-Fullstack-Charlotte",
"company_name": "Microsoft",
"title": "Software Engineer, Fullstack",
"locations": [
"Charlotte, NC"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "65ab7eda-d316-4a8e-b2e5-06a691a5402d",
"date_posted": 1743854117,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755438040,
"url": "https://www.ycombinator.com/companies/corgi/jobs/i4ErH1r-junior-full-stack-engineer-we-work-7-days-a-week",
"company_name": "Corgi - YC",
"title": "Junior Full Stack Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "ec5ff8fc-6224-454b-be74-be4bc32d94d4",
"date_posted": 1743854185,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755438040,
"url": "https://www.ycombinator.com/companies/corgi/jobs/tuERhvX-sde-i-engineer-we-work-7-days-a-week",
"company_name": "Corgi - YC",
"title": "SDE I Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "9fdb930c-32b9-401a-b199-74be274cf103",
"date_posted": 1743854228,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743854268,
"url": "https://www.tesla.com/careers/search/job/240332",
"company_name": "Tesla",
"title": "Software Engineer, Traction Control & Stability",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "cvrve-bot",
"id": "fc942483-7ef4-4281-8187-1278fca8904a",
"date_posted": 1743854268,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1743854358,
"url": "https://careers.roblox.com/jobs/6749070",
"company_name": "Roblox",
"title": "New Grad 2025: Software Engineer, Game Solutions Engineering",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "cvrve-bot",
"id": "7b5acac0-f9bd-41ec-9452-d6b4e40f8488",
"date_posted": 1743854358,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649282,
"url": "https://blueorigin.wd5.myworkdayjobs.com/blueorigin/job/Seattle-WA/Software-Development-Engineer-I---Early-Career-2025-University-Grad_R50741",
"company_name": "Blue Origin",
"title": "New Grad 2025: Software Development Engineer I",
"locations": [
"Seattle, WA",
"Van Horn, TX",
"Huntsville, AL",
"Denver, CO",
"Space Coast, FL",
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": false,
"source": "cvrve-bot",
"id": "721d546e-f692-4f24-b1ba-62f51bf7281a",
"date_posted": 1743854598,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744154107,
"url": "https://nordstrom.wd5.myworkdayjobs.com/en-US/nordstrom_careers/job/Seattle-WA/Developer-Tools-Support-Engineer-1--Hybrid---Seattle--WA-_R-729931",
"company_name": "Nordstrom",
"title": "Developer Tools Support Engineer 1",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "mr4tt",
"id": "99a52adf-e234-4e75-9829-e9c4291565b7",
"date_posted": 1744154107,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744157845,
"url": "https://jobs.ashbyhq.com/creditgenie/016056e0-61cd-4a19-9d42-5f3cd88fed02",
"company_name": "Credit Genie",
"title": "New Grad: Software Engineer",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b26e4dea-7809-4ece-96c8-ebd97f5e3021",
"date_posted": 1744157845,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649287,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/AZ807-RMS-AP-Bldg-807-1151-East-Hermans-Road-Building-807-Tucson-AZ-85756-USA/Software-Engineer-I_01761917",
"company_name": "RTX",
"title": "Software Engineer I",
"locations": [
"Tucson, AZ"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "01760a81-0c04-4221-ae32-969c9c216e41",
"date_posted": 1744309947,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649289,
"url": "https://synchronyfinancial.wd5.myworkdayjobs.com/careers/job/Alpharetta-Site/Android-Engineer-I---Digital-Servicing_2501251-1",
"company_name": "Synchrony",
"title": "Android Engineer I \u2013 Digital Servicing",
"locations": [
"Newport Beach, CA",
"Stamford, CT",
"Dallas, TX",
"Chicago, IL",
"Altamonte Springs, FL",
"Charlotte, NC",
"Alpharetta, GA",
"Rapid City, SD",
"New York, NY",
"Kansas City, KS",
"St Paul, MN",
"Cincinnati, OH"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "f3615e58-90dc-4e24-bb3b-3b94251180f6",
"date_posted": 1744310045,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649292,
"url": "https://pae.wd1.myworkdayjobs.com/en-US/amentum_careers/job/US-VA-Dahlgren/Entry-Level-Software-Engineer_R0137457",
"company_name": "Amentum",
"title": "Entry Level Software Engineer",
"locations": [
"Dahlgren, VA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "742fffec-9126-4e88-8c6f-7c36c88b490a",
"date_posted": 1744310091,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649294,
"url": "https://pae.wd1.myworkdayjobs.com/en-US/amentum_careers/job/US-VA-Fredericksburg/Entry-Level-Software-Engineer_R0137459-1",
"company_name": "Amentum",
"title": "Entry Level Software Engineer",
"locations": [
"Fredericksburg, VA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "e4eaf89b-576e-44e2-8236-cca72fc02295",
"date_posted": 1744310125,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183332,
"url": "https://jobs.lever.co/palantir/08de0376-68e1-460b-bd4c-42b57f8a0ecc",
"company_name": "Palantir",
"title": "Forward Deployed Software Engineer - Build to Apply",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "33a9107c-942f-49c1-903a-5427ba075409",
"date_posted": 1744344065,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183332,
"url": "https://jobs.lever.co/palantir/4d35c1a0-bbb7-4e97-b989-3a294c8be078",
"company_name": "Palantir",
"title": "Deployment Strategist - Build to Apply",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "52d98df0-2e34-4be9-907e-1fbf33e79bc7",
"date_posted": 1744344105,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461114,
"url": "https://www.tesla.com/careers/search/job/240828",
"company_name": "Tesla",
"title": "Software Engineer, Drivers & Control Plane, Dojo",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "vanshb03",
"id": "f0c2be17-3aca-4d9f-b2b0-deabfbda7824",
"date_posted": 1744461114,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461156,
"url": "https://www.tesla.com/careers/search/job/software-engineer-metrics-genai-model-evaluation-226926",
"company_name": "Tesla",
"title": "Software Engineer, Metrics, GenAI Model Evaluation",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "vanshb03",
"id": "d58dd8cd-d5b1-4b7e-afba-c8a0952ed039",
"date_posted": 1744461156,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461195,
"url": "https://www.tesla.com/careers/search/job/frontend-engineer-genai-model-evaluation-226925",
"company_name": "Tesla",
"title": "Frontend Engineer, GenAI Model Evaluation",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "407a24d3-3108-4887-a98f-fccebb440501",
"date_posted": 1744461195,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461221,
"url": "https://www.tesla.com/careers/search/job/235630",
"company_name": "Tesla",
"title": "Software Engineer, AI Driven Test Automation",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "252ef5c1-95c3-4c8b-ac3c-aec374a22f41",
"date_posted": 1744461221,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461378,
"url": "https://www.tesla.com/careers/search/job/241276",
"company_name": "Tesla",
"title": "Linux Site Reliability Engineer, IT Manufacturing Site Reliability Engineering",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f35d66b7-9622-4422-ba7c-4f209b3b96fc",
"date_posted": 1744461378,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461456,
"url": "https://www.amazon.jobs/en/jobs/2950609/software-dev-engineer-computer-science",
"company_name": "Amazon",
"title": "Software Dev Engineer",
"locations": [
"Austin, TX",
"New York, NY",
"Seattle, WA",
"Culver City, CA",
"Santa Clara, CA",
"Bellevue, WA",
"Denver, CO",
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f09dd0db-3818-4822-9386-f33f414113fb",
"date_posted": 1744461456,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744461490,
"url": "https://www.amazon.jobs/en/jobs/2953226/systems-development-engineer-mechatronics-and-sustainable-packaging",
"company_name": "Amazon",
"title": "Systems Development Engineer, Mechatronics and Sustainable Packaging",
"locations": [
"Bellevue, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "13365f9a-2971-485b-9148-90cac76f3f3d",
"date_posted": 1744461490,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649297,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/SRAM-CAD-Engineer---New-College-Grad-2025_JR1996519",
"company_name": "NVIDIA",
"title": "New Grad 2025: SRAM CAD Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "031dca8d-4bd2-49fc-87fb-6253f2238951",
"date_posted": 1744461525,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187634,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/SRAM-Circuit-Design-Engineer---New-College-Grad-2025_JR1996520",
"company_name": "NVIDIA",
"title": "New Grad 2025: SRAM Circuit Design Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "ae5619d7-9832-405b-92a8-f805af17ec4a",
"date_posted": 1744461547,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649302,
"url": "https://crowdstrike.wd5.myworkdayjobs.com/en-GB/crowdstrikecareers/job/USA---Remote/Engineer-I---Product-Security--Remote-_R22819",
"locations": [
"Remote",
"US"
],
"season": "Summer",
"sponsorship": "Other",
"active": false,
"company_name": "Crowdstrike",
"title": "Application Security Engineer I - Product Security",
"source": "vanshb03",
"id": "56abf872-e358-46ab-8359-c6c4500f9bda",
"date_posted": 1744461687,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653341,
"url": "https://job-boards.greenhouse.io/twitch/jobs/7950562002",
"company_name": "Twitch",
"title": "Software Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "a4a7d133-c6d7-410f-831f-37bab673b4b5",
"date_posted": 1744461923,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653341,
"url": "https://job-boards.greenhouse.io/sonyinteractiveentertainmentglobal/jobs/5496919004",
"company_name": "Playstation",
"title": "Software Engineer I",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "7fad275b-0228-4b30-8f05-750e91925b88",
"date_posted": 1744461990,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744462129,
"url": "https://amperity.com/careers/6799726?gh_jid=6799726&gh_src=053ff1fc1us&gh_jid=6799726",
"company_name": "Amperity",
"title": "Software Development Engineer I",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "7403096c-37ed-4440-8f23-871cdc957c4b",
"date_posted": 1744462129,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744462175,
"url": "https://amazon.jobs/en/jobs/2855790/software-development-engineer-i-2025-computer-science",
"company_name": "Amazon",
"title": "New Grad 2025: Software Development Engineer I",
"locations": [
"Vancouver, BC",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "17c35d70-b2fc-4725-be99-5f4707b80d62",
"date_posted": 1744462175,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744462229,
"url": "https://www.esri.com/careers/4700976007?gh_jid=4700976007",
"company_name": "Esri",
"title": "Backend Java Engineer I - Data Pipelines",
"locations": [
"Redlands, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "5bf6c42e-5b70-43db-b340-58297de9224d",
"date_posted": 1744462229,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744462260,
"url": "https://join.softheon.com/_/j/4AFE55D62D/",
"company_name": "Softheon",
"title": "Software Engineer I - Membership",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "5c957a94-8716-4ec1-9761-94b06cfda64b",
"date_posted": 1744462260,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649305,
"url": "https://athene.wd5.myworkdayjobs.com/en-US/Apollo_Careers/job/El-Segundo-California/Full-Stack-Engineer_R240715-1",
"locations": [
"El Segundo, California"
],
"season": "Summer",
"sponsorship": "Other",
"active": false,
"company_name": "Apollo",
"title": "Full Stack Engineer",
"source": "vanshb03",
"id": "5ad771e6-9c7f-46cf-b440-a6dad72d49e2",
"date_posted": 1744462531,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658217,
"url": "https://jobs.bentley.com/job/Exton-Software-Engineer-PA-19341/1281097600",
"company_name": "Bentley",
"title": "Software Engineer",
"locations": [
"Exton, PA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f7e1156c-709a-4cc3-a9ba-db7b853fc330",
"date_posted": 1744658217,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658336,
"url": "https://canada-appliedsystems.icims.com/jobs/6506/software-engineer/job",
"company_name": "Applied Systems",
"title": "Software Engineer",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "d99e9ba5-1107-4b80-81b8-e25705c8d5aa",
"date_posted": 1744658336,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658370,
"url": "https://www.careers.peraton.com/jobs/junior-software-engineer-sterling-virginia-156109-jobs--information-technology--?iis=Job%2BBoard&iisn=Vansh",
"company_name": "Peraton",
"title": "Junior Software Engineer",
"locations": [
"Sterling, VA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"source": "vanshb03",
"id": "fab300f9-0870-4674-98e2-bbfb2fc9307f",
"date_posted": 1744658370,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658401,
"url": "https://recruiting.ultipro.com/VMS1002VMOO/JobBoard/3dde3e78-a60b-47af-93cf-ef6db6ed312b/OpportunityDetail?opportunityId=fa0772d7-fa49-4ce9-b7ae-de1a0da018eb",
"company_name": "21CS",
"title": "Graduate Software Engineer",
"locations": [
"Morehead City, NC"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "8f371c86-66af-4fb5-b691-d8e1f3497d40",
"date_posted": 1744658401,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649307,
"url": "https://earlywarning.wd5.myworkdayjobs.com/earlywarningcareers/job/Scottsdale/Software-Engineer_REQ2025270",
"company_name": "Early Warning",
"title": "Software Engineer",
"locations": [
"Scottsdale, AZ"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "050c5f24-3b5a-454a-9a12-26786eb3f364",
"date_posted": 1744658479,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187638,
"url": "https://medela.wd103.myworkdayjobs.com/en-US/Medela_Careers/job/Software-Development-Engineer_R2129-2",
"company_name": "Medela",
"title": "Associate Software Development Engineer",
"locations": [
"McHenry, IL"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "0bd2a801-adfe-45bb-a06a-9309e6f02c8e",
"date_posted": 1744658532,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658627,
"url": "https://linksquares.com/careers/open-positions/?gh_jid=4537585005",
"company_name": "LinkSquares",
"title": "Software Engineer",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "98d1b1c5-e4cb-41a5-bddf-ef210fd5fa62",
"date_posted": 1744658627,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1744658719,
"url": "https://thorsolutionsllc.applytojob.com/C8LIaGu8So/Software-Engineer-I?referrer=20250414192432YMUDC3C4I6XZL15U",
"company_name": "Thor Solutions",
"title": "Software Engineer I",
"locations": [
"Philadelphia, PA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "8be0d853-a214-4dfe-96ae-f5c0819942b4",
"date_posted": 1744658719,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749185400,
"url": "https://job-boards.greenhouse.io/canonicaljobs/jobs/6695573",
"company_name": "Canonical",
"title": "Graduate Software Engineer, Open Source and Linux, Canonical Ubuntu",
"locations": [
"Remote",
"Toronto, Canada"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "aliraeisdanaei",
"id": "c00cadae-5841-4f8e-a46a-21419b7c186e",
"date_posted": 1745103611,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1745103655,
"url": "https://careers.oracle.com/jobs/#en/sites/jobsearch/job/264377",
"company_name": "Oracle",
"title": "Software Developer - Rotational Program - NetSuite",
"locations": [
"Kitchiner, Canada"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "aliraeisdanaei",
"id": "ba74994c-96e8-4997-8f6d-2bb2ea5d9feb",
"date_posted": 1745103655,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1745103730,
"url": "https://careers.oracle.com/jobs/#en/sites/jobsearch/job/287106",
"company_name": "Oracle",
"title": "Software Developer",
"locations": [
"Remote",
"Canada"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "aliraeisdanaei",
"id": "f0b29636-fe93-45c4-9d58-4e50269709d0",
"date_posted": 1745103730,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762348974,
"url": "https://boards.greenhouse.io/embed/job_app?token=4447610006",
"company_name": "AppLovin",
"title": "New Grad: Backend Infrastructure Engineer",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "7160d222-a500-4e1f-94ac-c6e45c8ba607",
"date_posted": 1745661241,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751756893,
"url": "https://boards.greenhouse.io/embed/job_app?token=4420849005",
"company_name": "Applied Intuition",
"title": "New Grad: Software Engineer",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "003279c0-802c-4e7d-a58e-6b857e82d077",
"date_posted": 1746307611,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974076,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/VLSI-Physical-Design-Engineer---New-College-Grad-2025_JR1997079",
"company_name": "NVIDIA",
"title": "New Grad 2025: VLSI Physical Design Engineer",
"locations": [
"Westford, MA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "b0cb447a-55c1-46cd-81af-dcdb3fe6adfe",
"date_posted": 1746307655,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198929,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Design-Engineer--Coherent-High-Speed-Interconnect---New-College-Grad-2025_JR1997017",
"company_name": "NVIDIA",
"title": "New Grad 2025: Design Engineer, Coherent High Speed Interconnect",
"locations": [
"Santa Clara, CA",
"Westford, MA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "b18a6534-dfc2-4c0a-a97d-baa133704d54",
"date_posted": 1746307696,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649317,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Software-Development-Engineer-in-Test--Graphics---New-College-Grad-2025_JR1996858",
"company_name": "NVIDIA",
"title": "New Grad 2025: Software Development Engineer in Test, Graphics",
"locations": [
"Austin, TX",
"Santa Clara, CA",
"Redmond, WA",
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "855aae66-8f4c-4daf-813a-f6fb6f7477d3",
"date_posted": 1746307770,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1746307804,
"url": "https://lifeattiktok.com/search/7275869814408300837?spread=5MWH5CQ",
"company_name": "TikTok",
"title": "Full-stack Engineer, Data Platform",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "211dd6c2-1173-4ba1-af25-01eff1dfc19e",
"date_posted": 1746307804,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747650217,
"url": "https://www.disneycareers.com/en/job/-/-/391/80725916816",
"company_name": "Disney",
"title": "Associate Software Engineer",
"locations": [
"Seattle, WA",
"Burbank, CA",
"Orlando, FL"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "05a4dd9a-92a4-4258-8493-c1e06cec5d4c",
"date_posted": 1746307847,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1746307881,
"url": "https://careers.sig.com/job/SUSQA004Y9261",
"company_name": "SIG",
"title": "New Grad: Software Developer",
"locations": [
"Bala Cynwyd, PA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "fec7501c-18a5-4233-9d14-fed4d85a8a32",
"date_posted": 1746307881,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526322,
"url": "https://wd1.myworkdaysite.com/en-US/recruiting/snapchat/snap/job/San-Diego-California/Software-Engineer--Embedded--Level-3_R0040311",
"company_name": "Snap Inc",
"title": "Embedded Software Engineer",
"locations": [
"San Diego, CA",
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "3707c09a-e92d-4030-b22d-2c0b40a92e46",
"date_posted": 1746307943,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1746308073,
"url": "https://tower-research.com/open-positions/?gh_jid=6855851",
"company_name": "Tower Research Capital",
"title": "New Grad: C++ Software Engineer, MTL",
"locations": [
"Montreal, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "82124178-abca-4f2e-8dd2-06ce3d3399a9",
"date_posted": 1746308073,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649323,
"url": "https://leidos.wd5.myworkdayjobs.com/External/job/Fort-Sill-OK/Software-Developer---Entry-level_R-00158332",
"company_name": "Leidos",
"title": "Entry Level Software Developer",
"locations": [
"Fort Sill, OK",
"Lawton, OK"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "6d27a598-3ae7-4faf-8129-0f9f240b4476",
"date_posted": 1746308128,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649326,
"url": "https://adobe.wd5.myworkdayjobs.com/external_experienced/job/New-York/XMLNAME-2025-University-Graduate---Software-Engineer_R148217",
"company_name": "Adobe",
"title": "New Grad 2025: Software Engineer",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "d68c19c6-a385-421e-b99d-7ab025f9d81c",
"date_posted": 1746308159,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748650093,
"url": "https://jobs.lever.co/1password/7d7731c0-6a65-433b-bb8e-41d21a6434f3",
"company_name": "1Password",
"title": "Junior Developer",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "46b67bbd-b7ed-46a8-9304-026903a35ee2",
"date_posted": 1746308194,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266788,
"url": "https://ouryahoo.wd5.myworkdayjobs.com/en-US/careers/job/United-States-of-America/Big-Data-Tools-Engineer---Software-Dev-Engineer-I_JR0025664",
"company_name": "Yahoo",
"title": "Big Data Tools Engineer",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "3fbf124b-1eee-4edc-889a-b4c467adf146",
"date_posted": 1746308279,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649331,
"url": "https://boeing.wd1.myworkdayjobs.com/external_careers/job/USA---Berkeley-MO/Entry-Level-Embedded-Software-Engineers_JR2025454206",
"company_name": "Boeing",
"title": "Entry Level Embedded Software Engineer",
"locations": [
"Berkeley, MO"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "102f5139-685f-4c25-86e9-8c8db8967f5f",
"date_posted": 1746308303,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298295,
"url": "https://www.amazon.jobs/en/jobs/2981483/mission-operations-engineer-project-kuiper-mission-operations-ground-software",
"company_name": "Amazon",
"title": "Mission Operations Engineer, Project Kuiper",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "0c35e9f4-a5ce-4927-bd98-ed37816d8816",
"date_posted": 1747298295,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298441,
"url": "https://www.nuro.ai/careersitem?gh_jid=6725455",
"company_name": "Nuro",
"title": "New Grad: Software Engineer, Autonomy",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "ebcf7f36-de1b-4a59-846e-60e6b1ebb496",
"date_posted": 1747298441,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298469,
"url": "https://jobs.ashbyhq.com/pylon/6f714dd0-e472-4e70-a749-80493cd29420",
"company_name": "Pylon",
"title": "New Grad 2025: Software Engineer",
"locations": [
"Menlo Park, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "0231c8fb-8945-471c-9d37-74ff2806b84a",
"date_posted": 1747298469,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369030,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Verification-Engineer---New-College-Grad-2025_JR1997597",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Verification Engineer",
"locations": [
"Durham, NC",
"Madison, AL"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "748742e6-bd6c-4255-a700-40a0eef569b0",
"date_posted": 1747298504,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298543,
"url": "https://www.metacareers.com/jobs/683948047917677",
"company_name": "Meta",
"title": "Software Engineer, Systems ML",
"locations": [
"Bellevue, WA",
"Menlo Park, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "7706bb18-0137-42fb-8163-bf992a450bbf",
"date_posted": 1747298543,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298650,
"url": "https://www.tesla.com/careers/search/job/233715",
"company_name": "Tesla",
"title": "Software Engineer, Mobile Robotics Control & Perception",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "2a1e80ef-c263-4b31-9201-a1eddd07aa28",
"date_posted": 1747298650,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747298686,
"url": "https://boards.greenhouse.io/embed/job_app?token=3920890",
"company_name": "Mixpanel",
"title": "Software Engineer, Fullstack",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "16ff41c1-0386-4488-b43b-164ca11e6c42",
"date_posted": 1747298686,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749185400,
"url": "https://job-boards.greenhouse.io/affirm/jobs/6570371003",
"company_name": "Affirm",
"title": "Machine Learning Engineer I",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "f6290b7a-b966-4b43-bf7f-b98c477b9ec6",
"date_posted": 1747298737,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649336,
"url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Engineer-1--Software-Development---Engineering_R410445",
"company_name": "Comcast",
"title": "Software Development & Engineer 1",
"locations": [
"Philadelphia, PA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "55d701b4-b993-49a7-bd24-8d4809080e4a",
"date_posted": 1747298777,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299236,
"url": "https://www.google.com/about/careers/applications/jobs/results/92218003445162694-relations-developer-cloud-and-generative-ai",
"company_name": "Google",
"title": "Relations Developer, Cloud and Generative AI",
"locations": [
"Seattle, WA",
"Cambridge, MA",
"Kirkland, WA",
"New York, NY",
"San Francisco, CA",
"Sunnyvale, CA",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b6459484-ed25-4466-833a-b71ff611ee69",
"date_posted": 1747299236,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299256,
"url": "https://www.tesla.com/careers/search/job/242774",
"company_name": "Tesla",
"title": "Software Engineer, AI Systems Performance Modeling",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "99336b31-6fba-4e76-aeae-0cc552ba89ed",
"date_posted": 1747299256,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299286,
"url": "https://careers.snowflake.com/us/en/job/SNCOUSEBC678A52AB04A4EB7946E4E684BA055EXTERNALENUSAA0C5E9173DE47C2B57EF66519942F19/-Software-Engineer-Traffic",
"company_name": "Snowflake",
"title": "Software Engineer - Traffic",
"locations": [
"Bellevue, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "8ae00741-2219-448f-b49e-9d5a6ccaba61",
"date_posted": 1747299286,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299426,
"url": "https://fa-evmr-saasfaprod1.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/20842",
"company_name": "Nokia",
"title": "Jr. Applied R&D Engineer",
"locations": [
"Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "12506280-4642-48a4-a296-95ba6d259ff4",
"date_posted": 1747299426,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299459,
"url": "https://jobs.ea.com/en_US/careers/JobDetail/Gameplay-Software-Engineer/208511",
"company_name": "Electronic Arts",
"title": "Gameplay Software Engineer",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b48f46f6-b2a2-46e6-a886-4be91b269618",
"date_posted": 1747299459,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747299485,
"url": "https://careers.mastercard.com/us/en/job/MASRUSR245943EXTERNALENUS/Software-Engineer-I-SDET-Java",
"company_name": "Mastercard",
"title": "Software Engineer I",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "2b64a7c3-2798-4646-8e75-76a20fdd2b3d",
"date_posted": 1747299485,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638643,
"url": "https://job-boards.greenhouse.io/cloudflare/jobs/6886051?gh_jid=6886051",
"company_name": "Cloudflare",
"title": "Access Software Engineer",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "5d35a071-5044-4c8c-85ac-6dc8705fc670",
"date_posted": 1747461336,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747461370,
"url": "https://www.doppel.com/jobs?ashby_jid=07905bfc-1c21-465d-a6bb-39ef71744c3d",
"company_name": "Doppel",
"title": "Software Engineer",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "682fb056-f540-4193-a942-a2a2bc8ba0f3",
"date_posted": 1747461370,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755438041,
"url": "https://www.ycombinator.com/companies/furtherai/jobs/7GSUCXy-software-ai-engineer-new-grad",
"company_name": "FurtherAI",
"title": "New Grad: Software/AI Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "96998a15-41d7-4313-9eda-894bdbc3e708",
"date_posted": 1747461402,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747461567,
"url": "https://jobs.apple.com/en-us/details/200604992/embedded-system-software-engineer?team=SFTWR",
"company_name": "Apple",
"title": "Embedded System Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "e1fec251-a2b9-4672-8d5d-da147b496732",
"date_posted": 1747461567,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653344,
"url": "https://job-boards.greenhouse.io/marqeta/jobs/6774484",
"company_name": "Marqeta",
"title": "Software Engineer I, Core Edge Processing",
"locations": [
"Toronto, Canada",
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "2e340dbc-3961-4fb1-85b5-46b3e6734de5",
"date_posted": 1747461706,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187655,
"url": "https://truist.wd1.myworkdayjobs.com/en-US/Careers/job/Charlotte-NC/Testing-Software-Engineer-I_R0100249",
"company_name": "Truist",
"title": "Testing Software Engineer I",
"locations": [
"Charlotte, NC"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "4e0dbfa3-60c4-41c4-bd1c-a0499352cc5c",
"date_posted": 1747461738,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653345,
"url": "https://job-boards.greenhouse.io/marqeta/jobs/6832149",
"company_name": "Marqeta",
"title": "Software Engineer I, Transaction Engine Foundation",
"locations": [
"Toronto, Canada",
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "4fd4261e-5303-44ed-8c78-39ebc49c5720",
"date_posted": 1747461946,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649341,
"url": "https://caci.wd1.myworkdayjobs.com/External/job/US-MD-Annapolis-Junction/Software-Engineer-1_312023-1",
"company_name": "CACI",
"title": "Software Engineer 1",
"locations": [
"Annapolis Junction, MD"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "c6586514-2411-4e6c-b38d-81d0a2d3c90f",
"date_posted": 1747461973,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747462008,
"url": "https://www.esri.com/careers/4735889007?gh_jid=4735889007",
"company_name": "Esri",
"title": "C++ Software Engineer I, Maps SDKs",
"locations": [
"Redlands, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "749308cb-6a36-4030-9529-3d42908816e3",
"date_posted": 1747462008,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1747650194,
"url": "https://job-boards.greenhouse.io/affirm/jobs/6563811003?gh_src=91eb70b63us",
"company_name": "Affirm",
"title": "Machine Learning Engineer",
"locations": [
"Remote",
"Canada"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "jxudata",
"id": "a79ce4e5-84b8-4a7f-8f0b-13731da36894",
"date_posted": 1747650194,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653345,
"url": "https://job-boards.greenhouse.io/twilio/jobs/6891933",
"company_name": "Twilio",
"title": "New Grad: Software Engineer",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "6e52624a-bae4-4811-adab-b1322a67ef71",
"date_posted": 1748013316,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649344,
"url": "https://cox.wd1.myworkdayjobs.com/Cox_External_Career_Site_1/job/Austin-TX/Software-Engineer-I_R202561161",
"company_name": "Cox Automotive",
"title": "Software Engineer I",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "22cf9607-3daf-41f9-b37f-3a7cf82c35b8",
"date_posted": 1748024309,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653346,
"url": "https://job-boards.greenhouse.io/horacemannservicecorporation/jobs/5545426004",
"company_name": "Horace Mann",
"title": "Software Engineer I",
"locations": [
"Springfield, IL",
"Addison, TX",
"Remote"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "ac360bf8-0467-42d8-938f-f5a5a0a8106d",
"date_posted": 1748024346,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468780,
"url": "https://remitly.wd5.myworkdayjobs.com/en-US/Remitly_Careers/job/Seattle-Washington-United-States/Software-Development-Engineer-I_R_104015",
"company_name": "Remitly",
"title": "Software Development Engineer I",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "11e97b60-cf13-469e-be35-277e5fd72f57",
"date_posted": 1748024404,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649351,
"url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Software-Engineer-I_R_1421940",
"company_name": "TD Bank",
"title": "Software Engineer I",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8bec2c68-aa5f-4afd-99b4-381a2c4def85",
"date_posted": 1748024443,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748024476,
"url": "https://bs.com/KBR_Careers/job/Moffett-Field-California/Full-Stack-Software-Engineer_R2106782",
"company_name": "KBR",
"title": "Full Stack Software Engineer",
"locations": [
"Moffett Field, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "a4b2e1e4-05ea-40d6-a64e-69d51e43f186",
"date_posted": 1748024476,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649353,
"url": "https://fifththird.wd5.myworkdayjobs.com/en-US/53careers/job/Cincinnati-OH/Data-Engineer-I---Finance-IT_R58869",
"company_name": "Fifth Third Bank",
"title": "Data Engineer I - Finance IT",
"locations": [
"Cincinnati, OH"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "249193bb-834c-4cf1-ae90-453d647d7b51",
"date_posted": 1748024532,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748024718,
"url": "https://jobs.apple.com/en-us/details/200605754/cellular-platform-software-engineer-embedded-analytics?team=SFTWR",
"company_name": "Apple",
"title": "Cellular Platform Software Engineer, Embedded Analytics",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "2c2cb04d-b4d0-4601-86f2-11ebe0a48903",
"date_posted": 1748024718,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748653346,
"url": "https://job-boards.greenhouse.io/cloudflare/jobs/6885717",
"company_name": "Cloudflare",
"title": "Software Engineer, Experiment and Data Capture",
"locations": [
"Austin, TX",
"Atlanta, GA",
"Denver, CO",
"Washington D.C., DC",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "41d25e85-060e-420e-826c-27e9dcbf2bed",
"date_posted": 1748025017,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526288,
"url": "https://job-boards.greenhouse.io/cloudflare/jobs/6889115",
"company_name": "Cloudflare",
"title": "Software Engineer, Network Protocols",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "59395973-c509-4b03-89e6-f25cf72a8324",
"date_posted": 1748025053,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025115,
"url": "https://careers.garmin.com/careers-home/jobs/15924",
"company_name": "Garmin",
"title": "C#/.NET Software Engineer 1",
"locations": [
"Cary, NC"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "3832d89d-def2-4d3d-b33b-214faf17c758",
"date_posted": 1748025115,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025205,
"url": "https://careers.qualcomm.com/careers/job/446705907067",
"company_name": "Qualcomm",
"title": "Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "a04a4e7a-9654-40f6-bbec-da50d8860211",
"date_posted": 1748025205,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025249,
"url": "https://careers.qualcomm.com/careers/job/446705739046",
"company_name": "Qualcomm",
"title": "Graphics Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "88d81075-d28e-42b2-ac17-495575c2ac2f",
"date_posted": 1748025249,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025335,
"url": "https://careers.qualcomm.com/careers/job/446704371557",
"company_name": "Qualcomm",
"title": "Software Engineer, Gaming AI, PC Compute",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "713c1cd7-921d-4df9-b142-27b3871ce0e6",
"date_posted": 1748025335,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025370,
"url": "https://careers.qualcomm.com/careers/job/446705709910",
"company_name": "Qualcomm",
"title": "Graphics Software Kernel Mode Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "e2a00ee9-c0d0-4531-beaf-068f649be7ec",
"date_posted": 1748025370,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043097,
"url": "https://bostondynamics.wd1.myworkdayjobs.com/Boston_Dynamics/job/Waltham-Office-POST/Software-Engineer_R1830",
"company_name": "Boston Dynamics",
"title": "Software Engineer",
"locations": [
"Waltham, MA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "224b2d98-1608-4cf2-aa6d-25e005e77747",
"date_posted": 1748025416,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024769,
"url": "https://jobs.careers.microsoft.com/global/en/job/1822239/Software-Engineer",
"company_name": "Microsoft",
"title": "Software Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "d4aa7954-53c4-4325-a970-dbe3c7448627",
"date_posted": 1748025511,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024769,
"url": "https://jobs.careers.microsoft.com/global/en/job/1821540/Software-Engineer",
"company_name": "Microsoft",
"title": "Software Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "e08d0345-8682-414e-ad08-d9c960ec597d",
"date_posted": 1748025538,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025566,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR155500EXTERNALENUS/Software-Development-Engineer",
"company_name": "Adobe",
"title": "Software Development Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "8661ae07-7db1-48fe-b7b4-366060961ce4",
"date_posted": 1748025566,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758126261,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Verification-Engineer---New-College-Grad-2025_JR1997551",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Verification Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "c57cbd91-a34b-47f2-aa7b-01d70d72a16a",
"date_posted": 1748025597,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748650094,
"url": "https://jobs.lever.co/perforce/9bc3fe3d-f82e-45ee-8207-221ebdc5533f",
"company_name": "Perforce",
"title": "Associate Software Engineer",
"locations": [
"Minneapolis, MN"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "4365d5cf-23bb-4abb-87ef-1f36f6cfa505",
"date_posted": 1748025626,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043048,
"url": "https://job-boards.greenhouse.io/lucidmotors/jobs/4674882007",
"company_name": "Lucid",
"title": "Software Engineer, Linux System Software",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "96ee447c-09a1-412e-b5a9-0cb4f24bbea9",
"date_posted": 1748025650,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043102,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Floorplan-Design-Engineer---New-College-Grad-2025_JR1997894",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Floorplan Design Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "d249848f-9c23-478f-82f6-c5b3142c5632",
"date_posted": 1748025703,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748025848,
"url": "https://www.qualtrics.com/careers/us/en/job/QUALUS6889008EXTERNALENUS/Software-Development-Engineer-I-Customer-Experience-Seattle",
"company_name": "Qualtrics",
"title": "Software Development Engineer I, Customer Experience",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "ca43347d-2b94-49e5-9ba2-dca0f9058d20",
"date_posted": 1748025848,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755699011,
"url": "https://baincapital.wd1.myworkdayjobs.com/External_Public/job/Boston/XMLNAME-2026-Analyst--Tech-Opps_REQ_107847",
"company_name": "BainCapital",
"title": "New Grad 2026: Tech Opps Analyst",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "0910874b-4cc5-48a7-b902-9d278341c101",
"date_posted": 1748135688,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043049,
"url": "https://job-boards.greenhouse.io/fiveringsllc/jobs/4090119008",
"company_name": "Five Rings",
"title": "New Grad 2025: Quantitative Trader",
"locations": [
"Boca Raton, FL"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "vanshb03",
"id": "92b33e0f-92bc-47fa-a72e-baaa6d7e9660",
"date_posted": 1748138125,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748405137,
"url": "https://careers.point72.com/CSJobDetail?jobName=quantitative-developer&jobCode=CSS-0013369&location=New%20York&locale=English",
"company_name": "Point72",
"title": "Quantitative Developer",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "323441d2-75af-4f83-a5d9-ee90164ba785",
"date_posted": 1748405137,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748405185,
"url": "https://www.drw.com/work-at-drw/listings/research-engineer-2930985",
"company_name": "DRW",
"title": "Research Engineer",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f0cab146-21eb-4760-9b63-eaff1edf79dc",
"date_posted": 1748405185,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748405233,
"url": "https://www.citadelsecurities.com/careers/details/systematic-options-trader/",
"company_name": "Citadel Securities",
"title": "Systematic Options Trader",
"locations": [
"Miami, FL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "3f157fb5-4fde-4548-9ad4-98f3193cf736",
"date_posted": 1748405233,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442803,
"url": "https://boards.greenhouse.io/embed/job_app?for=aquaticcapitalmanagement&token=7997477002",
"company_name": "Aquatic Capital Management",
"title": "Research Engineer",
"locations": [
"Chicago, IL",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "1e847dad-0949-47e2-a6f9-23426147dd9d",
"date_posted": 1748405493,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050228,
"url": "https://job-boards.greenhouse.io/truveta/jobs/5546481004",
"company_name": "Truveta",
"title": "Software Engineer - Fullstack",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "947d576b-922e-48ab-80bd-b9e4a73bf314",
"date_posted": 1748489887,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751237684,
"url": "https://job-boards.greenhouse.io/truveta/jobs/5549326004",
"company_name": "Truveta",
"title": "Software Engineer - Data Processing",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "cca22736-3dea-4261-833b-55dd9e4f4a09",
"date_posted": 1748489974,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748583125,
"url": "https://www.ixl.com/company/careers?gh_jid=8017366002",
"company_name": "IXL Learning",
"title": "New Grad: Software Engineer",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "3139597e-c985-4a80-818f-c3a711d3ce34",
"date_posted": 1748583125,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748583139,
"url": "https://www.ixl.com/company/careers?gh_jid=8017370002",
"company_name": "IXL Learning",
"title": "New Grad: Software Engineer",
"locations": [
"Raleigh, NC"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b30a177a-6bb9-4bca-a603-459e98f57d88",
"date_posted": 1748583139,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187671,
"url": "https://cox.wd1.myworkdayjobs.com/Cox_External_Career_Site_1/job/Atlanta-GA/Software-Engineer-I_R202563166",
"company_name": "Cox Automotive",
"title": "Software Engineer I",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8458ac7b-926b-4b86-b01a-4a33b9b67a17",
"date_posted": 1748583202,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187673,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/rec_rtx_ext_gateway/job/RI101-1847-W-Main-Rd-1847-W-Main-Road-Nimitz-Building-Portsmouth-RI-02871-USA/C-C---and-Java-Software-Development-Engineer-I--Onsite-_01770233",
"company_name": "RTX",
"title": "C/C++ and Java Software Development Engineer I",
"locations": [
"Portsmouth, RI"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "1bed73c5-cb97-4934-8acf-053653d10f28",
"date_posted": 1748583271,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526342,
"url": "https://jda.wd5.myworkdayjobs.com/en-US/JDA_Careers/job/Dallas/Software-Engineer-I_251265",
"company_name": "BlueYonder",
"title": "Software Engineer I",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "471eb66d-46cd-4526-9428-1bf7e57dbdde",
"date_posted": 1748583301,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526345,
"url": "https://cadence.wd1.myworkdayjobs.com/en-US/External_Careers/job/SAN-JOSE/Software-Engineer-II_R48302",
"company_name": "Cadence",
"title": "Software Engineer I",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "7f5cf340-a274-4b78-badb-97bfe8667f1e",
"date_posted": 1748583345,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748583495,
"url": "https://www.pega.com/about/careers/21949/associate-software-engineer-ux-engineering",
"company_name": "Pega",
"title": "Associate Software Engineer, UX Engineering",
"locations": [
"Waltham, MA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "e0c6321d-2747-4446-954d-57f30119f246",
"date_posted": 1748583495,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748583524,
"url": "https://jobs.spectrum.com/job/-/-/4673/81850982400",
"company_name": "Spectrum",
"title": "Software Engineer I",
"locations": [
"Englewood, CO"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "a21fd6a2-935b-4644-b202-2269be829a7e",
"date_posted": 1748583524,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748583625,
"url": "https://jobs.smartrecruiters.com/SquareTrade1/744000045758179-associate-software-engineer?trid=2d92f286-613b-4daf-9dfa-6340ffbecf73",
"company_name": "SquareTrade",
"title": "Associate Software Engineer",
"locations": [
"Brisbane, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "34e6d9f1-3982-42b3-944a-df9b33b26baf",
"date_posted": 1748583625,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369007,
"url": "https://jobs.lever.co/nium/882bf808-4205-4fdd-8a2c-96f730d9f77e",
"company_name": "Nium",
"title": "Software Development Engineer I",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "bd121e2b-d5be-424a-9879-a832bfc51b20",
"date_posted": 1748583726,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748584030,
"url": "https://www.nuro.ai/careersitem?gh_jid=6932596",
"company_name": "Nuro",
"title": "New Grad: Software Engineer, Autonomy",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "8426a8c5-f1bc-4f4e-ae84-5031e24fbbe0",
"date_posted": 1748584030,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748584049,
"url": "https://www.tesla.com/careers/search/job/243628",
"company_name": "Tesla",
"title": "Software Engineer, ML Inference Compiler & Deployment, GPU, CPU",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "1a76ae58-01c5-477c-865b-16227cf22371",
"date_posted": 1748584049,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043107,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/System-Design-Engineer---New-College-Grad-2025_JR1998191",
"company_name": "NVIDIA",
"title": "New Grad 2025: System Design Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "cabd99a6-014a-4140-85da-2d7ebe0f8d94",
"date_posted": 1748584237,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649378,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Machine-Learning-Software-Engineer---New-College-Grad-2025_JR1998235",
"company_name": "NVIDIA",
"title": "New Grad 2025: Machine Learning Software Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "d8971fab-c16e-47fd-8cb2-9770e944a727",
"date_posted": 1748584305,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526350,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Power-Architecture-and-Optimization-Engineer---New-College-Grad-2025_JR1988172",
"company_name": "NVIDIA",
"title": "New Grad 2025: Power Architecture and Optimization Engineer",
"locations": [
"Santa Clara, CA",
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "083144cc-73ab-4389-baa2-37072307986b",
"date_posted": 1748585833,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526352,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-NC-Durham/Deep-Learning-Architect---New-College-Grad-2025_JR1997781",
"company_name": "NVIDIA",
"title": "New Grad 2025: Deep Learning Architect, Masters/PhD",
"locations": [
"Durham, NC",
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "4aa43162-0bc0-4d33-98b6-dd6051c00dda",
"date_posted": 1748585869,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748649386,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Software-Engineer--Generative-AI---New-College-Grad-2025_JR1998154",
"company_name": "NVIDIA",
"title": "New Grad 2025: Software Engineer, Generative-AI",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "f01cdeda-2fff-4cd4-90aa-b83f510e42c5",
"date_posted": 1748585971,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748644726,
"url": "https://jobs.ashbyhq.com/mandolin/703bd697-dd8f-4a42-8df3-999402605c2f",
"company_name": "Mandolin",
"title": "New Grad: Forward Deployed Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "2dafc73c-0316-4ed5-8696-88da13fb1de6",
"date_posted": 1748644726,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748645366,
"url": "https://jobs.ashbyhq.com/mandolin/30bae6c7-6739-4cd6-97c4-fdb7662edf3b",
"company_name": "Mandolin",
"title": "New Grad: Front-End Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "957d2fb0-fc92-4f86-839f-10824ac54951",
"date_posted": 1748645366,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748645453,
"url": "https://www.workatastartup.com/jobs/75855",
"company_name": "Greenboard (W24)",
"title": "New Grad: Software Engineer",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "871c5c89-5787-4ce1-a5fa-b5d254bc1661",
"date_posted": 1748645453,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024769,
"url": "https://jobs.careers.microsoft.com/global/en/job/1826495/Software-Engineer",
"company_name": "Microsoft",
"title": "Software Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "2f8c0ea0-2be5-4f6a-bd01-e93c3f7b2264",
"date_posted": 1748717350,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1748717473,
"url": "https://elrj.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/search/job/4261",
"company_name": "Omnicell",
"title": "Software Engineer I",
"locations": [
"Cranberry Township, PA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "565f3ae2-5bf8-487a-9086-724d5c3c981c",
"date_posted": 1748717473,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198964,
"url": "https://disney.wd5.myworkdayjobs.com/en-US/disneycareer/job/Seattle-WA-USA/Software-Engineer-I_10121473-1",
"company_name": "Disney",
"title": "Software Engineer I",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "84e1d446-5a61-4315-bb1f-4cd4216ea654",
"date_posted": 1748717502,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749187693,
"url": "https://vertexinc.wd1.myworkdayjobs.com/en-US/VertexInc/job/Remote-USA/Software-Developer-I_JR101131-1",
"company_name": "Vertex Inc",
"title": "New Grad 2025: Software Developer",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "ffe83e1d-7634-426c-a5f4-7f7dd5631277",
"date_posted": 1748717553,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749294420,
"url": "https://disney.wd5.myworkdayjobs.com/en-US/disneycareer/job/Glendale-CA-USA/Software-Engineer-I_10122274",
"company_name": "Disney",
"title": "Software Engineer I",
"locations": [
"Glendale, CA",
"Seattle, WA",
"San Francisco, CA",
"New York, NY",
"Bristol, CT",
"Santa Monica, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "a2ce88cf-f822-420c-9947-1ea6fd6c41b5",
"date_posted": 1748717578,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749185400,
"url": "https://job-boards.greenhouse.io/sonyinteractiveentertainmentglobal/jobs/5544457004",
"company_name": "PlayStation",
"title": "Software Engineer I - Application Framework",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "26c7378a-9a8c-4b95-9ee2-2cfb191dc2d2",
"date_posted": 1748751252,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050228,
"url": "https://job-boards.greenhouse.io/sigmacomputing/jobs/6589230003",
"company_name": "Sigma",
"title": "New Grad: Software Engineer",
"locations": [
"San Francisco, CA",
"New York City, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "663804de-78fe-4129-abb6-28c1b875f6dd",
"date_posted": 1748832967,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749182487,
"url": "https://jobs.ashbyhq.com/n1/2213cef6-fbcd-42f7-8e0e-c6a23bfc1119",
"company_name": "N1",
"title": "Software Engineer (Full Stack)",
"locations": [
"New York City"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "dfucius",
"id": "cb5d37d1-b132-4ceb-beb7-d8cebded3f61",
"date_posted": 1749182487,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749182637,
"url": "https://jobs.ashbyhq.com/n1/99a78724-a7eb-4801-9e75-cf4465950567",
"company_name": "N1",
"title": "Software Engineer (Backend Rust)",
"locations": [
"New York City"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "dfucius",
"id": "38f3ea74-2f11-4003-9716-622e96c41ef2",
"date_posted": 1749182637,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526355,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/rec_rtx_ext_gateway/job/MD440-8170-Maple-Lawn-Blvd-Fulton-MD-8170-Maple-Lawn-Boulevard---Fulton-MD-20759-USA/Software-Engineer-I--Java-----Onsite-_01732642",
"company_name": "RTX",
"title": "Software Engineer I (Java)",
"locations": [
"Fulton, MD"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "5cc219b8-6bad-47c0-89bf-b26fa48ccbb4",
"date_posted": 1749184860,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749294426,
"url": "https://cox.wd1.myworkdayjobs.com/Cox_External_Career_Site_1/job/Carmel-IN/Software-Engineer-1_R202563453",
"company_name": "Cox Automotive",
"title": "Software Engineer I",
"locations": [
"Carmel, IN"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "e5a61a44-d6ee-4509-b4f2-2a38482a7ec6",
"date_posted": 1749184893,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749184941,
"url": "https://elrj.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/search/job/4131",
"company_name": "Omnicell",
"title": "Software Engineer I",
"locations": [
"Cranberry Township, PA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "3ff357fb-9844-4a3b-947d-97401b3fd93e",
"date_posted": 1749184941,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198970,
"url": "https://pae.wd1.myworkdayjobs.com/en-US/amentum_careers/job/US-VA-Dahlgren/Entry-Level-Software-Developer_R0140249",
"company_name": "Amentum",
"title": "Software Developer",
"locations": [
"Dahlgren, VA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "a71fd9e9-ac01-4cd9-a19b-ea7948a2778e",
"date_posted": 1749184966,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974089,
"url": "https://truist.wd1.myworkdayjobs.com/en-US/Careers/job/Atlanta-GA/Software-Engineer-I---nCino-Developer_R0102738",
"company_name": "Truist",
"title": "Software Engineer I",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "9ee0c026-fd8d-4ff0-8a7e-92859f109fdf",
"date_posted": 1749185000,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750133640,
"url": "https://job-boards.greenhouse.io/deepmind/jobs/6949781?gh_src=d39b99f31",
"company_name": "Google DeepMind",
"title": "Full Stack Software Engineer",
"locations": [
"Cambridge, MA",
"Mountain View, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "59f0d7d0-688a-4227-883d-09aeedb1cfed",
"date_posted": 1749188221,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749296143,
"url": "https://www.lumafield.com/careers/job?id=fb3e17b3-d7fe-47da-85c3-aecda001e2ed",
"company_name": "Lumafield",
"title": "Backend Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"source": "nclliu",
"id": "73eeab36-9415-43e5-a4ef-a7bb1566305e",
"date_posted": 1749296143,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198976,
"url": "https://nvidia.wd5.myworkdayjobs.com/nvidiaexternalcareersite/job/US-OR-Hillsboro/Systems-Software-Engineer---New-College-Grad-2025_JR1998556",
"company_name": "NVIDIA",
"title": "New Grad 2025: Systems Software Engineer",
"locations": [
"Hillsboro, OR"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8b416450-5f6f-4599-a7dd-0e9ddb22b555",
"date_posted": 1749296846,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974058,
"url": "https://job-boards.greenhouse.io/relativity/jobs/8029393002",
"company_name": "Relativity Space",
"title": "Software Engineer I - Factory Platform",
"locations": [
"Long Beach, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "f4ba4cea-9b10-4bd4-b907-160b60c20f21",
"date_posted": 1749296941,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750133660,
"url": "https://www.disneycareers.com/en/job/-/-/391/82063302224",
"company_name": "Disney",
"title": "Software Engineer I\t",
"locations": [
"San Francisco, CA",
"Santa Monica, CA",
"Glendale, CA",
"New York, NY",
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "0339f399-6f44-4ae5-93cb-d01e027f00e7",
"date_posted": 1749297143,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526288,
"url": "https://job-boards.greenhouse.io/radiant/jobs/4540308005",
"company_name": "Radiant",
"title": "New Grad: Software Engineer",
"locations": [
"El Segundo, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "32959ee9-bf3f-4948-9bce-c8cfe9affee0",
"date_posted": 1749297208,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749297259,
"url": "https://careers.viasat.com/jobs/4457",
"company_name": "Viasat",
"title": "Full Stack Software Engineer, Early Career",
"locations": [
"Carlsbad, CA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "e99e9d74-ff1a-42cd-a01e-32f38fb42973",
"date_posted": 1749297259,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749297401,
"url": "https://sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25037&siteid=5010&PageType=JobDetails&jobid=792011#jobDetails=792011_5010",
"company_name": "Lockheed Martin",
"title": "AI Platform Engineer",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "6997bf4d-a67e-41b4-9b11-d378b82ede26",
"date_posted": 1749297401,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750198823,
"url": "https://job-boards.greenhouse.io/tenstorrent/jobs/4161897007",
"company_name": "Tenstorrent",
"title": "Software Developer, Metal Runtime",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8d046efa-97c6-4588-b2ce-3342abc8216d",
"date_posted": 1749297432,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043112,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Hardware-Validation-Engineer---New-College-Grad-2025_JR1997421",
"company_name": "NVIDIA",
"title": "New Grad 2025: Hardware Validation Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "036171d4-1cfe-44e1-b6db-78f92d12f9fb",
"date_posted": 1749297480,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749297520,
"url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749910007",
"company_name": "TransMarket Group",
"title": "Junior Algorithmic Trader",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "61036364-f08a-45c9-884f-d9172f7d279d",
"date_posted": 1749297520,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760410087,
"url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749914007",
"company_name": "TransMarket Group",
"title": "Python Developer / Data Engineer",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "06ea261d-3809-4b13-a033-e4e25b635bb0",
"date_posted": 1749297540,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749297553,
"url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749911007",
"company_name": "TransMarket Group",
"title": "Junior Quantitative Trader",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "2251a96c-a962-4073-b7aa-06aad941eb96",
"date_posted": 1749297553,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749297585,
"url": "https://app.careerpuck.com/job-board/lyft/job/8022809002",
"company_name": "Lyft",
"title": "Software Engineer, Rider",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "6bb6f552-bb9c-46ed-83ea-fc56de6c9a3d",
"date_posted": 1749297585,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749441778,
"url": "https://www.tesla.com/careers/search/job/243519",
"company_name": "Tesla",
"title": "Wireless Bluetooth Software Engineer",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "e6bff530-ac69-49ed-b53e-b0bcb86f360c",
"date_posted": 1749441778,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749441799,
"url": "https://www.tesla.com/careers/search/job/244263",
"company_name": "Tesla",
"title": "Software Engineer, AI Systems Performance Modeling, Dojo",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "9cd749ba-242f-45ea-b6e6-364500d9ee47",
"date_posted": 1749441799,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750133288,
"url": "https://jobs.apple.com/en-us/details/200608455/software-engineer-full-stack?team=SFTWR",
"company_name": "Apple",
"title": "Software Engineer - Full Stack",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8210c793-b3a5-4990-86a0-b11d380c4fb7",
"date_posted": 1749596228,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043115,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Design-Engineer---New-College-Grad-2025_JR1994930",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "ad6d7d69-8293-4e9a-aeaa-5432cec8e72d",
"date_posted": 1749596440,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1749599880,
"url": "https://careers.leonardodrs.com/job/San-Diego-Software-Engineer-CA-92127/1298209000/",
"company_name": "DRS",
"title": "Software Engineer I",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "50dbfbb6-86b3-4d28-8be4-8a699807d614",
"date_posted": 1749599880,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750133757,
"url": "https://wellfound.com/l/2BpbUc",
"company_name": "Strac",
"title": "Full Stack Engineer",
"locations": [
"Seattle, WA",
"Austin, TX"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "alfred-strac",
"id": "ef6ed6f6-d0bc-4296-b015-cfaea17043e8",
"date_posted": 1750133757,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750135082,
"url": "https://jobs.ashbyhq.com/sentry/90fb5dd4-410d-4672-9f40-3f11ea01c75d",
"company_name": "Sentry",
"title": "New Grad 2025: Software Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b562fdec-1ab1-4886-a2a1-864620b7d2d8",
"date_posted": 1750135082,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785094,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Verification-Engineer---New-College-Grad-2025_JR1998960",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Verification Engineer",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "9169c365-cf14-4132-9342-bb4735d09396",
"date_posted": 1750135112,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750135447,
"url": "https://careers.qualcomm.com/careers/job/446706280852",
"company_name": "Qualcomm",
"title": "Product Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "7bb5065c-0515-442d-836b-c92af0d8ce9c",
"date_posted": 1750135447,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750135470,
"url": "https://careers.qualcomm.com/careers/job/446706280712",
"company_name": "Qualcomm",
"title": "Modem Software and System Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "6d92991e-adb9-41c2-8c6f-de977f89ea2a",
"date_posted": 1750135470,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050228,
"url": "https://job-boards.greenhouse.io/lucidmotors/jobs/4753955007",
"company_name": "Lucid",
"title": "DevOps and Build Infrastructure Engineer",
"locations": [
"Newark, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "7ed60c0c-1450-4625-84f6-abeb328e96b5",
"date_posted": 1750135589,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638714,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Datacenter-GPU-Power-Architect---New-College-Grad-2025_JR1995557",
"company_name": "NVIDIA",
"title": "New Grad 2025: GPU Power Architect",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "da1181dc-ee12-4268-a8e7-8c5d4a9bb3b4",
"date_posted": 1750530915,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750531044,
"url": "https://davincitrading.com/job/graduate-c-software-engineer-2/",
"company_name": "Da Vinci",
"title": "Graduate C++ Software Engineer",
"locations": [
"Miami, FL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "c86c11fc-cfd4-4cb4-84aa-714553525b62",
"date_posted": 1750531044,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1750531077,
"url": "https://www.collective.com/careers/6614825003",
"company_name": "Collective Hub, Inc",
"title": "New Grad: Software Engineer",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "eaa94c8f-a590-4ae1-9915-b0947f8f89d5",
"date_posted": 1750531077,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526370,
"url": "https://nordstrom.wd501.myworkdayjobs.com/en-US/nordstrom_careers/job/Seattle-WA/Engineer-1---iOS-Developer--Hybrid---Seattle--WA-_R-758307",
"company_name": "Nordstrom",
"title": "iOS Developer Engineer I",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "9380a570-05f0-4d9e-a73c-169828c976a8",
"date_posted": 1750531107,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526372,
"url": "https://nordstrom.wd501.myworkdayjobs.com/en-US/nordstrom_careers/job/Seattle-WA/Engineer-1--Hybrid---Seattle--WA-_R-758299",
"company_name": "Nordstrom",
"title": "Engineer 1",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "5cd7c112-9d63-4188-a450-c75195374d8d",
"date_posted": 1750531125,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266822,
"url": "https://usaa.wd1.myworkdayjobs.com/en-US/USAAJOBSWD/job/San-Antonio-Home-Office-I/Software-Engineer-I_R0110441",
"company_name": "USAA",
"title": "Software Engineer I",
"locations": [
"San Antonio, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "99850069-b69c-45ba-85e0-2f7f1efd54cd",
"date_posted": 1751050345,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759786192,
"url": "https://job-boards.greenhouse.io/openeye/jobs/8028394002",
"company_name": "OpenEye",
"title": "Software Engineer I - OWS",
"locations": [
"Liberty Lake, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "a593aa93-7f48-45e2-a602-a4e7d3259b65",
"date_posted": 1751050370,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526378,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/rec_rtx_ext_gateway/job/MD440-8170-Maple-Lawn-Blvd-Fulton-MD-8170-Maple-Lawn-Boulevard---Fulton-MD-20759-USA/Software-Engineer-I--Java-----Onsite-_01769315",
"company_name": "RTX",
"title": "Software Engineer I (Java)",
"locations": [
"Fulton, MD"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "e19c52a3-bef9-40f6-a57f-0058c82aca7b",
"date_posted": 1751050420,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050563,
"url": "https://www.tesla.com/careers/search/job/244793",
"company_name": "Tesla",
"title": "Firmware Engineer, Silicon Development",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "3a7f7d43-6cbf-443a-8d2e-622fa853fd52",
"date_posted": 1751050563,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050582,
"url": "https://www.metacareers.com/jobs/1947521902323717",
"company_name": "Meta",
"title": "Software Engineer",
"locations": [
"Menlo Park, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "62c184c3-2396-43dd-bb1a-4313a6ce9855",
"date_posted": 1751050582,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050825,
"url": "https://jobs.smartrecruiters.com/Visa/744000066662880-systems-engineer-virtualization-linux-engineering-junior-level-",
"company_name": "Visa",
"title": "Systems Engineer, Virtualization/Linux Engineering",
"locations": [
"Highlands Ranch, CO"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "fcd8f6f4-41e9-4247-8af4-763e843d780f",
"date_posted": 1751050825,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751050870,
"url": "https://careers.qualcomm.com/careers/job/446706411550",
"company_name": "Qualcomm",
"title": "Software Product Application Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "d466a2f1-e8c1-49f1-8187-908af09c3c57",
"date_posted": 1751050870,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043124,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-TX-Austin/ASIC-Hardware-Design-Engineer---New-College-Grad-2025_JR1999119",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Hardware Design Engineer",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "ccc1aa4e-e4da-4606-9d2f-5b66689a5b25",
"date_posted": 1751051074,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183416,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Design-Efficiency-Engineer---New-College-Grad-2026_JR1999430",
"company_name": "NVIDIA",
"title": "New Grad 2026: ASIC Design Efficiency Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "8ea5b479-cb5f-4350-bf6b-c592af9b5dab",
"date_posted": 1751051102,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751051124,
"url": "https://www.amazon.jobs/en/jobs/3018378/system-development-engineer-i-ops-tech-solutions",
"company_name": "Amazon",
"title": "System Development Engineer I, Ops Tech Solutions",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "d9e46800-6754-46cc-8e65-40b67693a643",
"date_posted": 1751051124,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751051534,
"url": "https://careers.roblox.com/jobs/6993225",
"company_name": "Roblox",
"title": "Software Engineer, Infra Foundation",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "38b53a1d-e8f0-4bba-973b-2f0c6fce07be",
"date_posted": 1751051534,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751051629,
"url": "https://careers.qualcomm.com/careers/job/446706462906",
"company_name": "Qualcomm",
"title": "IOT Software Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "511792dd-807b-4e2b-850d-87b4d5064666",
"date_posted": 1751051629,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974101,
"url": "https://cadence.wd1.myworkdayjobs.com/External_Careers/job/HOME-MA/C---Software-Engineer---New-College-Graduate--Boston-_R50667-1",
"company_name": "Cadence",
"title": "New Grad: C++ Software Engineer",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "e9f12027-90b4-486d-aaac-f93cc194bdfe",
"date_posted": 1751051672,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245042,
"url": "https://www.amazon.jobs/en/jobs/3013296/mission-operations-engineer-project-kuiper-mission-operations",
"company_name": "Amazon",
"title": "Mission Operations Engineer, Project Kuiper - Mission Operations",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "ba0dc511-3973-4881-99f4-c6bf1eeb7199",
"date_posted": 1751245042,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245071,
"url": "https://www.amazon.jobs/en/jobs/3012833/security-engineer-appsec-testing-automation-and-insights",
"company_name": "Amazon",
"title": "Security Engineer, AppSec Testing Automation and Insights",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f3f974a6-676b-4651-8382-b7559f9def36",
"date_posted": 1751245071,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437821,
"url": "https://job-boards.greenhouse.io/openeye/jobs/8050484002",
"company_name": "OpenEye",
"title": "Software Engineer",
"locations": [
"Liberty Lake, WA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "43378415-1be0-4404-bea6-87a1939bc2d3",
"date_posted": 1751245116,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245140,
"url": "https://www.qualtrics.com/careers/us/en/job/QUALUS6957175EXTERNALENUS/Software-Engineer-I-Employee-Experience",
"company_name": "Qualtrics",
"title": "Software Engineer I, Employee Experience",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "30e20599-08d5-4f27-a53d-281034abd678",
"date_posted": 1751245140,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245162,
"url": "https://www.amazon.jobs/en/jobs/3019865/software-engineer-creator",
"company_name": "Twitch",
"title": "Software Engineer - Creator",
"locations": [
"Seattle, WA",
"New York, NY",
"Irvine, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "77906d39-eea8-451c-bf47-22bc038eea15",
"date_posted": 1751245162,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245224,
"url": "https://www.hashicorp.com/en/career/6914251",
"company_name": "HashiCorp",
"title": "Backend Engineer - Enterprise Identity",
"locations": [
"Remote",
"US"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "4b3fb235-b883-4cba-b398-92ad4de7b401",
"date_posted": 1751245224,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245244,
"url": "https://careers.qualcomm.com/careers/job/446706463987",
"company_name": "Qualcomm",
"title": "Display SW Engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "48c456d7-6c13-47e0-b54f-e286184f4980",
"date_posted": 1751245244,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974103,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Design-Engineer---New-College-Grad-2025_JR1992617",
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Engineer",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "697ccf5e-68b5-4b13-b0fe-e80ecdb48b13",
"date_posted": 1751245329,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245352,
"url": "https://www.tesla.com/careers/search/job/239333",
"company_name": "Tesla",
"title": "Technical Artist, UI Design",
"locations": [
"Hawthorne, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "b65ad957-daff-4e08-b202-f508f7b8c015",
"date_posted": 1751245352,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245403,
"url": "https://www.tesla.com/careers/search/job/225609",
"company_name": "Tesla",
"title": "Software Engineer, Optimus",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "23b5f05e-22a1-485b-b1e6-c37afe513bd2",
"date_posted": 1751245403,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245429,
"url": "https://www.amazon.jobs/en/jobs/3020911/software-engineer",
"company_name": "Twitch",
"title": "Software Engineer",
"locations": [
"San Francisco, CA",
"Seattle, WA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "5fdd3b33-084f-4e98-851b-953cea9d15d1",
"date_posted": 1751245429,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526390,
"url": "https://kla.wd1.myworkdayjobs.com/Search/job/Milpitas-CA/Software-Engineer--New-College-Grad-_2530130-1",
"company_name": "KLA",
"title": "New Grad: Software Engineer",
"locations": [
"Milpitas, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "900a7159-369d-4218-9239-f6c48a053ab5",
"date_posted": 1751245569,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245625,
"url": "https://jobs.cvshealth.com/us/en/job/CVSCHLUSR0632604EXTERNALENUS/Associate-Software-Engineer",
"company_name": "CVS Health",
"title": "Associate Software Engineer",
"locations": [
"Irving, TX"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "03761046-05de-4fe9-8754-3ef666d42e4a",
"date_posted": 1751245625,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758393064,
"url": "https://boards.greenhouse.io/embed/job_app?token=8026923002",
"company_name": "Tesla",
"title": "New Grad 2025: Software Engineer",
"locations": [
"Hawthorne, CA"
],
"sponsorship": "Other",
"active": false,
"source": "vanshb03",
"id": "73563134-bf8f-4327-8c2b-a4d53cef7fef",
"date_posted": 1751245729,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751245782,
"url": "https://jobs.citi.com/job/-/-/287/79829803904",
"company_name": "Citi",
"title": "Software Engineer",
"locations": [
"Tampa, FL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "0f78041c-d885-480c-8999-141a2fc0f165",
"date_posted": 1751245782,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760410087,
"url": "https://jobs.lever.co/palantir/2e6b0ac8-83e9-4be5-a3aa-cf319f751728",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Palantir",
"title": "New Grad 2026: Forward Deployed Software Engineer",
"source": "vanshb03",
"id": "8297c60b-4901-4d26-926f-41af6317263a",
"date_posted": 1751749491,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531591,
"url": "https://jobs.lever.co/palantir/d1ac83d0-e923-42a5-8e6d-58dd0cab25ca",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Palantir",
"title": "New Grad 2026: Forward Deployed Software Engineer",
"source": "vanshb03",
"id": "238283f6-f30a-444b-a0a8-6b60b9431fc3",
"date_posted": 1751749502,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531591,
"url": "https://jobs.lever.co/palantir/cbe90327-3e6e-451c-a54c-1d3cbcef5aeb",
"locations": [
"Washington, D.C."
],
"sponsorship": "Other",
"active": false,
"company_name": "Palantir",
"title": "New Grad 2026: Forward Deployed Software Engineer",
"source": "vanshb03",
"id": "b9f4929b-7350-4a1e-a4fb-159955d172ae",
"date_posted": 1751749513,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750917,
"url": "https://jobs.lever.co/palantir/c34b424e-caf2-455a-b104-ae1096ccca29",
"locations": [
"Denver, CO"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "fb4fb9d4-a4cb-413c-b073-ca336cc40eff",
"date_posted": 1751750917,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750932,
"url": "https://jobs.lever.co/palantir/dea9d3d5-75b2-4588-b7bd-585a47b79c8c",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "303ce625-856d-4642-a750-f6989362f6cb",
"date_posted": 1751750932,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750941,
"url": "https://jobs.lever.co/palantir/94984771-0704-446c-88c6-91ce748f6d92",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "dff8ddcf-bb12-43a8-bd8b-38038821c627",
"date_posted": 1751750941,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750962,
"url": "https://jobs.lever.co/palantir/0a838e66-1ab0-4fc4-b4d3-4671c0352278",
"locations": [
"New York, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "12d830a3-13bb-4133-9fae-f0447f0a41e1",
"date_posted": 1751750962,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750969,
"url": "https://jobs.lever.co/palantir/f362d7aa-360d-4059-ab38-f482742693b3",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "f154d8fe-393d-4c0c-8371-13b50dc3b8c0",
"date_posted": 1751750969,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750974,
"url": "https://jobs.lever.co/palantir/18d901fc-93bb-4d18-9f04-c72031e20d79",
"locations": [
"Washington, DC"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "5e1c65f0-67cd-4db7-a538-17a1dbd4a1cb",
"date_posted": 1751750974,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750979,
"url": "https://jobs.lever.co/palantir/4abf26b4-795c-420a-bf22-1ab98db268b4",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "10be5bb8-3e7e-46d0-9b3e-5df88dc1effd",
"date_posted": 1751750979,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751750983,
"url": "https://jobs.lever.co/palantir/e1a6c138-98bf-45e2-97f7-2c70371cc38a",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "fe92a2a7-62b5-45a3-bba6-dd0bdc9c5611",
"date_posted": 1751750983,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752018,
"url": "https://job-boards.eu.greenhouse.io/imc/jobs/4580753101",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "IMC",
"title": "Quantitative Researcher",
"source": "vanshb03",
"id": "43a2743c-b91f-4f4f-be95-25e727a79632",
"date_posted": 1751752018,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183336,
"url": "https://jobs.lever.co/belvederetrading/5494bf64-56bf-4a5b-b339-03e8af470ffc",
"locations": [
"Boulder, CO"
],
"sponsorship": "Other",
"active": false,
"company_name": "Belvedere Trading",
"title": "Machine Learning and Algorithm Developer",
"source": "vanshb03",
"id": "f943d316-bce8-4701-88e6-b11fe34340e8",
"date_posted": 1751752027,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752034,
"url": "https://optiver.com/working-at-optiver/career-opportunities/7967601002",
"locations": [
"Austin, TX"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Optiver",
"title": "Graduate Quantitative Researcher",
"source": "vanshb03",
"id": "22689130-d205-4d85-b298-492cab36dd9d",
"date_posted": 1751752034,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752042,
"url": "https://optiver.com/working-at-optiver/career-opportunities/7986419002",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Optiver",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "d2b45b20-7926-4762-84f2-5d64fabf18d6",
"date_posted": 1751752042,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752051,
"url": "https://optiver.com/working-at-optiver/career-opportunities/7986421002",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Optiver",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "7cbc63bf-c26c-4864-8cad-dcf6ad8d61e9",
"date_posted": 1751752051,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752062,
"url": "https://www.citadelsecurities.com/careers/details/software-engineer-university-graduate-us/",
"locations": [
"Miami, FL",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citadel Securities",
"title": "Software Engineer",
"source": "vanshb03",
"id": "042d7e65-0813-45d4-9a8d-d5ee664a6e1a",
"date_posted": 1751752062,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752067,
"url": "https://www.citadelsecurities.com/careers/details/quantitative-research-analyst-university-graduate-us/",
"locations": [
"Miami, FL",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citadel Securities",
"title": "New Grad: Quantitative Research Analyst",
"source": "vanshb03",
"id": "2bd6f1a8-df71-492f-bbd9-c257f09f6c15",
"date_posted": 1751752067,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752073,
"url": "https://www.citadelsecurities.com/careers/details/quantitative-trader-university-graduate-us/",
"locations": [
"Miami, FL",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citadel Securities",
"title": "New Grad: Quantitative Trader",
"source": "vanshb03",
"id": "35f79369-86b3-4ce0-a625-e3efccf07693",
"date_posted": 1751752073,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752090,
"url": "https://bambusdev.my.site.com/s/details?jobReq=Systematic-Equities-Quantitative-Researcher---Developer_REQ6955",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Balyasny Asset Management",
"title": "Systematic Equities Quantitative Researcher / Developer",
"source": "vanshb03",
"id": "e82c6935-2cb1-48d4-9ce1-0e193b1e0c75",
"date_posted": 1751752090,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752099,
"url": "https://careers.qualcomm.com/careers/job/446706670731",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualcomm",
"title": "Software Engineer - Hypervisor",
"source": "vanshb03",
"id": "9152d9cb-bdf3-4cdc-aea8-e04168d51496",
"date_posted": 1751752099,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752109,
"url": "https://careers.duolingo.com/jobs/8062269002?gh_jid=8062269002",
"locations": [
"Pittsburgh, PA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Duolingo",
"title": "AI Product Engineer, Math",
"source": "vanshb03",
"id": "f190e948-c8ac-4481-ae9f-9661c141cc92",
"date_posted": 1751752109,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752118,
"url": "https://jobs.apple.com/en-us/details/200611793/software-engineer-is-t-early-career?team=SFTWR",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer, IS&T",
"source": "vanshb03",
"id": "2903e077-5894-4c8c-864f-33a97c7022bb",
"date_posted": 1751752118,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752126,
"url": "https://jobs.apple.com/en-us/details/200611794/software-engineer-is-t-early-career?team=SFTWR",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer, IS&T",
"source": "vanshb03",
"id": "0c3403fd-a272-4469-9d49-b0adf3bb83ac",
"date_posted": 1751752126,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043134,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Design-Engineer---New-College-Grad-2025_JR1994930",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Engineer",
"source": "vanshb03",
"id": "ffe4d7cf-07fb-4bc0-a3b8-7e405cb73f6b",
"date_posted": 1751752134,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752151,
"url": "https://jobs.ashbyhq.com/quora/e8acc816-a9af-445d-8135-47599ac9be0f",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Quora",
"title": "New Grad: Machine Learning Engineer",
"source": "vanshb03",
"id": "144068d8-9f27-4c70-a015-23ac7f508d4a",
"date_posted": 1751752151,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752180,
"url": "https://jobs.bitstoatoms.com/bits-to-atoms/953ef025-ec88-450d-8f8f-2cb38cc8e839",
"locations": [
"Berkeley, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Bits to Atoms",
"title": "Software Engineer",
"source": "vanshb03",
"id": "3e0b7f72-1051-4c24-8ef7-7d488233c71b",
"date_posted": 1751752180,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752192,
"url": "https://www.tesla.com/careers/search/job/245229",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Machine Learning Integration, Optimus",
"source": "vanshb03",
"id": "457f0e35-2679-42ea-8abd-a2361658ea6c",
"date_posted": 1751752192,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752202,
"url": "https://www.amazon.jobs/en/jobs/2940695/hardware-simulator-sde-i-aws-machine-learning-accelerators-annapurna-labs",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Hardware Simulator SDE I, AWS Machine Learning Accelerators, Annapurna Labs",
"source": "vanshb03",
"id": "24b34901-083a-45ca-901e-437ad82baf0f",
"date_posted": 1751752202,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752305,
"url": "https://jobs.lever.co/palantir/4d5a144e-87ea-45e2-a68c-3fad590629af",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Palantir",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "00c9f52c-50b9-4f30-b893-408af92049c6",
"date_posted": 1751752305,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1751752552,
"url": "https://jobs.lever.co/galatea-associates/ea475dfe-2e0b-4e6b-8dd7-88e4e85f9dcb?lever-origin=applied&lever-source%5B%5D=GitHub",
"company_name": "Galatea Associates",
"title": "Software Engineer Associate",
"locations": [
"Somerville, MA",
"St. Petersburg, FL",
"Durham, NC",
"London, UK"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"source": "Hurryitup",
"id": "7c29c72c-d272-462b-8eeb-c7387b3026ef",
"date_posted": 1751752552,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752525250,
"url": "https://www.nuro.ai/careersitem?gh_jid=7066706",
"company_name": "Nuro",
"title": "New Grad: Software Engineer, Routing",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "f893e67a-121d-4483-8418-6ee1b466530b",
"date_posted": 1752525250,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752525717,
"url": "https://careers.blackrock.com/job/new-york/2026-full-time-analyst-program-amers/45831/83232695408",
"company_name": "BlackRock",
"title": "Analyst",
"locations": [
"Atlanta, GA",
"Boston, MA",
"Chicago, IL",
"Miami, FL",
"New York, NY"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "kalam635",
"id": "2f99baab-d50c-477b-a476-12f4de5bf36c",
"date_posted": 1752525717,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752443565,
"url": "https://jobs.apple.com/en-us/details/200612409/is-t-early-career-engineering-program-manager-opportunities?team=SFTWR",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "IS&T Early Career Engineering Program Manager Opportunities",
"source": "vanshb03",
"id": "1ebd59ee-00ba-4214-b8b7-b69bcc52673d",
"date_posted": 1752443565,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024769,
"url": "https://jobs.careers.microsoft.com/global/en/job/1845958/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "2a2f1118-7e4c-4f40-9302-e51dd7a497a8",
"date_posted": 1752525196,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756355608,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Design-Engineer---New-College-Grad-2025_JR1999992",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Engineer",
"source": "vanshb03",
"id": "889fef48-46c6-49d4-a229-c70690213658",
"date_posted": 1752525912,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785099,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Verification-Engineer---New-College-Grad-2025_JR1998960",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Verification Engineer",
"source": "vanshb03",
"id": "01290fd4-3e47-49d5-87ed-34c163b16556",
"date_posted": 1752525919,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752525926,
"url": "https://careers.qualcomm.com/careers/job/446706753287",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualcomm Technologies, Inc.",
"title": "CPU Software Architecture Engineer",
"source": "vanshb03",
"id": "32e52823-029f-4ad8-8d69-35a4ab3958ee",
"date_posted": 1752525926,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043142,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Hardware-Applications-Engineer--Datacenter---New-College-Grad-2025_JR2000000",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Hardware Applications Engineer, Datacenter",
"source": "vanshb03",
"id": "95df9be3-cecd-461a-abed-1a5e6d46148b",
"date_posted": 1752525931,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043144,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Systems-Software-Engineer---New-College-Grad-2025_JR1998556",
"locations": [
"Hillsboro, OR"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Systems Software Engineer",
"source": "vanshb03",
"id": "17506bee-feb6-4eb4-b266-f84c972472f4",
"date_posted": 1752525944,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043146,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Hardware-Design-Engineer---New-College-Grad-2025_JR1999119",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Hardware Design Engineer",
"source": "vanshb03",
"id": "2378148b-85f5-49b4-8ce7-5d2488933ab7",
"date_posted": 1752525950,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752525957,
"url": "https://www.tesla.com/careers/search/job/237386",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Mobile App Engineer, Service & Roadside Assistance",
"source": "vanshb03",
"id": "eec285aa-fd1f-40b4-820a-696376180719",
"date_posted": 1752525957,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526860,
"url": "https://www.oldmissioncapital.com/careers/?gh_jid=6602927003",
"company_name": "Old Mission",
"title": "New Grad 2026: Junior Software Engineer",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "bbec8687-ddae-4138-96f6-090c3b2c156b",
"date_posted": 1752526860,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526883,
"url": "https://www.oldmissioncapital.com/careers/?gh_jid=6602920003",
"company_name": "Old Mission",
"title": "New Grad 2026: Junior Quantitative Trader",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "6fadaf49-0b6f-433b-a0bf-7745e13b67fc",
"date_posted": 1752526883,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758689184,
"url": "https://jobs.lever.co/shieldai/38178f1e-34c5-481d-9914-c18a2263776f",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Shield AI",
"title": "Software Engineer I, Hardware Test",
"source": "vanshb03",
"id": "ac97ec97-d63e-4474-bdfd-cf0a62dd06d5",
"date_posted": 1752526189,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755698977,
"url": "https://job-boards.greenhouse.io/silvus/jobs/4772754008",
"locations": [
"Los Angeles, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Silvus Technologies",
"title": "Software Engineer I, SQA",
"source": "vanshb03",
"id": "1bfa61ba-fc07-416a-a461-b160155746fc",
"date_posted": 1752526203,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526215,
"url": "https://jobs.lever.co/ranger/38ef5184-0c8a-4980-836f-95e23e83ae7d?utm_source=Simplify&ref=Simplify",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Ranger",
"title": "Forward-Deployed Test Engineer",
"source": "vanshb03",
"id": "8612685b-792a-4757-908d-5bf438afa48d",
"date_posted": 1752526215,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757963733,
"url": "https://job-boards.greenhouse.io/sigmacomputing/jobs/6640194003?utm_source=Simplify&ref=Simplify",
"locations": [
"San Francisco, CA",
"New York City, NY"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Sigma",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "008d2d3e-78e3-4f8a-b2b2-74bf62bd479e",
"date_posted": 1752526221,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526695,
"url": "https://jobs.ashbyhq.com/candidhealth/8d1922f8-e89d-433e-a21f-b724eabc003b?utm_source=Simplify&ref=Simplify",
"locations": [
"San Francisco, CA",
"Denver, CO",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Candid Health",
"title": "New Grad: Forward Deployed Software Engineer",
"source": "vanshb03",
"id": "fda4f5e0-9559-4796-87b6-df8ae4848aaa",
"date_posted": 1752526695,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752526703,
"url": "https://jobs.ashbyhq.com/candidhealth/f0e529c1-b8d8-4add-aaef-23b174053b8b?utm_source=Simplify&ref=Simplify",
"locations": [
"San Francisco, CA",
"Denver, CO",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Candid Health",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "f3a926fc-88b6-4708-8a69-ebfa8a7b3392",
"date_posted": 1752526703,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756355567,
"url": "https://job-boards.greenhouse.io/systemstechnologyresearch/jobs/4584085006?gh_src=s9612n1f6us&utm_source=Indeed&utm_medium=organic&utm_campaign=Indeed",
"locations": [
"Dayton, OH"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "STR",
"title": "Firmware Engineer",
"source": "vanshb03",
"id": "8f68f8b4-e971-480d-a317-fce810fa7b21",
"date_posted": 1752527695,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752527703,
"url": "https://recruiting.paylocity.com/recruiting/jobs/Details/3409369/Cryptic-Vector/Full-Stack-Developer?source=Indeed_Feed",
"locations": [
"Cincinnati, OH"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Cryptic Vector",
"title": "Full Stack Developer",
"source": "vanshb03",
"id": "b8c7669a-119c-4d45-b3e6-96a96fd20035",
"date_posted": 1752527703,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752607265,
"url": "https://optiver.com/working-at-optiver/career-opportunities/8033327002/",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Optiver",
"title": "New Grad 2026: FPGA Engineer",
"source": "vanshb03",
"id": "65cdb6b3-2e12-4596-8ee5-58ddfcd5a6ff",
"date_posted": 1752607265,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752607275,
"url": "https://optiver.com/working-at-optiver/career-opportunities/7973721002/",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Optiver",
"title": "New Grad 2026: FPGA Engineer",
"source": "vanshb03",
"id": "e74f938f-3cef-44b3-a5b7-c251cffc09f2",
"date_posted": 1752607275,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1752607306,
"url": "https://www.ycombinator.com/companies/porter/jobs/6QhplSz-full-stack-engineer",
"locations": [
"New York, NY"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Porter",
"title": "Full Stack Engineer",
"source": "vanshb03",
"id": "6fedde8e-21bf-429b-b5c7-4b85baf40147",
"date_posted": 1752607306,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183336,
"url": "https://boards.greenhouse.io/embed/job_app?token=7083333",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Benchling",
"title": "Software Engineer, Full Stack (Lab Auto)",
"source": "vanshb03",
"id": "34e5a307-89d9-492e-9b4f-fdf48cce7b17",
"date_posted": 1753043437,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753043445,
"url": "https://careers.qualcomm.com/careers/job/446706913920",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualcomm Technologies, Inc.",
"title": "GPU Software Engineer",
"source": "vanshb03",
"id": "f7d5608c-e1f1-4fa7-aad2-980ce17d4903",
"date_posted": 1753043445,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369008,
"url": "https://job-boards.greenhouse.io/deepmind/jobs/7086851",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Google DeepMind",
"title": "Software Engineer, Full Stack - Gemini",
"source": "vanshb03",
"id": "6cc525af-3576-49be-8af2-7e62f0da04db",
"date_posted": 1753043452,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762348974,
"url": "https://job-boards.greenhouse.io/xai/jobs/4786668007",
"locations": [
"San Francisco, CA",
"Palo Alto, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "xAI",
"title": "AI Researcher & Engineer - Multimodal (Real-time Video)",
"source": "vanshb03",
"id": "a04d96d9-77ec-4cca-9cd5-2e33d34567a7",
"date_posted": 1753043461,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024770,
"url": "https://jobs.careers.microsoft.com/us/en/job/1844322/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "74a836fc-d4e4-4f70-b578-74617c04c116",
"date_posted": 1753043469,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283134,
"url": "https://jobs.careers.microsoft.com/global/en/job/1844417/Site-Reliability-Engineer---CTJ---Top-Secret",
"locations": [
"Redmond, WA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Microsoft",
"title": "Site Reliability Engineer",
"source": "vanshb03",
"id": "775c9933-390c-4e09-a518-7e4bc9b80366",
"date_posted": 1753043511,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756355617,
"url": "https://osv-cci.wd1.myworkdayjobs.com/en-US/CCICareers/job/Houston-TX/Commodities-Trading-Rotational-Analyst-Program--2026-Start-_R1096",
"locations": [
"Houston, TX",
"Stamford, CT"
],
"sponsorship": "Other",
"active": false,
"company_name": "Castleton Commodities International",
"title": "Commodities Trading Rotational Analyst Program",
"source": "vanshb03",
"id": "b147b1b7-46f6-4732-ad23-b1d979d49881",
"date_posted": 1753369319,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283134,
"url": "https://job-boards.greenhouse.io/neuralink/jobs/6658884003",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Neuralink",
"title": "Software Engineer, Next Gen",
"source": "vanshb03",
"id": "b6f2419f-68d4-4d36-853a-e0e1accc1455",
"date_posted": 1753369632,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369638,
"url": "https://www.tesla.com/careers/search/job/246315",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Applications Engineer, Megapack",
"source": "vanshb03",
"id": "8845eb6a-9919-4381-9312-2dba009c4321",
"date_posted": 1753369638,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369646,
"url": "https://www.quinstreet.com/careers/?gh_jid=7100468",
"locations": [
"Foster City, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "QuinStreet",
"title": "Entry Level Software Engineer",
"source": "vanshb03",
"id": "89371261-0959-4fb9-b1b8-208eaea479d0",
"date_posted": 1753369646,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468803,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Verification-Engineer--CPU---New-College-Grad-2025_JR2000487-1",
"locations": [
"Westford, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Verification Engineer, CPU",
"source": "vanshb03",
"id": "d988619e-8647-443d-9bab-3bad98b5e68b",
"date_posted": 1753369690,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468765,
"url": "https://jobs.lever.co/spotify/21c24edb-f625-4895-ad23-5a6320d54813",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Spotify",
"title": "Associate Machine Learning Engineer",
"source": "vanshb03",
"id": "f795c659-b1f4-48b6-9a95-976b535a4d04",
"date_posted": 1753369711,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442791,
"url": "https://www.ycombinator.com/companies/phonely/jobs/nSlxo4y-software-engineer-early-career",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Phonely",
"title": "Software Engineer (Early Career)",
"source": "vanshb03",
"id": "bee2db8f-1e6a-4dcb-b0eb-83d42dbe4a21",
"date_posted": 1753369722,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756355626,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Senior-VLSI-CAD-Engineer--ECO-Tools---New-College-Grad-2025_JR2000138",
"locations": [
"Santa Clara, CA",
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: VLSI CAD Engineer, ECO Tools",
"source": "vanshb03",
"id": "c9bb699f-a065-4896-8e88-a88dad30c4ab",
"date_posted": 1753369730,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369743,
"url": "https://www.tesla.com/careers/search/job/246089",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Optimus Inference Co Design",
"source": "vanshb03",
"id": "9f6b9dd4-3d9e-412f-94e4-4cabe914593d",
"date_posted": 1753369743,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369752,
"url": "https://www.tesla.com/careers/search/job/246198",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Camera Software Engineer, AI Platforms",
"source": "vanshb03",
"id": "00d980af-d3d1-418e-97ae-9aa79fdd2289",
"date_posted": 1753369752,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753369760,
"url": "https://www.tesla.com/careers/search/job/246199",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Integration Engineer, AI Platforms",
"source": "vanshb03",
"id": "89b5e87b-41cd-4204-88b9-9b3892526084",
"date_posted": 1753369760,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024770,
"url": "https://jobs.careers.microsoft.com/global/en/job/1847569/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "dc0d9a29-91c7-4109-9b56-6dfd10b91106",
"date_posted": 1753370216,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024770,
"url": "https://jobs.careers.microsoft.com/global/en/job/1850029/Critical-Infrastructure-Network-Engineer",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Critical Infrastructure Network Engineer",
"source": "vanshb03",
"id": "1c562940-4759-4773-ade3-138e6eeb1f26",
"date_posted": 1753370231,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758393065,
"url": "https://jobs.careers.microsoft.com/global/en/job/1847616/Firmware-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Firmware Engineer",
"source": "vanshb03",
"id": "d942c1d5-2b25-422d-93fd-62e69e11b429",
"date_posted": 1753370249,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758393065,
"url": "https://job-boards.greenhouse.io/drweng/jobs/7090734",
"locations": [
"Montreal, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "DRW",
"title": "Options Execution Trader",
"source": "vanshb03",
"id": "00a97180-f527-45a2-b22b-a0966f797aff",
"date_posted": 1753370396,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753370435,
"url": "https://careers.amd.com/careers-home/jobs/67592",
"locations": [
"Calgary, Canada",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "AMD",
"title": "Software Developer - GPU IO Libraries",
"source": "vanshb03",
"id": "ec2b8787-a5ff-48c7-a599-1c19987ccba6",
"date_posted": 1753370435,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753480470,
"url": "https://jobs.lever.co/highspot/a1945d0f-e062-4bad-8069-9f8f0bc15458",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Highspot",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "d267ddbe-a99e-441e-8b66-5611e537edae",
"date_posted": 1753370441,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753480224,
"url": "https://www.perplexity.ai/hub/associate-product-manager",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Perplexity",
"title": "Associate Product Manager Program",
"source": "vanshb03",
"id": "2134170c-cd02-4edf-9039-4bc55f0361d8",
"date_posted": 1753480224,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266856,
"url": "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/California---San-Francisco/Associate-Product-Manager--starting-summer-2026-_JR302144-2?source=LinkedIn_Jobs",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Salesforce",
"title": "Associate Product Manager",
"source": "vanshb03",
"id": "38ed9fac-1021-4ee4-87e3-875b7420cf25",
"date_posted": 1753480393,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638645,
"url": "https://jobs.lever.co/Arcade/b4a66c25-9661-4f5a-9aec-32da76aa0702",
"locations": [
"Presidio, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Arcade",
"title": "Associate Product Manager",
"source": "vanshb03",
"id": "f42ec804-5b63-42ce-9e28-d825e8b41137",
"date_posted": 1753480412,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753480426,
"url": "https://lifeattiktok.com/search/7400808756194461961?spread=5MWH5CQ&utm_source=apmseason",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2025: Product Manager",
"source": "vanshb03",
"id": "034acd43-4a83-4376-aae5-240d8df4edd2",
"date_posted": 1753480426,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753480434,
"url": "https://aexp.eightfold.ai/careers/job/29705941?hl=en&domain=aexp.com&utm_source=apmseason",
"locations": [
"New York, NY"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "American Express",
"title": "Associate - Digital Product Management",
"source": "vanshb03",
"id": "3ef2506b-5fa2-4f23-bcb6-3dde59d936dc",
"date_posted": 1753480434,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266862,
"url": "https://tmobile.wd1.myworkdayjobs.com/external/job/Bellevue-Washington/Associate-Product-Manager_REQ327312",
"locations": [
"Bellevue, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "T-Mobile",
"title": "Associate Product Manager",
"source": "vanshb03",
"id": "d32ce43b-2db3-40e5-90f6-dffe4ba22ea3",
"date_posted": 1753910028,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910216,
"url": "https://www.hudsonrivertrading.com/hrt-job/junior-electronic-trading-support-engineer-2/",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Hudson River Trading",
"title": "Trade Operations",
"source": "vanshb03",
"id": "e2467964-57ff-4005-9f77-e9b1afc45287",
"date_posted": 1753910216,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910225,
"url": "https://www.hudsonrivertrading.com/hrt-job/junior-electronic-trading-support-engineer/",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Hudson River Trading",
"title": "Trade Operations",
"source": "vanshb03",
"id": "67284d80-0236-4a9c-b227-b15593cdba46",
"date_posted": 1753910225,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758125116,
"url": "https://boards.greenhouse.io/embed/job_app?for=blackedgecapital&token=4590407005",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": false,
"company_name": "BlackEdge Capital",
"title": "Quantitative Trader",
"source": "vanshb03",
"id": "d079330b-d760-46a2-b766-d5f7e57509a7",
"date_posted": 1753910236,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910441,
"url": "https://lifeattiktok.com/search/7530759738491226386?spread=5MWH5CQ",
"locations": [
"Seattle"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Backend Engineer Graduate, Risk and Response",
"source": "vanshb03",
"id": "b900c985-c9fe-40dc-b5ad-1d57fdcc4033",
"date_posted": 1753910441,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910449,
"url": "https://lifeattiktok.com/search/7532626300897937682?spread=5MWH5CQ",
"locations": [
"Seattle"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Short Video (BS/MS)",
"source": "vanshb03",
"id": "2883a0bc-a0fb-4242-b428-246d13c7b350",
"date_posted": 1753910449,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910456,
"url": "https://lifeattiktok.com/search/7531161909615593735?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Ads Measurement Signal Technology)",
"source": "vanshb03",
"id": "e7d10c09-f1e3-4f9c-987e-166da71a2781",
"date_posted": 1753910456,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910460,
"url": "https://lifeattiktok.com/search/7532629935644002578?spread=5MWH5CQ",
"locations": [
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "0e423f57-96dd-449f-8cc7-27d7070d1492",
"date_posted": 1753910460,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910466,
"url": "https://lifeattiktok.com/search/7530771170938865928?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Research Scientist Graduate- CV/NLP/Multimodal LLM, Trust and Safety",
"source": "vanshb03",
"id": "4a4d5258-e8f6-4e0f-8b18-dd11412a644b",
"date_posted": 1753910466,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910471,
"url": "https://lifeattiktok.com/search/7530772847212644616?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Research Scientist Graduate- CV/NLP/Multimodal LLM, Trust and Safety",
"source": "vanshb03",
"id": "6c2a8d8d-de3a-48ce-9801-e8b40f9938c2",
"date_posted": 1753910471,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910477,
"url": "https://lifeattiktok.com/search/7530752375372466439?spread=5MWH5CQ",
"locations": [
"Seattle"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Engineer (Backend Software Engineer, Trust and Safety- Seattle)",
"source": "vanshb03",
"id": "57746b4e-b874-455e-9a37-c6c9f3adcaab",
"date_posted": 1753910477,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910481,
"url": "https://lifeattiktok.com/search/7532627069594224903?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "bdd54a82-1e30-4a4b-b67d-4163455ef792",
"date_posted": 1753910481,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910487,
"url": "https://lifeattiktok.com/search/7532457296103295239?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Monetization Technology - Ads Creative)",
"source": "vanshb03",
"id": "bea233a7-e8f1-404c-bce2-0539ac678585",
"date_posted": 1753910487,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910494,
"url": "https://lifeattiktok.com/search/7532627066714753288?spread=5MWH5CQ",
"locations": [
"San Jose"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Music",
"source": "vanshb03",
"id": "5cc9fc27-abca-4f53-836b-244428b5b60d",
"date_posted": 1753910494,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910501,
"url": "https://lifeattiktok.com/search/7530765464767826184?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Software Development Engineer in Test Graduate (Trust and Safety)",
"source": "vanshb03",
"id": "82448604-5fe5-4d93-b98d-bf6877bc704a",
"date_posted": 1753910501,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910508,
"url": "https://lifeattiktok.com/search/7532631803707738376?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Live-Foundation-Ecosystem",
"source": "vanshb03",
"id": "46c9c3be-1cc2-4d43-970a-7429379003b4",
"date_posted": 1753910508,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910513,
"url": "https://lifeattiktok.com/search/7532436539684702471?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer/Mobile Engineer Graduate (Monetization Technology - Ads Core Demonstration)",
"source": "vanshb03",
"id": "d783f20d-4494-4ae6-99e2-8d7a23c87491",
"date_posted": 1753910513,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910518,
"url": "https://lifeattiktok.com/search/7531158608336242962?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer (Commerce Ads)",
"source": "vanshb03",
"id": "e3f99292-e1f1-4498-9f90-d3048c01b1ec",
"date_posted": 1753910518,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910522,
"url": "https://lifeattiktok.com/search/7532349111480273159?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning/Research Engineer (Ads Core Global)",
"source": "vanshb03",
"id": "f4938280-4938-4bd2-a93e-b7170db3bee6",
"date_posted": 1753910522,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910528,
"url": "https://lifeattiktok.com/search/7532240517976721671?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer Graduate (Lead Ads Technology)",
"source": "vanshb03",
"id": "bb357a14-699a-4ac8-8958-7ed0cc5c32f7",
"date_posted": 1753910528,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024770,
"url": "https://jobs.careers.microsoft.com/global/en/job/1849297/Hardware-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Hardware Engineer",
"source": "vanshb03",
"id": "bf6782b7-ca70-4422-bf49-2d462907a09a",
"date_posted": 1753910557,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283134,
"url": "https://jobs.careers.microsoft.com/global/en/job/1851452/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "93c5c551-9bf8-4f4d-aa09-f77aed3ba9a0",
"date_posted": 1753910567,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283134,
"url": "https://jobs.careers.microsoft.com/global/en/job/1853826/Software-Engineer---Azure-Data",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - Azure Data",
"source": "vanshb03",
"id": "1e0d1ac7-e91e-4a54-b233-840ae9544e25",
"date_posted": 1753910575,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910593,
"url": "https://careers.servicenow.com/jobs/744000073378905/associate-systems-engineer/?trid=2d92f286-613b-4daf-9dfa-6340ffbecf73",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ServiceNow",
"title": "Associate Systems Engineer",
"source": "vanshb03",
"id": "1bbc1e3a-35a8-462b-a5f3-eb1764ec2e0a",
"date_posted": 1753910593,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910606,
"url": "https://www.qualtrics.com/careers/us/en/job/QUALUS6580294EXTERNALENUS/Machine-Learning-Engineer",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualtrics",
"title": "Machine Learning Engineer",
"source": "vanshb03",
"id": "ad40dcfe-e6d3-4da4-a889-4511befa669f",
"date_posted": 1753910606,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910614,
"url": "https://www.qualtrics.com/careers/us/en/job/QUALUS6922762EXTERNALENUS/Software-Engineer-I-PAAS",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualtrics",
"title": "Software Engineer I - PAAS",
"source": "vanshb03",
"id": "a04269aa-8c12-43b3-9eb6-58ccb03c1bfd",
"date_posted": 1753910614,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755183446,
"url": "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/California---San-Francisco/Product-Security-Engineer_JR305774",
"locations": [
"San Francisco, CA",
"Seattle, WA",
"Bellevue, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Salesforce",
"title": "Product Security Engineer",
"source": "vanshb03",
"id": "9dcae2be-84af-43fd-917e-615edc372970",
"date_posted": 1753910626,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910634,
"url": "https://jobs.bytedance.com/en/position/7527836662400026898/detail?spread=BSPP2KS",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Backend Software Engineer (Customer Service Platform)",
"source": "vanshb03",
"id": "7239c2a1-7dd7-445d-8e82-70399e3ef475",
"date_posted": 1753910634,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910655,
"url": "https://jobs.bytedance.com/en/position/7532618536427391240/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "43c86f03-71f1-465e-9699-dd47c29abfc5",
"date_posted": 1753910655,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758126283,
"url": "https://clio.wd3.myworkdayjobs.com/en-US/ClioCareerSite/job/Remote---Canada/Machine-Learning-Engineer_BF-REQ-3169",
"locations": [
"Remote",
"Toronto, Canada",
"Calgary, Canada",
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Clio",
"title": "Machine Learning Engineer",
"source": "vanshb03",
"id": "800d2977-2468-473b-a351-9ad3bb87cd3e",
"date_posted": 1753910672,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910680,
"url": "https://jobs.ashbyhq.com/evenup/fe3d36b4-696b-4c47-be72-2186b266035b",
"locations": [
"San Francisco, CA",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "EvenUp",
"title": "Early Career Machine Learning Engineer",
"source": "vanshb03",
"id": "55d98d27-73ee-46fe-bc9c-a9bdcc7aa12f",
"date_posted": 1753910680,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910691,
"url": "https://www.shopify.com/careers/infrastructure-engineers_202c9f29-47fa-4b55-8cbb-337eed7d92e2",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "Infrastructure Engineers",
"source": "vanshb03",
"id": "086e6c7c-c267-4f62-a41e-421ccc7e8392",
"date_posted": 1753910691,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910696,
"url": "https://www.shopify.com/careers/ml-ops-engineers_896a7d5f-5925-4915-a8e8-3438068464a4",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "ML Ops Engineers",
"source": "vanshb03",
"id": "d3e680e5-306d-42f4-bee4-efde8bb19e24",
"date_posted": 1753910696,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910701,
"url": "https://www.shopify.com/careers/data-platform-engineers_4684c36e-f913-42a8-8ff5-f4b789a8e61d",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "Data Platform Engineers",
"source": "vanshb03",
"id": "fb5679b4-067c-41b2-b730-e8b61a891f30",
"date_posted": 1753910701,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910710,
"url": "https://www.amazon.jobs/en/jobs/3044177/system-development-engineer-aws-vetting",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, AWS Vetting",
"source": "vanshb03",
"id": "e39608aa-0d48-4738-b9df-134437bb96ef",
"date_posted": 1753910710,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910729,
"url": "https://www.amazon.jobs/en/jobs/3047432/system-development-engineer-ots-delivery-software-engineering",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, OTS Delivery Software Engineering",
"source": "vanshb03",
"id": "756ec6ad-e3c7-457a-87ac-7d1b4c35c7e0",
"date_posted": 1753910729,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753974059,
"url": "https://jobs.lever.co/spotify/cf03a89d-6271-40dd-b41b-8a06798c1055",
"locations": [
"Toronto, Canada",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Spotify",
"title": "Fullstack Engineer",
"source": "vanshb03",
"id": "ddac8678-3687-477f-8916-5deba8298b17",
"date_posted": 1753910748,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753910831,
"url": "https://lifeattiktok.com/search/7531158600791705874?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Ads ML Infrastructure)",
"source": "vanshb03",
"id": "9e4cdbc5-5a9f-4b51-bb35-934ef8660b2f",
"date_posted": 1753910831,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1753931999,
"url": "https://www.metacareers.com/jobs/609052015548260",
"locations": [
"Bellevue, WA",
"Menlo Park, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Meta",
"title": "New Grad 2026: Product Security Engineer",
"source": "vanshb03",
"id": "6a47dfe6-4bf6-4966-bafb-f6b8be315bee",
"date_posted": 1753931999,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754182271,
"url": "https://job-boards.eu.greenhouse.io/stubhubinc/jobs/4648133101",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "StubHub",
"title": "Associate Product Manager - Consumer Experience",
"source": "vanshb03",
"id": "8f5f2c54-52b8-4a12-8802-dbc518ad976a",
"date_posted": 1754182271,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754190450,
"url": "https://jobs.ashbyhq.com/ramp/83075cf0-9c22-4475-9c6b-e21923a96df8",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Ramp",
"title": "New Grad 2026: Software Engineer - Backend",
"source": "vanshb03",
"id": "e908a832-5011-4036-9ce4-c41dad616fb0",
"date_posted": 1754190450,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754190456,
"url": "https://jobs.ashbyhq.com/ramp/a1229aec-1105-4c47-8533-b912e732ed89",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Ramp",
"title": "New Grad 2026: Software Engineer - Frontend",
"source": "vanshb03",
"id": "6327379a-da68-4367-bcf6-4ec69a9c9ebd",
"date_posted": 1754190456,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760207935,
"url": "https://app.ripplematch.com/v2/public/job/340fb9c1?tl=505c5953",
"locations": [
"San Francisco, CA",
"Chicago, IL",
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Reddit",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "c248dbe1-59aa-4711-a809-4708660abfa3",
"date_posted": 1754382386,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754382618,
"url": "https://job-boards.greenhouse.io/humeai/jobs/4856037008",
"locations": [
"New York, NY",
"Remote",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Hume AI",
"title": "Product Manager, Growth",
"source": "vanshb03",
"id": "14f528e5-f037-48a6-802e-c630a9f1abf9",
"date_posted": 1754382618,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557917,
"url": "https://lifeattiktok.com/search/7533739605041645832?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "SDET, Software Development Engineer in Test Graduate (TikTok Eng Test-PGC)",
"source": "vanshb03",
"id": "df2d7314-4d92-41da-ac34-4e9e90a63fcd",
"date_posted": 1754557917,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557922,
"url": "https://lifeattiktok.com/search/7534641634584185095?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer",
"source": "vanshb03",
"id": "323238e3-9ae0-4630-afd1-bc572115137f",
"date_posted": 1754557922,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557932,
"url": "https://lifeattiktok.com/search/7533712518582503687?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Product Security Engineer Graduate (Security Assurance)",
"source": "vanshb03",
"id": "e83d15ee-5de5-4ff2-a136-1f9567237343",
"date_posted": 1754557932,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557937,
"url": "https://lifeattiktok.com/search/7532626482364909842?spread=5MWH5CQ",
"locations": [
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "e2662f8d-b054-4b27-84d2-8a2ee2bd1c23",
"date_posted": 1754557937,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557941,
"url": "https://lifeattiktok.com/search/7535215880842791176?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Data Arch - AI/ML Infrastructure)",
"source": "vanshb03",
"id": "90d814e2-7ba5-428e-9b6b-58c9f3fee9dd",
"date_posted": 1754557941,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557945,
"url": "https://lifeattiktok.com/search/7535250563068528903?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Data Arch - ShortText Rec) (BS/MS)",
"source": "vanshb03",
"id": "237649d4-aba0-4da6-b166-03d63b58a697",
"date_posted": 1754557945,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557950,
"url": "https://lifeattiktok.com/search/7533377192370194706?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: (Machine Learning Engineer, Data-Search-TikTok Recommendation",
"source": "vanshb03",
"id": "465838f6-f8df-4939-ac83-53859851fa78",
"date_posted": 1754557950,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557954,
"url": "https://lifeattiktok.com/search/7533371534829095175?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer - Data - Search",
"source": "vanshb03",
"id": "ea736740-68a8-4507-a368-29772c0d518f",
"date_posted": 1754557954,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557958,
"url": "https://lifeattiktok.com/search/7535528357414570248?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Data Platfrom TikTok BP)",
"source": "vanshb03",
"id": "2eceabb9-6f55-4bae-b808-e5e013312b8e",
"date_posted": 1754557958,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557962,
"url": "https://lifeattiktok.com/search/7535396503751772423?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer (Brand Ads)",
"source": "vanshb03",
"id": "a252fd6b-6670-4aee-a78f-93d4d6781cee",
"date_posted": 1754557962,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557966,
"url": "https://lifeattiktok.com/search/7534826542867106066?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Frontend Engineer Graduate, Trust and Safety",
"source": "vanshb03",
"id": "018af844-6dcc-466a-83a8-2be2ca74eade",
"date_posted": 1754557966,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557971,
"url": "https://lifeattiktok.com/search/7535549508735174930?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Site Reliability Engineer Graduate (Compute Platform)",
"source": "vanshb03",
"id": "0f9fdd45-a7b2-4a33-aaed-6d9f4cc0c1ed",
"date_posted": 1754557971,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557975,
"url": "https://lifeattiktok.com/search/7535544480956483848?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Site Reliability Engineer Graduate (Compute Platform)",
"source": "vanshb03",
"id": "c374caff-cb5e-47a7-ad5a-637f5e86e17f",
"date_posted": 1754557975,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557979,
"url": "https://lifeattiktok.com/search/7535220808265681159?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Data Arch - Data Ecosystem )",
"source": "vanshb03",
"id": "e175b6da-bac1-4db7-baa4-87a97cef51e3",
"date_posted": 1754557979,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557983,
"url": "https://lifeattiktok.com/search/7532627070011230482?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Social",
"source": "vanshb03",
"id": "5f45aea8-91e8-47e3-ba05-fecbd9d820c6",
"date_posted": 1754557983,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557987,
"url": "https://lifeattiktok.com/search/7535599554659010834?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Monetization Technology - Brand Ads)",
"source": "vanshb03",
"id": "2653ebed-f231-4222-a608-fe7190975b6d",
"date_posted": 1754557987,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754557991,
"url": "https://lifeattiktok.com/search/7530759729113680135?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Frontend Engineer Graduate, Trust and Safety",
"source": "vanshb03",
"id": "197d4aef-2ef8-4ec0-9418-496006fa3e9d",
"date_posted": 1754557991,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558055,
"url": "https://lifeattiktok.com/search/7534641468595489032?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer - Local Services Search (BS/MS)",
"source": "vanshb03",
"id": "deaaa2b4-49b5-4969-8c5d-377bac681dbd",
"date_posted": 1754558055,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558137,
"url": "https://lifeattiktok.com/search/7533292831260920082?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Data Engineer (E-commerce)",
"source": "vanshb03",
"id": "35e6cef7-664d-4102-b1ff-e9d1d453a835",
"date_posted": 1754558137,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558141,
"url": "https://lifeattiktok.com/search/7533292447687493896?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Data Engineer (Data Platfrom TikTok BP)",
"source": "vanshb03",
"id": "9fbedd86-6523-43c2-9263-9854b7b4bda8",
"date_posted": 1754558141,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558145,
"url": "https://lifeattiktok.com/search/7534794210978187527?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Mobile Reliability (Android)",
"source": "vanshb03",
"id": "85b33ffc-2b25-48a9-9463-9243f42fd078",
"date_posted": 1754558145,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558149,
"url": "https://lifeattiktok.com/search/7534641209890588946?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer Graduate -Search E-Commerce",
"source": "vanshb03",
"id": "21c9b744-143b-42f0-b16a-d8be60d457f7",
"date_posted": 1754558149,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558154,
"url": "https://lifeattiktok.com/search/7533289397581842696?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "ec03c3e4-6c34-441a-ad3a-5d64ed749c4d",
"date_posted": 1754558154,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558158,
"url": "https://lifeattiktok.com/search/7532629935045232903?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Intelligent Creation",
"source": "vanshb03",
"id": "d19c32df-55c4-4eca-b686-be1736e43c22",
"date_posted": 1754558158,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558165,
"url": "https://lifeattiktok.com/search/7533278507406182674?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Experimentation and Evaluation)",
"source": "vanshb03",
"id": "63b01457-858a-4455-b17e-06d395b2efa1",
"date_posted": 1754558165,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558171,
"url": "https://lifeattiktok.com/search/7532629934058178824?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate User Growth",
"source": "vanshb03",
"id": "d57bf78a-b5d2-4a9d-bde5-f390047362cb",
"date_posted": 1754558171,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558175,
"url": "https://lifeattiktok.com/search/7532627070011771154?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Search",
"source": "vanshb03",
"id": "eb59c6c4-d38e-4ec9-ba8b-912f43d2201e",
"date_posted": 1754558175,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558180,
"url": "https://lifeattiktok.com/search/7533106620768012562?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Product Infrastructure",
"source": "vanshb03",
"id": "4b7a3e44-2bf4-4a6d-a41c-046e72bad7db",
"date_posted": 1754558180,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558184,
"url": "https://lifeattiktok.com/search/7532626353242786055?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate Open Platform",
"source": "vanshb03",
"id": "c7102462-cd53-4a83-ae42-ee9ac01601e5",
"date_posted": 1754558184,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558188,
"url": "https://lifeattiktok.com/search/7533387057666754834?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "SDET, Software Development Engineer in Test Graduate (TikTok Eng Test-Privacy Product)",
"source": "vanshb03",
"id": "734b57e4-0e35-4b79-90a4-e68be1edc30f",
"date_posted": 1754558188,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558202,
"url": "https://lifeattiktok.com/search/7532631803707263240?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate PGC",
"source": "vanshb03",
"id": "84e4d646-f8fa-4e5e-8670-72f4bcc6fd91",
"date_posted": 1754558202,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558209,
"url": "https://lifeattiktok.com/search/7533719102990190866?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate - Data-Search",
"source": "vanshb03",
"id": "674663b1-3c0d-45e8-816f-092f68f04b64",
"date_posted": 1754558209,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558302,
"url": "https://jobs.bytedance.com/en/position/7531126749275851026/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer, Authorization-US",
"source": "vanshb03",
"id": "9cdca74e-f2ef-4d8b-8572-77ac46edd421",
"date_posted": 1754558302,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558316,
"url": "https://jobs.bytedance.com/en/position/7534838755829696776/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "Site Reliability Engineer Graduate [Security Engineering-US]",
"source": "vanshb03",
"id": "4c7ca482-cc0f-4d2c-8fd0-4babb84e9776",
"date_posted": 1754558316,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558326,
"url": "https://www.tesla.com/careers/search/job/247659",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Machine Learning Engineer, Model Optimization & Deployment, Optimus",
"source": "vanshb03",
"id": "9e6d0f56-8b8b-4e86-88c7-53a871767e01",
"date_posted": 1754558326,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558333,
"url": "https://www.tesla.com/careers/search/job/247595",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Automation Controls Engineer, Megapack",
"source": "vanshb03",
"id": "4974de9f-0d94-48d3-82df-7725a8ffe16d",
"date_posted": 1754558333,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558338,
"url": "https://www.tesla.com/careers/search/job/247480",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Systems Engineer, Collision Avoidance, Autonomy & Robotics",
"source": "vanshb03",
"id": "95775410-52fa-4053-9206-3725ab5cad93",
"date_posted": 1754558338,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024770,
"url": "https://jobs.careers.microsoft.com/global/en/job/1857028/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "500c94b3-e531-4b1c-84ef-188bba69e50c",
"date_posted": 1754558347,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558357,
"url": "https://www.amazon.jobs/en/jobs/3051896/system-development-engineer-amazon-robotics",
"locations": [
"Arlington, VA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, Amazon Robotics",
"source": "vanshb03",
"id": "57e2bd62-a4f3-4bac-824d-9e418072b439",
"date_posted": 1754558357,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266875,
"url": "https://autodesk.wd1.myworkdayjobs.com/Ext/job/San-Francisco-CA-USA/Software-Engineer---New-Grad-2025_25WD89315",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Autodesk",
"title": "New Grad 2025: Software Engineer",
"source": "vanshb03",
"id": "e34bc83e-df17-4df5-8825-93fee7224a89",
"date_posted": 1754558384,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558660,
"url": "https://uhg.taleo.net/careersection/10780/jobdetail.ftl?job=2300249&lang=en",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "UnitedHealth Group",
"title": "Software Engineer - Python, ETL, SQL",
"source": "vanshb03",
"id": "b5932cea-ec77-4b8a-b8c6-a2f03ce401cf",
"date_posted": 1754558660,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558666,
"url": "https://tas-uhg.taleo.net/careersection/10780/jobdetail.ftl?job=2300249&lang=en",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "UnitedHealth Group",
"title": "Software Engineer - Python, ETL, SQL",
"source": "vanshb03",
"id": "96ffba7e-ce08-4137-a26b-ff50787dc9a1",
"date_posted": 1754558666,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558675,
"url": "https://jobs.royalcaribbeangroup.com/job/Miramar-Associate-Engineer%2C-Software-FL-33132/1314694500/",
"locations": [
"Miramar, FL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Royal Caribbean Group",
"title": "Associate Engineer, Software",
"source": "vanshb03",
"id": "a7abab18-2ce4-4171-9d33-8714e473c637",
"date_posted": 1754558675,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558686,
"url": "https://recruiting.paylocity.com/Recruiting/Jobs/Details/3477495",
"locations": [
"Troy, MI"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Detroit Defense",
"title": "Software Test Engineer",
"source": "vanshb03",
"id": "527bb77a-c5c1-4263-ba14-983c45c96372",
"date_posted": 1754558686,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468765,
"url": "https://job-boards.greenhouse.io/cooksys/jobs/4872299008",
"locations": [
"Nashville, TN"
],
"sponsorship": "Other",
"active": false,
"company_name": "Cook Systems",
"title": "Software Developer",
"source": "vanshb03",
"id": "47f74940-bb5c-4701-b806-144cfb330e30",
"date_posted": 1754558693,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755698978,
"url": "https://job-boards.greenhouse.io/twilio/jobs/7061880",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Twilio",
"title": "Machine Learning & Data Engineer",
"source": "vanshb03",
"id": "7ff6b89d-b2c3-4f52-8286-5027337fcbce",
"date_posted": 1754558713,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442804,
"url": "https://jobs.lever.co/lumafield/0bdaed8e-3234-4073-afa6-410d1362fe25",
"locations": [
"Boston, MA",
"Everett, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Lumafield",
"title": "Embedded Software Engineer",
"source": "vanshb03",
"id": "254fb26c-539c-42bd-b226-4884765eb198",
"date_posted": 1754558731,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490754,
"url": "https://job-boards.greenhouse.io/niantic/jobs/8108536002",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Niantic",
"title": "Software Engineer, Client",
"source": "vanshb03",
"id": "cac2465f-3b42-41bb-8636-5834bc5511fd",
"date_posted": 1754558739,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558748,
"url": "https://hdjq.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/25024266",
"locations": [
"Shakopee, MN"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Emerson",
"title": "Embedded Software Engineer",
"source": "vanshb03",
"id": "f47dc558-59c2-4c6f-8b1e-bfeb5df7395e",
"date_posted": 1754558748,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638645,
"url": "https://job-boards.greenhouse.io/pingidentity/jobs/8084784002",
"locations": [
"Denver, CO"
],
"sponsorship": "Other",
"active": false,
"company_name": "Ping Identity",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "11288e3f-6342-4aa7-ade3-8518838ef3b1",
"date_posted": 1754558754,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558790,
"url": "https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=cf1a92f4-16eb-4267-86ca-bc956024f426&jobId=553315",
"locations": [
"Hamilton, NJ"
],
"sponsorship": "Other",
"active": true,
"company_name": "Mathtech",
"title": "Associate Software Developer",
"source": "vanshb03",
"id": "a3c476d8-893d-4647-ae26-c33f13121cee",
"date_posted": 1754558790,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754558806,
"url": "https://jacobs.taleo.net/careersection/ex3/jobdetail.ftl?job=ADV000B3R&lang=en",
"locations": [
"Kennedy Space Center, FL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Jacobs",
"title": "Software Engineer, Entry",
"source": "vanshb03",
"id": "61b3df3a-e19c-4840-8796-1fd3d16038f6",
"date_posted": 1754558806,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755266882,
"url": "https://boeing.wd1.myworkdayjobs.com/external_careers/job/USA---Daytona-Beach-FL/Associate-Software-Engineer-Developer--Development-_JR2025466830-1",
"locations": [
"Daytona Beach, FL"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "The Boeing Company",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "bf6cfde2-8b2d-463b-9ee9-91568b472aa8",
"date_posted": 1754558811,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347370,
"url": "https://adobe.wd5.myworkdayjobs.com/external_experienced/job/Lehi/Software-Development-Engineer_R157704",
"locations": [
"Lehi, UT"
],
"sponsorship": "Other",
"active": false,
"company_name": "Adobe",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "a3e13702-95d4-406e-a507-1e7d1ce57927",
"date_posted": 1754558833,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760207857,
"url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/jobsearch/job/304100",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Oracle",
"title": "Undergrad Software Engineer",
"source": "vanshb03",
"id": "6129791f-6cf1-423d-bd37-c912e67e516b",
"date_posted": 1754558843,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754706230,
"url": "https://www.databricks.com/company/careers/university-recruiting/software-engineer---new-grad-2026-start-6865698002",
"locations": [
"Bellevue, WA",
"Mountain View, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Databricks",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "14eabd84-8b95-40f7-81db-425c63c52927",
"date_posted": 1754706230,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1754706376,
"url": "https://www.databricks.com/company/careers/university-recruiting/data-scientist---new-grad-2026-start-6866554002",
"locations": [
"Mountain View, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Databricks",
"title": "New Grad 2026: Data Scientist",
"source": "vanshb03",
"id": "6bdfc27f-abcc-4fdf-997c-b8cad0e6692d",
"date_posted": 1754706376,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760207843,
"url": "https://www.metacareers.com/jobs/8187200048015588",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Meta",
"title": "Software Engineer",
"source": "vanshb03",
"id": "19fd8c9b-ee2b-4667-9a4a-22f78706d02d",
"date_posted": 1755112283,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755113970,
"url": "https://jobs.ashbyhq.com/brm.ai/05cad7f7-2194-480d-8e70-7338cfd2a189/application",
"company_name": "BRM",
"title": "Entry Level Software Engineer",
"locations": [
"San Francisco, CA"
],
"active": true,
"source": "vanshb03",
"id": "f858a9c5-9848-4c93-9f14-dabd4522cb6d",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://careers-i3-corps.icims.com/jobs/4833/entry-level-full-stack-software-engineer/job",
"company_name": "i3",
"title": "Full-Stack Software Engineer",
"locations": [
"Hunstville, AL"
],
"active": true,
"source": "vanshb03",
"id": "36285a24-404c-424b-8113-e60475bd09d4",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755113970,
"url": "https:/.workable.com/trexquant/j/A634E0E3F4/",
"company_name": "Trexquant",
"title": "Quantitative Researcher",
"locations": [
"Stamford, CT"
],
"active": true,
"source": "vanshb03",
"id": "b884b542-124d-48c2-ac9b-24ea06aec70c",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755900211,
"url": "https://travelers.wd5.myworkdayjobs.com/External/job/MD---Baltimore/Software-Engineer-I---AWS_R-46038",
"company_name": "The Travelers Companies",
"title": "Software Engineer I - AWS",
"locations": [
"Baltimore, MD"
],
"active": false,
"source": "vanshb03",
"id": "6abf3a97-6552-4953-a1c5-8507444948e1",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://careers.roblox.com/jobs/7114754?gh_jid=7114754",
"company_name": "Roblox",
"title": "Software Engineer - Early Career",
"locations": [
"San Mateo, CA"
],
"active": true,
"source": "vanshb03",
"id": "a7c65e95-7b7a-44b6-ab78-77df6ef85f05",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https:/.workable.com/trexquant/j/A634E0E3F4",
"company_name": "Trexquant",
"title": "Quantitative Researcher - Early Career",
"locations": [
"Stamford, CT"
],
"active": true,
"source": "vanshb03",
"id": "c77beea7-13ef-4e3e-940e-ad734812c168",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://careers-i3-corps.icims.com/jobs/4833/job",
"company_name": "i3",
"title": "Entry Level Full-Stack Software Engineer",
"locations": [
"Huntsville, AL"
],
"active": true,
"source": "vanshb03",
"id": "bcccb7d7-836e-4fd2-9c12-339db8b1ade2",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://bostonscientific.eightfold.ai/careers/job/563602803047194",
"company_name": "Boston Scientific",
"title": "Software Engineer I - Engineering - Development",
"locations": [
"Roseville, MN"
],
"active": true,
"source": "vanshb03",
"id": "ff35da1b-aa4e-4040-aff2-49c84084d8b0",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://bostonscientific.eightfold.ai/careers/job/563602803067424",
"company_name": "Boston Scientific",
"title": "Software Engineer I - Engineering - Development",
"locations": [
"Roseville, MN"
],
"active": true,
"source": "vanshb03",
"id": "8f0ae0c6-ffb1-4b9f-83c8-cb25cfe231ba",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://maxar.wd1.myworkdayjobs.com/en-US/Maxar/job/Herndon-VA/Forward-Deployed-Software-Engineer-I_R22647-1",
"company_name": "Maxar",
"title": "Forward Deployed Software Engineer I",
"locations": [
"Herndon, VA"
],
"active": false,
"source": "vanshb03",
"id": "5b91c136-e063-42c9-a37c-b43ab978d71b",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755266905,
"url": "https://radiancetech.wd12.myworkdayjobs.com/en-US/radiance_external/job/Beavercreek-OH/Junior-Full-Stack-Software-Engineer_HR101733",
"company_name": "Radiance Technologies",
"title": "Junior Full Stack Software Engineer",
"locations": [
"Beavercreek, OH"
],
"active": false,
"source": "vanshb03",
"id": "71500ea8-e184-45ed-b125-e33bcee4d344",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755698979,
"url": "https://job-boards.greenhouse.io/celonis/jobs/6616403003?gh_jid=6616403003",
"company_name": "Celonis",
"title": "Associate Value Engineer (AI-Driven Data Science & Analytics)",
"locations": [
"New York, NY"
],
"active": false,
"source": "vanshb03",
"id": "ff5bcd26-05f7-44ff-a867-cbf89f0c731f",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1769923603,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-WA-Seattle/Research-Scientist--Robotics-Research---New-College-Grad-2025_JR2001017",
"company_name": "NVIDIA",
"title": "Research Scientist, Robotics Research",
"locations": [
"Seattle, WA"
],
"active": false,
"source": "vanshb03",
"id": "4b35d640-027a-4597-9d66-bd6eb42d4271",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755183492,
"url": "https://wd1.myworkdaysite.com/recruiting/ssctech/SSCTechnologies/job/Union-NJ/Junior-AI-Assisted-Software-Engineer_R36039",
"company_name": "SS&C",
"title": "Junior AI-Assisted Software Engineer",
"locations": [
"South Orange, NJ"
],
"active": false,
"source": "vanshb03",
"id": "09e0939c-e64a-486a-9ae0-845760c43167",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://www.globalrelay.com/careers/jobs?gh_jid=5616305004",
"company_name": "Global Relay",
"title": "Junior Software Developer Engineer in Test - C#",
"locations": [
"Vancouver, BC, Canada"
],
"active": true,
"source": "vanshb03",
"id": "a1fe1160-a32c-41b1-a47d-c72c5d2785d6",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755266916,
"url": "https://bmo.wd3.myworkdayjobs.com/en-US/External/job/Chicago-IL-USA/Software-Engineer--New-or-Recent-Graduate-_R250019232",
"company_name": "BMO",
"title": "Software Engineer",
"locations": [
"Chicago, IL"
],
"active": false,
"source": "vanshb03",
"id": "3e6b9600-16c5-4c88-a2b6-0337f55a153b",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755347404,
"url": "https://directv.wd1.myworkdayjobs.com/en-US/careers/job/El-Segundo-CA/IT-Software-Engineer-1_R250209",
"company_name": "DIRECTV",
"title": "IT Software Engineer 1",
"locations": [
"El Segundo, CA",
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "218372ad-8933-4b6e-8bbc-bfdcdb9a1a65",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755900229,
"url": "https://moog.wd5.myworkdayjobs.com/en-US/moog_external_career_site/job/Torrance-CA/Eng--Assc_R-25-13250",
"company_name": "Moog",
"title": "Associate Software Engineer",
"locations": [
"Torrance, CA"
],
"active": false,
"source": "vanshb03",
"id": "036be4a0-9117-4b6b-8621-ae15e1c191fa",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755113970,
"url": "https://careers-peraton.icims.com/jobs/158789/software-engineering%2c-associate/job",
"company_name": "Peraton",
"title": "Software Engineering, Associate",
"locations": [
"Herndon, VA"
],
"active": true,
"source": "vanshb03",
"id": "3ba072d2-b1ea-44e6-9761-57214ac33e65",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755698979,
"url": "https://job-boards.greenhouse.io/celonis/jobs/6616403003",
"company_name": "Celonis",
"title": "Associate Value Engineer (AI-Driven Data Science & Analytics) - Orbit Program",
"locations": [
"New York, NY"
],
"active": false,
"source": "vanshb03",
"id": "c0126364-c0ae-42fe-b291-824058e4de38",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755900235,
"url": "https://usventure.wd1.myworkdayjobs.com/en-US/usvexternal/job/WI---Green-Bay/Data-Analyst-I--Breakthrough-_R3745",
"company_name": "U.S. Venture",
"title": "Data Analyst I",
"locations": [
"Green Bay, WI"
],
"active": false,
"source": "vanshb03",
"id": "2cbb9b88-7351-4dfc-ac0c-70bd0c1effc6",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755347427,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/MD720-9861-Broken-Land-Pkwy-Columbia-9861-Broken-Land-Parkway-Suite-400-Columbia-MD-21046-USA/Cyber-Electronic-Warfare-Engineer_01782149",
"company_name": "RTX",
"title": "Cyber/Electronic Warfare Research Engineer I",
"locations": [
"Columbia, MD"
],
"active": false,
"source": "vanshb03",
"id": "6ddd59c0-21ac-4e72-894d-ab5682be9df6",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755266385,
"url": "https://directv.wd1.myworkdayjobs.com/careers/job/El-Segundo-CA/IT-Software-Engineer-1_R250209",
"company_name": "DIRECTV",
"title": "IT Software Engineer 1",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "6f8c51f3-31ba-434a-8f59-914de3c23785",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756355567,
"url": "https://job-boards.greenhouse.io/tripadvisor/jobs/6903058",
"company_name": "TripAdvisor",
"title": "Software Engineer I - Backend Focus - Viator",
"locations": [
"London, UK",
"Oxford, UK"
],
"active": false,
"source": "vanshb03",
"id": "10a0e7c6-2ce2-453b-9f93-8466d7cbc097",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1769923608,
"url": "https://hntb.wd5.myworkdayjobs.com/HNTB_Careers/job/Kansas-City-MO/Returning-New-Grad-Software-Engineer-I--Great-Lakes-Division--For-Current-Former-HNTB-Interns-Only_R-26770-1",
"company_name": "HNTB",
"title": "Returning New Grad Software Engineer I",
"locations": [
"Chicago, IL",
"Kansas City, MO",
"Overland Park, KS"
],
"active": false,
"source": "vanshb03",
"id": "45ca3c6f-4fc6-45e0-a76b-3024a0e72b01",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442791,
"url": "https://job-boards.greenhouse.io/andurilindustries/jobs/4802146007?gh_jid=4802146007&gh_src=",
"company_name": "Anduril Industries",
"title": "Early Career Software Engineer",
"locations": [
"Costa Mesa, CA"
],
"active": false,
"source": "vanshb03",
"id": "28e49280-6352-46ce-9426-259596240748",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755113970,
"url": "https://job-boards.greenhouse.io/andurilindustries/jobs/4164476007?gh_jid=4164476007&gh_src=",
"company_name": "Anduril Industries",
"title": "Air Dominance & Strike - Flight Software Engineer, Embedded C/C++",
"locations": [
"Costa Mesa, CA"
],
"active": true,
"source": "vanshb03",
"id": "f17f7754-99fc-48c6-afc2-da2067963cb3",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755113970,
"url": "https://job-boards.greenhouse.io/andurilindustries/jobs/4776690007?gh_jid=4776690007&gh_src=",
"company_name": "Anduril Industries",
"title": "Software Engineer, Connected Warfare",
"locations": [
"Costa Mesa, CA"
],
"active": true,
"source": "vanshb03",
"id": "06c3e021-6650-47c5-b028-72dbe45095b4",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755900247,
"url": "https://cvshealth.wd1.myworkdayjobs.com/en-US/cvs_health_careers/job/TX---Work-from-home/Associate-Cloud-Architect_R0619090",
"company_name": "CVS Health",
"title": "Associate Cloud Architect",
"locations": [
"Remote, TX"
],
"active": false,
"source": "vanshb03",
"id": "295841ad-3e6c-4f0c-8bbb-e14b57d3281b",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://remodelhealth.com/resources/job/?gh_jid=4880033008",
"company_name": "Remodel Health",
"title": "Junior Software Engineer",
"locations": [
"Indianapolis, IN"
],
"active": true,
"source": "vanshb03",
"id": "c9a38815-68ea-46d9-a9e0-807396e9173d",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755347455,
"url": "https://ssctech.wd1.myworkdayjobs.com/en-US/ssctechnologies/job/Union-NJ/Junior-AI-Assisted-Software-Engineer_R36039",
"company_name": "SS&C",
"title": "Junior AI-Assisted Software Engineer",
"locations": [
"Union, NJ"
],
"active": false,
"source": "vanshb03",
"id": "73d540ab-b25d-4412-b906-0dcf29270afc",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1756355650,
"url": "https://cat.wd5.myworkdayjobs.com/en-US/solarturbines/job/San-Diego-California/Entry-Level-Controls---Software-Test-Engineer_R0000318546",
"company_name": "Solar Turbines",
"title": "Entry Level Controls & Software Test Engineer",
"locations": [
"San Diego, CA"
],
"active": false,
"source": "vanshb03",
"id": "927ab3e1-7e13-40ee-94ed-e4bc401490ed",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755347471,
"url": "https://barclays.wd3.myworkdayjobs.com/en-US/external_career_site_barclays/job/745-7th-Avenue-New-York/Quantitative-Analytics-Associate-Graduate-Program-2026-New-York_JR-0000060403",
"company_name": "Barclays",
"title": "Quantitative Analytics Associate Graduate Program",
"locations": [
"Manhattan, NY"
],
"active": false,
"source": "vanshb03",
"id": "0faac3d5-975e-4982-8964-12d2322d2b14",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1756355654,
"url": "https://homedepot.wd5.myworkdayjobs.com/en-US/careerdepot/job/STORE-SUPPORT-CENTER-ATLANTA---9090/Associate-Data-Scientist---MET_Req153698-1",
"company_name": "The Home Depot",
"title": "Associate Data Scientist - MET",
"locations": [
"Atlanta, GA"
],
"active": false,
"source": "vanshb03",
"id": "f080d3f4-a4e5-4ed1-bbbb-2520085cb96e",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755113970,
"url": "https:/.workable.com/scitec/j/45B1B9BA15/",
"company_name": "SciTec",
"title": "Associate / Staff Mission Data Analyst",
"locations": [
"Boulder, CO"
],
"active": true,
"source": "vanshb03",
"id": "2184fbcb-b496-4164-914a-29ab679015d2",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755113970,
"url": "https://jobs.smartrecruiters.com/prosidianconsulting/743999691677974",
"company_name": "Prosidian Consulting",
"title": "ITSM IT Security Engineer I",
"locations": [
"Washington, DC"
],
"active": true,
"source": "vanshb03",
"id": "f1761f47-a16e-44fa-8004-93b662a52103",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468829,
"url": "https://amainc.wd12.myworkdayjobs.com/en-US/ama_careers/job/Hampton-VA/AI-ML-Research-Associate_R-100359",
"company_name": "Analytical Mechanics Associates",
"title": "AI/ML Research Associate",
"locations": [
"Hampton, VA",
"Remote"
],
"active": false,
"source": "vanshb03",
"id": "68b1c0e8-6847-44b8-9db9-44e406bc351e",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755900271,
"url": "https://salesforce.wd12.myworkdayjobs.com/en-us/External_Career_Site/job/California---San-Francisco/Software-Engineering-AMTS--New-Grad-_JR307625-1",
"company_name": "Salesforce",
"title": "Software Engineering AMTS - New Grad",
"locations": [
"Palo Alto, CA",
"Seattle, WA",
"SF",
"Bellevue, WA"
],
"active": false,
"source": "vanshb03",
"id": "2211f930-6bf9-418f-88cb-6743fc6e1376",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442791,
"url": "https://boards.greenhouse.io/andurilindustries/jobs/4824364007",
"company_name": "Anduril",
"title": "Early Career Software Engineer",
"locations": [
"Seattle, WA"
],
"active": false,
"source": "vanshb03",
"id": "89f44120-f54c-47cb-bf54-e770d332eeb3",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442791,
"url": "https://boards.greenhouse.io/andurilindustries/jobs/4824378007",
"company_name": "Anduril",
"title": "Early Career Software Engineer",
"locations": [
"Atlanta, GA"
],
"active": false,
"source": "vanshb03",
"id": "d438cdd8-4335-4e90-a7d4-9e2186e5301c",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755699123,
"url": "https://broadcom.wd1.myworkdayjobs.com/External_Career/job/USA-TX-Plano-Legacy-Drive-Suite-700/Entry-level-Mainframe-Software-Development-Engineer_R023538",
"company_name": "Broadcom Limited",
"title": "Entry level Mainframe Software Development Engineer",
"locations": [
"Plano, TX"
],
"active": false,
"source": "vanshb03",
"id": "f97bd1f4-1d17-4f7e-908e-535a6ca2d53e",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755113970,
"url": "https://university-uber.icims.com/jobs/147250/job",
"company_name": "Uber",
"title": "New Grad 2025: Software Engineer I",
"locations": [
"San Francisco, CA"
],
"active": false,
"source": "vanshb03",
"id": "4f0136c5-f568-421a-bdbb-c43d63efb9df",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755266430,
"url": "https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/USA---Long-Beach-CA/Software-and-Electrical-Systems-Simulation-Integration-Engineer--Entry-Level-or-Associate-_JR2025463055-2",
"company_name": "Boeing",
"title": "Software and Electrical Systems Simulation Integration Engineer",
"locations": [
"Long Beach, CA"
],
"active": false,
"source": "vanshb03",
"id": "c5ca65e6-04e0-4d73-b8f8-46edbc12949a",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755113970,
"url": "https://careers-gannettfleming.icims.com/jobs/12404/entry-level-software-developer/job",
"company_name": "Gannett Fleming",
"title": "Entry Level Software Developer",
"locations": [
"San Diego, CA",
"Chicago, IL"
],
"active": true,
"source": "vanshb03",
"id": "6a43aabf-45df-4a04-9cca-191d81cc8a3e",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755113970,
"url": "https://bostonscientific.eightfold.ai/careers/job/563602803102071",
"company_name": "Boston Scientific",
"title": "Software Engineer I - Engineering - Development",
"locations": [
"Roseville, MN"
],
"active": true,
"source": "vanshb03",
"id": "21199592-f3a7-48ce-89cb-6ccd9ab3bbe9",
"date_posted": 1755113970,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1755115139,
"url": "https://jobs.bytedance.com/en/position/7535233571066349842/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer Graduate (Applied Machine Learning - MLDev)",
"source": "vanshb03",
"id": "5b6eac72-8c00-4cf6-b79b-316e7573ba8d",
"date_posted": 1755115139,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024771,
"url": "https://jobs.careers.microsoft.com/global/en/job/1858310/Software-Engineer",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "d30718db-b9b9-45d7-8b7a-c04b5e215c99",
"date_posted": 1755115149,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115157,
"url": "https://jobs.ashbyhq.com/suno/991c9785-9bd5-499a-98aa-146e8c947752",
"locations": [
"Boston, MA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Suno",
"title": "Software Engineer, Early Career",
"source": "vanshb03",
"id": "327c146b-66e5-4035-9b7d-8028c929a624",
"date_posted": 1755115157,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115162,
"url": "https://jobs.bytedance.com/en/position/7532538236133902599/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer (Applied Machine Learning - Enterprise)",
"source": "vanshb03",
"id": "602d7e2a-5092-489a-9266-5312b0077415",
"date_posted": 1755115162,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115167,
"url": "https://jobs.bytedance.com/en/position/7536272435440716040/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer (Dev Infra)",
"source": "vanshb03",
"id": "05b2d7c1-02ca-4f78-ba54-b5cc91b46ad7",
"date_posted": 1755115167,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115173,
"url": "https://lifeattiktok.com/search/7535606471191824647?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer (Monetization Technology - TikTok Ads Creative & Ecosystem)",
"source": "vanshb03",
"id": "a7fa4e37-6a7a-4740-a54d-9de5078db5b6",
"date_posted": 1755115173,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024771,
"url": "https://jobs.careers.microsoft.com/global/en/job/1860403/Software-Engineer%3A-Microsoft-AI-Development-Acceleration-Program%2C-Redmond",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer: Microsoft AI Development Acceleration Program, Redmond",
"source": "vanshb03",
"id": "426bda00-15b1-4ce6-9153-933926017785",
"date_posted": 1755115181,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115188,
"url": "https://www.amazon.jobs/en/jobs/3057120/systems-development-engineer-i-ops-tech-solution-ots",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Systems Development Engineer I, Ops Tech Solution (OTS)",
"source": "vanshb03",
"id": "ce345b4a-8624-4947-a39a-f8ae8c438090",
"date_posted": 1755115188,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115232,
"url": "https://jobs.bytedance.com/en/position/7537121677185534216/detail?spread=BSPP2KS",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Network Engineer (Edge Network)",
"source": "vanshb03",
"id": "5231c14e-4ca3-477c-8ff9-853c428c9eba",
"date_posted": 1755115232,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115238,
"url": "https://lifeattiktok.com/search/7536356589390301458?spread=5MWH5CQ",
"locations": [
"San Jose"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Recommendation Platform)",
"source": "vanshb03",
"id": "3b4462db-6f92-4f9a-979c-9f340461fd30",
"date_posted": 1755115238,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115244,
"url": "https://ats.rippling.com/en-CA/rippling/jobs/393b2982-14b0-4715-b6ea-a83353e95e12",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Rippling",
"title": "New Grad 2025: Software Engineer",
"source": "vanshb03",
"id": "a3e7a515-dad3-46f0-b16f-4d2127fe5205",
"date_posted": 1755115244,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115416,
"url": "https://www.jumptrading.com/careers/7078491/",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Jump Trading",
"title": "Tech Ops Engineer",
"source": "vanshb03",
"id": "07084fd0-9e7d-4b12-b361-e3d3e97d7d35",
"date_posted": 1755115416,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115437,
"url": "https://www.citadelsecurities.com/careers/details/c-software-engineer-4/",
"locations": [
"Miami, FL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citadel Securities",
"title": "C++ Software Engineer",
"source": "vanshb03",
"id": "1439af31-320e-4a34-adb5-d89754a8d8be",
"date_posted": 1755115437,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442804,
"url": "https://job-boards.greenhouse.io/figureai/jobs/4589430006",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Figure",
"title": "Embedded Systems Integration Engineer",
"source": "vanshb03",
"id": "c9e7f13d-2357-4885-87a7-2575d4c19368",
"date_posted": 1755115477,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115488,
"url": "https://www.amazon.jobs/en/jobs/3054843/robotics-systems-engineer-amazon-robotics-deployment-engineering",
"locations": [
"Austin, TX",
"Seattle, WA",
"North Reading, MA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Robotics Systems Engineer, Amazon Robotics Deployment Engineering",
"source": "vanshb03",
"id": "f059be4f-04cb-4295-a76c-ad5b961e1cd7",
"date_posted": 1755115488,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115496,
"url": "https://lifeattiktok.com/search/7532281787985840392?spread=5MWH5CQ",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Product Manager Graduate (TikTok Shop User Product)",
"source": "vanshb03",
"id": "facf97ef-473d-4798-875a-870dcbc2773f",
"date_posted": 1755115496,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115505,
"url": "https://www.tesla.com/careers/search/job/242474",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Technical Program Manager, Energy Software",
"source": "vanshb03",
"id": "c5f9dafd-81ce-419f-9932-9a99e8cd8ccc",
"date_posted": 1755115505,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115509,
"url": "https://lifeattiktok.com/search/7534966101852539144?spread=5MWH5CQ",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Product Manager (SMB)",
"source": "vanshb03",
"id": "25cd60a3-899d-4473-a63d-a3b5895495b3",
"date_posted": 1755115509,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115517,
"url": "https://lifeattiktok.com/search/7532815853353863432?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Product Manager, Content Ecosystem",
"source": "vanshb03",
"id": "c22d03b7-3ed5-4bc7-87e0-48396758eaaa",
"date_posted": 1755115517,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760207647,
"url": "https://boards.greenhouse.io/embed/job_app?for=blackedgecapital&token=4595489005",
"locations": [
"Chicago, IL"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"company_name": "BlackEdge Capital",
"title": "New Grad 2026: Quantitative Developer",
"source": "vanshb03",
"id": "ebf6090d-3ec4-40c9-860f-c1e06e2fa19f",
"date_posted": 1755115525,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755115537,
"url": "https://www.hudsonrivertrading.com/hrt-job/algorithm-developer-quant-researcher-2026-grads/",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Hudson River Trading",
"title": "New Grad 2026: Algorithm Developer",
"source": "vanshb03",
"id": "04eed366-75cb-43ea-9611-16ea7895086f",
"date_posted": 1755115537,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490754,
"url": "https://job-boards.greenhouse.io/geotab/jobs/4556235008",
"company_name": "Geotab",
"title": "Software Developer(role says Sr on post but just apply twin)",
"locations": [
"Toronto",
"Waterloo",
"Oakville"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "Willjianger9",
"id": "4bb06ca8-f121-4630-bdee-3fe962322bfd",
"date_posted": 1755122119,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755699129,
"url": "https://keybank.wd5.myworkdayjobs.com/en-US/External_Career_Site/job/Cleveland-OH/XMLNAME-2026-Analytics-and-Quantitative-Modeling-Rotational-Analyst-Program---Cleveland_R-33876-1",
"company_name": "KeyBank",
"title": "Analytics and Quantitative Modeling Rotational Analyst Program",
"locations": [
"Cleveland, OH"
],
"active": false,
"source": "vanshb03",
"id": "492a48d1-d31c-4ce1-b580-6884ca4d441f",
"date_posted": 1755182907,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1755182907,
"url": "https://triafed.com/jobs/?gh_jid=4881899008",
"company_name": "Tria Federal",
"title": "Data Analyst-Level I",
"locations": [
"Falls Church, VA"
],
"active": true,
"source": "vanshb03",
"id": "239aa5b3-a22d-4eac-ae1f-7f6b5b2157de",
"date_posted": 1755182907,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1760078848,
"url": "https://job-boards.greenhouse.io/xpengmotors/jobs/8091749002",
"locations": [
"Santa Clara, CA",
"San Diego, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "XPENG",
"title": "Autonomous Driving Center Full-Time Position",
"source": "vanshb03",
"id": "cc940ed1-70e0-4e00-8751-243789d8da4b",
"date_posted": 1755206165,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347465,
"url": "https://joinbytedance.com/search/7535903852755814674",
"locations": [
"Seattle"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "Site Reliability Engineer (Data Infrastructure)",
"source": "vanshb03",
"id": "81a013c8-6a39-4617-bc48-ed170561b14f",
"date_posted": 1755347465,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347470,
"url": "https://joinbytedance.com/search/7538114876280817927",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Cloud Network Engineer (Physical Network Infra)",
"source": "vanshb03",
"id": "cf14bb1a-7012-4877-a5a3-fce77b5f5ee9",
"date_posted": 1755347470,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347481,
"url": "https://joinbytedance.com/search/7538109046751463688",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Network Engineer (Physical Network Infra)",
"source": "vanshb03",
"id": "29f8054c-2e1d-41ed-85be-110be76378ec",
"date_posted": 1755347481,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347488,
"url": "https://joinbytedance.com/search/7538106304578963730",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Network Engineer (Physical Network Infra)",
"source": "vanshb03",
"id": "abd94d83-42cf-4869-9d0b-f2e6292f690d",
"date_posted": 1755347488,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347506,
"url": "https://www.tesla.com/careers/search/job/248409",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Core Infrastructure, AI",
"source": "vanshb03",
"id": "a7f3aa67-8eef-44db-bc75-ca30fac1c2d6",
"date_posted": 1755347506,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347510,
"url": "https://joinbytedance.com/search/7538433821165259015",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Cloud Network Engineer (Physical Network Infra)",
"source": "vanshb03",
"id": "c3a3ac37-e1e9-4248-9ce3-7b050755466e",
"date_posted": 1755347510,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347514,
"url": "https://joinbytedance.com/search/7538120693880834322",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer (Edge Platform)",
"source": "vanshb03",
"id": "dc734027-015b-4251-a7f9-91ba52c325f1",
"date_posted": 1755347514,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347519,
"url": "https://lifeattiktok.com/search/7538325343598741767",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Foundation Platform)",
"source": "vanshb03",
"id": "1e343c2e-d449-4973-a233-341f6dc83290",
"date_posted": 1755347519,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347525,
"url": "https://lifeattiktok.com/search/7538318336657606930",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Media Platform)",
"source": "vanshb03",
"id": "c9accb7e-57af-4a8e-8791-57a6f59be7e2",
"date_posted": 1755347525,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347531,
"url": "https://lifeattiktok.com/search/7534982208201984274",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Machine Learning Engineer Graduate (TikTok Short Video Content Understanding/Multimodal Recommendation)",
"source": "vanshb03",
"id": "465bd0a3-2d43-49a2-b0f4-bca4f74d5ec4",
"date_posted": 1755347531,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347539,
"url": "https://lifeattiktok.com/search/7538320612860446994",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Media Engine)",
"source": "vanshb03",
"id": "917c9cbe-5e85-4e59-9a66-c43caf71e39e",
"date_posted": 1755347539,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347544,
"url": "https://lifeattiktok.com/search/7538325771954637074",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Live Service)",
"source": "vanshb03",
"id": "15875ba3-e367-4c34-97d2-0301c6b4dbfb",
"date_posted": 1755347544,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347554,
"url": "https://www.sofi.com/careers/sofi-university/",
"locations": [
"Seattle, WA",
"Helena, MT"
],
"sponsorship": "Other",
"active": true,
"company_name": "SoFi",
"title": "New Grad 2025: Fullstack Software Engineer",
"source": "vanshb03",
"id": "d6cf78de-6213-4463-9bd3-c2055e77408a",
"date_posted": 1755347554,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756222438,
"url": "https://jobs.lever.co/robinpowered/5b7a72e0-480a-49b6-a4cf-78ee0c6b6ce9",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Robin",
"title": "Associate Software Engineer (AI-Native)",
"source": "vanshb03",
"id": "dce3edea-af8e-48bc-bc34-766b5bb84b03",
"date_posted": 1755347563,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347578,
"url": "https://www.disneycareers.com/en/job/-/-/391/85002977104",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Disney",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "2119d1b9-d3e3-4295-80c0-db8711168fa4",
"date_posted": 1755347578,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347611,
"url": "https://lifeattiktok.com/search/7538213896365689096",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer (Commerce Ads)",
"source": "vanshb03",
"id": "d82e761e-ad6a-4494-9807-0831ea33399b",
"date_posted": 1755347611,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347623,
"url": "https://job-boards.greenhouse.io/canonical/jobs/3257589",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Canonical",
"title": "Software Engineer - Python - Cloud",
"source": "vanshb03",
"id": "f115e032-276b-4548-8323-77ddbdd7fe63",
"date_posted": 1755347623,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347639,
"url": "https://paypal.eightfold.ai/careers/job/274908696559",
"locations": [
"San Jose, CA",
"Chicago, IL",
"Omaha, NE",
"Scottsdale, AZ",
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "PayPal",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "e6258771-e16d-4fe7-81ba-13529ec7f8a8",
"date_posted": 1755347639,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755347665,
"url": "https://jobs.ashbyhq.com/notion/4b10e40a-6136-4efe-8b05-cad43458e9e9",
"locations": [
"New York, NY",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Notion",
"title": "Software Engineer, Search Platform",
"source": "vanshb03",
"id": "5339fcd6-9667-4795-920e-046a0f8b74b3",
"date_posted": 1755347665,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758918596,
"url": "https://job-boards.greenhouse.io/chime/jobs/8101747002",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Chime",
"title": "New Grad: Product Security Engineer",
"source": "vanshb03",
"id": "4ffa750b-5624-40f5-906c-08867909d3ca",
"date_posted": 1755347671,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437357,
"url": "https://l2tmediallc.applytojob.com/b2dvJrHuSV/Junior-Digital-Media-Data-Analyst",
"company_name": "L2TMedia",
"title": "Junior Digital Media Data Analyst",
"locations": [
"Evanston, IL"
],
"active": true,
"source": "vanshb03",
"id": "a3eb540e-b3a2-4b07-92d4-9d2aab178ea8",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755699135,
"url": "https://disney.wd5.myworkdayjobs.com/en-US/disneycareer/job/Burbank-CA-USA/Associate-Data-Analyst_10128347",
"company_name": "Disney",
"title": "Associate Data Analyst",
"locations": [
"Burbank, CA"
],
"active": false,
"source": "vanshb03",
"id": "489e4838-85b8-4acc-860d-4a6e3ea16f5f",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755437357,
"url": "https:/.workable.com/qodeworld/j/5718A36818/",
"company_name": "qode.world",
"title": "Junior Software Developer",
"locations": [
"NJ"
],
"active": true,
"source": "vanshb03",
"id": "7aee39c5-1b93-4696-9cd5-cef9c161d16b",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1756355664,
"url": "https://globalfoundries.wd1.myworkdayjobs.com/en-US/External/job/USA---Vermont---Essex-Junction/Manufacturing-Software-Engineer--Test-Program-Applications---Automation--2026-New-College-Graduate_JR-2502329",
"company_name": "GlobalFoundries",
"title": "Manufacturing Software Engineer, Test Program Applications & Automation",
"locations": [
"Essex Junction, VT"
],
"active": false,
"source": "vanshb03",
"id": "73320160-7375-400d-9bf7-739e33d8032a",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1755437357,
"url": "https://jobs.baesystems.com/global/en/job/BAE1US115338BREXTERNAL/Junior-Software-Engineer",
"company_name": "BAE Systems",
"title": "Junior Software Engineer",
"locations": [
"Hill AFB, UT"
],
"active": true,
"source": "vanshb03",
"id": "78d451b7-7d85-4d58-a03f-5254f0620fac",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1755437357,
"url": "https://www.sofi.com/careers/sofi-university/6678813003?gh_jid=6678813003",
"company_name": "SoFi",
"title": "New Grad: Fullstack Software Engineer, Home Loans",
"locations": [
"Seattle, WA",
"Helena, MT"
],
"active": false,
"source": "vanshb03",
"id": "83765dd0-a06d-4266-bb7d-9b2c11b0ab3a",
"date_posted": 1755437357,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1758126304,
"url": "https://ciena.wd5.myworkdayjobs.com/en-US/Careers/job/Ottawa/Software-Developer---New-Grad-2025_R028667-1",
"locations": [
"Ottawa, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Ciena",
"title": "New Grad 2025: Software Developer",
"source": "vanshb03",
"id": "9078e324-71d0-4da7-8722-64b8704d9a03",
"date_posted": 1755437565,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437574,
"url": "https://careers.unitedhealthgroup.com/job/22310390/associate-software-engineer-vancouver-ca/",
"locations": [
"Vancouver, Canada",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Optum",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "72b53a98-e043-49c1-9fa0-f7f336782d69",
"date_posted": 1755437574,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437585,
"url": "https://careers.amd.com/careers-home/jobs/68783",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "AMD",
"title": "Firmware Security Engineer",
"source": "vanshb03",
"id": "e5f7c136-51a4-4acf-adf4-f6ebc856a528",
"date_posted": 1755437585,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437599,
"url": "https://careers.amd.com/careers-home/jobs/68831",
"locations": [
"Markham, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "AMD",
"title": "ROCm AI - GPU Software Engineer",
"source": "vanshb03",
"id": "c26a0ef3-976c-40d7-915b-06b6fa50096b",
"date_posted": 1755437599,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437606,
"url": "https://ats.rippling.com/en-CA/neo-financial/jobs/a2fd15b5-5bee-483e-b28f-66980dad691b",
"locations": [
"Calgary, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Neo Financial",
"title": "Software Developer",
"source": "vanshb03",
"id": "5903831a-0fc0-4f55-b1aa-84f17c9aa93f",
"date_posted": 1755437606,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756355673,
"url": "https://zoom.wd5.myworkdayjobs.com/Zoom/job/Remote-OR/Software-Engineer_R17090-1",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Zoom",
"title": "Software Engineer",
"source": "vanshb03",
"id": "a656e80d-96b0-439d-abf1-f0d413c32108",
"date_posted": 1755437613,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758689190,
"url": "https://job-boards.greenhouse.io/gitlab/jobs/8096528002",
"locations": [
"Remote, Canada",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "GitLab",
"title": "Associate Security Engineer, Application Security",
"source": "vanshb03",
"id": "f24f35de-928c-4544-b533-25ef94f38a25",
"date_posted": 1755437620,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437627,
"url": "https://careers.codan.com.au/job/Victoria-Associate-Software-Engineer-Cana/1213160701/",
"locations": [
"Victoria, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Codan Limited",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "7ae020d7-b078-4c1b-a5c8-62a38df6efa3",
"date_posted": 1755437627,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437637,
"url": "https://www.okta.com/company/careers/product/software-engineer-i-7169515/",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Okta",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "e0a4bc37-7764-4733-b331-b45878eced60",
"date_posted": 1755437637,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755437648,
"url": "https://careers.mastercard.com/us/en/job/MASRUSR258140EXTERNALENUS/Software-Engineer-I-Backend-Java",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Mastercard",
"title": "Software Engineer I (Backend - Java)",
"source": "vanshb03",
"id": "9b325237-1089-4fe9-bc46-761741dd27e0",
"date_posted": 1755437648,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900295,
"url": "https://capitalone.wd12.myworkdayjobs.com/Capital_One/job/Toronto-ON/Associate--Software-Engineer-2026_R223364",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Capital One",
"title": "Associate, Software Engineer",
"source": "vanshb03",
"id": "6f723b54-08be-40ed-a4ac-c0861a6c63c1",
"date_posted": 1755437654,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755523369,
"url": "https://ats.rippling.com/en-CA/edgehog-trading/jobs/a39cf004-d79c-4588-9a5f-6bdce04a85ee",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Edgehog Trading",
"title": "C++ Software Developer \u2013 Trading Strategy Execution",
"source": "vanshb03",
"id": "98f74da1-e1e2-4ec0-aa59-8b8dceff78b7",
"date_posted": 1755523369,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755523390,
"url": "https://jobs.ashbyhq.com/cohere/b470a959-e111-4a65-a8eb-5665b24d48b5",
"locations": [
"Toronto, Canada",
"Montreal",
"New York, NY",
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Cohere",
"title": "Full-Stack Senior Engineer (Front-End Leaning)",
"source": "vanshb03",
"id": "22e8dceb-d0b7-4d54-9b1c-ce7577ce1b7a",
"date_posted": 1755523390,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755523398,
"url": "https://app.dover.com/wanderlog/8c09ee66-6444-42d4-b2dc-1029b2f9b23d",
"locations": [
"Remote, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Wanderlog",
"title": "Full-Stack Software Engineer",
"source": "vanshb03",
"id": "c8b420f0-5746-43b8-8938-2c0df5fbc40b",
"date_posted": 1755523398,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612684,
"url": "https://careers.qualcomm.com/careers/job/446707442096",
"locations": [
"Markham, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualcomm Canada ULC",
"title": "CPU Software Telemetry Tools Developer",
"source": "vanshb03",
"id": "84e2491a-a13b-4992-83cf-2a5feec3d600",
"date_posted": 1755612684,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638738,
"url": "https://wd3.myworkdaysite.com/recruiting/magna/Magna/job/Concord-Ontario-CA/Jr-AI-Engineer_R00205631",
"locations": [
"Concord, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Magna",
"title": "AI Engineer",
"source": "vanshb03",
"id": "37dd83e6-84fa-45d3-a04b-ff54656decd2",
"date_posted": 1755612691,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757672446,
"url": "https://job-boards.greenhouse.io/lightspeedhq/jobs/7175449",
"locations": [
"Montreal, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Lightspeed",
"title": "Software Developer",
"source": "vanshb03",
"id": "85f426fd-373f-40f0-9a62-24743e3ba945",
"date_posted": 1755612698,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900307,
"url": "https://capitalone.wd12.myworkdayjobs.com/Capital_One/job/Toronto-ON/Associate--Data-Scientist_R223371",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Capital One",
"title": "Associate, Data Scientist",
"source": "vanshb03",
"id": "4793a160-5ae9-4b7b-9af5-febe1b6c74cb",
"date_posted": 1755612704,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612780,
"url": "https://lifeattiktok.com/search/7538571931517159698",
"locations": [
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Special Project Strategist Graduate (TikTok Shop - Operations)",
"source": "vanshb03",
"id": "1f6b6533-7d24-44a5-8b6e-5fd9303afeba",
"date_posted": 1755612780,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612787,
"url": "https://lifeattiktok.com/search/7538896306908252434",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Product Manager Ads Attribution and Measurement Graduate (Measurement Signal and Privacy Product)",
"source": "vanshb03",
"id": "4dfe9bc3-99eb-47f9-8415-1ba4a69328c0",
"date_posted": 1755612787,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612826,
"url": "https://lifeattiktok.com/search/7538903496654407943",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Product Manager Ads Measurement Graduate (Measurement Signal and Privacy Product)",
"source": "vanshb03",
"id": "ed21583f-1a7a-4a5e-97da-c1098ca6c388",
"date_posted": 1755612826,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612835,
"url": "https://joinbytedance.com/search/7265752342699837757",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer in ML Systems",
"source": "vanshb03",
"id": "4975d404-56c6-48ca-b7c8-65e58a26f2c5",
"date_posted": 1755612835,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612852,
"url": "https://joinbytedance.com/search/7536272435440716040",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer (Dev Infra)",
"source": "vanshb03",
"id": "4e18e352-0345-4532-a8ca-1f1ab3448608",
"date_posted": 1755612852,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612858,
"url": "https://lifeattiktok.com/search/7535871317771634952",
"locations": [
"Seattle"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Data Arch - E-commerce)",
"source": "vanshb03",
"id": "3499d2d8-5d25-497b-a7d7-554a83e9f31e",
"date_posted": 1755612858,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755612863,
"url": "https://lifeattiktok.com/search/7538319953965287698",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Software Engineer Graduate (Video-on-Demand Algorithm)",
"source": "vanshb03",
"id": "41609643-f4cd-48f7-b085-dd54d1c0618f",
"date_posted": 1755612863,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755699751,
"url": "https://www.tesla.com/careers/search/job/248886",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "AI Engineer, Multimodal Model Optimization, Autonomy & Robotics",
"source": "vanshb03",
"id": "87ef5d84-b39e-4b31-b0b1-6d967b834d1d",
"date_posted": 1755699751,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755699760,
"url": "https://www.tesla.com/careers/search/job/242064",
"locations": [
"SPARKS, Nevada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Manufacturing Test",
"source": "vanshb03",
"id": "34a70041-c134-4616-9426-de7ff4cd3bc9",
"date_posted": 1755699760,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762348975,
"url": "https://jobs.lever.co/nominal/cc79d7f9-93b9-4410-8435-d92d2f427215",
"locations": [
"New York, NY",
"Los Angeles, CA",
"Austin, TX"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Nominal",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "21da06de-fbf8-46af`-93c4-56d2b40f318f",
"date_posted": 1755818765,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468844,
"url": "https://gen.wd1.myworkdayjobs.com/careers/job/USA---California-Mountain-View/Software-Engineer_54602",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Gen",
"title": "Software Engineer",
"source": "vanshb03",
"id": "1f2f5f0d-2a18-457f-8da0-ba9c163b42fe",
"date_posted": 1755818776,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755818787,
"url": "https://careers.amd.com/careers-home/jobs/68553",
"locations": [
"Bellevue, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "AMD",
"title": "Graphics Software Development Engineer",
"source": "vanshb03",
"id": "3682111e-b873-4be5-b25f-5e281448ab92",
"date_posted": 1755818787,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756872070,
"url": "https://job-boards.greenhouse.io/rockstargames/jobs/6255644003",
"locations": [
"Manhattan, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Rockstar Games",
"title": "Associate Software Engineer (C++)",
"source": "vanshb03",
"id": "3419ed45-1fb6-4ab7-9dc8-aee301186e80",
"date_posted": 1755822571,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900049,
"url": "https://jobs.ashbyhq.com/zip/5f28357a-c95d-485a-84f9-feff64ce9fb3",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Zip",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "cdfab975-d2bc-443a-9a63-3611d32cd73e",
"date_posted": 1755900049,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900065,
"url": "https://www.tesla.com/careers/search/job/249133",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Frontend, AI Infrastructure Engineering & Tools",
"source": "vanshb03",
"id": "fd63baed-e9a4-4b26-bf25-18e9001508d4",
"date_posted": 1755900065,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900075,
"url": "https://www.tesla.com/careers/search/job/247062",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Communications Platform",
"source": "vanshb03",
"id": "b5599f5c-d457-419f-b1d1-05947ed818aa",
"date_posted": 1755900075,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900084,
"url": "https://www.tesla.com/careers/search/job/248353",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Material Flow Robotics",
"source": "vanshb03",
"id": "d87fc739-2296-489b-ac32-3b22f27d02e2",
"date_posted": 1755900084,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900089,
"url": "https://jobs.jobvite.com/emoneyadvisor-review/job/oD9hxfwk",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "eMoney Advisor, LLC",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "338fb164-4f84-4a65-ad0a-c602baf43b5e",
"date_posted": 1755900089,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755900097,
"url": "https://jobs.apple.com/en-us/details/200615794-3956/accessibility-engineer-is-t-early-career",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Accessibility Engineer, IS&T, Early Career",
"source": "vanshb03",
"id": "e41bd449-18a5-4b8c-a63e-0831ec2bb473",
"date_posted": 1755900097,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918800,
"url": "https://jobs.ashbyhq.com/harvey/fe8e594b-f2e1-453b-8a0d-e0b0bfdf745b",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Harvey",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "a5a93b54-414b-4dc2-abcb-3a552214b73b",
"date_posted": 1755918800,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918810,
"url": "https://careers.publicisgroupe.com/jobs/119914",
"locations": [
"Irving, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Epsilon",
"title": "New Grad 2025: Associate, Software Engineer",
"source": "vanshb03",
"id": "f4f15495-1b98-4eab-ad00-74e253dc75a7",
"date_posted": 1755918810,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762348975,
"url": "https://job-boards.greenhouse.io/togetherai/jobs/4835315007",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Together AI",
"title": "New Grad: Machine Learning / Research Engineer",
"source": "vanshb03",
"id": "bea9dc32-dea6-4b57-8d11-d0d2b22991a8",
"date_posted": 1755918822,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761587568,
"url": "https://job-boards.greenhouse.io/togetherai/jobs/4835292007",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Together AI",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "fe9b56af-fe28-40f8-8300-ea8b8b516326",
"date_posted": 1755918827,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918852,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR158632EXTERNALENUS/2026-University-Graduate-Machine-Learning-Engineer",
"locations": [
"San Jose, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: Machine Learning Engineer",
"source": "vanshb03",
"id": "3926d0b4-1573-4474-a99d-275395cea0ec",
"date_posted": 1755918852,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918914,
"url": "https://paypal.eightfold.ai/careers/job/274908747686",
"locations": [
"San Jose, CA",
"Chicago, IL",
"Omaha, NE",
"Scottsdale, AZ",
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "PayPal",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "2c6347db-ab15-4914-a978-ac18f400aa5f",
"date_posted": 1755918914,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918929,
"url": "https://www.amazon.jobs/en/jobs/3064596/antenna-systems-engineer-antenna-calibration-kuiper",
"locations": [
"Redmond, WA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Amazon",
"title": "Antenna Systems Engineer, Antenna Calibration, Kuiper",
"source": "vanshb03",
"id": "29a103bd-0778-4ff4-9262-8df2402a8ceb",
"date_posted": 1755918929,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918941,
"url": "https://jobs.ashbyhq.com/Citizen%20Health/ea388b8a-16cb-4b1b-b64f-479f0dc69764",
"locations": [
"San Francisco, CA",
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citizen Health",
"title": "Software Engineer",
"source": "vanshb03",
"id": "1fbb96a3-284d-48d4-896d-a038ae731ce0",
"date_posted": 1755918941,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918949,
"url": "https://www.tesla.com/careers/search/job/249182",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Electrical & Software Engineer, Circuit Board Test Automation",
"source": "vanshb03",
"id": "7c9ad74a-38bb-43fc-94be-8d88b08bff77",
"date_posted": 1755918949,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1755918960,
"url": "https://www.tesla.com/careers/search/job/249027",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Machine Learning Engineer, Embodied Intelligence, Optimus",
"source": "vanshb03",
"id": "282db66a-80f6-4c29-b259-8b18b18f3ee5",
"date_posted": 1755918960,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024771,
"url": "https://jobs.careers.microsoft.com/global/en/job/1843258/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "5a770a95-5d1b-4531-a51a-5b6899a1e41a",
"date_posted": 1756356200,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024771,
"url": "https://jobs.careers.microsoft.com/global/en/job/1862715/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "b2ee7de3-a614-45c8-8dce-7064c1e5377a",
"date_posted": 1756356207,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468766,
"url": "https://job-boards.greenhouse.io/tenstorrent/jobs/4833103007",
"locations": [
"Austin, TX",
"Santa Clara, CA",
"Toronto, Canada",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Tenstorrent",
"title": "Software Engineer, AI Tools",
"source": "vanshb03",
"id": "6ad7c27c-3001-4eb3-bab6-fd30865aa8d4",
"date_posted": 1756356214,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356219,
"url": "https://jobs.ashbyhq.com/Commure-Athelas/00dbfa4a-986c-4c98-a966-47874d1ff0f8",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Commure",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "807b5b36-546d-43df-9dd3-5251b205495b",
"date_posted": 1756356219,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356228,
"url": "https://www.samsara.com/company/careers/roles/7172579",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Samsara",
"title": "New Grad: Software Engineering",
"source": "vanshb03",
"id": "39e6d57e-60d5-4926-8ab4-08c5c5651d77",
"date_posted": 1756356228,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356234,
"url": "https://joinbytedance.com/search/7540808448918079752",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Engineer (AI Applications)",
"source": "vanshb03",
"id": "8b7d95f8-32c0-4c8a-968e-9ce6bb1e6b42",
"date_posted": 1756356234,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356239,
"url": "https://joinbytedance.com/search/7542657938525538578",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Machine Learning Graduate (eCommerce User Growth & Intelligent Marketing)",
"source": "vanshb03",
"id": "4693e702-9ea4-481b-80a7-1cc1cd5a35a6",
"date_posted": 1756356239,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356246,
"url": "https://www.tesla.com/careers/search/job/248966",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Kernel Software Engineer",
"source": "vanshb03",
"id": "83f9986a-39d1-4131-aa09-0262add200dd",
"date_posted": 1756356246,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356253,
"url": "https://www.tesla.com/careers/search/job/249481",
"locations": [
"AUSTIN, Texas"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Integration Engineer, Cell Software",
"source": "vanshb03",
"id": "a2347af1-277e-4aa8-a22e-fca433c8d579",
"date_posted": 1756356253,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356264,
"url": "https://www.tesla.com/careers/search/job/249467",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Integration Engineer, Factory Firmware",
"source": "vanshb03",
"id": "9d096273-7562-4cf5-82d1-464946d11fd6",
"date_posted": 1756356264,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356270,
"url": "https://www.tesla.com/careers/search/job/249335",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Mobile App Developer, Frontend, Claims & Customer Support",
"source": "vanshb03",
"id": "c7fb60d4-2c07-42db-9a0a-31ca36a60332",
"date_posted": 1756356270,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757964135,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/OEM-Account-Applications-Engineer---New-College-Grad-2025_JR2002780",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: OEM Account Applications Engineer",
"source": "vanshb03",
"id": "7afc610e-eb78-4b44-86d6-571df1556f79",
"date_posted": 1756356275,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758126320,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/GPU-Architecture-Engineer---New-College-Grad-2025_JR2002495",
"locations": [
"Santa Clara, CA",
"Austin, TX",
"Durham, NC"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: GPU Architecture Engineer",
"source": "vanshb03",
"id": "8a8f1c17-acdf-4485-a696-e4fa8e52c37a",
"date_posted": 1756356281,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356289,
"url": "https://www.amazon.jobs/en/jobs/3066890/system-dev-engineer-i-analytics-adc",
"locations": [
"Denver, CO"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "System Dev Engineer I, Analytics ADC",
"source": "vanshb03",
"id": "b3a39785-e080-46c1-aad4-268fa4a65f8f",
"date_posted": 1756356289,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756356294,
"url": "https://lifeattiktok.com/search/7541178634444589319",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: AI/ML Software Engineer (Data Platform TikTok BP)",
"source": "vanshb03",
"id": "94ed660f-0bde-41a3-8aaf-ad8896984594",
"date_posted": 1756356294,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756872100,
"url": "https://www.commure.com/careers-detail?ashby_jid=00dbfa4a-986c-4c98-a966-47874d1ff0f8",
"company_name": "Commure",
"title": "New Grad 2026: Software Engineer",
"locations": [
"Mountain View, CA"
],
"active": true,
"source": "vanshb03",
"id": "19a3c84f-a333-4a0c-8ecc-ed7578f8f86a",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1757468858,
"url": "https://cvshealth.wd1.myworkdayjobs.com/en-US/cvs_health_careers/job/CT---Hartford/Associate-Software-Development-Engineer_R0699201-1",
"company_name": "CVS Health",
"title": "Associate Software Development Engineer",
"locations": [
"Hartford, CT"
],
"active": false,
"source": "vanshb03",
"id": "ad72219c-d240-48e8-9846-bec6b9c0dc68",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.ashbyhq.com/pylon-labs/ecf0d509-cfb9-43c6-b628-1e685d6f5f42/application",
"company_name": "Pylon",
"title": "New Grad - Software Engineer",
"locations": [
"SF"
],
"active": true,
"source": "vanshb03",
"id": "a95a2395-1387-4ebd-8439-64dd2660d81e",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.jobvite.com/nutanix/job/oGXDxfwx?nl=1&nl=1&fr=false",
"company_name": "Nutanix",
"title": "Software Engineer 1 / Early Career - Backend C++/Linux/AWS-S3",
"locations": [
"Durham, NC"
],
"active": true,
"source": "vanshb03",
"id": "8791b328-dea4-4b7e-ae50-500a0164e5f1",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468863,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/MA311-Woburn-MA-225-Presidential-225-Presidential-Way-Goddard-Building-27-Woburn-MA-01801-USA/XMLNAME-2026-Fulltime---Raytheon-Missile-Defense-Sensors-Software-Engineer-I--On-site-_01789916",
"company_name": "RTX",
"title": "2026 Fulltime - Raytheon Missile Defense Sensors Software Engineer I",
"locations": [
"Burlington, MA"
],
"active": false,
"source": "vanshb03",
"id": "9c34dfc4-c8cf-435d-b2f9-000d5fae15dd",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468867,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/MA133-Tewksbury-Ma-Bldg-3-Concord-50-Apple-Hill-Drive-Concord---Building-3-Tewksbury-MA-01876-USA/XMLNAME-2026-Fulltime---Raytheon-Missile-Defense-Sensors-Software-Engineer-I--On-site-_01789917",
"company_name": "RTX",
"title": "2026 Fulltime - Raytheon Missile Defense Sensors Software Engineer I",
"locations": [
"Tewksbury, MA"
],
"active": false,
"source": "vanshb03",
"id": "0283e414-df72-4365-8aec-84597ca23509",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638747,
"url": "https://duboischemicals.wd1.myworkdayjobs.com/en-US/external/job/Sharonville-OH---HQ/Research-Scientist-I_R102506",
"company_name": "DuBois",
"title": "Research Scientist I",
"locations": [
"Sharonville, OH"
],
"active": false,
"source": "vanshb03",
"id": "f15534d6-a284-4666-801f-e8653a8a1656",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468878,
"url": "https://boeing.wd1.myworkdayjobs.com/en-US/external_careers/job/USA---Berkeley-MO/F-22-Pilot-Training-Entry-Level-Software-Engineer---Simulation_JR2025457113-1",
"company_name": "Boeing",
"title": "F-22 Pilot Training Entry-Level Software Engineer - Simulation",
"locations": [
"Berkeley, MO"
],
"active": false,
"source": "vanshb03",
"id": "b1b33722-d4f5-446c-a81e-12b4dfff6e48",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1763442843,
"url": "https://blueorigin.wd5.myworkdayjobs.com/blueorigin/job/Seattle-WA/Software-Development-Engineer-I---Early-Career---New-Graduate-Rotation--2025-2026-Starts-_R54894",
"company_name": "Blue Origin",
"title": "Software Development Engineer I - Early Career & New Graduate Rotation",
"locations": [
"Seattle, WA",
"Kent, WA"
],
"active": false,
"source": "vanshb03",
"id": "b1d2679c-c73e-41b7-bf14-2a2312b3d2b7",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://internaljobs.centurylink.com/job/Remote-INFORMATION-SECURITY-ENGINEER-I/1322139300/?ats=successfactors",
"company_name": "CenturyLink",
"title": "Information Security Engineer I",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "c23035cd-a751-4e95-b583-fd4f923e606b",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.lumen.com/global/en/job/339747",
"company_name": "Lumen Technologies",
"title": "Information Security Engineer I",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "2cd58d15-f5a8-4ae2-9b1e-13f000acc2e5",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.ashbyhq.com/n1/a3e25c84-0846-454a-b2fc-a356c2a713bd/application",
"company_name": "N1",
"title": "New Grad Software Engineer - Backend Rust",
"locations": [
"Oakland, CA",
"NYC"
],
"active": true,
"source": "vanshb03",
"id": "7be4ecb2-7da3-4059-9fa8-8656cfd9fa95",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://ibmglobal.avature.net/en_US/careers/JobDetail?jobId=56285",
"company_name": "IBM",
"title": "Software Developer",
"locations": [
"Sandy Springs, GA",
"Poughkeepsie, NY",
"Lowell, MA",
"Rochester, MN",
"Tucson, AZ",
"Research Triangle Park, NC",
"Durham, NC",
"Hopewell Junction, NY",
"San Jose, CA",
"Dallas, TX",
"Houston, TX",
"Austin, TX",
"Herndon, VA",
"New York, NY"
],
"active": true,
"source": "vanshb03",
"id": "4d037104-326e-4d31-b1a8-e6644948d57a",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1760410091,
"url": "https://job-boards.greenhouse.io/spacex/jobs/8145483002?gh_jid=8145483002",
"company_name": "SpaceX",
"title": "Software Engineer",
"locations": [
"Hawthorne, CA"
],
"active": false,
"source": "vanshb03",
"id": "35c631ff-94e5-46ab-9dc6-d43ea521ee82",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1759638646,
"url": "https://jobs.careers.microsoft.com/us/en/job/1869391",
"company_name": "Microsoft",
"title": "Software Engineer - Fullstack",
"locations": [
"United States"
],
"active": false,
"source": "vanshb03",
"id": "4c780295-6f08-4965-ae49-de2503dd4f78",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1756872100,
"url": "https://internaljobs.centurylink.com/job/Remote-INFORMATION-SECURITY-ENGINEER-I/1322179700/?ats=successfactors",
"company_name": "CenturyLink",
"title": "Information Security Engineer I",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "bb4b64a9-9216-48fe-89a4-03f9512aace8",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.lumen.com/global/en/job/339750",
"company_name": "Lumen Technologies",
"title": "Information Security Engineer I",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "6d7aa32a-9154-4efc-bf60-473f38b99886",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468887,
"url": "https://adobe.wd5.myworkdayjobs.com/external_experienced/job/San-Jose/XMLNAME-2026-University-Graduate---Finance-Data-Scientist_R158870",
"company_name": "Adobe",
"title": "2026 University Graduate - Finance Data Scientist",
"locations": [
"SF",
"San Jose, CA"
],
"active": false,
"source": "vanshb03",
"id": "d46ecb62-e650-4ed6-9fb6-df42c64cbc3a",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468891,
"url": "https://travelers.wd5.myworkdayjobs.com/External/job/GA---Atlanta/Software-Engineer-I--Salesforce-_R-46480",
"company_name": "The Travelers Companies",
"title": "Software Engineer I - Salesforce",
"locations": [
"Sparks, MD",
"Hartford, CT",
"Atlanta, GA",
"St Paul, MN"
],
"active": false,
"source": "vanshb03",
"id": "9731693c-6205-4299-bfe1-6e9ff581cde8",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://jobs.ashbyhq.com/gecko-robotics/7d9ce912-14c3-405b-9f8a-7f261fe8230d/application",
"company_name": "Gecko Robotics",
"title": "Software Engineer - New Graduate Rotational Development Program",
"locations": [
"Boston, MA",
"NYC"
],
"active": true,
"source": "vanshb03",
"id": "1fe62028-1608-4bc3-98f3-13c95345faf1",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://stripe.com/jobs/search?gh_jid=7210112",
"company_name": "Stripe",
"title": "Software Engineer - New Grad",
"locations": [
"Seattle, WA",
"SF"
],
"active": true,
"source": "vanshb03",
"id": "f920da8d-120b-413a-97f5-d0f39c3c94aa",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756872100,
"url": "https://stripe.com/jobs/search?gh_jid=7206505",
"company_name": "Stripe",
"title": "Software Engineer - New Grad",
"locations": [
"Toronto, ON, Canada"
],
"active": true,
"source": "vanshb03",
"id": "5b399554-b8eb-4165-96af-5d141cf9559c",
"date_posted": 1756872100,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1756921579,
"url": "https://jobs.lever.co/ivo/1629cbb2-c07c-4214-a1e2-b4e96c9cc66c",
"company_name": "Ivo",
"title": "Software Engineer",
"locations": [
"San Francisco, CA"
],
"active": true,
"source": "vanshb03",
"id": "39031a82-c141-43ad-bbcc-f6d2bc02f9bd",
"date_posted": 1756921579,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1765307917,
"url": "https://job-boards.greenhouse.io/freeformfuturecorp/jobs/6852163003",
"company_name": "Freeform",
"title": "Software Engineer",
"locations": [
"Los Angeles, CA"
],
"active": false,
"source": "vanshb03",
"id": "3c26d91e-40b9-4d99-a84c-adb078047df4",
"date_posted": 1756921579,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1756868183,
"url": "https://jobs.smartrecruiters.com/LinkedIn3/a3b09881-7c3e-444c-9e65-ac0e2c6a8970",
"locations": [
"Mountain View, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "LinkedIn",
"title": "Associate Product Builder (APB) - Rotational Program",
"source": "vanshb03",
"id": "fbba2cea-df5e-4861-aebf-fbeb6e6cbb30",
"date_posted": 1756868183,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756871952,
"url": "https://careers.roblox.com/jobs/7167345",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Roblox",
"title": "New Grad 2026: Associate Product Designer",
"source": "vanshb03",
"id": "97125ac7-1e91-4531-a6ea-f63ee197f5af",
"date_posted": 1756871952,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756871962,
"url": "https://careers.roblox.com/jobs/7167343",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Roblox",
"title": "New Grad 2026: Associate Product Manager",
"source": "vanshb03",
"id": "016e56e1-44c5-46d3-a1c5-4641b27a7f41",
"date_posted": 1756871962,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758025180,
"url": "https://jobs.careers.microsoft.com/global/en/job/1868816/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "b6e2b395-5f3e-4d57-afd1-70fc63d66041",
"date_posted": 1756922189,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283135,
"url": "https://jobs.careers.microsoft.com/global/en/job/1862399/Software-Engineer",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "d3ca845e-59c7-48a8-b6dd-e7c9f4986775",
"date_posted": 1756922194,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638646,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869427/Software-Engineer---Security%2C-Multiple-Locations",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer, Security",
"source": "vanshb03",
"id": "2a780d7b-301a-46c3-9521-3e5d11453044",
"date_posted": 1756922206,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638646,
"url": "https://jobs.careers.microsoft.com/us/en/job/1869430/Software-Engineer-Systems-Multiple-Locations",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - Systems",
"source": "vanshb03",
"id": "cf35e43c-d884-49f7-a78c-341b18c17df6",
"date_posted": 1756922212,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638647,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869402/Software-Engineer---AI%2FML%2C-Multiple-Locations",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer, AI/ML",
"source": "vanshb03",
"id": "62b9e917-f342-4593-a866-9a8381508610",
"date_posted": 1756922220,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638647,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869347/Software-Engineer---Fullstack,-Redmond",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - Fullstack",
"source": "vanshb03",
"id": "0922c4aa-f4fd-4acd-ac58-8018dc88ea53",
"date_posted": 1756922231,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638647,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869391/Software-Engineer---Fullstack%2C-Multiple-Locations",
"locations": [
"Multiple Locations, United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - Fullstack",
"source": "vanshb03",
"id": "b391ec4d-9b6d-485b-ba39-1b10692d57c8",
"date_posted": 1756922236,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756922282,
"url": "https://jobs.ashbyhq.com/Cape/bd280ded-4298-47de-a186-1aebd1bd94b8",
"locations": [
"New York, NY",
"Washington, DC"
],
"sponsorship": "Other",
"active": true,
"company_name": "Cape",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "bec99abb-7363-46ef-9a57-ecf3a7ee8ece",
"date_posted": 1756922282,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756922292,
"url": "https://careers-americas.icims.com/jobs/20901/software-engineer%252c-2026-graduate-u.s./job",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Atlassian",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "87cc7698-6d20-43c9-9e46-ddee5c59f02c",
"date_posted": 1756922292,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756935023,
"url": "https://careers.garmin.com/jobs/16827",
"locations": [
"Olathe, KS"
],
"sponsorship": "Other",
"active": true,
"company_name": "Garmin",
"title": "Software Engineer I - Embedded Software",
"source": "vanshb03",
"id": "26093e95-ae02-466f-9159-da032bc2e2f5",
"date_posted": 1756935023,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763014975,
"url": "https://job-boards.greenhouse.io/2k/jobs/6688546003",
"locations": [
"Novato, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "2K Games",
"title": "Engineering Graduate Program",
"source": "vanshb03",
"id": "34117160-7339-4f5d-a5c9-e3554dbc4a3c",
"date_posted": 1756934953,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756934962,
"url": "https://jobs.ashbyhq.com/luma-ai/f41a9fc6-40b5-4063-b093-b50ffe919ad8",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Luma",
"title": "Research Scientist / Engineer - Data",
"source": "vanshb03",
"id": "1d372945-0072-4142-9082-bcaf15811246",
"date_posted": 1756934962,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1756934978,
"url": "https://stripe.com/jobs/listing/software-engineer-new-grad/7210112",
"locations": [
"South San Francisco, CA",
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Stripe",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "5045948e-6164-4449-915b-65d210dc354a",
"date_posted": 1756934978,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757068097,
"url": "https://www.metrostar.com/job-post/?gh_jid=6667276003",
"company_name": "MetroStar",
"title": "Associate Software Developer",
"locations": [
"Reston, VA"
],
"active": true,
"source": "vanshb03",
"id": "68e6d33d-c5c9-4a4d-9d2b-acd3ee888a79",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1767746126,
"url": "https://hpe.wd5.myworkdayjobs.com/en-US/Jobsathpe/job/Ft-Collins-Colorado-United-States-of-America/Software-Engineering-Graduate--Colorado-_1193615-1",
"company_name": "Hewlett Packard Enterprise",
"title": "Software Engineer",
"locations": [
"Ft. Collins, CO"
],
"active": false,
"source": "vanshb03",
"id": "bd4849b3-640a-4b0e-8100-d0ab241e6d7b",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1763442853,
"url": "https://bonterra.wd1.myworkdayjobs.com/en-US/bonterratech/job/Remote-United-States/EA-Data-Engineer-I--Services_R2025-0310",
"company_name": "Bonterra",
"title": "Data Engineer I, Services",
"locations": [
"Remote in USA"
],
"active": false,
"source": "vanshb03",
"id": "7a438406-92be-46da-a62d-9812e2beea9b",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1757964164,
"url": "https://travelers.wd5.myworkdayjobs.com/External/job/MN---St-Paul/Software-Engineer-I---Legal---Compliance_R-45918",
"company_name": "The Travelers Companies",
"title": "Software Engineer I, Legal & Compliance",
"locations": [
"Hartford, CT",
"St Paul, MN"
],
"active": false,
"source": "vanshb03",
"id": "2d7b31b4-e067-4f60-b968-801880fcbfd7",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468911,
"url": "https://icf.wd5.myworkdayjobs.com/en-US/ICFExternal_Career_Site/job/Reston-VA/Data-Scientist--Entry-Level-_R2502152",
"company_name": "ICF",
"title": "Junior Data Scientist",
"locations": [
"Reston, VA"
],
"active": false,
"source": "vanshb03",
"id": "39c6c59f-bc40-44ec-bc52-aafcc8d127be",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757068097,
"url": "https://www.alticeusacareers.com/job/Bethpage-Software-Dev-Engineer-I-NY-11714/1322496900/?ats=successfactors",
"company_name": "Altice USA",
"title": "Software Dev Engineer I",
"locations": [
"Plainview, NY"
],
"active": true,
"source": "vanshb03",
"id": "b4aac097-5de4-42fc-b590-3ae449911f69",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757964169,
"url": "https://choicehotels.wd5.myworkdayjobs.com/External/job/Scottsdale-AZ---Technology--Digital-Commerce-Center/Software-Engineer-1_R20274",
"company_name": "Choice Hotels",
"title": "Software Engineer 1",
"locations": [
"Scottsdale, AZ"
],
"active": false,
"source": "vanshb03",
"id": "92b47e67-5781-4ead-8f4f-9ac5d4966924",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757068097,
"url": "https:/.workable.com/qodeworld/j/5E96914ADB",
"company_name": "qode.world",
"title": "Junior Data Scientist",
"locations": [
"Tampa, FL",
"Jackson Township, NJ",
"Dallas, TX"
],
"active": true,
"source": "vanshb03",
"id": "6bd56948-4d8e-4ad0-884e-d20bf74a0d80",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757068097,
"url": "https://careers.aflac.com/job/Software-Engineer-I-GA-31999/1323022100/?ats=successfactors",
"company_name": "Aflac",
"title": "Software Engineer I",
"locations": [
"Columbus, GA"
],
"active": true,
"source": "vanshb03",
"id": "f7314607-a633-4e02-a83f-a9c060b540f5",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757068097,
"url": "https://jobs.ashbyhq.com/ellipsislabs/caa49297-d5a3-4d03-b8c9-bdc7b77fb0bb/application",
"company_name": "Ellipsis Labs",
"title": "Software Engineer",
"locations": [
"NYC"
],
"active": true,
"source": "vanshb03",
"id": "467e789e-178c-412e-bfa8-0793332e5f86",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1771170052,
"url": "https://jobs.lever.co/valkyrietrading/6ba65cc5-53ec-4c92-ac98-dbc3326c75ab",
"company_name": "Valkyrie Trading",
"title": "Junior Quantitative Researcher",
"locations": [
"Chicago, IL"
],
"active": false,
"source": "vanshb03",
"id": "cea4703c-8d9e-4226-8189-34e42078765c",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757068097,
"url": "https://jobs.lever.co/valkyrietrading/b9907031-0625-49f9-9fbe-7b5618e3640c",
"company_name": "Valkyrie Trading",
"title": "Junior Software Engineer",
"locations": [
"Chicago, IL"
],
"active": true,
"source": "vanshb03",
"id": "25a9a606-7ae0-4585-aa8c-6a6413691ea2",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468920,
"url": "https://caci.wd1.myworkdayjobs.com/external/job/US-NY-Rome/Fullstack-Web-Application-Software-Engineer---Entry-Level_316797",
"company_name": "CACI",
"title": "Fullstack Web Application Software Engineer",
"locations": [
"Rome, NY"
],
"active": false,
"source": "vanshb03",
"id": "8f97a2f8-42bb-4087-842d-8db44472cdd9",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468924,
"url": "https://boeing.wd1.myworkdayjobs.com/external_subsidiary/job/USA---Kent-WA/Entry-Level-Software-Engineer-Test---Verification_JR2025468499-2",
"company_name": "The Boeing Company",
"title": "Software Engineer, Test & Verification",
"locations": [
"Kent, WA"
],
"active": false,
"source": "vanshb03",
"id": "f681e142-dbea-445e-923d-fa20d94b05c6",
"date_posted": 1757068097,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468766,
"url": "https://jobs.lever.co/bumbleinc/6cc32636-4671-4838-a6b7-2dd16b97c110",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Bumble Inc.",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "5ee323b6-8412-46a8-bf27-f3acabdb5174",
"date_posted": 1757305985,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757305981,
"url": "https://www.amazon.jobs/en/jobs/3071644/security-engineer-aws-global-services-security",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Security Engineer",
"source": "vanshb03",
"id": "49ccff0d-a7ec-46e7-a51e-9d23558a3bfc",
"date_posted": 1757305981,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757305990,
"url": "https://www.tesla.com/careers/search/job/225545",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software QA Engineer, Infotainment, Vehicle Software",
"source": "vanshb03",
"id": "5ca0d48d-7b0b-41e7-a403-05466813d4f8",
"date_posted": 1757305990,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306000,
"url": "https://www.tesla.com/careers/search/job/250195",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Autonomous Mobile Robotics",
"source": "vanshb03",
"id": "358212f6-6ecf-44af-9410-6f8c88eeec78",
"date_posted": 1757306000,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283135,
"url": "https://job-boards.greenhouse.io/verkada/jobs/4835669007",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"company_name": "Verkada",
"title": "New Grad 2026: Embedded Software Engineer",
"source": "vanshb03",
"id": "33550b15-da92-4bd6-a8da-780aa2db96ea",
"date_posted": 1757306005,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923542,
"url": "https://job-boards.greenhouse.io/verkada/jobs/4835616007",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"company_name": "Verkada",
"title": "New Grad 2026: Backend Software Engineer",
"source": "vanshb03",
"id": "4ccc31d4-e188-4dbf-ba06-1b23c94a041e",
"date_posted": 1757306007,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923536,
"url": "https://job-boards.greenhouse.io/verkada/jobs/4855439007",
"locations": [
"San Mateo, CA"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"company_name": "Verkada",
"title": "New Grad 2026: Frontend Software Engineer",
"source": "vanshb03",
"id": "7e639dfa-1051-4b38-aa67-9220e9c0d021",
"date_posted": 1757306013,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306055,
"url": "https://jobs.ashbyhq.com/handshake/cf0cac2a-75c7-4872-aa6e-0d78ed98301f",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Handshake AI",
"title": "Fullstack Engineer I (TypeScript focused)",
"source": "vanshb03",
"id": "45e9f04b-c43c-497a-b810-a5c3805f9341",
"date_posted": 1757306055,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306060,
"url": "https://www.tesla.com/careers/search/job/250277",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Data Engineer, Energy Service Engineering",
"source": "vanshb03",
"id": "2ae8f472-a3c8-496f-ab36-e8160de8cf81",
"date_posted": 1757306060,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306063,
"url": "https://careers.arm.com/job/austin/graduate-software-applications-engineer/33099/85831486416",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Arm",
"title": "New Grad 2025: Software Applications Engineer",
"source": "vanshb03",
"id": "1b68d58c-8ca0-4c84-b879-5979caa5ec20",
"date_posted": 1757306063,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306071,
"url": "https://careers-americas.icims.com/jobs/20906/machine-learning-engineer%252c-2026-graduate-u.s./job",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Atlassian",
"title": "New Grad 2026: Machine Learning Engineer",
"source": "vanshb03",
"id": "b5cac127-f458-4196-bdb7-5ef2880b7568",
"date_posted": 1757306071,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024772,
"url": "https://jobs.careers.microsoft.com/global/en/job/1858061/Software-Engineer",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "c3a1da1c-c75d-490e-ba52-6549bd315628",
"date_posted": 1757306183,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758024772,
"url": "https://jobs.careers.microsoft.com/global/en/job/1857025/Software-Engineer",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "fd3824e1-cb09-48c9-a795-89614a18caf1",
"date_posted": 1757306188,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306204,
"url": "https://job-boards.greenhouse.io/gleanwork/jobs/4592324005",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Glean",
"title": "Software Engineer",
"source": "vanshb03",
"id": "5934da04-53a9-4339-a07b-86a89e796a61",
"date_posted": 1757306204,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306208,
"url": "https://careers.publicisgroupe.com/jobs/121504",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Epsilon",
"title": "New Grad: Associate, Software Engineer",
"source": "vanshb03",
"id": "23712499-9468-4090-80e8-ee398751b7d1",
"date_posted": 1757306208,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306213,
"url": "https://careers.publicisgroupe.com/jobs/121511",
"locations": [
"Irving, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Epsilon",
"title": "Associate, Software Engineer",
"source": "vanshb03",
"id": "7a3a7897-d824-4c3a-b8b7-612c2d70e5a1",
"date_posted": 1757306213,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306221,
"url": "https://jobs.ashbyhq.com/decagon/2a435dd5-1212-42bb-ae5a-d7432902acd2",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Decagon",
"title": "New Grad 2026: Agent Software Engineer",
"source": "vanshb03",
"id": "e4de8600-7a92-43c6-ac42-27412aca28d8",
"date_posted": 1757306221,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757306243,
"url": "https://www.disneycareers.com/en/job/-/-/391/85823385568",
"locations": [
"Glendale, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Disney",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "334897e1-96ff-43df-878b-6704f87c25ca",
"date_posted": 1757306243,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468929,
"url": "https://kbr.wd5.myworkdayjobs.com/en-US/KBR_Careers/job/Colorado-Springs-Colorado/Software-Engineer-I_R2110482",
"company_name": "KBR",
"title": "Software Engineer I",
"locations": [
"Colorado Springs, CO"
],
"active": false,
"source": "vanshb03",
"id": "5626f8f6-a48c-4f43-a2e9-baab91af3977",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1757468766,
"url": "https://jobs.lever.co/pditechnologies/dabd35a1-a15f-4702-8beb-f4c5d6a3d837",
"company_name": "PDI Technologies",
"title": "Junior Machine Learning Engineer",
"locations": [
"Alpharetta, GA",
"Temple, TX",
"Dallas, TX",
"Houston, TX"
],
"active": false,
"source": "vanshb03",
"id": "49c5fa67-6aa5-4645-be03-185e8d320447",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1763442859,
"url": "https://relx.wd3.myworkdayjobs.com/en-US/LexisNexisLegal/job/Raleigh-NC/Aspire-Tech-Graduate-Security-Engineer-I_R101084",
"company_name": "LexisNexis Risk Solutions",
"title": "Aspire Tech Graduate Security Engineer I",
"locations": [
"Raleigh, NC"
],
"active": false,
"source": "vanshb03",
"id": "a00d9812-f6a7-4d2f-89fc-97c10e4cb5ab",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757306495,
"url": "https://careers-ebscoind.icims.com/jobs/1834/job",
"company_name": "EBSCO",
"title": "Software Dev Engineer I",
"locations": [
"Remote in USA"
],
"active": true,
"source": "vanshb03",
"id": "d4ed9044-2930-4ee9-a4d8-6226510a7165",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757468939,
"url": "https://caci.wd1.myworkdayjobs.com/external/job/US-NY-Rome/Entry-Level-Java-and-Python-Software-Engineer_316729",
"company_name": "CACI",
"title": "Entry Level Java and Python Software Engineer",
"locations": [
"Rome, NY"
],
"active": false,
"source": "vanshb03",
"id": "8ce11a4c-24c3-4ccb-b93c-2241289395aa",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758689193,
"url": "https://job-boards.greenhouse.io/boomsupersonic/jobs/5643302004",
"company_name": "Boom Supersonic",
"title": "New Grad: Software Engineer",
"locations": [
"Denver, CO"
],
"active": false,
"source": "vanshb03",
"id": "52986dc1-7a2b-44fb-b630-cc853a1a1059",
"date_posted": 1757306495,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757306633,
"url": "https:/.workable.com/eluvio/j/A349A0D2AF",
"company_name": "Eluvio",
"title": "New Grad: Software Engineer, AI Core Apps",
"locations": [
"Berkeley, CA"
],
"active": true,
"source": "vanshb03",
"id": "463576e8-f5a1-4c8f-bfce-43c8f942949a",
"date_posted": 1757306633,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442863,
"url": "https://viavisolutions.wd1.myworkdayjobs.com/en-US/careers/job/Minnetonka-MN-USA/Early-Careers-Rotational-Program---R-D-Engineer--AI-_250003743-1",
"company_name": "VIAVI",
"title": "Early Careers Rotational Program, R&D Engineer (AI)",
"locations": [
"Minnetonka, MN"
],
"active": false,
"source": "vanshb03",
"id": "53837e59-be03-45da-9349-76976a09ca6d",
"date_posted": 1757306633,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1760785137,
"url": "https://cigna.wd5.myworkdayjobs.com/en-US/cignacareers/job/St-Louis-MO/Technology-Development-Program--TECDP-----Artificial-Intelligence-Track---Start-Date--July-13--2026_25011433",
"company_name": "The Cigna Group",
"title": "Technology Development Program (TECDP), Artificial Intelligence",
"locations": [
"St. Louis, MO",
"Morris Plains, NJ",
"Bloomfield, CT",
"Austin, TX"
],
"active": false,
"source": "vanshb03",
"id": "b51cbf28-0f01-4c53-a2aa-ffed24df6837",
"date_posted": 1757306633,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1757964188,
"url": "https://td.wd3.myworkdayjobs.com/en-US/td_bank_careers/job/New-York-New-York/XMLNAME-2026-Summer-Associate---Quantitative-Rotational-Program_R_1441549",
"company_name": "TD",
"title": "Quantitative Rotational Program",
"locations": [
"New York, NY"
],
"active": false,
"source": "vanshb03",
"id": "28a19ec1-6efe-4cc6-bdfe-104780063936",
"date_posted": 1757306633,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760785141,
"url": "https://cigna.wd5.myworkdayjobs.com/en-US/cignacareers/job/St-Louis-MO/Technology-Development-Program--TECDP----Infrastructure---Cloud-Engineering-Track---Start-Date--July-13--2026_25011438-1",
"company_name": "The Cigna Group",
"title": "Technology Development Program (TECDP), Infrastructure & Cloud Engineering Track",
"locations": [
"St. Louis, MO",
"Bloomfield, CT",
"Bloomington, MN"
],
"active": false,
"source": "vanshb03",
"id": "902392e4-d004-4909-a4bb-b7529efcdcf7",
"date_posted": 1757306633,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1757964198,
"url": "https://capitalone.wd12.myworkdayjobs.com/en-US/Capital_One/job/McLean-VA/Technology-Development-Program-Associate---February-2026_R218758-1?q=Tdp",
"locations": [
"McLean, VA",
"Richmond, VA",
"Plano, TX"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Capital One",
"title": "Technology Development Program",
"source": "vanshb03",
"id": "4cdb123c-3456-42d8-9981-f55d9ce6e510",
"date_posted": 1757344213,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468968,
"url": "https://labcorp.wd1.myworkdayjobs.com/en-US/External/job/Durham-NC/Associate-Software-Engineer_2526628",
"company_name": "Labcorp",
"title": "Associate Software Engineer",
"locations": [
"Durham, NC"
],
"active": false,
"source": "vanshb03",
"id": "c9fdcaa5-3d85-447a-b914-6e2019f096d4",
"date_posted": 1757344867,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1757468973,
"url": "https://extraspace.wd5.myworkdayjobs.com/en-US/ESS_External/job/Salt-Lake-City-UT-United-States/Associate-Software-Engineer_R-72920",
"company_name": "Extra Space Storage",
"title": "Associate Software Engineer",
"locations": [
"Salt Lake City, UT"
],
"active": false,
"source": "vanshb03",
"id": "fafd8da2-9671-4a89-a4e3-fa3d8e2ba4bd",
"date_posted": 1757344867,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757344867,
"url": "https://divergehealth.org/jobs/?gh_jid=4840575007",
"company_name": "Diverge Health",
"title": "Associate Software Developer",
"locations": [
"Remote in USA"
],
"active": true,
"source": "vanshb03",
"id": "727f5f59-ed40-4dc1-9860-6260acd5af37",
"date_posted": 1757344867,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1757346807,
"url": "https://jobs.lever.co/voleon/ce0bda1f-3d5a-44ac-8ab3-8578d49d344c",
"locations": [
"Berkeley, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Voleon",
"title": "Associate Member of Trading Staff",
"source": "vanshb03",
"id": "c0a4bd94-3ade-4a37-a211-b3bd3e7a0c90",
"date_posted": 1757346807,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757346813,
"url": "https://careers.blackrock.com/job/-/-/45831/84712805504",
"locations": [
"Sausalito, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "BlackRock",
"title": "Associate, Research Associate \u2013 SMA Solutions, Quantitative Investment Solutions (QIS)",
"source": "vanshb03",
"id": "f876e9d4-9382-4e47-92c7-5698fcfac0d8",
"date_posted": 1757346813,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757346829,
"url": "https://joinbytedance.com/search/7534966101852539144",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Product Manager (SMB)",
"source": "vanshb03",
"id": "843857fa-d284-4413-ad26-2730be4371bd",
"date_posted": 1757346829,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757346838,
"url": "https://app.ripplematch.com/v2/public/job/c730fa3b",
"locations": [
"Cambridge, MA",
"Remote"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "HubSpot",
"title": "Software Engineer",
"source": "vanshb03",
"id": "3efa4479-4c6d-4a7d-8c8c-2aa8f01429a7",
"date_posted": 1757346838,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757347298,
"url": "https://www.workatastartup.com/jobs/81292",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "YouLearn",
"title": "Founding Engineer (Full Stack)",
"source": "vanshb03",
"id": "58ecba45-bc5a-4ce4-bf19-1eabfb82ce79",
"date_posted": 1757347298,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757347378,
"url": "https://www.workatastartup.com/jobs/81273",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "DeepGrove",
"title": "ML Technical Staff",
"source": "vanshb03",
"id": "2b96d66d-6cc2-4cdc-8c52-dee1c35ff72d",
"date_posted": 1757347378,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757347433,
"url": "https://www.workatastartup.com/jobs/81060",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Sonia",
"title": "Founding Design Engineer",
"source": "vanshb03",
"id": "78dac41c-d7eb-49be-a68a-cc8aec24f888",
"date_posted": 1757347433,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757347440,
"url": "https://www.workatastartup.com/jobs/81052",
"locations": [
"New York, NY"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "InQuery",
"title": "New Grad: Founding Engineer",
"source": "vanshb03",
"id": "67e5db9c-8e3c-4504-8519-1efa4d16c3ae",
"date_posted": 1757347440,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638647,
"url": "https://job-boards.greenhouse.io/figma/jobs/5621649004",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Figma",
"title": "Associate Product Manager",
"source": "vanshb03",
"id": "227cee79-eef2-4de7-8204-ccfee93da201",
"date_posted": 1757347562,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782448,
"url": "https://job-boards.greenhouse.io/figma/jobs/5615025004",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Figma",
"title": "Data Scientist",
"source": "vanshb03",
"id": "505d156b-a246-4d2c-964b-1353b3b1af18",
"date_posted": 1757347571,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923536,
"url": "https://job-boards.greenhouse.io/figma/jobs/5616455004",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Figma",
"title": "Product Designer",
"source": "vanshb03",
"id": "98b7a747-d513-4281-ad63-9561495fdcc4",
"date_posted": 1757347576,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758501717,
"url": "https://www.workatastartup.com/jobs/80936",
"locations": [
"New York, NY",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Gander",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "1ee7437b-54ec-463e-a827-ab179a9eb08d",
"date_posted": 1757347686,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442868,
"url": "https://symbotic.wd1.myworkdayjobs.com/en-US/Symbotic/job/USA-Milpitas-CA/New-Grad--Hardware-Engineer_R5410",
"company_name": "Symbotic",
"title": "New Grad: Hardware Engineer",
"locations": [
"Milpitas, CA"
],
"active": false,
"source": "vanshb03",
"id": "8bf9e3ae-8d88-4597-bd45-3beb8c6dc18e",
"date_posted": 1757464542,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442872,
"url": "https://symbotic.wd1.myworkdayjobs.com/en-US/Symbotic/job/USA-Wilmington--MA---HQ/New-Grad--Hardware-Engineer_R5411",
"company_name": "Symbotic",
"title": "New Grad-Hardware Engineer",
"locations": [
"Burlington, MA"
],
"active": false,
"source": "vanshb03",
"id": "71add992-f2d1-4944-b2a3-49a7471a8b8f",
"date_posted": 1757464542,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638795,
"url": "https://td.wd3.myworkdayjobs.com/en-US/TD_Bank_Careers/job/Toronto-Ontario/Machine-Learning-Engineer-I_R_1443721",
"company_name": "TD Securities",
"title": "Machine Learning Engineer I",
"locations": [
"Toronto, ON, Canada"
],
"active": false,
"source": "vanshb03",
"id": "854867f9-a98a-4630-b562-350f2b21b71c",
"date_posted": 1757464542,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757464983,
"url": "https://www.workatastartup.com/jobs/81441",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Agave (W22)",
"title": "New Grad 2025: Software Engineer",
"source": "vanshb03",
"id": "9ccf59df-d799-4ddf-8a33-9eca9ed3c991",
"date_posted": 1757464983,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757465361,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR159164EXTERNALENUS/2026-University-Graduate-Application-Security-Engineer",
"locations": [
"San Jose, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: Application Security Engineer",
"source": "vanshb03",
"id": "74c68dd6-4c61-4756-beff-1a9379d743fc",
"date_posted": 1757465361,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757465364,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR157573EXTERNALENUS/2026-University-Graduate-Machine-Learning-Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: Machine Learning Engineer",
"source": "vanshb03",
"id": "2abedbd2-1a5b-469f-9a71-7ba040dc1bd8",
"date_posted": 1757465364,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757465367,
"url": "https://job-boards.greenhouse.io/scaleai/jobs/4605996005",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Scale",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "7875b638-ac0c-4a3b-94da-abbf2fd32f81",
"date_posted": 1757465367,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638799,
"url": "https://talentmanagementsolution.wd3.myworkdayjobs.com/JonasSoftwareCanada/job/Remote-Canada-ON/Full-Stack-Junior-Developer_R46739-1",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Jonas Software",
"title": "Full Stack Developer",
"source": "vanshb03",
"id": "e358a87f-26e7-4021-a922-c2f547814069",
"date_posted": 1757465371,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442877,
"url": "https://clio.wd3.myworkdayjobs.com/en-US/ClioCareerSite/job/Data-Engineer_BF-REQ-3192",
"locations": [
"Toronto, Canada",
"Calgary, Canada",
"Vancouver, Canada",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Clio",
"title": "Data Engineer",
"source": "vanshb03",
"id": "16d2cade-e4e6-4662-b920-75e447570cfa",
"date_posted": 1757465376,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757465380,
"url": "https://careers.tripadvisor.com/job?jobId=7234900",
"locations": [
"Ottawa, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tripadvisor",
"title": "Android Engineer",
"source": "vanshb03",
"id": "8d233062-4e23-406e-8c42-6fc2b50363f8",
"date_posted": 1757465380,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638809,
"url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Machine-Learning-Engineer-I_R_1443721",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "TD",
"title": "Machine Learning Engineer I",
"source": "vanshb03",
"id": "cd8e4c05-5f38-4330-b1c1-3f081d0bde4a",
"date_posted": 1757465384,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757467936,
"url": "https://jobs.smartrecruiters.com/visa/744000080643295-associate-product-manager-apm-new-college-graduate-rotational-program-2026",
"locations": [
"Foster City, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Associate Product Manager (APM)",
"source": "vanshb03",
"id": "0ec1051d-7fb3-491c-abdb-fdfb65a0080f",
"date_posted": 1757467936,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757467966,
"url": "https://jobs.smartrecruiters.com/visa/744000080904205-software-engineer-new-college-grad-2026",
"locations": [
"Bellevue, WA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "100accc3-8e15-4a53-84c1-adbb02b57a69",
"date_posted": 1757467966,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757467997,
"url": "https://jobs.smartrecruiters.com/visa/744000080905065-software-engineer-new-college-grad-2026",
"locations": [
"Foster City, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "f6284868-3387-4d56-8eca-4086fafc4d16",
"date_posted": 1757467997,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468002,
"url": "https://jobs.smartrecruiters.com/visa/744000080905285-software-engineer-new-college-grad-2026",
"locations": [
"Highlands Ranch, CO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "7c8f509f-1c3d-4b6a-a2e1-edd93599058b",
"date_posted": 1757468002,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468004,
"url": "https://jobs.smartrecruiters.com/visa/744000080905162-site-reliability-engineer-new-college-grad-2026",
"locations": [
"Highlands Ranch, CO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Site Reliability Engineer",
"source": "vanshb03",
"id": "061a2a63-72de-4ad5-b500-4f878d9f6706",
"date_posted": 1757468004,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468009,
"url": "https://jobs.smartrecruiters.com/visa/744000080906246-site-reliability-engineer-new-college-grad-2026",
"locations": [
"Highlands Ranch, CO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Site Reliability Engineer",
"source": "vanshb03",
"id": "084aa1c4-ca51-4093-b100-11a8cfd0461f",
"date_posted": 1757468009,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468012,
"url": "https://jobs.smartrecruiters.com/visa/744000080906904-software-engineer-new-college-grad-2026",
"locations": [
"Austin, TX"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "8f6b0c5a-e2be-4707-b0d0-394d50d98303",
"date_posted": 1757468012,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468036,
"url": "https://jobs.smartrecruiters.com/visa/744000080906828-software-engineer-new-college-grad-2026",
"locations": [
"Highlands Ranch, CO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "a80dcaa5-306a-4a9d-9174-f9ff1cbefd52",
"date_posted": 1757468036,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468040,
"url": "https://jobs.smartrecruiters.com/visa/744000080908246-site-reliability-engineer-new-college-grad-2026",
"locations": [
"Austin, TX"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Site Reliability Engineer",
"source": "vanshb03",
"id": "20ea8fd9-28f7-4cd1-b3f5-4e37946fc3de",
"date_posted": 1757468040,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757468043,
"url": "https://jobs.smartrecruiters.com/visa/744000080909305-site-reliability-engineer-new-college-grad-2026",
"locations": [
"Ashburn, VA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Visa",
"title": "New Grad 2026: Site Reliability Engineer",
"source": "vanshb03",
"id": "9cc3de6b-1ec9-48bb-a6c8-98101d3f151b",
"date_posted": 1757468043,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757571659,
"url": "https://www.janestreet.com/join-jane-street/position/8053215002/",
"company_name": "Jane Street",
"title": "Cybersecurity Analyst",
"locations": [
"New York"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"source": "cslegasse",
"id": "b3337990-2f02-4417-9430-85c72fc5c5a7",
"date_posted": 1757571659,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757571691,
"url": "https://join.atlassian.com/atlassian-talent-community/jobs/20908?lang=en-us",
"company_name": "Atlassian",
"title": "New Grad 2026: Software Engineer",
"locations": [
"Canada"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "billyao021031",
"id": "1133c4b4-7c0a-4f83-a978-519b8f8d0cb3",
"date_posted": 1757571691,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757545180,
"url": "https://jobs.apple.com/en-us/details/200620177-3543/wi-fi-software-systems-performance-engineer",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Wi-Fi Software Systems Performance Engineer",
"source": "vanshb03",
"id": "02314778-9f50-45a9-b3dd-9b8ed6206f8e",
"date_posted": 1757545180,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757578688,
"url": "https://careers.nordstrom.com/engineer-1-full-stack-store-pos-team-hybrid-seattle-wa/job/4D8A4B0EBC4BABF554018E5C28260729",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Nordstrom",
"title": "Engineer 1, Full Stack, Store POS+ Team",
"source": "vanshb03",
"id": "495e6045-ebf8-46e1-b904-d1f3e1042339",
"date_posted": 1757578688,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757578693,
"url": "https://www.tesla.com/careers/search/job/250792",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Backend Software Engineer, Residential Energy Experience",
"source": "vanshb03",
"id": "367a8a27-acad-4de4-9f62-c5e91309126c",
"date_posted": 1757578693,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757578698,
"url": "https://www.tesla.com/careers/search/job/250710",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software QA Engineer, Insurance",
"source": "vanshb03",
"id": "474423cd-0ec9-4326-837a-2706d18834a0",
"date_posted": 1757578698,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757578703,
"url": "https://jobs.mcdonalds.com/job/Chicago-Software-Engineer-I-iOS-IL-60607/1322170500/",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "McDonald's Corporation",
"title": "Software Engineer I, iOS",
"source": "vanshb03",
"id": "204a1e62-9ebd-4919-96e1-b89d06b67ad8",
"date_posted": 1757578703,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638813,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/rec_rtx_ext_gateway/job/RI201-127-John-Clarke-Road-Middletwn-127-John-Clarke-Road-Suite-3-Middletown-RI-02842-USA/Software-Engineer-I---C-C---Linux--Onsite-_01791668",
"locations": [
"Middletown, RI"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "RTX Corporation",
"title": "Software Engineer I, C/C++ Linux",
"source": "vanshb03",
"id": "ccaa9b63-d58f-46ea-acf7-eaa2549814ce",
"date_posted": 1757579183,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757579220,
"url": "https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?jobId=560273",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "SpiderRock",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "b3715f11-2a50-4f9f-b16f-a98be5e2fa23",
"date_posted": 1757579220,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757579231,
"url": "https://d3.com/careers#jobs-listing",
"locations": [
"Los Angeles, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "D3 Global Inc",
"title": "New Grad: Backend Engineer",
"source": "vanshb03",
"id": "e8e22e0e-76a9-4ea8-b7ec-b87ba3d07a9c",
"date_posted": 1757579231,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757670431,
"url": "https://careers-daytonfreight.icims.com/jobs/16714/job?mobile=true&needsRedirect=false",
"company_name": "Dayton Freight Lines",
"title": "Entry Level Software Developer",
"locations": [
"Dayton, OH"
],
"active": true,
"source": "vanshb03",
"id": "2d4f397b-bd4f-4200-b13f-9d8321eb8495",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1764544719,
"url": "https://lplfinancial.wd1.myworkdayjobs.com/en-US/External/job/San-Diego-CA/New-Grad-2026---Technology--Software-Development_R-046207-1",
"company_name": "LPL Financial Holdings",
"title": "New Grad 2026: Technology, Software Development",
"locations": [
"Austin, TX",
"Fort Mill, SC",
"San Diego, CA"
],
"active": false,
"source": "vanshb03",
"id": "017d7b43-4339-4708-9375-af97145ab15d",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757964241,
"url": "https://bah.wd1.myworkdayjobs.com/bah_jobs/job/Arlington-VA/Data-Engineer--Junior_R0226048",
"company_name": "Booz Allen",
"title": "Junior Data Engineer",
"locations": [
"Arlington, VA"
],
"active": false,
"source": "vanshb03",
"id": "e70eb5c9-e50e-4745-8781-27d067c360c6",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757964245,
"url": "https://adobe.wd5.myworkdayjobs.com/external_experienced/job/San-Jose/XMLNAME-2026-University-Graduate---Junior-Product-Manager_R159932",
"company_name": "Adobe",
"title": "New Grad: Junior Product Manager",
"locations": [
"San Francisco, CA",
"San Jose, CA"
],
"active": false,
"source": "vanshb03",
"id": "a2bd88c9-46ec-4f9d-8596-6c5a1a8e7ee5",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670431,
"url": "https://jobs.ashbyhq.com/eliseai/1ffbd278-a5fe-443c-984f-521d61a97353",
"company_name": "EliseAI",
"title": "Software Engineer",
"locations": [
"New York, NY"
],
"active": true,
"source": "vanshb03",
"id": "018a1202-7227-4245-8869-141708b0c588",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1757670431,
"url": "https://careers-sig.icims.com/jobs/9716/job?mobile=true&needsRedirect=false",
"company_name": "Susquehanna International Group (SIG)",
"title": "New Grad: Software Developer, Sprc",
"locations": [
"Ardmore, PA"
],
"active": true,
"source": "vanshb03",
"id": "83035c63-cf51-43dd-af16-3dbceba30fce",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670431,
"url": "https://careers-i3-corps.icims.com/jobs/4833/job?mobile=true&needsRedirect=false",
"company_name": "Integration Innovation (i3)",
"title": "Entry Level Full-Stack Software Engineer",
"locations": [
"Huntsville, AL"
],
"active": true,
"source": "vanshb03",
"id": "2c3fabe3-95cd-418d-988f-e31b79b4ebfb",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670431,
"url": "https:/.workable.com/thorlabs/j/E79FA34ED4",
"company_name": "Thorlabs",
"title": "Software Engineer I",
"locations": [
"Annapolis Junction, MD"
],
"active": true,
"source": "vanshb03",
"id": "44acf3c6-0df4-43bb-a233-ce8b9d2147f7",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670431,
"url": "https://careers-sev1tech.icims.com/jobs/9092/job?mobile=true&needsRedirect=false",
"company_name": "Sev1Tech",
"title": "Entry Level Software Developer",
"locations": [
"Lawton, OK"
],
"active": true,
"source": "vanshb03",
"id": "b613ccb0-7dc2-4056-b507-9415cf812734",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670431,
"url": "https://careers-gdms.icims.com/jobs/67972/job?mobile=true&needsRedirect=false",
"company_name": "General Dynamics Mission Systems",
"title": "Entry Level Software Engineer",
"locations": [
"Pittsfield, MA"
],
"active": true,
"source": "vanshb03",
"id": "7ed10785-49a3-4087-9990-79a4584496ac",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757963734,
"url": "https://job-boards.greenhouse.io/gomotive/jobs/8134258002",
"company_name": "Motive",
"title": "Entry Level Backend Engineer",
"locations": [
"Remote",
"Canada"
],
"active": false,
"source": "vanshb03",
"id": "48b8e467-24ba-40d0-a5f3-678bdcc36779",
"date_posted": 1757670431,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1757670412,
"url": "https://www.workatastartup.com/jobs/81444",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Sonia",
"title": "Founding AI Engineer",
"source": "vanshb03",
"id": "9de93f43-ebc6-4afe-818f-7164e91f2644",
"date_posted": 1757670412,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757670708,
"url": "https://careers.garmin.com/jobs/16774",
"locations": [
"Chandler, AZ",
"Olathe, KS"
],
"sponsorship": "Other",
"active": true,
"company_name": "Garmin",
"title": "Software Engineer I, Aviation Web Development",
"source": "vanshb03",
"id": "6914b142-7dd6-4443-a881-e62c539ab833",
"date_posted": 1757670708,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757964250,
"url": "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/New-York---New-York/Java-Software-Engineer-AMTS_JR309960-1",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Salesforce",
"title": "Java Software Engineer AMTS",
"source": "vanshb03",
"id": "c77b52a1-4ffe-44df-abab-c67a7a4e4527",
"date_posted": 1757670719,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757670723,
"url": "https://www.uber.com/global/en/careers/list/144046/",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Uber",
"title": "Software Engineer I - Container Platform",
"source": "vanshb03",
"id": "ea4924d8-5997-433c-bb58-e5a92450a2a2",
"date_posted": 1757670723,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758393067,
"url": "https://jobs.careers.microsoft.com/global/en/job/1874807/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "e47c8751-0247-45e5-9cfb-b67720569b18",
"date_posted": 1757670728,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757670732,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR159933EXTERNALENUS/2026-University-Graduate-Software-Engineer",
"locations": [
"San Jose, CA",
"Lehi, UT"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "3cd950c6-c512-41d2-ac29-0a0a91eb97f4",
"date_posted": 1757670732,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757670758,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR159163EXTERNALENUS/2026-University-Graduate-Software-Engineer",
"locations": [
"San Jose, CA",
"Lehi, UT"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "5e25a939-4ed8-42d0-a22c-12be2ae4ca47",
"date_posted": 1757670758,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782448,
"url": "https://boards.greenhouse.io/embed/job_app?for=blackedgecapital&token=4600444005",
"locations": [
"Chicago, IL"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"company_name": "BlackEdge Capital",
"title": "Quantitative Researcher",
"source": "vanshb03",
"id": "9d3c397a-45e9-419e-a864-9d6380c16fff",
"date_posted": 1757670909,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757963734,
"url": "https://job-boards.greenhouse.io/twilio/jobs/7245466",
"company_name": "Twilio",
"title": "Software Engineer, Early Career - Messaging API",
"locations": [
"Remote",
"Canada"
],
"sponsorship": "Other",
"active": false,
"source": "PatrickWWWANG",
"id": "643f9358-95b4-4e2b-bb93-77963333f41d",
"date_posted": 1757750722,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758393067,
"url": "https://jobs.careers.microsoft.com/global/en/job/1873806/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "cbcc7bee-db3a-4dd3-89cb-0888bf8702b6",
"date_posted": 1757801227,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638647,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869402/Software-Engineer---AI%2FML%2C-Multiple-Locations",
"locations": [
"Redmond, WA",
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - AI/ML, Multiple Locations",
"source": "vanshb03",
"id": "1e61f849-f492-4137-b2ed-87eda4980a3d",
"date_posted": 1757801241,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638648,
"url": "https://jobs.careers.microsoft.com/global/en/job/1869430/Software-Engineer---Systems%2C-Multiple-Locations",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer, Systems",
"source": "vanshb03",
"id": "38350827-60d9-4e1c-8e4f-6fb2ab81557d",
"date_posted": 1757801250,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283135,
"url": "https://jobs.careers.microsoft.com/global/en/job/1872822/Software-Engineer---CTJ---Poly",
"locations": [
"Reston, VA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - CTJ - Poly",
"source": "vanshb03",
"id": "b85c8e98-a972-400a-b50d-3db143bed60c",
"date_posted": 1757801262,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757825139,
"url": "https://jobs.ashbyhq.com/Anima/a6b86f92-0679-423b-b575-a23f8677dfd1",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Anima",
"title": "Software Engineer",
"source": "vanshb03",
"id": "06e99988-3ec2-4eba-9684-d3dae244f258",
"date_posted": 1757825139,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757825155,
"url": "https://www.coalitioninc.com/job-posting/4560711005",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Coalition",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "1a6da461-bc07-4798-8d6a-13f4d81c361e",
"date_posted": 1757825155,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757827837,
"url": "https://www.workatastartup.com/jobs/81629",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Planbase",
"title": "Founding Engineer (Full-Stack)",
"source": "vanshb03",
"id": "5ea81105-ef41-42f4-a04b-9979a953a02b",
"date_posted": 1757827837,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757827869,
"url": "https://www.workatastartup.com/jobs/81628",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Benchify",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "2c6f116d-6bf7-48e7-be11-cac0fb64b1b6",
"date_posted": 1757827869,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638823,
"url": "https://capitalone.wd12.myworkdayjobs.com/en-US/Capital_One/job/Plano,-TX/Technology-Development-Program-Associate---August-2026_R218706-1",
"locations": [
"Plano, TX",
"Richmond, VA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Capital One",
"title": "Technology Development Program Associate",
"source": "vanshb03",
"id": "e59339b0-3156-4ebf-9a0e-753310f7cc8d",
"date_posted": 1757962691,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757962700,
"url": "https://careers.duolingo.com/jobs/8162849002",
"locations": [
"Pittsburgh, PA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Duolingo",
"title": "New Grad: Data Scientist",
"source": "vanshb03",
"id": "2461c1f7-c195-417c-83aa-76d348380202",
"date_posted": 1757962700,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1757962705,
"url": "https://careers.duolingo.com/jobs/8155283002",
"locations": [
"Pittsburgh, PA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Duolingo",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "f98ead95-0331-41fd-8a6e-998120f25f28",
"date_posted": 1757962705,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638827,
"url": "https://capitalone.wd12.myworkdayjobs.com/capital_one/job/Plano-TX/Product-Development-Program-Associate---2026_R219614-1",
"locations": [
"Plano, TX"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Capital One",
"title": "Product Development Program Associate",
"source": "vanshb03",
"id": "55f9284f-90e3-4613-b0e6-378ef7a2db01",
"date_posted": 1757963899,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758126514,
"url": "https://navexglobal.wd5.myworkdayjobs.com/navex/job/Hybrid-Lake-Oswego-OR/Associate-Software-Engineer_R6157",
"locations": [
"Lake Oswego, OR"
],
"sponsorship": "Other",
"active": false,
"company_name": "NAVEX",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "b7e55b78-e206-4c4d-8ade-25baec722ebe",
"date_posted": 1757963916,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638833,
"url": "https://tiaa.wd1.myworkdayjobs.com/search/job/Charlotte-NC-USA/XMLNAME-2026-Early-Talent-Rotational-Program--Technology_R250900271-1",
"locations": [
"Charlotte, NC",
"Dallas, TX",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "TIAA",
"title": "Early Talent Rotational Program: Technology",
"source": "vanshb03",
"id": "e0931bd1-e27f-4005-b507-12bedad41e44",
"date_posted": 1757963937,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760410092,
"url": "https://job-boards.greenhouse.io/alphataraxia/jobs/4875669007",
"locations": [
"Washington, DC"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Alphataraxia Management (ATX)",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "d45a9cd9-f9d8-4685-bfd6-8c332df34491",
"date_posted": 1757963943,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638837,
"url": "https://costar.wd1.myworkdayjobs.com/costar_campus/job/US-CA-San-Diego/Associate-Software-Engineer---San-Diego--CA_R37014",
"locations": [
"San Diego, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "CoStar Group",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "df8e94fc-4d80-491c-80ae-24cd971dae94",
"date_posted": 1757963945,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758126530,
"url": "https://lnw.wd5.myworkdayjobs.com/lightwonderexternalcareers/job/Reno-NV/Associate-Software-Engineer_R320511",
"locations": [
"Reno, NV",
"Las Vegas, NV"
],
"sponsorship": "Other",
"active": false,
"company_name": "Light & Wonder",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "ee6e8880-a3ef-4a2e-bf35-4bfebba70787",
"date_posted": 1757963955,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785019,
"url": "https://job-boards.greenhouse.io/sigmacomputing/jobs/7313083003",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Sigma Computing",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "98db9042-4177-4862-830e-01186d778556",
"date_posted": 1758028094,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758918598,
"url": "https://jobs.careers.microsoft.com/global/en/job/1872741/Software-Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "044b66ff-57a9-42dc-8144-2546afa07952",
"date_posted": 1758125044,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758689195,
"url": "https://jobs.careers.microsoft.com/global/en/job/1876157/Software-Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "62d1d9ff-bde7-46b8-b7e4-c43894af09d7",
"date_posted": 1758125002,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746140,
"url": "https://veteransunited.wd1.myworkdayjobs.com/en-US/vuhl/job/Remote-MO/Associate-Software-Engineer_R5288",
"company_name": "Veterans United Home Loans",
"title": "Associate Software Engineer",
"locations": [
"Remote, MO"
],
"active": false,
"source": "vanshb03",
"id": "687364b9-5ab8-4a09-98c8-913e7679c224",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1764544659,
"url": "https://job-boards.greenhouse.io/newsbreak/jobs/4054592006",
"company_name": "NewsBreak",
"title": "New Grad: Software Engineer",
"locations": [
"Mountain View, CA"
],
"active": false,
"source": "vanshb03",
"id": "9cae6ffc-54b3-40de-b9c3-6200d77dcb4b",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758125187,
"url": "https://jobs.ashbyhq.com/eventualcomputing/becb5675-3480-4d2b-b126-2acad40fd088/application",
"company_name": "Eventual",
"title": "New Grad: Software Engineer",
"locations": [
"San Francisco, CA"
],
"active": true,
"source": "vanshb03",
"id": "cf97f5fb-b4f1-4cbc-aa5b-7b933ce604a7",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758126539,
"url": "https://fifththird.wd5.myworkdayjobs.com/en-US/53careers/job/Cincinnati-OH/Quantitative-Analyst-I_R61935",
"company_name": "Fifth Third",
"title": "Quantitative Analyst I",
"locations": [
"Cincinnati, OH"
],
"active": false,
"source": "vanshb03",
"id": "b59c2626-16a9-4a50-98af-c23abfb9a687",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758126544,
"url": "https://ovative.wd12.myworkdayjobs.com/en-US/ovative/job/Minneapolis/Analyst--Data---Software-Engineering---October-2025-Start-Date_JR100105",
"company_name": "Ovative Group",
"title": "Analyst, Data & Software Engineering",
"locations": [
"Minneapolis, MN",
"Chicago, IL"
],
"active": false,
"source": "vanshb03",
"id": "8f0c13f6-e4b8-4d23-be2b-e147e523a61e",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759786194,
"url": "https://job-boards.greenhouse.io/lucidsoftware/jobs/5585768004",
"company_name": "Lucid Software",
"title": "Software Engineer",
"locations": [
"Raleigh, NC"
],
"active": false,
"source": "vanshb03",
"id": "515cf253-f510-4d9c-998d-bfe63d19ae99",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1759638847,
"url": "https://avav.wd1.myworkdayjobs.com/en-US/AVAV/job/Melbourne-FL/Software-Engineer--Apps--I_5898",
"company_name": "AV",
"title": "Software Engineer (Apps) I",
"locations": [
"Melbourne, FL"
],
"active": false,
"source": "vanshb03",
"id": "3e931265-46e0-45a3-bc2b-29fdcc61084b",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759786194,
"url": "https://job-boards.greenhouse.io/lucidsoftware/jobs/5585759004",
"company_name": "Lucid Software",
"title": "Software Engineer",
"locations": [
"Salt Lake City, UT"
],
"active": false,
"source": "vanshb03",
"id": "875399e6-3587-4044-95d4-d5bea85c9253",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1759638852,
"url": "https://oreillyauto.wd1.myworkdayjobs.com/oreilly/job/Remote-Colorado/Software-Engineer-I_R144461",
"company_name": "O'Reilly Auto Parts",
"title": "Software Engineer I",
"locations": [
"Colorado, CO"
],
"active": false,
"source": "vanshb03",
"id": "20ab0410-a072-4a67-9f2f-e60b67321e3d",
"date_posted": 1758125187,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442892,
"url": "https://costar.wd1.myworkdayjobs.com/confidential/job/US-CA-San-Diego/Associate-Software-Engineer---San-Diego--CA_R37014-1",
"locations": [
"San Diego, CA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "CoStar Group",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "bc8740b9-4826-4c7b-8812-57f3b28fe6ac",
"date_posted": 1758382918,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638861,
"url": "https://sands.wd1.myworkdayjobs.com/referral_sands_careers/job/Dallas-Texas/Software-Engineer_R25_0337",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Las Vegas Sands Corp.",
"title": "Associate Software Engineer",
"source": "vanshb03",
"id": "566ccf0d-0813-42fe-9f15-c97687af22b6",
"date_posted": 1758382930,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638866,
"url": "https://nike.wd1.myworkdayjobs.com/nke/job/Beaverton-Oregon/Software-Engineer-I---Innovation_R-69655",
"locations": [
"Beaverton, OR"
],
"sponsorship": "Other",
"active": false,
"company_name": "Nike",
"title": "Software Engineer I - Innovation",
"source": "vanshb03",
"id": "42acb57e-9e30-48bb-b6f9-87dc1df7df40",
"date_posted": 1758382966,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759638870,
"url": "https://nike.wd1.myworkdayjobs.com/nke/job/Boston-Massachusetts/Associate-Software-Engineer--Converse-Tech_R-66359",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Converse",
"title": "Associate Software Engineer, Converse Tech",
"source": "vanshb03",
"id": "9f506050-da30-4e78-93cf-3b3429967cbc",
"date_posted": 1758382975,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208858,
"url": "https://td.wd3.myworkdayjobs.com/td_bank_careers/job/New-York-New-York/XMLNAME-2026-Full-Time-Analyst-Rotational-Program---Software-Engineering_R_1446300",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "TD",
"title": "Full Time Analyst Rotational Program, Software Engineering",
"source": "vanshb03",
"id": "e0a5fee7-4b38-48e0-b6e3-e94ed0b4f6ac",
"date_posted": 1758383486,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785176,
"url": "https://aig.wd1.myworkdayjobs.com/early_careers/job/NC-Charlotte/XMLNAME-2026---Early-Career---Technology---Analyst---United-States--Jersey-City--NJ--or-Charlotte--NC-_JR2504979",
"locations": [
"Jersey City, NJ",
"Charlotte, NC"
],
"sponsorship": "Other",
"active": false,
"company_name": "AIG",
"title": "New Grad 2026: Technology Analyst",
"source": "vanshb03",
"id": "87a8e8c6-61ef-4a92-b0eb-adad6fbacfbf",
"date_posted": 1758383531,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785180,
"url": "https://aig.wd1.myworkdayjobs.com/aig/job/NC-Charlotte/XMLNAME-2026---Early-Career---Technology---Analyst---United-States--Jersey-City--NJ--or-Charlotte--NC-_JR2504979-1",
"locations": [
"Jersey City, NJ",
"Charlotte, NC"
],
"sponsorship": "Other",
"active": false,
"company_name": "AIG",
"title": "New Grad 2026: Technology Analyst",
"source": "vanshb03",
"id": "c2019e42-0a19-419b-8d5c-ddff8b9a2f6c",
"date_posted": 1758383542,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758384217,
"url": "https://jobs.apple.com/en-us/details/200622152-0836/camera-framework-engineer-photo-capture",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Camera Framework Engineer, Photo Capture",
"source": "vanshb03",
"id": "6f47fb6c-f3c9-408a-8605-ac7505817be0",
"date_posted": 1758384217,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758387560,
"url": "https://www.workatastartup.com/jobs/80837",
"locations": [
"New York, NY"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Channel3",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "499a6ee9-9921-459a-8ca3-d6bcf5979b62",
"date_posted": 1758387560,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758392904,
"url": "https://jobs.ashbyhq.com/interaction/56b66af2-bce5-4ad7-baf9-ace14eb6a29a",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Interaction",
"title": "Member of Technical Staff",
"source": "vanshb03",
"id": "b14e6735-8713-4ef6-a229-cb17216efcfb",
"date_posted": 1758392904,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758689296,
"url": "https://jobs.ashbyhq.com/notion/f7399542-9122-481a-bf64-43bf8093748b",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Notion",
"title": "Software Engineer, Fullstack, Early Career",
"source": "vanshb03",
"id": "1c67c620-a130-4ade-9fa4-a4de51ac9cf7",
"date_posted": 1758689296,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758689300,
"url": "https://jobs.ashbyhq.com/notion/add58865-8b9f-4cf7-9720-2908ba5f4d80",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Notion",
"title": "Software Engineer, Infrastructure, Early Career",
"source": "vanshb03",
"id": "4051ecc3-bb1d-4ba6-8c83-1f10e9633e06",
"date_posted": 1758689300,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758841350,
"url": "https://app.ripplematch.com/v2/public/job/2ddc776c",
"company_name": "Plaid",
"title": "Software Engineer",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"source": "johnadams145",
"id": "e2ed1362-affc-4477-9935-b0d10cf62e07",
"date_posted": 1758841350,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758841377,
"url": "https://northmark.wd108.myworkdayjobs.com/en-US/NMS/job/Graduate-Program_R12714",
"company_name": "NorthMark Strategies",
"title": "New Grad: Software Engineer",
"locations": [
"Dallas, TX"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"source": "TimothyNaumov",
"id": "754cebef-41c8-4312-8b5a-4c8f81ac3d41",
"date_posted": 1758841377,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1758917913,
"url": "https://careers-cellularsales.icims.com/jobs/19001/junior-data-engineer/job",
"company_name": "Cellular Sales",
"title": "Junior Data Engineer",
"locations": [
"Knoxville, TN"
],
"active": true,
"source": "vanshb03",
"id": "f9d05374-9676-45f8-bb09-2ac27984ff13",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638894,
"url": "https://citi.wd5.myworkdayjobs.com/en-US/2/job/Getzville-New-York-United-States/Reference-Data-Analyst-Junior_25905888",
"company_name": "Citi",
"title": "Junior Data Analyst ",
"locations": [
"Getzville, NY"
],
"active": false,
"source": "vanshb03",
"id": "bc827fef-2373-4a68-8b9c-802b00211721",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1764544740,
"url": "https://ciena.wd5.myworkdayjobs.com/Careers/job/Ottawa/Routing-IP-Software-Engineer---New-Grad_R029033",
"company_name": "Ciena",
"title": "New Grad: Routing/IP Software Engineer",
"locations": [
"Ottawa, ON, Canada"
],
"active": false,
"source": "vanshb03",
"id": "2c3d0d26-1c09-48a0-baf5-e3fdc825f6d6",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638904,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/RCT99-RTN-Remote-Connecticut/Fiori-Front-End-Developer--Entry-level-_01796231",
"company_name": "RTX",
"title": "Front End Developer, Entry Level",
"locations": [
"Waterbury, CT"
],
"active": false,
"source": "vanshb03",
"id": "6b9efc9a-e829-459e-a4a0-eb45f1598dbe",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638908,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/MA131-Tewksbury-MA-Bldg--1-Assabet-50-Apple-Hill-Drive-Assabet---Building-1-Tewksbury-MA-01876-USA/XMLNAME-2026-Raytheon-Systems-Security-Engineer-I---Onsite---Massachusetts_01790370",
"company_name": "RTX",
"title": "Systems Security Engineer 1, Systems Security Engineering",
"locations": [
"Tewksbury, MA"
],
"active": false,
"source": "vanshb03",
"id": "6a91b5b4-4a77-4150-bd16-5aae02424e99",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638912,
"url": "https://westernalliancebank.wd5.myworkdayjobs.com/en-US/WAB/job/Phoenix-AZ/Engineer-I---AI-Business-Engineer_R11486",
"company_name": "Western Alliance Bancorporation",
"title": "Engineer I, AI Business Engineer",
"locations": [
"Phoenix, AZ"
],
"active": false,
"source": "vanshb03",
"id": "24382117-9df1-4193-8bb7-f66a1f83ec32",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638648,
"url": "https://jobs.lever.co/wolve/b42f4d54-02e1-4549-a6a5-7cd5673c8216",
"company_name": "Wolverine Trading",
"title": "C++ Software Engineer",
"locations": [
"Chicago, IL"
],
"active": false,
"source": "vanshb03",
"id": "782c9bf7-6996-45a9-9738-11fe9ddce5ea",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1759638917,
"url": "https://medtronic.wd1.myworkdayjobs.com/en-US/redeploymentmedtroniccareers/job/Northridge-California-United-States-of-America/Software-Operations-Engineer-I_R46476",
"company_name": "Medtronic",
"title": "Software Operations Engineer I",
"locations": [
"Northridge, CA"
],
"active": false,
"source": "vanshb03",
"id": "b7ae7469-14fc-41e5-871d-64a3accafae0",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1759638922,
"url": "https://amat.wd1.myworkdayjobs.com/en-US/External/job/Santa-ClaraCA/Software-Engineer-New-College-Grad---Masters-Degree--Santa-Clara--CA-_R2517309",
"company_name": "Applied Materials",
"title": "Software Engineer New College Grad - Masters Degree",
"locations": [
"Santa Clara, CA"
],
"active": false,
"source": "vanshb03",
"id": "4bd934b2-c8ad-4d9d-918f-c388c717bbb2",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758917913,
"url": "https://jobs.ashbyhq.com/persona/fd4d41b2-42b4-454e-91ad-d61fdc6a0042/application",
"company_name": "Persona",
"title": "Software Engineer 2026 New Grad",
"locations": [
"SF"
],
"active": true,
"source": "vanshb03",
"id": "1d77402b-0403-4c71-9e9e-77961cad162e",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638926,
"url": "https://icf.wd5.myworkdayjobs.com/icfexternal_career_site/job/Reston-VA/Software-Developer--Summer-2026--Entry-Level--Remote-_R2502713",
"company_name": "ICF International",
"title": "Software Developer \u2013 Entry Level - Summer 2026",
"locations": [
"Reston, VA"
],
"active": false,
"source": "vanshb03",
"id": "dc356eb4-f16f-4196-9d91-fad21833cd7f",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638931,
"url": "https://snc.wd1.myworkdayjobs.com/snc_external_career_site/job/Southern-Pines-NC/Software-Engineer-I_R0028548",
"company_name": "Sierra Nevada Coporation",
"title": "Software Engineer 1 - Agile Software Development - Mission Solutions and Technologies",
"locations": [
"Southern Pines, NC"
],
"active": false,
"source": "vanshb03",
"id": "c0e2a5cf-a844-489c-b12d-5fbe791ea840",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638936,
"url": "https://swa.wd1.myworkdayjobs.com/en-US/external/job/TX-Dallas/Associate-Data-Scientist---Direct-College-Hire_R-2025-59817",
"company_name": "Southwest Airlines",
"title": "Associate Data Scientist",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "83071cf3-5537-4c64-a20b-8ad4c04715ad",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759638940,
"url": "https://swa.wd1.myworkdayjobs.com/en-US/external/job/TX-Dallas/Associate-Software-Engineer---Direct-College-Hire_R-2025-59811",
"company_name": "Southwest Airlines",
"title": "Associate Software Engineer",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "ba91ae38-3133-4dd2-94db-5f93569621df",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759638944,
"url": "https://swa.wd1.myworkdayjobs.com/en-US/external/job/TX-Dallas/Associate-Software-Engineer---Direct-College-Hire_R-2025-59810",
"company_name": "Southwest Airlines",
"title": "Associate Software Engineer",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "8e86da2e-3fd3-4a9f-8fba-87759d470103",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759638949,
"url": "https://swa.wd1.myworkdayjobs.com/en-US/external/job/TX-Dallas/Associate-Data-Engineer---Direct-College-Hire_R-2025-59813",
"company_name": "Southwest Airlines",
"title": "Associate Data Engineer",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "ee03f9a7-18c9-4f91-bf91-e9e8664e861a",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759638953,
"url": "https://swa.wd1.myworkdayjobs.com/en-US/external/job/TX-Dallas/Associate-Data-Engineer---Direct-College-Hire_R-2025-59816",
"company_name": "Southwest Airlines",
"title": "Associate Data Engineer",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "63e6dc5d-1217-4c5f-8f08-00d8a8341863",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759638957,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/HIA32-Cedar-Rapids-IA-400-Collins-Rd-NE---Cedar-Rapids-IA-52498-0505-USA/Software-Engineer-I--Onsite-_01796448",
"company_name": "RTX",
"title": "Software Engineer 1",
"locations": [
"Cedar Rapids, IA"
],
"active": false,
"source": "vanshb03",
"id": "03b57c1d-9b7c-4561-83a0-8fc150750d03",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758917913,
"url": "https://www.pinterestcareers.com/job-form?gh_jid=7211012",
"company_name": "Pinterest",
"title": "New Grad 2026: Software Engineer",
"locations": [
"Palo Alto, CA",
"Seattle, WA",
"SF"
],
"active": true,
"source": "vanshb03",
"id": "0c3bcf3e-35a0-496e-8bf8-9800832fcb89",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638962,
"url": "https://amat.wd1.myworkdayjobs.com/en-US/External/job/Santa-ClaraCA/Data-Scientist-New-College-Grad---Bachelors-Degree--Santa-Clara--CA-_R2517338",
"company_name": "Applied Materials",
"title": "New Grad 2026: Data Scientist",
"locations": [
"Santa Clara, CA"
],
"active": false,
"source": "vanshb03",
"id": "78341967-2647-44f1-b84b-4a39b372f08e",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1758917913,
"url": "https://jobs.ashbyhq.com/parafin/ced48a0b-f5ed-491a-ae38-2301fb881bd9/application",
"company_name": "Parafin",
"title": "New Grad: Software Engineer",
"locations": [
"SF"
],
"active": true,
"source": "vanshb03",
"id": "288067b5-2d3b-4992-9a00-75e18a4ab1de",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638967,
"url": "https://relx.wd3.myworkdayjobs.com/en-US/relx/job/Alpharetta-GA/Data-Engineer-I_R100031-1",
"company_name": "RELX",
"title": "Data Engineer 1, Insurance Industry",
"locations": [
"Alpharetta, GA"
],
"active": false,
"source": "vanshb03",
"id": "6406bab1-418e-4e3d-a8cf-be0112d91398",
"date_posted": 1758917913,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759260774,
"url": "https://www.google.com/about/careers/applications/jobs/results/79125737784648390",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Google",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "21405d15-54dd-45da-a0f1-9ea32ffc3f54",
"date_posted": 1759260774,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759261119,
"url": "https://ibqbjb.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/Honeywell/jobs/job/116510",
"company_name": "Honeywell",
"title": "Software Engineer I",
"locations": [
"Fort Mill, SC"
],
"active": true,
"source": "vanshb03",
"id": "04dc09cc-6a15-4b6c-81d9-9ce85d513b36",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759261119,
"url": "https://ibqbjb.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/Honeywell/jobs/job/119931",
"company_name": "HoneyWell",
"title": "Software Engineer I",
"locations": [
"Clearwater, FL"
],
"active": true,
"source": "vanshb03",
"id": "d504c3bc-9216-4430-99f9-5637046ca7d8",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759261119,
"url": "https://www.esri.com/careers/4921407007?gh_jid=4921407007",
"company_name": "Esri",
"title": "Software Development Engineer 1",
"locations": [
"St. Louis, MO"
],
"active": true,
"source": "vanshb03",
"id": "e7033ae3-4fdf-4b13-bcec-f06522c7de00",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1760785195,
"url": "https://generalmotors.wd5.myworkdayjobs.com/en-US/Careers_GM/job/Mountain-View-California-United-States-of-America/Software-Engineer---Early-Career_JR-202517310",
"company_name": "General Motors",
"title": "Software Engineer",
"locations": [
"Milford Charter Twp, MI",
"Austin, TX",
"Mountain View, CA",
"Warren, MI"
],
"active": false,
"source": "vanshb03",
"id": "4eac4bbc-42c1-432f-a616-ae90f3b08174",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1759261119,
"url": "https://jobs.mcdonalds.com/job/Chicago-Software-Engineer-I-IL-60607/1329771000/?ats=successfactors",
"company_name": "McDonald's",
"title": "Software Engineer 1",
"locations": [
"Chicago, IL"
],
"active": true,
"source": "vanshb03",
"id": "d498e3ce-cfb7-4ead-b889-14e9ea23cc76",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1767746150,
"url": "https://ciena.wd5.myworkdayjobs.com/Careers/job/Ottawa/Modem-Hardware---Engineer-New-Grad_R028721",
"company_name": "Ciena",
"title": "New Grad: Modem Hardware Engineer",
"locations": [
"Ottawa, ON, Canada"
],
"active": false,
"source": "vanshb03",
"id": "71179904-acf0-4613-864d-45002cca44de",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759261119,
"url": "https://jobs.comcast.com/job/-/-/45483/86516813920",
"company_name": "Comcast",
"title": "Software Engineer 1",
"locations": [
"Chicago, IL",
"Englewood, CO"
],
"active": true,
"source": "vanshb03",
"id": "5e55899d-b3f7-4b46-ad42-c0a0d05a7997",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759638980,
"url": "https://lplfinancial.wd1.myworkdayjobs.com/en-US/External/job/Fort-MillCharlotte/Engineer-I--Software-Development_R-046445",
"company_name": "LPL Financial Holdings",
"title": "Engineer I, Software Development",
"locations": [
"Austin, TX",
"Fort Mill, SC",
"Charlotte, NC"
],
"active": false,
"source": "vanshb03",
"id": "1145a07e-2eb2-4f5d-bc12-89d752283058",
"date_posted": 1759261119,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759786074,
"url": "https://careersatdoordash.com/jobs/software-engineer-i-entry-level-graduation-date-fall-2025-summer-2026/7263610/",
"locations": [
"New York, NY",
"San Francisco, CA",
"Los Angeles, CA",
"Seattle, WA",
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "DoorDash",
"title": "New Grad: Software Engineer I",
"source": "vanshb03",
"id": "70264109-99ca-4129-bc64-efa7eb25fa59",
"date_posted": 1759786074,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208890,
"url": "https://centene.wd5.myworkdayjobs.com/Centene_External/job/Remote-MO/Data-Engineer-I_1604624",
"company_name": "Centene",
"title": "Data Engineer I",
"locations": [
"Remote"
],
"active": false,
"source": "vanshb03",
"id": "4878e9ee-d7a9-4ed5-8f72-977020ef6c3e",
"date_posted": 1759786116,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1759786116,
"url": "https://aexp.eightfold.ai/careers/job/38270703",
"company_name": "American Express",
"title": "Software Engineer 1, Technology",
"locations": [
"Plantation, FL"
],
"active": true,
"source": "vanshb03",
"id": "2fadd3ac-6894-4d22-9d69-f498454ebd43",
"date_posted": 1759786116,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1760208895,
"url": "https://nelnet.wd1.myworkdayjobs.com/en-US/MyNelnet/job/Lincoln-NE/Data-Analyst-I---Consumer-Loan-Analytics_R21677-1",
"company_name": "Nelnet",
"title": "Data Analyst I, Consumer Loan Analytics",
"locations": [
"Lincoln, NE",
"Madison, WI",
"Brownsville, TX",
"Centennial, CO"
],
"active": false,
"source": "vanshb03",
"id": "002bb8e2-0d60-40af-9c7a-fa4049226971",
"date_posted": 1759786116,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1759786116,
"url": "https://careers-gdms.icims.com/jobs/68413",
"company_name": "General Dynamics Mission Systems",
"title": "Junior Software Engineer",
"locations": [
"Dedham, MA"
],
"active": true,
"source": "vanshb03",
"id": "c40c9f50-3e5d-463c-84b6-ee03c44e7c0c",
"date_posted": 1759786116,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1759786354,
"url": "https://www.tesla.com/careers/search/job/252374",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Machine Learning Infrastructure Simulation Engineer, Optimus",
"source": "vanshb03",
"id": "436ee1f6-af06-4ec9-aa6a-ac3930534368",
"date_posted": 1759786354,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785204,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Deep-Learning-Algorithm-Engineer--Dynamo---New-College-Grad-2025_JR2001320-1",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Deep Learning Algorithm Engineer, Dynamo",
"source": "vanshb03",
"id": "9324ff3c-e84b-47c5-85e0-d7808d49b21a",
"date_posted": 1759786359,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760078850,
"url": "https://jobs.careers.microsoft.com/global/en/job/1884064/Software-Engineer",
"locations": [
"Redmond, WA",
"Mountain View, CA",
"Atlanta, GA",
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "639ba883-c746-42e3-8daa-5aa6fc6d3c9a",
"date_posted": 1759786400,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760482750,
"url": "https://job-boards.greenhouse.io/grafanalabs/jobs/5665656004",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Grafana Labs",
"title": "Software Security Engineer",
"source": "vanshb03",
"id": "758989e2-7cbc-4e04-abd5-759ac6c656d3",
"date_posted": 1759786404,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760410093,
"url": "https://jobs.careers.microsoft.com/global/en/job/1879561/Software-Engineer",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "0010debe-62f8-475a-ad7f-497879320f78",
"date_posted": 1759786426,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760078850,
"url": "https://jobs.lever.co/wolve/b42f4d54-02e1-4549-a6a5-7cd5673c8216",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": false,
"company_name": "Wolverine Trading",
"title": "C++ Software Engineer",
"source": "vanshb03",
"id": "2bd82fb6-a5fe-4ba4-a683-0241a9ed7c34",
"date_posted": 1759976724,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767283135,
"url": "https://jobs.lever.co/gauntlet/05622c55-52bf-47a9-8d88-e83d70fc5bad",
"locations": [
"New York City, NY",
"San Francisco, CA",
"Los Angeles, CA",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Gauntlet",
"title": "New Grad: Quant Research Engineer",
"source": "vanshb03",
"id": "57c64308-91d1-47a6-92da-aff6b4ff4328",
"date_posted": 1759976727,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759976734,
"url": "https://www.tesla.com/careers/search/job/252946",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Full Stack Software Engineer, Battery Optimization",
"source": "vanshb03",
"id": "e7c43879-2eef-4a1a-aaeb-1e6a3437a91b",
"date_posted": 1759976734,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759976738,
"url": "https://www.tesla.com/careers/search/job/252915",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Sensing Software Engineer",
"source": "vanshb03",
"id": "05aac9ba-bba0-4927-9c11-0e09fc79f493",
"date_posted": 1759976738,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442911,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/CAD-Engineer--Physical-Design---New-College-Grad-2026_JR2005254",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: CAD Engineer, Physical Design",
"source": "vanshb03",
"id": "3719b601-3315-4f2b-8534-bcafe02981d1",
"date_posted": 1759976740,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785020,
"url": "https://jobs.careers.microsoft.com/global/en/job/1882254/Software-Engineer",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "87275846-4644-40c6-afed-b5f84329b050",
"date_posted": 1759976753,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760647228,
"url": "https://jobs.careers.microsoft.com/global/en/job/1887174/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "f7a04081-ee0e-414d-a199-dc895946a54d",
"date_posted": 1759976759,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1759976813,
"url": "https://university-uber.icims.com/jobs/149558/job",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Uber",
"title": "New Grad 2025: Software Engineer I",
"source": "vanshb03",
"id": "bb23c197-5910-4caf-923b-9118085f6545",
"date_posted": 1759976813,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760071515,
"url": "https://jobs.ashbyhq.com/anyscale/31d09081-f5e7-45e4-b561-1c53d0ca9200",
"locations": [
"San Francisco, CA",
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Anyscale",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "13003e48-b8f4-417c-b9cb-2db87d60285c",
"date_posted": 1760071515,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760071571,
"url": "https://joinbytedance.com/search/7540061337369954567",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Site Reliability Engineer (Edge Services)",
"source": "vanshb03",
"id": "def13002-015f-4964-b2f3-1d8627798703",
"date_posted": 1760071571,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442916,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Software-Engineer--CAD-Automation---New-College-Grad-2025_JR2005867",
"locations": [
"Santa Clara, CA",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Software Engineer, CAD Automation",
"source": "vanshb03",
"id": "f32fe477-4afd-40f3-a631-df8458e347ac",
"date_posted": 1760071576,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760071659,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR158639EXTERNALENUS/2026-University-Graduate-AI-Context-Engineer",
"locations": [
"San Jose, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "New Grad 2026: AI Context Engineer",
"source": "vanshb03",
"id": "96d71f60-b57a-4a49-b716-a4627b549e83",
"date_posted": 1760071659,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442921,
"url": "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/Texas---Dallas/Software-Engineering-AMTS_JR313404-2",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Salesforce",
"title": "Software Engineer",
"source": "vanshb03",
"id": "4046c5c5-94cd-458e-b12f-633e131a50d1",
"date_posted": 1760208290,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544659,
"url": "https://job-boards.greenhouse.io/speechify/jobs/5672315004",
"locations": [
"San Angelo, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Speechify",
"title": "Software Engineer, Platform",
"source": "vanshb03",
"id": "ffd83463-28ac-4ee6-b87a-52f3b155c7e2",
"date_posted": 1760208339,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923617,
"url": "https://hp.wd5.myworkdayjobs.com/exteu-ac-careersite/job/Spring-Texas-United-States-of-America/Software-Development-Graduate_3152963",
"locations": [
"Spring, TX",
"Palo Alto, CA",
"Boise, ID",
"Corvallis, OR",
"Vancouver, WA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "HP",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "34837f78-7607-4c3f-b87f-b4e98c70916e",
"date_posted": 1760208344,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746159,
"url": "https://bah.wd1.myworkdayjobs.com/bah_jobs/job/Huntsville-AL/Software-Developer_R0226649",
"locations": [
"Huntsville, AL"
],
"sponsorship": "Other",
"active": false,
"company_name": "Booz Allen Hamilton",
"title": "Full-Stack Developer, Junior",
"source": "vanshb03",
"id": "f0c2557a-95de-44b2-972b-aa8bd5de3e0c",
"date_posted": 1760208348,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785233,
"url": "https://humana.wd5.myworkdayjobs.com/humana_external_career_site/job/Remote-Nationwide/XIAM-Software-Engineer_R-388461",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Humana",
"title": "Software Engineer",
"source": "vanshb03",
"id": "b3d7d908-8f63-4efa-bd4a-261a5f7a3d75",
"date_posted": 1760208355,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208362,
"url": "https://job-boards.greenhouse.io/appian/jobs/7287884",
"locations": [
"McLean, VA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Appian",
"title": "Product Engineer",
"source": "vanshb03",
"id": "d60ff0cd-182f-4126-b3de-924082837c85",
"date_posted": 1760208362,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208367,
"url": "https://uneekor.bamboohr.com/careers/119",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Uneekor",
"title": "Software Quality Assurance Engineer",
"source": "vanshb03",
"id": "96165ad0-ac79-4fe7-a228-da3769cf30ec",
"date_posted": 1760208367,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760410093,
"url": "https://job-boards.greenhouse.io/mergeworld/jobs/7315751",
"locations": [
"Denver, CO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "MERGE",
"title": "Associate Agentic Engineer",
"source": "vanshb03",
"id": "0ccbe21c-b30a-425e-90b3-5d6ff3453f3c",
"date_posted": 1760208370,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760785238,
"url": "https://travelers.wd5.myworkdayjobs.com/external/job/CT---Hartford/Software-Engineer-I--Python--Web-Development--LLM-_R-47356",
"locations": [
"Hartford, CT"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Travelers",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "a4a1a547-c468-407e-84b7-846e3578b2ea",
"date_posted": 1760208377,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442936,
"url": "https://asml.wd3.myworkdayjobs.com/asmlext1/job/San-Diego-CA-USA/Software-Engineer_J-00328147",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "ASML",
"title": "Software Engineer",
"source": "vanshb03",
"id": "1bc437ec-ad15-440d-986a-f233bd1b4a79",
"date_posted": 1760208382,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442940,
"url": "https://bah.wd1.myworkdayjobs.com/bah_jobs/job/Rome-NY/Software-Engineer_R0228061",
"locations": [
"Rome, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Booz Allen Hamilton",
"title": "Software Engineer",
"source": "vanshb03",
"id": "a56617e2-d354-4996-b3fc-d53534c1aa84",
"date_posted": 1760208386,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208486,
"url": "https://www.quinstreet.com/careers/?gh_jid=7316288",
"locations": [
"Foster City, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "QuinStreet",
"title": "Software Engineer",
"source": "vanshb03",
"id": "27dd0a39-9291-445b-83fc-ba823fc3c6cf",
"date_posted": 1760208486,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442945,
"url": "https://capitalone.wd12.myworkdayjobs.com/en-US/Capital_One/job/Toronto-ON/Associate--Software-Engineer--New-Grad_R226913",
"locations": [
"Toronto, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Capital One",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "347c3e5b-d41a-4796-a544-7b72ed0a776c",
"date_posted": 1760208568,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308221,
"url": "https://ciena.wd5.myworkdayjobs.com/en-US/Careers/job/Ottawa/RLS-Photonics-Software-Engineer---2026-New-Grads_R029181",
"locations": [
"Ottawa, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Ciena",
"title": "New Grad 2026: RLS Photonics Software Engineer",
"source": "vanshb03",
"id": "65233a67-d1ec-4649-a171-b376a7419cc5",
"date_posted": 1760208574,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544765,
"url": "https://ciena.wd5.myworkdayjobs.com/en-US/Careers/job/Ottawa/Software-Engineer-Packet-Platform---New-Grad_R029137",
"locations": [
"Ottawa, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Ciena",
"title": "New Grad: Software Engineer Packet Platform",
"source": "vanshb03",
"id": "f70981fd-478e-4679-b67c-0956cfcdf926",
"date_posted": 1760208577,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208581,
"url": "https://efpv.fa.us6.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/6828",
"locations": [
"Burnaby, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Infoblox",
"title": "Associate Data Engineer",
"source": "vanshb03",
"id": "4969dd28-99f3-46e0-a118-4d3d98b9aabf",
"date_posted": 1760208581,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442959,
"url": "https://clio.wd3.myworkdayjobs.com/en-US/ClioCareerSite/job/Calgary/Software-Developer_BF-REQ-3857",
"locations": [
"Calgary, Canada"
],
"sponsorship": "Other",
"active": false,
"company_name": "Clio",
"title": "Software Developer",
"source": "vanshb03",
"id": "3eda5752-038b-42db-8e6d-f8ff3c8e51c0",
"date_posted": 1760208587,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760208592,
"url": "https://careers.quadient.com/en/jobs/junior-software-engineer",
"locations": [
"Vancouver, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Quadient",
"title": "Software Engineer",
"source": "vanshb03",
"id": "078420f1-d46c-4bf9-aafa-59ea500d2520",
"date_posted": 1760208592,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760482719,
"url": "https://www.tesla.com/careers/search/job/253221",
"locations": [
"Austin, TX",
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Verification Infrastructure & DevOps Engineer, AI Hardware",
"source": "vanshb03",
"id": "0a02e44f-5454-4d3b-b153-8afd8a594a04",
"date_posted": 1760482719,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760482723,
"url": "https://www.tesla.com/careers/search/job/253222",
"locations": [
"Austin, TX",
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Infrastructure & DevOps Engineer, AI Hardware",
"source": "vanshb03",
"id": "3476a13b-189f-4142-8ca1-27373ef6d39b",
"date_posted": 1760482723,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125800,
"url": "https://jobs.careers.microsoft.com/global/en/job/1848352/Software-Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "e54a2cce-acfc-4336-b1ee-a1db3f25b8aa",
"date_posted": 1760482728,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125800,
"url": "https://jobs.careers.microsoft.com/global/en/job/1872621/Software-Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "1a8a29fd-3d2f-4624-b81f-91cca149fd8d",
"date_posted": 1760482734,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760482769,
"url": "https://aurora.tech/careers/8137861002",
"company_name": "Aurora",
"title": "Security Software Engineer I",
"locations": [
"Mountain View, CA"
],
"active": true,
"source": "vanshb03",
"id": "0b06f290-8376-4237-b97c-865627128884",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1760482769,
"url": "https://aig.wd1.myworkdayjobs.com/aig/job/GA-Atlanta/XMLNAME-2026-Early-Career---Gen-AI---Data-Engineering-Analyst---United-States--Atlanta--GA--_JR2505609-1",
"company_name": "AIG",
"title": "Early Career Analyst, Gen AI, Data Engineering",
"locations": [
"Atlanta, GA"
],
"active": true,
"source": "vanshb03",
"id": "4031dc4a-ff3c-4ed5-9f1e-f2ec1906d73a",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760482769,
"url": "https://jobs.ashbyhq.com/lambda/1b1cac37-a29c-46b2-ad1a-a946d1e87d41",
"company_name": "Lambda",
"title": "Cloud Support Engineer I (Support Response)",
"locations": [
"Remote in USA"
],
"active": true,
"source": "vanshb03",
"id": "ff0a574c-5a1c-44d0-a6c4-3a75b273e08b",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1765308230,
"url": "https://insulet.wd5.myworkdayjobs.com/en-US/insuletcareers/job/Acton-Massachusetts/Associate-Software-QA-Engineer--Hybrid---Acton--MA-_REQ-2025-13185",
"company_name": "Insulet Corporation",
"title": "Associate Software QA Engineer",
"locations": [
"Acton, MA"
],
"active": false,
"source": "vanshb03",
"id": "82c1c79b-cbb8-4699-8ec6-77f8d4366ed5",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442973,
"url": "https://carislifesciences.wd12.myworkdayjobs.com/en-US/cls/job/Irving-TX--75063/Associate-Software-Engineer---Clinical-Systems--External-Apps-_JR104015",
"company_name": "Caris",
"title": "Associate Software Engineer, Clinical Systems",
"locations": [
"Irving, TX"
],
"active": false,
"source": "vanshb03",
"id": "e91173d3-b036-4e7f-a313-72b6b74d6e51",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1763442977,
"url": "https://carislifesciences.wd12.myworkdayjobs.com/en-US/cls/job/Irving-TX--75063/Associate-Software-Engineer---Clinical-Systems--Lab-Ops-_JR104012-1",
"company_name": "Caris",
"title": "Associate Software Engineer, Clinical Systems",
"locations": [
"Irving, TX"
],
"active": false,
"source": "vanshb03",
"id": "74403e9b-cf9c-4844-a13f-ee3afe79f578",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1763442982,
"url": "https://carislifesciences.wd12.myworkdayjobs.com/en-US/cls/job/Irving-TX--75063/Associate-Software-Engineer---Clinical-Systems--Digital-Path-_JR104014",
"company_name": "Caris",
"title": "Associate Software Engineer, Clinical Systems",
"locations": [
"Irving, TX"
],
"active": false,
"source": "vanshb03",
"id": "0da2fcde-db24-4952-aaf2-9e9ac2521397",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1760482769,
"url": "https://aurora.tech/jobs/8209480002?gh_jid=8209480002",
"company_name": "Aurora Innovation",
"title": "Software Engineer 1",
"locations": [
"Pittsburgh, PA"
],
"active": true,
"source": "vanshb03",
"id": "c79ba0d8-b60c-4344-8550-45a73cb92050",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760482769,
"url": "https://aurora.tech/jobs/8191750002?gh_jid=8191750002",
"company_name": "Aurora Innovation",
"title": "Software Engineer 1",
"locations": [
"Mountain View, CA"
],
"active": true,
"source": "vanshb03",
"id": "58733930-a2d2-45da-a177-7fc8f45219f5",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760785295,
"url": "https://boeing.wd1.myworkdayjobs.com/EXTERNAL_CAREERS/job/USA---Tinker-AFB-OK/Entry-Level-Software-Engineer---Developer_JR2025467505-1",
"company_name": "The Boeing Company",
"title": "Entry Level Software Engineer",
"locations": [
"Oklahoma City, OK"
],
"active": false,
"source": "vanshb03",
"id": "79e2cae1-2d00-468c-b452-3a6f445a3524",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760785300,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/HTX36-Richardson-TX-3200-E-Renner-Rd---Richardson-TX-75082-2402-USA/Software-Engineer-I--Onsite-_01799291",
"company_name": "RTX",
"title": "Software Engineer I",
"locations": [
"Richardson, TX"
],
"active": false,
"source": "vanshb03",
"id": "6f313f4f-2f2d-4188-afa1-1f566a655045",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442987,
"url": "https://creditacceptance.wd5.myworkdayjobs.com/en-US/Credit_Acceptance/job/Michigan--Southfield-Office/Software-Engineer-I--Engineering_R13134",
"company_name": "Credit Acceptance Careers",
"title": "Software Engineer I - Engineering",
"locations": [
"Southfield, MI"
],
"active": false,
"source": "vanshb03",
"id": "e0e4a970-5c6e-4197-842b-50df316c4bd5",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760785311,
"url": "https://ciena.wd5.myworkdayjobs.com/Careers/job/Atlanta/Software-Developer---2026-Grads_R029193",
"company_name": "Ciena",
"title": "New Grad 2026: Software Developer",
"locations": [
"Atlanta, GA"
],
"active": false,
"source": "vanshb03",
"id": "3c80a226-5d94-449c-b0b0-a17306419174",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1760785316,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/AZ201-RMS-AP-Bldg-801-1151-East-Hermans-Road-Building-801-Tucson-AZ-85756-USA/XMLNAME-2025-Fulltime-Raytheon-Software-Engineer-I---Test-Equipment---Onsite_01799429",
"company_name": "RTX",
"title": "New Grad 2025: Fulltime Raytheon Software Engineer I, Test Equipment",
"locations": [
"Tucson, AZ"
],
"active": false,
"source": "vanshb03",
"id": "3d22233c-0b6c-4e85-b93e-877ecd96e89a",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442992,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Deep-Learning-Software-Engineer--Inference-and-Model-Optimization---New-College-Grad-2025_JR2004584",
"company_name": "NVIDIA",
"title": "New Grad 2025: Deep Learning Software Engineer, Inference and Model Optimization",
"locations": [
"Santa Clara, CA"
],
"active": false,
"source": "vanshb03",
"id": "ca48b7fc-b444-49d5-b15b-247ff98fc831",
"date_posted": 1760482769,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763442996,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/rec_rtx_ext_gateway/job/MD440-8170-Maple-Lawn-Blvd-Fulton-MD-8170-Maple-Lawn-Boulevard---Fulton-MD-20759-USA/Software-Engineer-I--Onsite-_01801021",
"locations": [
"Fulton, MD"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Raytheon Technologies",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "017671c8-c890-42c0-86b5-97a2e3791ee1",
"date_posted": 1760650230,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650256,
"url": "https://groundswell.wd12.myworkdayjobs.com/groundswell/job/McLean-VA/Technical-Consultant--Campus-Recruiting-Entry-Level-_JR100868",
"locations": [
"McLean, VA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Groundswell",
"title": "Technical Consultant",
"source": "vanshb03",
"id": "26f4d335-3aeb-4131-af9b-d7ee92021ac7",
"date_posted": 1760650256,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544784,
"url": "https://thomsonreuters.wd5.myworkdayjobs.com/external_career_site/job/USA-Frisco-6160-Warren-Parkway/AI-Solutions-Engineer--CoCounsel-AI-Applications_JREQ193428",
"locations": [
"Frisco, TX",
"Minneapolis, MN"
],
"sponsorship": "Other",
"active": false,
"company_name": "Thomson Reuters",
"title": "AI Solutions Engineer, CoCounsel AI Applications",
"source": "vanshb03",
"id": "942add2f-ffdb-4f20-b3fc-9019448a3395",
"date_posted": 1760650270,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650392,
"url": "https://www.google.com/about/careers/applications/jobs/results/90452041138086598-software-engineer-ii-early-career-google-cloud-ai-catalyst-program",
"locations": [
"Sunnyvale, CA",
"Kirkland, WA",
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Google",
"title": "Software Engineer II, Early Career, Google Cloud AI Catalyst Program",
"source": "vanshb03",
"id": "463ced3a-24c9-4188-b34b-468bf79a0532",
"date_posted": 1760650392,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490756,
"url": "https://jobs.careers.microsoft.com/global/en/job/1891876/AI%2FML-Engineer",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "AI/ML Engineer",
"source": "vanshb03",
"id": "b403b82e-6eed-4a34-ba17-50f97164948e",
"date_posted": 1760650354,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650359,
"url": "https://www.tesla.com/careers/search/job/253464",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Frontend Software Engineer, Energy Charging",
"source": "vanshb03",
"id": "3c71b20d-ba1f-4c8e-a697-0175c10cf3f8",
"date_posted": 1760650359,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650368,
"url": "https://www.shopify.com/careers/software-engineer-monorepo-systems-rust-nix_95aac134-c21a-456d-b8b3-a9aac6aa6118",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "Software Engineer - Monorepo Systems (Rust & Nix)",
"source": "vanshb03",
"id": "80ecb2a1-ac03-4c3c-bbe0-d78b4248c511",
"date_posted": 1760650368,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174578,
"url": "https://job-boards.greenhouse.io/dagsterlabs/jobs/7497803003",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Dagster Labs",
"title": "New Grad 2025: Software Engineer",
"source": "vanshb03",
"id": "d3fdde14-ca83-46a6-bb9b-4703c547fe83",
"date_posted": 1760650371,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443011,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/AI-and-ML-Infra-Software-Engineer--GPU-Clusters---New-College-Grad-2026_JR2005097",
"locations": [
"Santa Clara, CA",
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: AI and ML Infra Software Engineer, GPU Clusters",
"source": "vanshb03",
"id": "c7b511b2-db58-4c34-8fee-59d182ac89db",
"date_posted": 1760650375,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650385,
"url": "https://lifeattiktok.com/search/7559731427425257746",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Machine Learning Engineer",
"source": "vanshb03",
"id": "3b5b0a6c-bc07-4c47-bfa0-0353fac8774d",
"date_posted": 1760650385,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650536,
"url": "https://www.workatastartup.com/jobs/83503",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Apten",
"title": "Software Engineer (Full Stack)",
"source": "vanshb03",
"id": "53f33602-91dd-4278-a898-d266efde874e",
"date_posted": 1760650536,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650567,
"url": "https://www.workatastartup.com/jobs/83356",
"locations": [
"San Francisco, CA",
"San Mateo, CA",
"Palo Alto, CA",
"Menlo Park, CA",
"Redwood City, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "StarSling (X25)",
"title": "New Grad: Full-Stack Software Engineer",
"source": "vanshb03",
"id": "571c24f4-2886-41dc-a3df-e41b5c15149a",
"date_posted": 1760650567,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650573,
"url": "https://www.workatastartup.com/jobs/83287",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Taro",
"title": "Founding Software Engineer",
"source": "vanshb03",
"id": "f8622690-1706-4c9f-aec2-3574ae9db8e4",
"date_posted": 1760650573,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650581,
"url": "https://www.workatastartup.com/jobs/83031",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Herdora",
"title": "Member of Technical Staff",
"source": "vanshb03",
"id": "f73582c1-ac07-479d-9019-bf6feae25990",
"date_posted": 1760650581,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650584,
"url": "https://www.workatastartup.com/jobs/83025",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Corgi",
"title": "Full Stack Engineer",
"source": "vanshb03",
"id": "84a99fc5-905d-4857-bcc2-e0aff12e4c43",
"date_posted": 1760650584,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650993,
"url": "https://www.workatastartup.com/jobs/82935",
"locations": [
"Redwood City, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Maitai",
"title": "Full-Stack Engineer - Agent Marketplace (In-Person RWC Only)",
"source": "vanshb03",
"id": "b8b4057d-f01d-43b8-93ad-dada78fd38c0",
"date_posted": 1760650993,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760650998,
"url": "https://www.workatastartup.com/jobs/82877",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Stamp",
"title": "Founding Machine Learning Engineer",
"source": "vanshb03",
"id": "3b692199-6a1e-4dc4-a65b-ed6435afb652",
"date_posted": 1760650998,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760651002,
"url": "https://www.workatastartup.com/jobs/82875",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Stamp (W25)",
"title": "Founding Mobile Engineer",
"source": "vanshb03",
"id": "9a9ba718-a5dd-446b-8c29-7f4f7dfacb90",
"date_posted": 1760651002,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760651005,
"url": "https://www.workatastartup.com/jobs/82876",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Stamp",
"title": "Founding Full Stack Engineer",
"source": "vanshb03",
"id": "eeac5b39-0214-4dc0-ab56-e3f78839c8c5",
"date_posted": 1760651005,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760784944,
"url": "https://www.shopify.com/careers/demo-engineer-software-development_a6126bad-c0ba-4d02-94fb-7c5e21bef9f5",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "Demo Engineer, Software Development",
"source": "vanshb03",
"id": "a0fe1a67-58b6-4b35-947b-ef5965e1a3d5",
"date_posted": 1760784944,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490757,
"url": "https://jobs.careers.microsoft.com/global/en/job/1893324/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "22c77269-f57b-4b8a-8b99-35edfc2acf4e",
"date_posted": 1760784955,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490756,
"url": "https://jobs.careers.microsoft.com/global/en/job/1861303/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "0ac49bdf-0bbf-44d4-871d-d461b79b55ca",
"date_posted": 1760784960,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761490757,
"url": "https://jobs.careers.microsoft.com/global/en/job/1862715/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "afcf4192-5e61-4270-af56-57dd1b0cc852",
"date_posted": 1760784965,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443015,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Compiler-Engineer--LLVM--New-College-Grad-2025_JR2005960",
"locations": [
"Santa Clara, CA",
"Austin, TX",
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Compiler Engineer, LLVM",
"source": "vanshb03",
"id": "eafa74c0-e326-402a-b207-d2ea3e9b3f8b",
"date_posted": 1760784969,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760784977,
"url": "https://www.tesla.com/careers/search/job/253715",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Backend Software Engineer, Optimus & Robotaxi",
"source": "vanshb03",
"id": "6798ac93-ffb7-490f-93f4-fe651d3fa6d4",
"date_posted": 1760784977,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760784980,
"url": "https://www.tesla.com/careers/search/job/253673",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Backend Software Engineer, IT Data & Analytics",
"source": "vanshb03",
"id": "346292a7-e058-401f-938d-cac12c68acf0",
"date_posted": 1760784980,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760784983,
"url": "https://www.tesla.com/careers/search/job/253636",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Security Engineer, Energy Product Software",
"source": "vanshb03",
"id": "d4871d2c-70ca-4cef-8f4c-67707605ad5c",
"date_posted": 1760784983,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760784988,
"url": "https://www.amazon.jobs/en/jobs/3110582/system-development-engineer-payload-antenna-team",
"locations": [
"Redmond, WA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, Payload Antenna Team",
"source": "vanshb03",
"id": "0e1e16a4-2e22-40e8-a7f0-302319d3520a",
"date_posted": 1760784988,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760994789,
"url": "https://amazon.jobs/en/jobs/3111761/software-engineer-i",
"locations": [
"Irvine, CA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch Interactive, Inc.",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "d92422ef-ee94-463b-831b-7a780ad0b741",
"date_posted": 1760994789,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760994843,
"url": "https://www.amazon.jobs/en/jobs/3111750/systems-development-engineer-network-operations-oisl",
"locations": [
"Redmond, WA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Amazon",
"title": "Systems Development Engineer, Network Operations OISL",
"source": "vanshb03",
"id": "a5178c88-4286-43b0-90ea-30a47cfc0982",
"date_posted": 1760994843,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760994852,
"url": "https://jobs.apple.com/en-us/details/200626941-0836/software-engineer-xcode-intelligence-experience",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer, Xcode Intelligence Experience",
"source": "vanshb03",
"id": "6a87ee46-9f6e-4444-9c8e-2794493047ea",
"date_posted": 1760994852,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760995046,
"url": "https://www.boerboeltrading.com/jobs.html?gh_jid=5681668004",
"locations": [
"New York, NY",
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Boerboel",
"title": "New Grad: Quantitative Researcher",
"source": "vanshb03",
"id": "b2c5fe2e-840c-4ef5-80e4-a04ffb09527c",
"date_posted": 1760995046,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760995056,
"url": "https://www.boerboeltrading.com/jobs.html?gh_jid=5670371004",
"locations": [
"New York, NY",
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Boerboel",
"title": "New Grad: Developer",
"source": "vanshb03",
"id": "32153425-3af8-49c7-aa7e-fad23a8599d1",
"date_posted": 1760995056,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1760995124,
"url": "https://jobs.apple.com/en-us/details/200626967-0157/is-t-early-career-engineering-program-manager-opportunities",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "IS&T Early Career Engineering Program Manager",
"source": "vanshb03",
"id": "ced22751-52fa-437d-a81a-3c4c3470eacf",
"date_posted": 1760995124,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125744,
"url": "https://www.workatastartup.com/jobs/83842",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Claim Health (X25)",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "6cb3532c-762e-4ce1-abf6-86040ea4198b",
"date_posted": 1761125744,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125749,
"url": "https://www.workatastartup.com/jobs/83760",
"locations": [
"San Francisco, CA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Wanderlog (W19)",
"title": "New Grad: Full-Stack Software Engineer",
"source": "vanshb03",
"id": "b5af3631-e05a-4d62-85a4-cc815d7a3ead",
"date_posted": 1761125749,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125755,
"url": "https://www.workatastartup.com/jobs/83761",
"locations": [
"Remote",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Wanderlog (W19)",
"title": "New Grad: Full-Stack Software Engineer",
"source": "vanshb03",
"id": "da502a8c-4cde-4520-aa29-dd41f6ead64c",
"date_posted": 1761125755,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761125788,
"url": "https://www.workatastartup.com/jobs/80466",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Sixtyfour (X25)",
"title": "Founding Engineer, AI Research Agents (Full-Stack)",
"source": "vanshb03",
"id": "c742bbd9-ee7e-425f-b17f-fde5f1e4a532",
"date_posted": 1761125788,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761126176,
"url": "https://www.workatastartup.com/jobs/83750",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Anthrogen",
"title": "Member of Technical Staff",
"source": "vanshb03",
"id": "2c1556ea-9f6f-45c8-a4e7-cf0cc86304a5",
"date_posted": 1761126176,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761126186,
"url": "https://www.workatastartup.com/jobs/83655",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Liva AI",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "a45c30f4-af40-4169-ace1-5f808c60fb15",
"date_posted": 1761126186,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174508,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR158465EXTERNALENUS/Software-Development-Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "3b29dba1-b2a0-44e1-9109-a26a675dcd6f",
"date_posted": 1761174508,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761837760,
"url": "https://jobs.careers.microsoft.com/global/en/job/1828357/Software-Engineer%E2%80%8B",
"locations": [
"Multiple Locations"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "ad7c0542-b913-4647-b187-a294497eee79",
"date_posted": 1761174520,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761837761,
"url": "https://jobs.careers.microsoft.com/global/en/job/1894673/Software-Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "de62160b-4c76-4a7a-b91f-f0f115672e90",
"date_posted": 1761174527,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174533,
"url": "https://jobs.ashbyhq.com/zapier/63b14a57-064a-4617-bb8c-4a67c860e1e6",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Zapier",
"title": "Software Engineer, Backend-leaning Full Stack or Backend",
"source": "vanshb03",
"id": "452bbe09-258b-470e-97bc-e3332e59d2ec",
"date_posted": 1761174533,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174542,
"url": "https://jobs.intuit.com/job/-/-/27595/87369448720",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Intuit",
"title": "Software Engineer 1",
"source": "vanshb03",
"id": "680db584-edb4-4dc5-8c59-5bfa3cbe5636",
"date_posted": 1761174542,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174551,
"url": "https://boards.greenhouse.io/embed/job_app?for=xtxmarketstechnologies",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "XTX Markets",
"title": "Quant Analyst",
"source": "vanshb03",
"id": "ded1c973-c602-4368-a935-677186b3b37c",
"date_posted": 1761174551,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761174604,
"url": "https://www.qualtrics.com/careers/us/en/job/7340628?gh_jid=7340628",
"company_name": "Qualtrics",
"title": "Software Engineer I, Digital Experience",
"locations": [
"Seattle, WA"
],
"active": true,
"source": "vanshb03",
"id": "59e9b612-ec7f-45de-806c-faa8ad5fba9d",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1761174604,
"url": "https://uscareers-pepsico.icims.com/jobs/415877/junior-data-scientist-%E2%80%93-new-grad/job",
"company_name": "PepsiCo",
"title": "Junior Data Scientist",
"locations": [
"Mississauga, Canada"
],
"active": true,
"source": "vanshb03",
"id": "9e948aa6-e517-4bac-a30c-9ba34c46b4d1",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443020,
"url": "https://ngc.wd1.myworkdayjobs.com/en-US/Northrop_Grumman_External_Site/job/United-States-Colorado-Aurora/Associate-Software-Engineer_R10211419",
"company_name": "Northrop Grumman",
"title": "Associate Software Engineer",
"locations": [
"Aurora, CO"
],
"active": false,
"source": "vanshb03",
"id": "fbe78a6b-236a-45bd-9dca-ca651e3bcd11",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1761174604,
"url": "https://revionics.com/about/careers/open-jobs?gh_jid=7172125",
"company_name": "Revionics",
"title": "New Grad: Machine Learning Engineer",
"locations": [
"Austin, TX",
"Atlanta, GA"
],
"active": true,
"source": "vanshb03",
"id": "2c953a78-9b92-4dd2-9c20-39ba1f05d9c3",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443024,
"url": "https://evolent.wd1.myworkdayjobs.com/External/job/Work-at-Home/Associate-Software-Engineer_JR-914584?source=Linkedin",
"company_name": "Evolent",
"title": "Associate Software Engineer",
"locations": [
"Remote"
],
"active": false,
"source": "vanshb03",
"id": "e580b31c-41ed-433d-a923-e3a880f35cc9",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1761174604,
"url": "https://jobs.battelle.org/us/en/job/BMIBMIUS75654EXTERNALENUS/Early-Career-Software-Engineer",
"company_name": "Battelle",
"title": "Early Career Software Engineer",
"locations": [
"Columbus, OH"
],
"active": true,
"source": "vanshb03",
"id": "7dccad6a-25e0-4448-bbf8-efe61702482c",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "U.S. Citizenship is Required"
},
{
"date_updated": 1761174604,
"url": "https://www.spotandtango.com/careers?gh_jid=4620638005",
"company_name": "Spot & Tango",
"title": "Jr. Software Engineer",
"locations": [
"New York, NY"
],
"active": true,
"source": "vanshb03",
"id": "216404c9-3313-4e64-84ae-2b3de2804e19",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1761174604,
"url": "https://www.d2l.com/careers/jobs/?job_id=7336031&gh_jid=7336031",
"company_name": "D2L",
"title": "New Grad 2026: Software Developer Rotation Program",
"locations": [
"Winnipeg, Canada",
"Toronto, Canada",
"Kitchener, Canada",
"Vancouver, Canada"
],
"active": true,
"source": "vanshb03",
"id": "c12ef982-e139-46e1-9faa-7be465019367",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1765531594,
"url": "https://jobs.lever.co/shieldai/8ed6bd48-2bf0-44a2-812d-7d8a2ab6b9f0/apply",
"company_name": "Shield AI",
"title": "Software Engineer I, Hardware Test",
"locations": [
"Dallas, TX"
],
"active": false,
"source": "vanshb03",
"id": "12d887eb-7b63-4c08-a7cc-774ee18920d0",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1761174604,
"url": "https://www.smxtech.com/careers/?gh_jid=7498313003",
"company_name": "SMX",
"title": "Junior Data Scientist",
"locations": [
"Patuxent River, MD"
],
"active": true,
"source": "vanshb03",
"id": "41c4ade7-12c9-4f52-8beb-5869068416c2",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443029,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/PA602-302-Science-Park-Road-Bldg-5C-302-Science-Park-Road-Building-5C-State-College-PA-16803-2214-USA/XMLNAME-2026-Full-time---Java-Software-Engineer-I---Onsite--PA-_01801904",
"company_name": "RTX",
"title": "New Grad 2026: Java Software Engineer I, Onsite",
"locations": [
"State College, PA"
],
"active": false,
"source": "vanshb03",
"id": "091614c7-094c-47e0-93ae-5324356bd771",
"date_posted": 1761174604,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1769923632,
"url": "https://salesforce.wd12.myworkdayjobs.com/en-us/External_Career_Site/job/Washington---Bellevue/AI-Forward-Deployed-Engineer--New-Grad-_JR312405-1",
"company_name": "Salesforce",
"title": "AI Forward Deployed Engineer, Early Career",
"locations": [
"Boston, MA",
"Seattle, WA",
"Indianapolis, IN",
"Washington, DC",
"San Francisco, CA",
"Dallas, TX",
"Chicago, IL",
"New York, NY",
"Bellevue, WA",
"Atlanta, GA"
],
"active": false,
"source": "vanshb03",
"id": "e82c8053-69b8-4693-8926-311c7813f2df",
"date_posted": 1761174684,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1761174684,
"url": "https://jobs.ashbyhq.com/Rose%20Rocket/c074b14e-ebe0-4a14-beb2-1419eca9d447/application",
"company_name": "Roserocket",
"title": "Junior Software Engineer",
"locations": [
"Toronto, Canada"
],
"active": true,
"source": "vanshb03",
"id": "d05a9106-8bf1-45b0-8b79-e23a39de7837",
"date_posted": 1761174684,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1763443038,
"url": "https://draftkings.wd1.myworkdayjobs.com/draftkings/job/Remote---US/Software-Engineer_JR13105-3",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "DraftKings",
"title": "Software Engineer",
"source": "vanshb03",
"id": "e28323f6-364b-4c88-8ba6-b7d9ddbe8af5",
"date_posted": 1761176344,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761176355,
"url": "https://jobs.ashbyhq.com/elevenlabs/bed47ac1-9c5c-44ae-8965-3a4312706328",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "ElevenLabs",
"title": "Growth Engineer - Mobile",
"source": "vanshb03",
"id": "d362b66a-4b12-4e6c-8ead-6fa255f3d179",
"date_posted": 1761176355,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443043,
"url": "https://bah.wd1.myworkdayjobs.com/bah_jobs/job/Alexandria-VA/Backend-Developer_R0228366",
"locations": [
"Alexandria, VA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Booz Allen Hamilton",
"title": "Backend Developer",
"source": "vanshb03",
"id": "56c39477-4672-471a-9c8f-c3511d992824",
"date_posted": 1761176393,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443047,
"url": "https://nabancard.wd1.myworkdayjobs.com/nab/job/US---Remote/Associate-Product-Engineer_JR101530",
"locations": [
"Remote"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "North",
"title": "Associate Product Engineer",
"source": "vanshb03",
"id": "87a011d2-d09a-4ca9-bd5f-499ec93b0857",
"date_posted": 1761176397,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531593,
"url": "https://jobs.lever.co/shieldai/8ed6bd48-2bf0-44a2-812d-7d8a2ab6b9f0",
"locations": [
"Dallas, TX"
],
"sponsorship": "Other",
"active": false,
"company_name": "Shield AI",
"title": "Software Engineer I, Hardware Test",
"source": "vanshb03",
"id": "25757e09-7575-47e3-a0f4-d83f45f269a3",
"date_posted": 1761176422,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761176443,
"url": "https://uscareers-docusign.icims.com/jobs/27628/software-engineering/job",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Docusign",
"title": "Software Engineer",
"source": "vanshb03",
"id": "ef7061a2-0454-4364-a060-6dbb1e27871e",
"date_posted": 1761176443,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761587480,
"url": "https://www.workatastartup.com/jobs/84154",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Planbase",
"title": "Founding Engineer (Full-Stack)",
"source": "vanshb03",
"id": "d753be18-703f-4ff9-a1b0-2f32957bd228",
"date_posted": 1761587480,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1761587484,
"url": "https://www.workatastartup.com/jobs/76499",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Proception Inc",
"title": "Robotics Software Engineering - Real-Time Control & Embedded Systems",
"source": "vanshb03",
"id": "943c5596-d411-433e-8069-4e467a74bcd8",
"date_posted": 1761587484,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443052,
"url": "https://snc.wd1.myworkdayjobs.com/snc_external_career_site/job/Lone-Tree-CO/Systems-Security-Engineer-I_R0028118",
"company_name": "Sierra Nevada Coporation",
"title": "Systems Security Engineer I",
"locations": [
"Lone Tree, CO"
],
"active": false,
"source": "vanshb03",
"id": "e0470859-5b9b-4a48-92c2-42c49928d1b4",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443056,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/IN206-3939PriorityWay-3939-Priority-Way-Building-6-Indianapolis-IN-46240-USA/XMLNAME-2026-Fulltime---Raytheon-Software-Engineer-I--On-site-_01791951",
"company_name": "RTX",
"title": "Software Engineer I",
"locations": [
"Indianapolis, IN"
],
"active": false,
"source": "vanshb03",
"id": "3247767c-05f0-4db3-b40e-8c2a562942b6",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443061,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/AZ201-RMS-AP-Bldg-801-1151-East-Hermans-Road-Building-801-Tucson-AZ-85756-USA/XMLNAME-2026-Raytheon-Systems-Security-Engineer-I---Onsite---Tucson--AZ_01790331",
"company_name": "RTX",
"title": "New Grad 2026: Raytheon Systems Security Engineer I",
"locations": [
"Tucson, AZ"
],
"active": false,
"source": "vanshb03",
"id": "7e1bd267-184c-49bc-96ef-482efa10babc",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1761840220,
"url": "https://about.nextdoor.com/careers-list/?gh_jid=7264954",
"company_name": "Nextdoor",
"title": "New Grad 2026: Machine Learning Engineer, Machine Learning",
"locations": [
"Dallas, TX"
],
"active": true,
"source": "vanshb03",
"id": "481c9cef-f471-4f67-95e6-3672061f33d2",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443065,
"url": "https://globalhr.wd5.myworkdayjobs.com/rec_rtx_ext_gateway/job/FL915-St-Petersburg---Bldg-D-7401-22nd-Ave-N-Building-D-St-Petersburg-FL-33710-USA/Software-Engineer-I--Onsite-_01788093",
"company_name": "RTX",
"title": "Software Engineer 1",
"locations": [
"St. Petersburg, FL"
],
"active": false,
"source": "vanshb03",
"id": "656837ae-31ec-4071-9202-e8f7403b048a",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443070,
"url": "https://ciena.wd5.myworkdayjobs.com/Careers/job/Ottawa/Embedded-Software-Engineer---New-Grad--Real-Time-Systems-_R029145",
"company_name": "Ciena",
"title": "New Grad: Embedded Software Engineer, Real-Time Systems",
"locations": [
"Ottawa, ON, Canada"
],
"active": false,
"source": "vanshb03",
"id": "c11fe199-641c-4d91-8a86-f85fd1a29c77",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1767283135,
"url": "https://job-boards.greenhouse.io/torcrobotics/jobs/8136092002",
"company_name": "Torc Robotics",
"title": "Machine Learning Engineer, I, App Engine (CUDA)",
"locations": [
"Ann Arbor, MI"
],
"active": false,
"source": "vanshb03",
"id": "eb0ffd06-6fb7-42b3-8f83-db3761372bd4",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1763443075,
"url": "https://morningstar.wd5.myworkdayjobs.com/en-US/Americas/job/Chicago/Associate-Quantitative-Analyst_REQ-053662-1",
"company_name": "Morningstar",
"title": "Associate Quantitative Analyst",
"locations": [
"Chicago, IL"
],
"active": false,
"source": "vanshb03",
"id": "5daebc88-85ba-4869-8566-8a3e821be487",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1762348977,
"url": "https://jobs.lever.co/rover/206facd5-3dec-45a0-a76a-189cb2397d3e/",
"company_name": "Rover",
"title": "Software Engineer I, Expansions",
"locations": [
"Seattle, WA"
],
"active": false,
"source": "vanshb03",
"id": "69f233cd-ea00-4ea4-a751-70efd916733e",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1762348976,
"url": "https://job-boards.greenhouse.io/extrahopnetworks/jobs/5649570004",
"company_name": "ExtraHop",
"title": "Software Engineer I",
"locations": [
"Seattle, WA"
],
"active": false,
"source": "vanshb03",
"id": "f4bb7047-8414-469f-ac8c-96b39010a9ac",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1761840220,
"url": "https://www.amazon.jobs/en/jobs/3116902/2026-annapurna-labs-at-aws-early-career-us-silicon-ai-systems-innovation",
"company_name": "Annapurna Labs",
"title": "Silicon & AI Systems Innovation Engineer",
"locations": [
"Austin, TX",
"Seattle, WA",
"Cupertino, CA"
],
"active": true,
"source": "vanshb03",
"id": "d37d585a-35c9-421d-bab7-dd6e8acf9d7c",
"date_posted": 1761840220,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1762019282,
"url": "https://www.amazon.jobs/en/jobs/3118657/adc-engineer-i-peet-adc",
"locations": [
"Arlington, VA",
"Herndon, VA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Amazon",
"title": "ADC Engineer I, PEET ADC",
"source": "vanshb03",
"id": "45a241f9-2fd8-4a27-a24a-c4930bbc8b6b",
"date_posted": 1762019282,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019330,
"url": "https://jobs.ashbyhq.com/Citizen%20Health/0f4048fa-da35-4112-9166-123440a2cb57",
"locations": [
"San Francisco, CA",
"San Mateo, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Citizen Health",
"title": "Software Engineer",
"source": "vanshb03",
"id": "eb9ecf43-2a5e-449e-8939-4440765d7fb3",
"date_posted": 1762019330,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019334,
"url": "https://jobs.ashbyhq.com/zip/bec203f9-7919-479a-b021-c7871b7757e2",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Zip",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "188bb1d5-1c1d-4d30-829e-b273c3b9a407",
"date_posted": 1762019334,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443079,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/AI-and-ML-Infra-Software-Engineer--GPU-Clusters---New-College-Grad-2025_JR2006974",
"locations": [
"Santa Clara, CA",
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: AI and ML Infra Software Engineer, GPU Clusters",
"source": "vanshb03",
"id": "abbf4b5c-f16c-4e8b-8d36-0630855f2c8d",
"date_posted": 1762019339,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544794,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Systems-Software-Engineer--GeForce-NOW-Low-Latency-Streaming-Technology---New-College-Grad-2025_JR2007180",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Systems Software Engineer, GeForce NOW Low Latency Streaming Technology",
"source": "vanshb03",
"id": "e82034f4-17d7-4894-b29a-3023947644e6",
"date_posted": 1762019342,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443088,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Software-Engineer--AI-Infrastructure---New-College-Grad-2026_JR2007199",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: Software Engineer, AI Infrastructure",
"source": "vanshb03",
"id": "b9d24b2e-1779-467b-9b0f-d6f6a4e3342f",
"date_posted": 1762019346,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019352,
"url": "https://www.tesla.com/careers/search/job/249570",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Machine Learning Engineer, Tesla Insurance",
"source": "vanshb03",
"id": "eca358f9-1b9b-444a-8640-96ef8609c3ee",
"date_posted": 1762019352,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923636,
"url": "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site/job/Washington---Bellevue/AI-Forward-Deployed-Engineer--New-Grad-_JR312405-1",
"locations": [
"Remote",
"Bellevue, WA",
"Boston, MA",
"Chicago, IL"
],
"sponsorship": "Other",
"active": false,
"company_name": "Salesforce",
"title": "AI Forward Deployed Engineer (Early Career)",
"source": "vanshb03",
"id": "db82133d-3df1-4ace-ac51-29fde6cf38c1",
"date_posted": 1762019358,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019364,
"url": "https://www.metacareers.com/jobs/2578176955882259",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Meta",
"title": "Data Engineer, Analytics",
"source": "vanshb03",
"id": "662088f1-8755-42b7-ac2d-9fd8ace233d8",
"date_posted": 1762019364,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019442,
"url": "https://jobs.ashbyhq.com/clipboard/b83ea62e-f143-4673-a741-3e98e7e083bd",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Clipboard Health",
"title": "Software Engineer, Backend",
"source": "vanshb03",
"id": "7f5b4f6e-aef2-4e7f-9348-959f58487d06",
"date_posted": 1762019442,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763442793,
"url": "https://job-boards.greenhouse.io/mozilla/jobs/7360226",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Mozilla",
"title": "Backend Engineer, Websites & Marketing Technology",
"source": "vanshb03",
"id": "0310520e-a406-4515-994c-0dff1995235f",
"date_posted": 1762019411,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544660,
"url": "https://jobs.careers.microsoft.com/global/en/job/1903967/Software-Engineer---Commerce-%2B-Ecosystems",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer - Commerce + Ecosystems",
"source": "vanshb03",
"id": "a44a230e-39d9-41ce-a5d5-768b0a382c24",
"date_posted": 1762019417,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746185,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/ASIC-Design-Engineer---New-College-Grad-2025_JR2003018",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: ASIC Design Engineer",
"source": "vanshb03",
"id": "c7706007-df48-4615-9f53-b97280394214",
"date_posted": 1762019426,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762019430,
"url": "https://www.amazon.jobs/en/jobs/3117171/system-development-engineer-macos-mdm-kuiper-devices-systems",
"locations": [
"Bellevue, WA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, macOS MDM, Kuiper Devices & Systems",
"source": "vanshb03",
"id": "997094b6-7374-438f-a03f-fb7f27548680",
"date_posted": 1762019430,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763443102,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Systems-Software-Engineer---GeForce-NOW-Low-Latency-Streaming-Technology---New-Grad-2025_JR2006827",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: Systems Software Engineer, GeForce NOW Low Latency Streaming Technology",
"source": "vanshb03",
"id": "164ce651-cb32-4135-a64b-68d43c5b3cc3",
"date_posted": 1762019433,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762349047,
"url": "https://job-boards.greenhouse.io/warp/jobs/4324888004",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Warp",
"title": "Software Engineer",
"source": "vanshb03",
"id": "80a88e54-5f35-4093-891d-af4b86158238",
"date_posted": 1762349047,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746189,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/SONiC-Software-Design-Engineer--New-College-Grad-2025_JR2006947",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: SONiC Software Design Engineer",
"source": "vanshb03",
"id": "7bc203c7-4524-496e-a9a4-a550cc6a18a4",
"date_posted": 1762349053,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762349068,
"url": "https://job-boards.greenhouse.io/figma/jobs/5691911004",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Figma",
"title": "Software Engineer, Full Stack",
"source": "vanshb03",
"id": "d1022624-29fc-4feb-9e46-e6563e3681b0",
"date_posted": 1762349068,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544813,
"url": "https://dell.wd1.myworkdayjobs.com/en-US/ExternalNonPublic/job/Dell-CSG-Software-Engineering-Rotation-Program_R277445",
"company_name": "Dell Technologies",
"title": "CSG Rotational Program",
"locations": [
"Round Rock, TX"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "Admeen3581",
"id": "3181bd7b-bb8f-4993-a915-e0b01b73b4e4",
"date_posted": 1762350784,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544818,
"url": "https://dell.wd1.myworkdayjobs.com/en-US/ExternalNonPublic/job/Dell-Software-Engineer-Rotation-Program_R277297",
"company_name": "Dell Technologies",
"title": "ISG Software Rotational Program",
"locations": [
"Round Rock, TX",
"Hopkinton, MA"
],
"sponsorship": "Offers Sponsorship",
"active": false,
"source": "Admeen3581",
"id": "fdd5238b-a605-428f-865b-78bdd3aaa00c",
"date_posted": 1762350803,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762349312,
"url": "https://www.valkyrietrading.com/careers/junior-derivatives-trader-new-grad-entry-level/",
"locations": [
"Chicago, IL"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Valkyrie",
"title": "Derivatives Trader",
"source": "vanshb03",
"id": "cb1b0cdb-1909-4cdd-9bd7-63c2b69d9a5e",
"date_posted": 1762349312,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762349328,
"url": "https://www.jumptrading.com/hr/job?gh_jid=7362357",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"company_name": "Jump Trading",
"title": "Campus Crypto Researcher",
"source": "vanshb03",
"id": "3035ddb8-9438-4dc9-9b51-94df134ce998",
"date_posted": 1762349328,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782324,
"url": "https://careers.servicenow.com/jobs/744000092358511/software-engineer/",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ServiceNow",
"title": "Software Engineer",
"source": "vanshb03",
"id": "b4f866c4-f6b5-49a7-8681-64c5df20c82f",
"date_posted": 1762782324,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923537,
"url": "https://www.ycombinator.com/companies/pointone/jobs/I2ShCi8-new-grad-software-engineer",
"locations": [
"New York, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "PointOne",
"title": "New Grad 2025: Software Engineer",
"source": "vanshb03",
"id": "5df28567-332e-4099-98d5-2ebd8ad6f842",
"date_posted": 1762782327,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782404,
"url": "https://www.workatastartup.com/jobs/84801",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "AgentMail",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "877ac16b-6224-43fb-a0b1-ccbf4b36b442",
"date_posted": 1762782404,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782708,
"url": "https://careers.qualcomm.com/careers/job/446715361809",
"locations": [
"San Diego, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Qualcomm Innovation Center, Inc.",
"title": "Product Software Engineer",
"source": "vanshb03",
"id": "729ccd07-a9fc-430d-b984-3e1dfef1dd0e",
"date_posted": 1762782708,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923640,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/GPU-Architecture-Engineer---New-College-Grad-2025_JR2002495",
"locations": [
"Santa Clara, CA",
"Austin, TX",
"Durham, NC"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2025: GPU Architecture Engineer",
"source": "vanshb03",
"id": "373327f3-6698-4e0e-8ee5-43ab19c42d02",
"date_posted": 1762782713,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782718,
"url": "https://www.shopify.com/careers/software-engineers_c96af3a9-82a3-4c6a-9b86-1f7e6b376167",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Shopify",
"title": "Software Engineer",
"source": "vanshb03",
"id": "7d36b861-1cd0-422b-a84e-f7be26b74d21",
"date_posted": 1762782718,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782723,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR161750EXTERNALENUS/Software-Development-Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "32293e38-03d1-4c27-8cc0-f4c8e11f4d9f",
"date_posted": 1762782723,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782737,
"url": "https://www.tesla.com/careers/search/job/255247",
"locations": [
"East Liberty, OH"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "In Vehicle Test Engineer, Steering, Vehicle Software",
"source": "vanshb03",
"id": "0da6ce36-5b73-41fe-a0f7-c25354d10d84",
"date_posted": 1762782737,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782742,
"url": "https://www.tesla.com/careers/search/job/255357",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "AI Engineer, ML Inference Optimization, Autonomy & Robotics",
"source": "vanshb03",
"id": "9141175a-bdd7-4762-8194-d8187dada759",
"date_posted": 1762782742,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782745,
"url": "https://www.tesla.com/careers/search/job/255342",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Validation Engineer, AI Platforms",
"source": "vanshb03",
"id": "8f5be18b-0c20-445c-8e59-5238f4736cba",
"date_posted": 1762782745,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782974,
"url": "https://jobs.apple.com/en-us/details/200630837-0836/aiml-resident-siri-agent-modeling",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Siri Agent Modeling",
"source": "vanshb03",
"id": "deea0807-8d58-4f33-a2ed-6d4410e44ae6",
"date_posted": 1762782974,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782820,
"url": "https://jobs.apple.com/en-us/details/200630783-3337/aiml-resident-machine-learning-research",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Machine Learning Research",
"source": "vanshb03",
"id": "e32bb931-029c-45bc-8dd1-fa4077b48f53",
"date_posted": 1762782820,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782827,
"url": "https://jobs.apple.com/en-us/details/200630840-0836/aiml-resident-input-experience-nlp",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Input Experience NLP",
"source": "vanshb03",
"id": "10aea6c9-828d-41f1-b310-92773757b27d",
"date_posted": 1762782827,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782865,
"url": "https://jobs.apple.com/en-us/details/200630798-3337/aiml-resident-knowledge-answer-quality-richness",
"locations": [
"Seattle, WA",
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Knowledge Answer Quality & Richness",
"source": "vanshb03",
"id": "0f450593-cdc9-4874-a31f-3c2931cb3824",
"date_posted": 1762782865,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782869,
"url": "https://jobs.apple.com/en-us/details/200630794-3337/aiml-resident-data-operations-capacity-planning-analytics",
"locations": [
"Seattle, WA",
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Data Operations Capacity Planning & Analytics",
"source": "vanshb03",
"id": "d9639ae4-9fb7-413c-950d-af40193f0194",
"date_posted": 1762782869,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762782873,
"url": "https://jobs.apple.com/en-us/details/200630834-3760/aiml-resident-robot-learning",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "AIML Resident - Robot Learning",
"source": "vanshb03",
"id": "4d32b2e6-4059-4d84-8fb4-dafcdcf79039",
"date_posted": 1762782873,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1762783069,
"url": "https://jobs.ashbyhq.com/Citizen%20Health/ab0cc0c1-7122-4ca2-8ac9-84d1812b22d4/application",
"company_name": "Citizen Health",
"title": "Software Engineer",
"locations": [
"San Francisco, CA",
"San Mateo, CA"
],
"active": true,
"source": "vanshb03",
"id": "d72af5fa-9e5b-4690-aa66-9bdaf97b6e7d",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1767746198,
"url": "https://travelers.wd5.myworkdayjobs.com/External/job/GA---Atlanta/Data-Engineer-I--AWS--Databricks--PySpark--Snowflake-_R-47919",
"company_name": "The Travelers Companies",
"title": "Data Engineer 1",
"locations": [
"Atlanta, GA"
],
"active": false,
"source": "vanshb03",
"id": "1c06f5d6-d660-4ac8-863f-d2f380e5a20e",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1762783069,
"url": "https://gdit.wd5.myworkdayjobs.com/external_career_site/job/USA-MD-Annapolis-Junction/Software-Engineer-I_RQ210148-1",
"company_name": "General Dynamics Information Technology",
"title": "Software Engineer I",
"locations": [
"Annapolis Junction, MD"
],
"active": true,
"source": "vanshb03",
"id": "1ef7b944-6a96-493c-abd7-9e8b331a23d8",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Other"
},
{
"date_updated": 1762783069,
"url": "https://jobs.smartrecruiters.com/ServiceNow/744000092424475",
"company_name": "ServiceNow",
"title": "Frontend Software Engineer",
"locations": [
"San Diego, CA"
],
"active": true,
"source": "vanshb03",
"id": "9f3b8fba-5cb2-4aa7-803f-f83a6c76c96a",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Does Not Offer Sponsorship"
},
{
"date_updated": 1763443136,
"url": "https://rrhs.wd5.myworkdayjobs.com/RRH/job/Riedman-Campus/Software-Developer_REQ_226365",
"company_name": "Rochester Regional Health",
"title": "Software Developer",
"locations": [
"Remote",
"Rochester, NY"
],
"active": false,
"source": "vanshb03",
"id": "ffa904a4-2754-4814-b2cd-1983a22a98cf",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1763443141,
"url": "https://aveva.wd3.myworkdayjobs.com/en-US/AVEVA_careers/job/San-Leandro-California-United-States-of-America/Software-Developer-Graduate--US_R011626",
"company_name": "AVEVA",
"title": "Software Developer",
"locations": [
"San Leandro, CA",
"Lake Forest, CA",
"Scottsdale, AZ",
"Philadelphia, PA"
],
"active": false,
"source": "vanshb03",
"id": "bf915c8b-083f-4210-b273-150f81f1f8cc",
"date_posted": 1762783069,
"company_url": "",
"is_visible": true,
"sponsorship": "Offers Sponsorship"
},
{
"date_updated": 1763252143,
"url": "https://www.imc.com/us/careers/jobs/4580755101",
"company_name": "IMC",
"title": "New Grad 2026: Software Engineer",
"locations": [
"Chicago, IL"
],
"sponsorship": "Other",
"active": true,
"source": "ouckah",
"id": "7a690259-0c9e-4272-a776-bbdd464653a1",
"date_posted": 1763252143,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923536,
"url": "https://job-boards.greenhouse.io/spacex/jobs/8121675002",
"company_name": "SpaceX",
"title": "New Grad: Software Engineer",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"source": "ouckah",
"id": "e46c4659-b631-4e6a-b053-64d824c6e062",
"date_posted": 1763252230,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763252267,
"url": "https://jobs.ashbyhq.com/replit/b5e81eae-06f9-4798-8988-2d06ca936dbc",
"company_name": "Replit",
"title": "Software Engineer - New Grad (Summer 2026)",
"locations": [
"Foster City, CA"
],
"sponsorship": "Other",
"active": true,
"source": "ouckah",
"id": "9cf7230c-b4d1-4bf5-a3da-76db710dbba7",
"date_posted": 1763252267,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746220,
"url": "https://mastercard.wd1.myworkdayjobs.com/campusapplyonly/job/OFallon-Missouri/Software-Engineer-I--Launch-Program-2026_R-257329",
"locations": [
"O'Fallon, MO"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Mastercard",
"title": "Software Engineer I, Launch Program",
"source": "vanshb03",
"id": "85eace90-b913-4466-b2fe-50d95b5913d6",
"date_posted": 1763015037,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544660,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556619703",
"locations": [
"Redmond, WA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "AI Engineer",
"source": "vanshb03",
"id": "918b8d55-10ec-4ae7-bc81-8d71ebf1d995",
"date_posted": 1763445555,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746224,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Low-Power-ASIC-Engineer---New-College-Grad-2026_JR2008185",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: Low Power ASIC Engineer",
"source": "vanshb03",
"id": "313fbdd5-f9a4-41e3-9ce5-d77adf5d359f",
"date_posted": 1763445563,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445590,
"url": "https://lumenalta.com/jobs/full-stack-engineer-storyblok-expert-full-stack-engineer-storyblok-expert-188",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Lumenalta",
"title": "Full Stack Engineer",
"source": "vanshb03",
"id": "b923b15f-30eb-4386-8a4c-fda658465917",
"date_posted": 1763445590,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445593,
"url": "https://careers.circle.com/us/en/job/CIICIRUSJR100011EGEXTERNALENUS/New-Grad-Software-Engineer-Backend-2026",
"locations": [
"United States of America"
],
"sponsorship": "Other",
"active": true,
"company_name": "Circle",
"title": "New Grad 2026: Software Engineer, Backend",
"source": "vanshb03",
"id": "49a7d53a-eab0-4f53-827c-aa2b38c81596",
"date_posted": 1763445593,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445602,
"url": "https://stripe.com/jobs/listing/backend-engineer-secure-endpoint-access/7396672",
"locations": [
"South San Francisco, CA",
"Seattle, WA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Stripe",
"title": "Backend Engineer, Secure Endpoint Access",
"source": "vanshb03",
"id": "12daae3d-ec80-4eee-9756-ce0dc3c491dd",
"date_posted": 1763445602,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544847,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/System-Software-Engineer--Robotics-Simulation---New-College-Grad-2026_JR2007876",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: System Software Engineer, Robotics Simulation",
"source": "vanshb03",
"id": "d3498654-e26d-4ee1-a59b-7ca167bc45bb",
"date_posted": 1763445605,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445622,
"url": "https://www.tesla.com/careers/search/job/227179",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Thermal Controls Engineer, Vehicle Software",
"source": "vanshb03",
"id": "1eb82216-a4a3-4ee8-8d82-ca45884a686f",
"date_posted": 1763445622,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445626,
"url": "https://www.amazon.jobs/en/jobs/3126885/software-engineer-i",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "ca864e2e-3553-49df-a5c7-785ee52f7755",
"date_posted": 1763445626,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544852,
"url": "https://zoom.wd5.myworkdayjobs.com/Zoom/job/Remote--WA/Software-Development_R17786-1",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Zoom",
"title": "Frontend Engineer",
"source": "vanshb03",
"id": "4a5c811a-3124-420c-9b4c-00dcadd1fbc5",
"date_posted": 1763445632,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445637,
"url": "https://jobs.apple.com/en-us/details/200627852-3956/software-engineer-is-t-early-career",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer, IS&T Early Career",
"source": "vanshb03",
"id": "ae6d2c02-2b2d-4a2b-a803-c4cd9eb0032a",
"date_posted": 1763445637,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308283,
"url": "https://nelnet.wd1.myworkdayjobs.com/mynelnet/job/Madison-WI/IT-Software-Engineer---Entry-Level_R21980",
"locations": [
"Madison, WI",
"Lincoln, NE",
"Centennial, CO"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Nelnet",
"title": "IT Software Engineer",
"source": "vanshb03",
"id": "73a777e8-2ec7-435c-a8a2-41abbd29ca8b",
"date_posted": 1763445755,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445761,
"url": "https://www.databricks.com/company/careers/professional-services-operations/ai-tooling-program-engineer--8295414002",
"locations": [
"Northeast, United States"
],
"sponsorship": "Other",
"active": true,
"company_name": "Databricks",
"title": "AI Tooling Program Engineer",
"source": "vanshb03",
"id": "277851aa-d2fe-4633-812f-7d11025bd8ec",
"date_posted": 1763445761,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764544863,
"url": "https://regions.wd5.myworkdayjobs.com/regions_careers/job/Atlanta-GA---Regions-Plaza-Office/Salesforce-Developer---Entry-Level--On-Site-_R97616",
"locations": [
"Atlanta, GA",
"Hoover, AL",
"Charlotte, NC"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "Regions",
"title": "Salesforce Developer",
"source": "vanshb03",
"id": "22cc950f-7ebe-4871-aafd-d83a028876dc",
"date_posted": 1763445767,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445857,
"url": "https://www.workatastartup.com/jobs/85420",
"locations": [
"Kansas City, MO",
"Overland Park, KS",
"Olathe, KS"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "dScribe AI",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "1743ce18-779e-45b8-bed3-65ac455d0e26",
"date_posted": 1763445857,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445861,
"url": "https://www.workatastartup.com/jobs/85445",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Phonely",
"title": "Forward Deployed Engineer",
"source": "vanshb03",
"id": "3dee5f20-812b-4224-b425-02fdf0b6e1cb",
"date_posted": 1763445861,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445866,
"url": "https://www.workatastartup.com/jobs/77829",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Poka Labs",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "e7f1a88f-21f1-4d77-9fc7-6b9aacd4196e",
"date_posted": 1763445866,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445878,
"url": "https://www.workatastartup.com/jobs/85460",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Wanderlog (W19)",
"title": "New Grad: Full-Stack Software Engineer",
"source": "vanshb03",
"id": "22c6766f-df59-43ee-822b-df2319b6cebd",
"date_posted": 1763445878,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1763445883,
"url": "https://www.workatastartup.com/jobs/85459",
"locations": [
"San Francisco, CA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Wanderlog (W19)",
"title": "New Grad: Full-Stack Software Engineer",
"source": "vanshb03",
"id": "689c1f1a-d1f6-4f75-941e-177d1ba816c2",
"date_posted": 1763445883,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545563,
"url": "https://joinbytedance.com/search/7542674819873081608",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Machine Learning Graduate (eCommerce User Growth & Intelligent Marketing)",
"source": "vanshb03",
"id": "4f96c4b6-4d57-401d-97c4-93ce72ba6761",
"date_posted": 1764545563,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545569,
"url": "https://www.tesla.com/careers/search/job/256719",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Maps & Navigation Validation, Vehicle Software",
"source": "vanshb03",
"id": "16bd89a2-ae18-42c8-a6f8-c8c9d7fe045a",
"date_posted": 1764545569,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545573,
"url": "https://www.tesla.com/careers/search/job/256595",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, AI Inference Codesign",
"source": "vanshb03",
"id": "670d8b80-15ef-4db2-8abe-ff8a8e4cd68a",
"date_posted": 1764545573,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545576,
"url": "https://www.tesla.com/careers/search/job/256730",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Robotics Systems Engineer, Optimus",
"source": "vanshb03",
"id": "4114af0c-63de-45ac-acf7-f4cce79d2451",
"date_posted": 1764545576,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308288,
"url": "https://generalmotors.wd5.myworkdayjobs.com/Careers_GM/job/Mountain-View-California-United-States-of-America/Software-Engineer---Early-Career_JR-202517310",
"locations": [
"Mountain View, CA",
"Austin, TX",
"Milford, MI",
"Warren, MI"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "General Motors",
"title": "Software Engineer - Early Career",
"source": "vanshb03",
"id": "73dde98c-273a-4eea-adef-1e6d1778541e",
"date_posted": 1764545584,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545588,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Developer-Technology-Engineer--Public-Sector---New-College-Grad-2026_JR2008990",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Developer Technology Engineer, Public Sector",
"source": "vanshb03",
"id": "bb83f838-5027-41e5-8b1b-ce31637de54d",
"date_posted": 1764545588,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545594,
"url": "https://careers.withwaymo.com/jobs/software-engineer-ml-tools-mountain-view-california-united-states",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Waymo",
"title": "Software Engineer, ML Tools",
"source": "vanshb03",
"id": "cf8202da-86a5-44e4-9d97-d2687952ff97",
"date_posted": 1764545594,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545603,
"url": "https://jobs.ashbyhq.com/dune/f3846675-ec16-49df-840d-a428cb421e8c",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Dune",
"title": "Data Engineer",
"source": "vanshb03",
"id": "4923d49b-7e0c-4f18-9400-89bf5e176898",
"date_posted": 1764545603,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545629,
"url": "https://www.amazon.jobs/en/jobs/3133994/system-development-engineer-robotics-integration-and-optimization-services",
"locations": [
"Arlington, VA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "System Development Engineer, Robotics Integration and Optimization Services",
"source": "vanshb03",
"id": "abfe4bf4-3faf-4d28-93db-0b99cccec443",
"date_posted": 1764545629,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://job-boards.greenhouse.io/affirm/jobs/7485072003",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Affirm",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "73855344-cece-41c9-bc0d-67c71a543bca",
"date_posted": 1764545634,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://job-boards.greenhouse.io/affirm/jobs/7485068003",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "Affirm",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "26cf13af-bd7c-4088-ac2a-2e9e940a4b38",
"date_posted": 1764545642,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545682,
"url": "https://jobs.ashbyhq.com/yotta/b5202314-91e1-4940-b8a1-9be0e02d1db5",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Yotta Labs",
"title": "Research Engineer - Decentralized AI Systems",
"source": "vanshb03",
"id": "0ca586ff-d900-47dd-81e7-33157f7a073c",
"date_posted": 1764545682,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545710,
"url": "https://jobs.ashbyhq.com/evenup/575484a3-ed12-478f-a575-8db524f9cc96",
"locations": [
"San Francisco, CA",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "EvenUp",
"title": "Backend Software Engineer, AI Document Generation (All Levels)",
"source": "vanshb03",
"id": "11ebe7db-b2f4-44c5-a90e-cae1ab100e42",
"date_posted": 1764545710,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765307919,
"url": "https://job-boards.greenhouse.io/leagueinc/jobs/5723828004",
"locations": [
"United States"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": false,
"company_name": "League",
"title": "Software Engineer, Backend (Apps & Solutions)",
"source": "vanshb03",
"id": "bd3aaedf-9690-4796-8a34-51c44cbdbeab",
"date_posted": 1764545721,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545881,
"url": "https://www.workatastartup.com/jobs/86044",
"locations": [
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Thera",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "14c7b38e-5b75-49dd-80f5-6d4158e25726",
"date_posted": 1764545881,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1764545885,
"url": "https://www.workatastartup.com/jobs/85422",
"locations": [
"New York, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Thera",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "99555812-8faf-4a89-b91e-ea9ec3b2743d",
"date_posted": 1764545885,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308393,
"url": "https://www.workatastartup.com/jobs/86703",
"locations": [
"San Francisco, CA",
"Remote"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Wanderlog",
"title": "Full-Stack Software Engineer",
"source": "vanshb03",
"id": "0f67849b-7686-4726-8166-caadfb96f2f1",
"date_posted": 1765308393,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308398,
"url": "https://www.workatastartup.com/jobs/86704",
"locations": [
"Toronto, Canada",
"Remote"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Wanderlog",
"title": "Full-Stack Software Engineer",
"source": "vanshb03",
"id": "c2594497-e483-4d3a-bd23-5637c3309291",
"date_posted": 1765308398,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308434,
"url": "https://www.workatastartup.com/jobs/85607",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Trellis AI",
"title": "Member of Technical Staff",
"source": "vanshb03",
"id": "e99bdb61-cdaf-4577-bc02-17600d3c1c55",
"date_posted": 1765308434,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308438,
"url": "https://www.workatastartup.com/jobs/86588",
"locations": [
"San Francisco, CA, US"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Planbase",
"title": "Founding Engineer (Full-Stack)",
"source": "vanshb03",
"id": "63042833-1a34-425a-b049-5f4bcf41d4b0",
"date_posted": 1765308438,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308442,
"url": "https://www.workatastartup.com/jobs/83889",
"locations": [
"San Francisco, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Idler",
"title": "Software Engineer",
"source": "vanshb03",
"id": "c60e336e-9c31-4cd5-886c-287ea9dc1c06",
"date_posted": 1765308442,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765308454,
"url": "https://www.workatastartup.com/jobs/79286",
"locations": [
"New York, NY"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Emerge Career",
"title": "Founding Product Engineer",
"source": "vanshb03",
"id": "94972616-eb1a-4730-b274-66b3f3fd7dc1",
"date_posted": 1765308454,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531847,
"url": "https://jobs.ashbyhq.com/magical/2c4734af-1ca2-423a-bb4e-29a7da894249",
"locations": [
"San Francisco, CA",
"Toronto, Canada"
],
"sponsorship": "Other",
"active": true,
"company_name": "Magical",
"title": "New Grad: Junior Software Engineer, AI",
"source": "vanshb03",
"id": "21105f1e-b540-44e8-9c66-152d8c5ec185",
"date_posted": 1765531847,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531858,
"url": "https://careers.capgemini.com/job/New-York%2C-NY-Full-Stack-AI-Engineer-NY-10001/1275242401",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Capgemini",
"title": "Full Stack AI Engineer",
"source": "vanshb03",
"id": "05d08d4f-1a25-4503-b8e9-bc5bfbe6fc51",
"date_posted": 1765531858,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531864,
"url": "https://careers.withwaymo.com/jobs/webrad-rider-support-full-stack-swe-mountain-view-california-united-states",
"locations": [
"Mountain View, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Waymo",
"title": "WebRAD & Rider Support Full Stack SWE",
"source": "vanshb03",
"id": "e5688a78-d12b-403b-a37b-fe58b1e30c5b",
"date_posted": 1765531864,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://jobs.lever.co/spotify/7032c810-478c-42fc-9807-25553e978343",
"locations": [
"New York, NY",
"Boston, MA",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Spotify",
"title": "Machine Learning Engineer",
"source": "vanshb03",
"id": "4901a281-e10c-44e2-af4d-11d29e996140",
"date_posted": 1765531872,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767993673,
"url": "https://jobs.lever.co/spotify/213ccab3-7bc8-4a63-957c-89bba89d2036",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Spotify",
"title": "Fullstack Engineer",
"source": "vanshb03",
"id": "fa03ed58-7e45-405b-ab9a-af10741962e8",
"date_posted": 1765531876,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://jobs.lever.co/whoop/02b3ba78-ccb4-40a4-94b3-6b14c71eed9e",
"locations": [
"Boston, MA"
],
"sponsorship": "Other",
"active": false,
"company_name": "WHOOP",
"title": "Software Engineer I, Backend",
"source": "vanshb03",
"id": "c050c1ad-0d7e-4b86-b2fd-113f9badcdb6",
"date_posted": 1765531880,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769923654,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/GPU-and-SoC-Modelling-Architect---New-College-Grad-2026_JR2009934",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": false,
"company_name": "NVIDIA",
"title": "New Grad 2026: GPU and SoC Modelling Architect",
"source": "vanshb03",
"id": "edd2f929-2c2e-4426-a1e1-dddbe8a887d5",
"date_posted": 1765531883,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1765531888,
"url": "https://careers.viasat.com/jobs/4993",
"locations": [
"Carlsbad, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Viasat",
"title": "Software Engineer, Broadband Networks",
"source": "vanshb03",
"id": "3d686685-ac21-4c9c-ba68-2e0c4a6eb611",
"date_posted": 1765531888,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767284064,
"url": "https://jobs.ashbyhq.com/Sierra/6a75b530-b7bb-4439-bb67-37b4f2b75b96",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Sierra",
"title": "New Grad: Software Engineer, Agent",
"source": "vanshb03",
"id": "063c73ea-6a18-4cd0-b970-f55a4e5f5461",
"date_posted": 1767284064,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767284073,
"url": "https://jobs.ashbyhq.com/Sierra/ce2ae656-714c-4a6c-a020-fe418f868075",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Sierra",
"title": "New Grad: Software Engineer, Agent",
"source": "vanshb03",
"id": "6f3dbf87-6fb7-44d0-ad2f-78206ebb7922",
"date_posted": 1767284073,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767284081,
"url": "https://joinbytedance.com/search/7532657573800659218",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Software Development Engineer in Test Graduate",
"source": "vanshb03",
"id": "e92caeec-09c4-4a82-8fed-86e2a7898367",
"date_posted": 1767284081,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767284088,
"url": "https://joinbytedance.com/search/7527678842316998919",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "ByteDance",
"title": "New Grad 2026: Backend Software Engineer Graduate",
"source": "vanshb03",
"id": "2cf8dd13-93b9-4fee-b268-7d0e45477680",
"date_posted": 1767284088,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767284094,
"url": "https://lifeattiktok.com/search/7532216894792222994?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "New Grad 2026: Research Scientist Graduate: TikTok Recommendation",
"source": "vanshb03",
"id": "bab2d11f-67ff-46f0-a5d9-8fc7e93c525a",
"date_posted": 1767284094,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746085,
"url": "https://jobs.lever.co/spotify/51cfd148-318d-4870-bf61-dc47a4572374",
"locations": [
"New York, NY",
"Remote"
],
"sponsorship": "Other",
"active": false,
"company_name": "Spotify",
"title": "Full Stack Engineer, Backstage Portal, Data Experience",
"source": "vanshb03",
"id": "4529bfc6-1fba-45d6-b0dd-7af4c5ecf307",
"date_posted": 1767284102,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746085,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556640131",
"locations": [
"United States"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "e7efb0c8-5d02-40fd-9a13-46a9eb2685c1",
"date_posted": 1767284109,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746387,
"url": "https://www.workatastartup.com/jobs/88067",
"locations": [
"New York, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Caddy",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "5bbf0699-11ec-4ce2-b643-4036b17c1ebf",
"date_posted": 1767746387,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746391,
"url": "https://www.workatastartup.com/jobs/88025",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Planbase",
"title": "Founding Engineer",
"source": "vanshb03",
"id": "d38e3f8d-3b60-4d82-9818-aaff75c2592c",
"date_posted": 1767746391,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746394,
"url": "https://www.workatastartup.com/jobs/87443",
"locations": [
"San Francisco, CA, US"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Planbase",
"title": "Founding Product Engineer",
"source": "vanshb03",
"id": "81e4fe44-c95c-4367-8ae3-18e345169d67",
"date_posted": 1767746394,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767993674,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556637693",
"locations": [
"United States, Multiple Locations"
],
"sponsorship": "U.S. Citizenship is Required",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "99e6edce-e573-47f8-a5bb-01f9739d76a6",
"date_posted": 1767746789,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746801,
"url": "https://lifeattiktok.com/search/7591947799615260933?spread=5MWH5CQ",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "TikTok",
"title": "Software Engineer Graduate, Site Reliability Engineering",
"source": "vanshb03",
"id": "8e1561a5-e2fc-469b-b4ff-62be2b446dcc",
"date_posted": 1767746801,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746807,
"url": "https://stripe.com/jobs/listing/security-engineer-new-grad/7477571",
"locations": [
"Seattle, WA",
"South San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Stripe",
"title": "New Grad: Security Engineer",
"source": "vanshb03",
"id": "df0bdf50-8a5b-4ead-894e-4460fe523a96",
"date_posted": 1767746807,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746826,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR160657EXTERNALENUS/2026-University-Graduate-Software-Development-Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "73c5c3e2-2230-4104-bc31-d0456412cb53",
"date_posted": 1767746826,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746831,
"url": "https://www.tesla.com/careers/search/job/259019",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "AI Engineer, Reinforcement Learning, Self-Driving",
"source": "vanshb03",
"id": "5e6831f9-2531-4f11-b951-968e71ee8a34",
"date_posted": 1767746831,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746835,
"url": "https://www.tesla.com/careers/search/job/259057",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Core Vehicle Fulfillment Experience",
"source": "vanshb03",
"id": "3de87955-812b-42ac-9a1d-e78522173016",
"date_posted": 1767746835,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746840,
"url": "https://university-uber.icims.com/jobs/152559/job?mobile=false&width=1069&height=500&bga=true&needsRedirect=false&jan1offset=-300&jun1offset=-240",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Uber",
"title": "New Grad 2026: Software Engineer I, Mobile",
"source": "vanshb03",
"id": "cbddd403-e23f-4e67-8bc4-ce270d98011c",
"date_posted": 1767746840,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746879,
"url": "https://university-uber.icims.com/jobs/152427/job",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Uber",
"title": "New Grad 2026: Software Engineer I",
"source": "vanshb03",
"id": "fffecdc9-204f-4a99-8cf1-65eb19f509e8",
"date_posted": 1767746879,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767746997,
"url": "https://www.rentec.com/Careers.action?jobs=true&selectedPosition=researchScientist",
"locations": [
"East Setauket, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Renaissance Technologies",
"title": "Research Scientist",
"source": "vanshb03",
"id": "d2acd2a3-15a7-4c1a-a8c1-39c8bf2843ea",
"date_posted": 1767746997,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767747000,
"url": "https://www.rentec.com/Careers.action?jobs=true&selectedPosition=realtimeTradingProgrammer",
"locations": [
"East Setauket, NY"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Renaissance Technologies",
"title": "Real-Time Trading Programmer",
"source": "vanshb03",
"id": "e2287511-dba4-498b-827e-50ba46fdd8a5",
"date_posted": 1767747000,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995413,
"url": "https://www.ixl.com/company/careers?gh_jid=8364780002",
"locations": [
"Raleigh, NC"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "IXL Learning",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "f56f6a1f-499d-459d-bdfb-0111694d0029",
"date_posted": 1767995413,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995419,
"url": "https://job-boards.eu.greenhouse.io/stubhubinc/jobs/4749965101",
"locations": [
"Santa Monica, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "StubHub",
"title": "New Grad: Software Engineer I",
"source": "vanshb03",
"id": "35cf42a3-b608-4e00-835b-36a1e0e57285",
"date_posted": 1767995419,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995449,
"url": "https://www.tesla.com/careers/search/job/259428",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Fullstack Software Engineer, Energy Products Software",
"source": "vanshb03",
"id": "9c8cae3f-1ffc-48ac-8eeb-c517d2bb8a25",
"date_posted": 1767995449,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995452,
"url": "https://www.tesla.com/careers/search/job/259410",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Mobile App Build Engineer, Vehicle Software",
"source": "vanshb03",
"id": "b7b340a0-921f-4ec8-8416-43e221cf6d97",
"date_posted": 1767995452,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995456,
"url": "https://www.tesla.com/careers/search/job/259427",
"locations": [
"Palo Alto, California"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Security Engineer, Energy Product Software",
"source": "vanshb03",
"id": "89fe738d-13fc-4849-a50e-13ba54619c83",
"date_posted": 1767995456,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995459,
"url": "https://www.tesla.com/careers/search/job/233307",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "AI Engineer, Vision & Foundation Models, Optimus",
"source": "vanshb03",
"id": "8b5aa470-1439-4d44-a72b-b3d0e73b5725",
"date_posted": 1767995459,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995462,
"url": "https://www.tesla.com/careers/search/job/259300",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Integration Engineer, Suspension, Vehicle Software",
"source": "vanshb03",
"id": "b7a8d49b-d1e4-44f1-b910-8798e7d6a260",
"date_posted": 1767995462,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995465,
"url": "https://careers.twitch.com/en/career-posts/8347863002/",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch",
"title": "Software Engineer, Creator Monetization",
"source": "vanshb03",
"id": "15d6a9ec-6b14-4157-b662-7f60a505aa46",
"date_posted": 1767995465,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995469,
"url": "https://careers.twitch.com/en/career-posts/8334351002/",
"locations": [
"San Francisco, CA",
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "529a68e4-376b-4e25-8936-cc06593701ce",
"date_posted": 1767995469,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995471,
"url": "https://careers.twitch.com/en/career-posts/8360103002/",
"locations": [
"Seattle, WA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "442b0c92-4295-4c41-a739-f4f5798f159c",
"date_posted": 1767995471,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075377,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556630980",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "bf424026-3d57-4442-a128-8e94558d1612",
"date_posted": 1767995476,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075377,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556620955",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "ba91484e-7215-4148-93d8-896bd6954fc4",
"date_posted": 1767995479,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1767995484,
"url": "https://jobs.ashbyhq.com/cohere/110ba167-4efd-43b7-85d2-3ff719a28b0f",
"locations": [
"San Francisco, CA",
"New York, NY",
"Toronto, Canada",
"Montreal, Canada",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Cohere",
"title": "Member of Technical Staff, MLE",
"source": "vanshb03",
"id": "582cb736-168c-43ff-a427-20037e5eaef2",
"date_posted": 1767995484,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075377,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556619827",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "2ea916a0-422c-4ee5-be66-b72525363fb0",
"date_posted": 1767995490,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075377,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556652607",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer: Azure One Fleet Platform",
"source": "vanshb03",
"id": "4d582ecd-b0dd-41e3-a247-41c32a06d24a",
"date_posted": 1767995496,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075329,
"url": "https://unity.com/careers/positions/7435121",
"locations": [
"Remote"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Unity Technologies",
"title": "Software Engineer",
"source": "vanshb03",
"id": "1012d9d9-80cf-4c48-b844-8d364a9dced4",
"date_posted": 1768075329,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1768075340,
"url": "https://careers.adobe.com/us/en/job/ADOBUSR161061EXTERNALENUS/Software-Development-Engineer",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Adobe",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "9271b22f-eb87-4afc-a02a-02179a53be1c",
"date_posted": 1768075340,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926580,
"url": "https://www.tesla.com/careers/search/job/257746",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Test Engineer, Optimus",
"source": "vanshb03",
"id": "d90d5cfb-3d51-472a-a856-61c39b269c6a",
"date_posted": 1769926580,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926584,
"url": "https://www.tesla.com/careers/search/job/261137",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Maps & Navigation Algorithms Engineer, Vehicle Controls",
"source": "vanshb03",
"id": "f0d766a3-b670-482d-bd42-4bb619fcef5d",
"date_posted": 1769926584,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926587,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Power-Methodology-and-Modeling-Engineer---New-College-Grad-2026_JR2012047",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Power Methodology and Modeling Engineer",
"source": "vanshb03",
"id": "d01e6a9a-1302-4f17-ba80-811e1941fe9f",
"date_posted": 1769926587,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556641984",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Machine Learning Engineer",
"source": "vanshb03",
"id": "d7e86369-c871-42d9-b066-66be109596ab",
"date_posted": 1769926592,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556631977",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "9147dbab-3f96-49f1-9cb9-804e5fd52fe8",
"date_posted": 1769926596,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556631972",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "16cd6dac-0b29-4416-93be-f86b439defca",
"date_posted": 1769926599,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926603,
"url": "https://www.amazon.jobs/en/jobs/3168547/systems-development-engineer-amazon-foundational-security-services-afss",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Systems Development Engineer",
"source": "vanshb03",
"id": "d5c41861-f4e2-4d12-b054-8f7c211b1675",
"date_posted": 1769926603,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926608,
"url": "https://www.amazon.jobs/en/jobs/3168189/systems-development-engineer-amazon-enterprise-engineering-enterprise-engineering",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Systems Development Engineer",
"source": "vanshb03",
"id": "5564b1c6-2f6c-45d8-bcc6-63bda78f8977",
"date_posted": 1769926608,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926609,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Deep-Learning-Software-Engineer--FlashInfer---New-College-Grad-2025_JR2002086",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2025: Deep Learning Software Engineer, FlashInfer",
"source": "vanshb03",
"id": "73669e40-3500-45cf-9d5d-c8305c03a55a",
"date_posted": 1769926609,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926613,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-Hardware-Design-Engineer---New-College-Grad-2026_JR2011787",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: ASIC Hardware Design Engineer",
"source": "vanshb03",
"id": "1f55d973-fbe5-4a39-8e8d-4642b3bf92fd",
"date_posted": 1769926613,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926622,
"url": "https://jobs.apple.com/en-us/details/200643886-3956/software-engineer-is-t-early-career-opportunities?team=SFTWR",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer",
"source": "vanshb03",
"id": "7265d0b4-0c88-4302-acf6-bdb8839cb1c4",
"date_posted": 1769926622,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926625,
"url": "https://jobs.apple.com/en-us/details/200643885-0157/software-engineer-is-t-early-career-opportunities",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer",
"source": "vanshb03",
"id": "526eaad1-3607-4e11-8a16-46993b17207d",
"date_posted": 1769926625,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556668405",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer Identity & Network Access",
"source": "vanshb03",
"id": "6eee791a-03ea-4635-9b7a-ab923a527773",
"date_posted": 1769926632,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556746589",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "7a1f2673-6f9a-446a-8b32-1d81be348cd5",
"date_posted": 1769926638,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170051,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556746621",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "cb274e4a-6e1d-4420-895c-99bf3b740b84",
"date_posted": 1769926643,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926646,
"url": "https://jobs.ashbyhq.com/zip/19f459ee-4907-4883-9d70-35eb96f62082",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Zip",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "79aed979-3e3f-47c2-bbde-85a16d64ddf0",
"date_posted": 1769926646,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926649,
"url": "https://www.amazon.jobs/en/jobs/3170102/sde-i-creator-monetization",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch Interactive, Inc.",
"title": "Software Engineer",
"source": "vanshb03",
"id": "88bdaa8a-9cb3-4f48-88dc-b95375f4f0d1",
"date_posted": 1769926649,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926672,
"url": "https://www.amazon.jobs/en/jobs/3171130/security-engineer-i-security-incident-response-team-sirt-security-incident-response-team-sirt",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Security Engineer I, Security Incident Response Team (SIRT)",
"source": "vanshb03",
"id": "d6f660d5-ea49-450c-bcf2-36da05d22cf6",
"date_posted": 1769926672,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926654,
"url": "https://www.tesla.com/careers/search/job/261393",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software QA Engineer, Integration, AI Platforms",
"source": "vanshb03",
"id": "a7739eff-d131-49aa-97a3-801541b86e3f",
"date_posted": 1769926654,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926658,
"url": "https://www.tesla.com/careers/search/job/252155",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Engineer, Optimus",
"source": "vanshb03",
"id": "eec020e9-3548-4a48-93ff-9826fdbdf294",
"date_posted": 1769926658,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1769926660,
"url": "https://www.tryprofound.com/careers/1d4a905b-7b91-4763-88dd-7abc7562fbcd",
"locations": [
"New York City, NY",
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"company_name": "Profound",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "27568766-016d-4cc0-a51e-216c025e4feb",
"date_posted": 1769926660,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169955,
"url": "https://jobs.lever.co/spotify/ad5ef898-b800-4213-a63e-e39a97df9cfb",
"locations": [
"New York, NY"
],
"sponsorship": "Other",
"active": true,
"company_name": "Spotify",
"title": "Site Reliability Engineer",
"source": "vanshb03",
"id": "661ee31d-aa38-43d4-aeb7-b7b3fb767033",
"date_posted": 1771169955,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169961,
"url": "https://jobs.apple.com/en-us/details/200646547-3956/software-engineer-customer-systems-is-t-early-career",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Software Engineer, Customer Systems",
"source": "vanshb03",
"id": "78d11bf6-a796-474d-99ef-9e36ac66327d",
"date_posted": 1771169961,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169964,
"url": "https://jobs.apple.com/en-us/details/200636915-0836/junior-ui-compositing-engineer",
"locations": [
"Cupertino, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Apple",
"title": "Junior UI Compositing Engineer",
"source": "vanshb03",
"id": "d4441bb8-7d4b-44a1-994d-e10cc6f472e8",
"date_posted": 1771169964,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556753654",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Site Reliability Engineer",
"source": "vanshb03",
"id": "8df2a4c9-4670-4d84-af86-99c16a082390",
"date_posted": 1771169971,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169973,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/ASIC-RTL-Integration-and-Netlisting-Engineer---New-College-Grad-2026_JR2013172",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: ASIC RTL Integration and Netlisting Engineer",
"source": "vanshb03",
"id": "026fe2cb-3c98-4738-bf95-332dabf195f8",
"date_posted": 1771169973,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169981,
"url": "https://www.tesla.com/careers/search/job/262815",
"locations": [
"Fremont, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software QA Engineer, Document Systems",
"source": "vanshb03",
"id": "8255bf83-7a1a-4621-940a-a24b0879d221",
"date_posted": 1771169981,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771169987,
"url": "https://www.tesla.com/careers/search/job/262739",
"locations": [
"Palo Alto, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software QA Engineer, Update Systems Validation, Vehicle Software",
"source": "vanshb03",
"id": "b4f72a92-0f15-49a3-9c85-0877c3ffd2f3",
"date_posted": 1771169987,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556748514",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "0c2ce10a-6dfd-4b05-8db5-aa92953e2629",
"date_posted": 1771169998,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556640236",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "6aeb4a26-ce46-423c-b31a-5271872709b8",
"date_posted": 1771170003,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556640145",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "7467eab7-49d8-41eb-9550-cf00c3952f18",
"date_posted": 1771170007,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170009,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/Formal-Verification-Engineer---New-College-Grad-2026_JR2013065",
"locations": [
"Austin, TX",
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Formal Verification Engineer",
"source": "vanshb03",
"id": "d14c5ae0-88de-4c46-bde6-a3108628fa3b",
"date_posted": 1771170009,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170012,
"url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/GPU-Power-Architect---New-College-Grad-2026_JR2012838",
"locations": [
"Santa Clara, CA",
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: GPU Power Architect",
"source": "vanshb03",
"id": "9914e1ff-7b5b-4f38-b117-4cbb0fdfe381",
"date_posted": 1771170012,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170016,
"url": "https://www.amazon.jobs/en/jobs/3177934/software-development-engineer-2026-us",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Amazon",
"title": "Software Development Engineer",
"source": "vanshb03",
"id": "f125c601-119f-4507-bc46-eaa173e1eb66",
"date_posted": 1771170016,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556668412",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Network Automation Engineer",
"source": "vanshb03",
"id": "c3d9e0fb-9581-45c0-ad71-fa109fa8568c",
"date_posted": 1771170021,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://job-boards.greenhouse.io/airtable/jobs/8409376002",
"locations": [
"San Francisco, CA",
"New York, NY"
],
"sponsorship": "Other",
"active": false,
"company_name": "Airtable",
"title": "New Grad 2026: Software Engineer",
"source": "vanshb03",
"id": "6067457b-b1d4-4400-972b-4483439a60f3",
"date_posted": 1771170023,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170029,
"url": "https://jobs.ashbyhq.com/ramp/6b9108d1-128d-4fd3-8465-fb514ea0e4c4",
"locations": [
"New York, NY",
"San Francisco, CA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "Ramp",
"title": "Design Engineer, Design Systems",
"source": "vanshb03",
"id": "0f4a2f08-6e91-40d8-8895-c8318e82811f",
"date_posted": 1771170029,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170032,
"url": "https://www.tesla.com/careers/search/job/262209",
"locations": [
"Austin, TX"
],
"sponsorship": "Other",
"active": true,
"company_name": "Tesla",
"title": "Software Integration Engineer, Cell Manufacturing",
"source": "vanshb03",
"id": "a11ff3a8-0f57-4f06-ab9a-27da9dd9b4b7",
"date_posted": 1771170032,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774442805,
"url": "https://apply.careers.microsoft.com/careers/job/1970393556751379",
"locations": [
"United States"
],
"sponsorship": "Other",
"active": false,
"company_name": "Microsoft",
"title": "Software Engineer",
"source": "vanshb03",
"id": "93ffe0c2-6434-4876-bf6c-3e57b5f20d06",
"date_posted": 1771170037,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1771170039,
"url": "https://job-boards.greenhouse.io/earlytalentcerebras/jobs/7621174003",
"locations": [
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Cerebras Systems",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "e580659a-439e-4b31-83c8-46bee5eab713",
"date_posted": 1771170039,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1773873316,
"url": "https://jobs.lever.co/ivo/3ce9dc16-90fd-4b99-b4b9-dfd48ec1a50d",
"company_name": "Ivo",
"title": "Software Engineer, Backend",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "muskaan-bawa",
"id": "522f8d79-2e31-47cb-ad24-6c2756fbb084",
"date_posted": 1773873316,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1773873832,
"url": "https://jobs.lever.co/ivo/56746366-28dd-43e4-8457-ba7a17c43b57",
"company_name": "Ivo",
"title": "Software Engineer, Frontend",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Offers Sponsorship",
"active": true,
"source": "muskaan-bawa",
"id": "dcf1e018-e792-4d6d-9a0f-9d94f09751ad",
"date_posted": 1773873832,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1773879694,
"url": "https://www.google.com/about/careers/applications/jobs/results/143333237156913862-software-engineer-ii/",
"company_name": "Google",
"title": "Software Engineer II, Early Career",
"locations": [
"Mountain View, CA",
"Kirkland, WA",
"Los Angeles, CA",
"Madison, WI",
"New York, NY",
"Palo Alto, CA",
"Pittsburgh, PA",
"Raleigh, NC",
"Durham, NC",
"San Bruno, CA",
"Seattle, WA",
"Sunnyvale, CA"
],
"sponsorship": "Other",
"active": true,
"source": "vanshb03",
"id": "382134ec-fc12-43fa-8ab7-1551d5fce28f",
"date_posted": 1773879694,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482141,
"url": "https://travelers.wd5.myworkdayjobs.com/External/job/GA---Atlanta/Software-Engineer-I--AI-Driven-_R-49831",
"locations": [
"Atlanta, GA"
],
"sponsorship": "Does Not Offer Sponsorship",
"active": true,
"company_name": "Travelers",
"title": "Software Engineer I (AI Driven)",
"source": "vanshb03",
"id": "96caa66c-e3b8-47d6-9b08-f7c11aef2480",
"date_posted": 1774482141,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482154,
"url": "https://job-boards.greenhouse.io/twitch/jobs/8459320002",
"locations": [
"Seattle, WA",
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch",
"title": "Software Engineer I, Commerce Engineering",
"source": "vanshb03",
"id": "f7848bb0-6373-4393-935e-09ba25b83064",
"date_posted": 1774482154,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482167,
"url": "https://job-boards.greenhouse.io/twitch/jobs/8457711002",
"locations": [
"San Francisco, CA",
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Twitch",
"title": "Software Engineer I, Commerce Engineering",
"source": "vanshb03",
"id": "0af9b1a2-2f10-4d90-8e00-fc19800f0b57",
"date_posted": 1774482167,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482172,
"url": "https://ultra.wd3.myworkdayjobs.com/en-GB/ultra-careers/job/Tampa-FL-United-States/Software-Engineer-1_REQ-11707-1",
"locations": [
"Tampa, FL"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Ultra Intelligence & Communications",
"title": "Software Engineer 1",
"source": "vanshb03",
"id": "51241756-fc6e-4ab8-af89-b6b64cf5c1c7",
"date_posted": 1774482172,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482417,
"url": "https://jobs.supermicro.com/job/San-Jose-Software-Engineer-Cali/1376640400/?LinkedIn+Job+Slots=utm_source%3Dlinkedinjobpostings&jr_id=69c4408b6f4f855eeda6ac1e",
"locations": [
"San Jose, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Supermicro",
"title": "Software Engineer",
"source": "vanshb03",
"id": "3931a52d-d124-4c4f-8804-686e20aa79bc",
"date_posted": 1774482417,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482431,
"url": "https://avav.wd1.myworkdayjobs.com/AVAV/job/308-Sentinel-Drive-Annapolis-Junction-MD/Junior-Software-Engineer_7346?jr_id=69c462e6d5a1016e98db9713",
"locations": [
"Annapolis Junction, MD"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "AV",
"title": "Software Engineer",
"source": "vanshb03",
"id": "fbb6dc4b-7f17-404f-be6a-82ea9a95ea42",
"date_posted": 1774482431,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482438,
"url": "https://phh.tbe.taleo.net/phh01/ats/careers/v2/viewRequisition?org=BASESOLU&cws=37&rid=330&src=LinkedIn&jr_id=69c44ae133eecf3107948246",
"locations": [
"Annapolis Junction, MD"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Base-2 Solutions",
"title": "Software Engineer",
"source": "vanshb03",
"id": "640d4319-ae07-4b4d-a2ae-ae8750e6e7ef",
"date_posted": 1774482438,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1774482445,
"url": "https://finra.wd1.myworkdayjobs.com/FINRA/job/Woodbridge-NJ-Job-Posting/Software-Engineer_R-009806?jr_id=69c44b676f4f855eeda6be9d",
"locations": [
"Woodbridge, NJ"
],
"sponsorship": "Other",
"active": true,
"company_name": "FINRA",
"title": "Software Engineer",
"source": "vanshb03",
"id": "979e5c6e-b396-4533-8e7e-4de006fa4188",
"date_posted": 1774482445,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085029,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineer--AI-Networking--New-College-Grad-2026_JR2017100",
"locations": [
"Santa Clara, CA",
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Software Engineer, AI Networking, Masters",
"source": "vanshb03",
"id": "23ec7356-d6ba-45de-811a-646058b9ef0b",
"date_posted": 1777085029,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085056,
"url": "https://www.uber.com/global/en/careers/list/157785/",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Uber Technologies, Inc.",
"title": "Software Engineer I, Masters",
"source": "vanshb03",
"id": "a5fa0dcc-3004-4b66-9923-a70584647d7f",
"date_posted": 1777085056,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085066,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Solutions-Architect--Data-Processing---New-College-Grad-2026_JR2017017",
"locations": [
"Santa Clara, CA",
"Remote"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Solutions Architect, Data Processing, Masters/PhD",
"source": "vanshb03",
"id": "6f24ef40-ffc2-4ce8-b809-28cabf727ecf",
"date_posted": 1777085066,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085196,
"url": "https://remitly.wd5.myworkdayjobs.com/Remitly_Careers/job/Seattle-Washington-United-States/Software-Development-Engineer-1--Pricing-Platform_R_106145",
"locations": [
"Seattle, WA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Remitly",
"title": "Software Development Engineer 1, Pricing Platform",
"source": "vanshb03",
"id": "4ce84df5-57e1-4be8-96cb-a0bb1c29c236",
"date_posted": 1777085196,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085202,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/REC_RTX_Ext_Gateway/job/US-CA-EL-SEGUNDO-E01--2000-E-El-Segundo-Blvd--BLDG-E01/Embedded-Software-Engineer-I_01840903",
"locations": [
"El Segundo, CA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "RTX",
"title": "Embedded Software Engineer I",
"source": "vanshb03",
"id": "d26f9a86-c7e9-4409-a2e0-99121faa70da",
"date_posted": 1777085202,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085209,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Deep-Learning-Software-Engineer--FlashInfer---New-College-Grad-2026_JR2017076",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Deep Learning Software Engineer, FlashInfer",
"source": "vanshb03",
"id": "eb83b40f-06d0-471d-a354-2b993ca7872d",
"date_posted": 1777085209,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085216,
"url": "https://lseg.wd3.myworkdayjobs.com/Careers/job/USA-St-Louis-795-Office-Pkwy/FGraduate-Site-Reliability-Engineer_R0119202",
"locations": [
"St. Louis, MO"
],
"sponsorship": "Other",
"active": true,
"company_name": "London Stock Exchange Group (LSEG)",
"title": "Site Reliability Engineer",
"source": "vanshb03",
"id": "8c49e4b0-a69e-4d8c-b47a-8af6aafb20e0",
"date_posted": 1777085216,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085520,
"url": "https://jobs.ashbyhq.com/notion/a6311f97-4850-4674-a5f3-d9fe5f6f2555",
"locations": [
"San Francisco, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "Notion",
"title": "New Grad: Software Engineer",
"source": "vanshb03",
"id": "c805e23a-2f13-4b19-a697-3bb76d13842f",
"date_posted": 1777085520,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085567,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-QA-Engineer--New-College-Grad-2026_JR2016688",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Software QA Engineer",
"source": "vanshb03",
"id": "dc00616f-2a1c-46f2-97bc-99b986f69933",
"date_posted": 1777085567,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085618,
"url": "https://globalhr.wd5.myworkdayjobs.com/en-GB/REC_RTX_Ext_Gateway/job/US-IA-CEDAR-RAPIDS-182--1100-Cimmie-Ave-Ne--BLDG-182/New-Grad-2026-Full-Time---Software-Engineer---Military-Avionics-FMS_01840038",
"locations": [
"Cedar Rapids, IA"
],
"sponsorship": "U.S. Citizenship is Required",
"active": true,
"company_name": "Collins Aerospace",
"title": "Software Engineer I",
"source": "vanshb03",
"id": "4d19ab9b-bfef-4594-b183-1dda2d69fdd6",
"date_posted": 1777085618,
"company_url": "",
"is_visible": true
},
{
"date_updated": 1777085624,
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Applied-AI-Engineer--Silicon-Co-Design-Group--New-College-Grad-2026_JR2015814",
"locations": [
"Santa Clara, CA"
],
"sponsorship": "Other",
"active": true,
"company_name": "NVIDIA",
"title": "New Grad 2026: Applied AI Engineer, Silicon Co-Design Group, Masters/PhD",
"source": "vanshb03",
"id": "4cfdb8d3-3f5c-4210-a177-112ab2f3676a",
"date_posted": 1777085624,
"company_url": "",
"is_visible": true
}
]
================================================
FILE: .github/scripts/update_readmes.py
================================================
import json
from datetime import datetime
import os
import util
import re
def main():
listings = util.getListingsFromJSON()
util.checkSchema(listings)
filtered = util.filterListings(listings, earliest_date=1714528377)
util.sortListings(filtered)
util.embedTable(filtered)
util.setOutput("commit_message", "Updating README at " + datetime.now().strftime("%B %d, %Y %H:%M:%S"))
if __name__ == "__main__":
main()
================================================
FILE: .github/scripts/util.py
================================================
import json
from datetime import date, datetime, timezone, timedelta
import random
import os
# SIMPLIFY_BUTTON = "https://i.imgur.com/kvraaHg.png"
SHORT_APPLY_BUTTON = "https://i.imgur.com/w6lyvuC.png"
LONG_APPLY_BUTTON = "https://i.imgur.com/u1KNU8z.png"
def setOutput(key, value):
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
print(f'{key}={value}', file=fh)
def fail(why):
setOutput("error_message", why)
exit(1)
def getLocations(listing):
locations = "".join(listing["locations"])
if len(listing["locations"]) <= 3:
return locations
num = str(len(listing["locations"])) + " locations"
return f'**{num}**
{locations}'
if listing["source"] != "vansh":
return f'
'
return f'
'
def create_md_table(listings):
table = ""
table += "| Company | Role | Location | Application/Link | Date Posted |\n"
table += "| --- | --- | --- | :---: | :---: |\n"
for listing in listings:
company_url = listing["company_url"]
company = listing["company_name"]
company = f"[{company}]({company_url})" if len(
company_url) > 0 and listing["active"] else company
location = getLocations(listing)
position = listing["title"] + getSponsorship(listing)
link = getLink(listing)
month = datetime.fromtimestamp(listing["date_posted"]).strftime('%b')
dayMonth = datetime.fromtimestamp(listing["date_posted"]).strftime('%b %d')
isBeforeJuly18 = datetime.fromtimestamp(listing["date_posted"]) < datetime(2023, 7, 18, 0, 0, 0)
datePosted = month if isBeforeJuly18 else dayMonth
table += f"| **{company}** | {position} | {location} | {link} | {datePosted} |\n"
# table += f"| **{company}** | {location} | {position} | {link} | {status} | {datePosted} |\n"
return table
def filterListings(listings, earliest_date):
final_listings = []
inclusion_terms = ["software eng", "software dev", "data scientist", "data engineer", "product manage", "apm", "frontend", "front end", "front-end", "backend", "back end", "full-stack", "full stack", "full-stack", "devops", "android", "ios", "mobile dev", "sre", "site reliability eng", "quantitative trad", "quantitative research", "quantitative trad", "quantitative dev", "security eng", "compiler eng", "machine learning eng", "infrastructure eng"]
new_grad_terms = ["new grad", "early career", "college grad", "entry level", "early in career", "university grad", "fresh grad", "2024 grad", "2025 grad", "engineer 0", "engineer 1", "engineer i ", "junior"]
for listing in listings:
if listing["is_visible"] and listing["date_posted"] > earliest_date:
if listing['source'] != "Simplify" or (any(term in listing["title"].lower() for term in inclusion_terms) and (any(term in listing["title"].lower() for term in new_grad_terms) or (listing["title"].lower().endswith("engineer i")))):
final_listings.append(listing)
return final_listings
def getListingsFromJSON(filename=".github/scripts/listings.json"):
with open(filename) as f:
listings = json.load(f)
print("Recieved " + str(len(listings)) +
" listings from listings.json")
return listings
def embedTable(listings):
canada_listings = [listing for listing in listings if "Canada" in getLocations(listing)]
other_listings = [listing for listing in listings if "Canada" not in getLocations(listing)]
# Write to Canada.md
if canada_listings:
filepath = "Canada.md"
newText = ""
readingTable = False
with open(filepath, "r") as f:
for line in f.readlines():
if readingTable:
if "|" not in line and "TABLE_END" in line:
newText += line
readingTable = False
continue
else:
newText += line
if "TABLE_START" in line:
readingTable = True
newText += "\n" + create_md_table(canada_listings) + "\n"
with open(filepath, "w") as f:
f.write(newText)
# Write to README.md
filepath = "README.md"
newText = ""
readingTable = False
with open(filepath, "r") as f:
for line in f.readlines():
if readingTable:
if "|" not in line and "TABLE_END" in line:
newText += line
readingTable = False
continue
else:
newText += line
if "TABLE_START" in line:
readingTable = True
newText += "\n" + create_md_table(other_listings) + "\n"
with open(filepath, "w") as f:
f.write(newText)
def sortListings(listings):
oldestListingFromCompany = {}
linkForCompany = {}
for listing in listings:
date_posted = listing["date_posted"]
if listing["company_name"].lower() not in oldestListingFromCompany or oldestListingFromCompany[listing["company_name"].lower()] > date_posted:
oldestListingFromCompany[listing["company_name"].lower()] = date_posted
if listing["company_name"] not in linkForCompany or len(listing["company_url"]) > 0:
linkForCompany[listing["company_name"]] = listing["company_url"]
listings.sort(
key=lambda x: (
x["active"], # Active listings first
datetime(
datetime.fromtimestamp(x["date_posted"]).year,
datetime.fromtimestamp(x["date_posted"]).month,
datetime.fromtimestamp(x["date_posted"]).day
),
x['company_name'].lower(),
x['date_updated']
),
reverse=True
)
for listing in listings:
listing["company_url"] = linkForCompany[listing["company_name"]]
return listings
def checkSchema(listings):
props = ["source", "company_name",
"id", "title", "active", "date_updated", "is_visible",
"date_posted", "url", "locations", "company_url",
"sponsorship"]
for listing in listings:
for prop in props:
if prop not in listing:
fail("ERROR: Schema check FAILED - object with id " +
listing["id"] + " does not contain prop '" + prop + "'")
================================================
FILE: .github/workflows/contribution_approved.yml
================================================
name: Contribution Approved
on:
issues:
types: ["labeled"]
concurrency: add_internships
jobs:
run-python-script:
runs-on: ubuntu-latest
if: github.event.label.name == 'approved'
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: execute contribution_approved.py
id: python_script
env:
GITHUB_EVENT_PATH: ${{ github.event_path }}
run: python .github/scripts/contribution_approved.py $GITHUB_EVENT_PATH
- name: execute update_readmes.py
id: python_script_readme
run: python .github/scripts/update_readmes.py
- name: commit files
if: success()
run: |
git config --local user.email ${{ steps.python_script.outputs.commit_email }}
git config --local user.name ${{ steps.python_script.outputs.commit_username }}
git add .github/scripts/listings.json
git add README.md
git diff-index --quiet HEAD || (git commit -a -m "${{ steps.python_script.outputs.commit_message }}" --allow-empty)
- name: push changes
if: success()
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: dev
- name: Auto Close Issue
run: gh issue close --comment "Your contribution was accepted. Auto-closing issue" ${{ github.event.issue.number }}
if: success()
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Problem With Action
run: gh issue comment ${{ github.event.issue.number }} --body "There was an error with our github action. Error - ${{ steps.python_script.outputs.error_message }} ${{ steps.python_script_readme.outputs.error_message }}"
if: failure()
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
================================================
FILE: .github/workflows/update_readmes.yml
================================================
name: Update READMEs
on:
push:
paths:
- '.github/scripts/listings.json'
workflow_dispatch:
concurrency:
group: listings_update
cancel-in-progress: true
jobs:
run-python-script:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: execute update_readmes.py
id: python_script
run: python .github/scripts/update_readmes.py
- name: commit files
if: success()
run: |
git config --local user.email action@github.com
git config --local user.name 'Github Action'
git add README.md
git diff-index --quiet HEAD || (git commit -a -m "${{ steps.python_script.outputs.commit_message }}" --allow-empty)
- name: push changes
if: success()
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: dev
- name: Problem With Action
run: echo "There was an error with the github action. ${{ steps.python_script.outputs.error_message }}"
if: failure()
================================================
FILE: .gitignore
================================================
testing/
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing to the Job List
Thank you for your interest in contributing to the new-grad job list!
Below, you'll find the guidelines for our repository. If you have any questions, please create a [miscellaneous issue](https://github.com/cvrve/New-Grad/issues/new/choose).
## Finding a Job to Add
We ask that the jobs openings that you add meet some requirements. Specifically, your posting must
- be in one of the following categories:
- software/computer engineering
- computer/data science
- product management
- quant
- any other tech-related field
- be for recently graduated students
- be located in the United States, Canada, or remote.
- not already exist in the list.
## Adding a Job
Cool! You're ready to add a job to the list. Follow these steps:
1) First create a new issue [here](https://github.com/cvrve/New-Grad/issues/new/choose).
2) Select the **New Role** issue template.
3) Fill in the information about your job opening into the form, then hit submit.
> Please make a new submission for each unique position, **even if they are for the same company**.
4) That's it! Once a member of our team has reviewed your submission, it will be automatically added to the `README`
## Editing a Job
To edit a job posting (changing name, setting as inactive, removing, etc.), follow these steps:
1) First copy the url of the job you would like to edit.
> This can be found by right-clicking on the `APPLY` button and selecting **copy link address**
2) Create a new issue [here](https://github.com/cvrve/New-Grad/issues/new/choose).
3) Select the **Edit Role** issue template.
4) Fill in the url to the **link** input.
> This is how we ensure your edit affects the correct job posting
5) Leave every other input blank except for whichever fields you would like to update or change about the role.
6) If it is not obvious why you are making these edits, please specify why in the reason box at the bottom of the form.
7) Hit submit. A member of our team will review your revision and approve it shortly.
================================================
FILE: Canada.md
================================================
# New Grad Positions by V
Use this repo to share and keep track of entry-level software, tech, CS, PM, quant jobs for 2024 & 2025 new graduates.
The list is maintained collaboratively by [WeCracked](https://wecracked.com/), and [Resumes.fyi](https://resumes.fyi/)!
:warning: Please note that this repository is exclusively for roles in the United States, Canada, or Remote positions :earth_americas:
🙏 **Contribute by submitting an [issue](https://github.com/cvrve/New-Grad/issues/new/choose)! See the contribution guidelines [here](./CONTRIBUTING.md)!** 🙏
This repo is inspired by [Pitt CSC & Simplify Repo](https://github.com/SimplifyJobs/New-Grad-2025).
---
Join the ⬇️ discord ⬇️ and get your applications in right when they open!
Join the Discord to connect with fellow peers and streamline your newgrad search.
| Jan 09 |
| **Magical** | New Grad: Junior Software Engineer, AI | San Francisco, CAToronto, Canada |
| Dec 12 |
| **Wanderlog** | Full-Stack Software Engineer 🇺🇸 | Toronto, CanadaRemote |
| Dec 09 |
| **EvenUp** | Backend Software Engineer, AI Document Generation (All Levels) | San Francisco, CAToronto, Canada |
| Nov 30 |
| **Wanderlog (W19)** | New Grad: Full-Stack Software Engineer | RemoteToronto, Canada |
| Oct 22 |
| **Roserocket** | Junior Software Engineer 🛂 | Toronto, Canada |
| Oct 22 |
| **PepsiCo** | Junior Data Scientist | Mississauga, Canada |
| Oct 22 |
| **D2L** | New Grad 2026: Software Developer Rotation Program |
| Oct 22 |
| **Quadient** | Software Engineer | Vancouver, Canada |
| Oct 11 |
| **Infoblox** | Associate Data Engineer | Burnaby, Canada |
| Oct 11 |
| **Atlassian** | New Grad 2026: Software Engineer | Canada |
| Sep 11 |
| **Tripadvisor** | Android Engineer | Ottawa, Canada |
| Sep 10 |
| **Stripe** | Software Engineer - New Grad | Toronto, ON, Canada |
| Sep 03 |
| **Qualcomm Canada ULC** | CPU Software Telemetry Tools Developer | Markham, Canada |
| Aug 19 |
| **Wanderlog** | Full-Stack Software Engineer | Remote, Canada |
| Aug 18 |
| **Cohere** | Full-Stack Senior Engineer (Front-End Leaning) |
| Aug 18 |
| **Optum** | Associate Software Engineer | Vancouver, CanadaRemote |
| Aug 17 |
| **Okta** | Software Engineer I | Toronto, Canada |
| Aug 17 |
| **Neo Financial** | Software Developer | Calgary, Canada |
| Aug 17 |
| **Mastercard** | Software Engineer I (Backend - Java) | Vancouver, Canada |
| Aug 17 |
| **Codan Limited** | Associate Software Engineer | Victoria, Canada |
| Aug 17 |
| **AMD** | ROCm AI - GPU Software Engineer | Markham, Canada |
| Aug 17 |
| **AMD** | Firmware Security Engineer | Vancouver, Canada |
| Aug 17 |
| **Global Relay** | Junior Software Developer Engineer in Test - C# | Vancouver, BC, Canada |
| Aug 13 |
| **EvenUp** | Early Career Machine Learning Engineer | San Francisco, CAToronto, Canada |
| Jul 30 |
| **AMD** | Software Developer - GPU IO Libraries | Calgary, CanadaRemote |
| Jul 24 |
| **Nokia** | Jr. Applied R&D Engineer | Canada |
| May 15 |
| **Mastercard** | Software Engineer I | Vancouver, Canada |
| May 15 |
| **Google** | Relations Developer, Cloud and Generative AI |
| May 15 |
| **Electronic Arts** | Gameplay Software Engineer | Vancouver, Canada |
| May 15 |
| **Tower Research Capital** | New Grad: C++ Software Engineer, MTL | Montreal, Canada |
| May 03 |
| **Oracle** | Software Developer | RemoteCanada |
| Apr 19 |
| **Oracle** | Software Developer - Rotational Program - NetSuite | Kitchiner, Canada |
| Apr 19 |
| **Applied Systems** | Software Engineer | Toronto, Canada |
| Apr 14 |
| **Amazon** | New Grad 2025: Software Development Engineer I | Vancouver, BCToronto, Canada |
| Apr 12 |
| **Ciena** | New Grad: Embedded Software Engineer, Real-Time Systems | Ottawa, ON, Canada | 🔒 | Oct 30 |
| **Clio** | Software Developer | Calgary, Canada | 🔒 | Oct 11 |
| **Ciena** | New Grad 2026: RLS Photonics Software Engineer | Ottawa, Canada | 🔒 | Oct 11 |
| **Ciena** | New Grad: Software Engineer Packet Platform | Ottawa, Canada | 🔒 | Oct 11 |
| **Capital One** | New Grad: Software Engineer | Toronto, Canada | 🔒 | Oct 11 |
| **Ciena** | New Grad: Modem Hardware Engineer | Ottawa, ON, Canada | 🔒 | Sep 30 |
| **Ciena** | New Grad: Routing/IP Software Engineer | Ottawa, ON, Canada | 🔒 | Sep 26 |
| **Twilio** | Software Engineer, Early Career - Messaging API | RemoteCanada | 🔒 | Sep 13 |
| **Motive** | Entry Level Backend Engineer | RemoteCanada | 🔒 | Sep 12 |
| **TD Securities** | Machine Learning Engineer I | Toronto, ON, Canada | 🔒 | Sep 10 |
| **TD** | Machine Learning Engineer I | Toronto, Canada | 🔒 | Sep 10 |
| **Clio** | Data Engineer |
Join the ⬇️ discord ⬇️ and get your applications in right when they open!
Join the Discord to connect with fellow peers and streamline your newgrad search.
| Apr 25 |
| **RTX** | Embedded Software Engineer I 🇺🇸 | El Segundo, CA |
| Apr 25 |
| **Remitly** | Software Development Engineer 1, Pricing Platform | Seattle, WA |
| Apr 25 |
| **NVIDIA** | New Grad 2026: Applied AI Engineer, Silicon Co-Design Group, Masters/PhD | Santa Clara, CA |
| Apr 25 |
| **NVIDIA** | New Grad 2026: Software QA Engineer | Santa Clara, CA |
| Apr 25 |
| **NVIDIA** | New Grad 2026: Deep Learning Software Engineer, FlashInfer | Santa Clara, CA |
| Apr 25 |
| **NVIDIA** | New Grad 2026: Solutions Architect, Data Processing, Masters/PhD | Santa Clara, CARemote |
| Apr 25 |
| **NVIDIA** | New Grad 2026: Software Engineer, AI Networking, Masters | Santa Clara, CASeattle, WA |
| Apr 25 |
| **Notion** | New Grad: Software Engineer | San Francisco, CA |
| Apr 25 |
| **London Stock Exchange Group (LSEG)** | Site Reliability Engineer | St. Louis, MO |
| Apr 25 |
| **Collins Aerospace** | Software Engineer I 🇺🇸 | Cedar Rapids, IA |
| Apr 25 |
| **Ultra Intelligence & Communications** | Software Engineer 1 🇺🇸 | Tampa, FL |
| Mar 25 |
| **Twitch** | Software Engineer I, Commerce Engineering | San Francisco, CASeattle, WA |
| Mar 25 |
| **Twitch** | Software Engineer I, Commerce Engineering | Seattle, WASan Francisco, CA |
| Mar 25 |
| **Travelers** | Software Engineer I (AI Driven) 🛂 | Atlanta, GA |
| Mar 25 |
| **Supermicro** | Software Engineer | San Jose, CA |
| Mar 25 |
| **FINRA** | Software Engineer | Woodbridge, NJ |
| Mar 25 |
| **Base-2 Solutions** | Software Engineer 🇺🇸 | Annapolis Junction, MD |
| Mar 25 |
| **AV** | Software Engineer 🇺🇸 | Annapolis Junction, MD |
| Mar 25 |
| **Google** | Software Engineer II, Early Career |
| Mar 19 |
| **Ivo** | Software Engineer, Frontend | San Francisco, CA |
| Mar 18 |
| **Ivo** | Software Engineer, Backend | San Francisco, CA |
| Mar 18 |
| **Tesla** | Software Integration Engineer, Cell Manufacturing | Austin, TX |
| Feb 15 |
| **Tesla** | Software QA Engineer, Update Systems Validation, Vehicle Software | Palo Alto, CA |
| Feb 15 |
| **Tesla** | Software QA Engineer, Document Systems | Fremont, CA |
| Feb 15 |
| **Spotify** | Site Reliability Engineer | New York, NY |
| Feb 15 |
| **Ramp** | Design Engineer, Design Systems | New York, NYSan Francisco, CARemote |
| Feb 15 |
| **NVIDIA** | New Grad 2026: GPU Power Architect | Santa Clara, CAAustin, TX |
| Feb 15 |
| **NVIDIA** | New Grad 2026: Formal Verification Engineer | Austin, TXSanta Clara, CA |
| Feb 15 |
| **NVIDIA** | New Grad 2026: ASIC RTL Integration and Netlisting Engineer | Santa Clara, CA |
| Feb 15 |
| **Cerebras Systems** | New Grad: Software Engineer | Sunnyvale, CA |
| Feb 15 |
| **Apple** | Junior UI Compositing Engineer | Cupertino, CA |
| Feb 15 |
| **Apple** | Software Engineer, Customer Systems | Sunnyvale, CA |
| Feb 15 |
| **Amazon** | Software Development Engineer | Seattle, WA |
| Feb 15 |
| **Zip** | New Grad 2026: Software Engineer | San Francisco, CA |
| Feb 01 |
| **Twitch Interactive, Inc.** | Software Engineer | San Francisco, CA |
| Feb 01 |
| **Tesla** | Software Engineer, Optimus | Palo Alto, CA |
| Feb 01 |
| **Tesla** | Software QA Engineer, Integration, AI Platforms | Palo Alto, CA |
| Feb 01 |
| **Tesla** | Maps & Navigation Algorithms Engineer, Vehicle Controls | Palo Alto, CA |
| Feb 01 |
| **Tesla** | Test Engineer, Optimus | Fremont, CA |
| Feb 01 |
| **Profound** | New Grad: Software Engineer | New York City, NYSan Francisco, CA |
| Feb 01 |
| **NVIDIA** | New Grad 2026: ASIC Hardware Design Engineer | Austin, TX |
| Feb 01 |
| **NVIDIA** | New Grad 2025: Deep Learning Software Engineer, FlashInfer | Santa Clara, CA |
| Feb 01 |
| **NVIDIA** | New Grad 2026: Power Methodology and Modeling Engineer | Austin, TX |
| Feb 01 |
| **Apple** | Software Engineer | Austin, TX |
| Feb 01 |
| **Apple** | Software Engineer | Sunnyvale, CA |
| Feb 01 |
| **Amazon** | Security Engineer I, Security Incident Response Team (SIRT) | Seattle, WA |
| Feb 01 |
| **Amazon** | Systems Development Engineer | Seattle, WA |
| Feb 01 |
| **Amazon** | Systems Development Engineer | Seattle, WA |
| Feb 01 |
| **Unity Technologies** | Software Engineer 🛂 | Remote |
| Jan 10 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| Jan 10 |
| **Twitch** | Software Engineer I | Seattle, WASan Francisco, CA |
| Jan 09 |
| **Twitch** | Software Engineer I | San Francisco, CASeattle, WA |
| Jan 09 |
| **Twitch** | Software Engineer, Creator Monetization | San Francisco, CA |
| Jan 09 |
| **Tesla** | Software Integration Engineer, Suspension, Vehicle Software | Palo Alto, CA |
| Jan 09 |
| **Tesla** | AI Engineer, Vision & Foundation Models, Optimus | Palo Alto, CA |
| Jan 09 |
| **Tesla** | Software Security Engineer, Energy Product Software | Palo Alto, California |
| Jan 09 |
| **Tesla** | Mobile App Build Engineer, Vehicle Software | Palo Alto, CA |
| Jan 09 |
| **Tesla** | Fullstack Software Engineer, Energy Products Software | Palo Alto, CA |
| Jan 09 |
| **StubHub** | New Grad: Software Engineer I | Santa Monica, CA |
| Jan 09 |
| **IXL Learning** | New Grad: Software Engineer | Raleigh, NC |
| Jan 09 |
| **Uber** | New Grad 2026: Software Engineer I | San Francisco, CA |
| Jan 07 |
| **Uber** | New Grad 2026: Software Engineer I, Mobile | San Francisco, CA |
| Jan 07 |
| **TikTok** | Software Engineer Graduate, Site Reliability Engineering | San Jose, CA |
| Jan 07 |
| **Tesla** | Software Engineer, Core Vehicle Fulfillment Experience | Fremont, CA |
| Jan 07 |
| **Tesla** | AI Engineer, Reinforcement Learning, Self-Driving | Palo Alto, CA |
| Jan 07 |
| **Stripe** | New Grad: Security Engineer | Seattle, WASouth San Francisco, CA |
| Jan 07 |
| **Renaissance Technologies** | Real-Time Trading Programmer 🇺🇸 | East Setauket, NY |
| Jan 07 |
| **Renaissance Technologies** | Research Scientist 🇺🇸 | East Setauket, NY |
| Jan 07 |
| **Planbase** | Founding Product Engineer | San Francisco, CA, US |
| Jan 07 |
| **Planbase** | Founding Engineer | San Francisco, CA |
| Jan 07 |
| **Caddy** | Founding Engineer 🇺🇸 | New York, NY |
| Jan 07 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| Jan 07 |
| **TikTok** | New Grad 2026: Research Scientist Graduate: TikTok Recommendation | San Jose, CA |
| Jan 01 |
| **Sierra** | New Grad: Software Engineer, Agent | New York, NY |
| Jan 01 |
| **Sierra** | New Grad: Software Engineer, Agent | San Francisco, CA |
| Jan 01 |
| **ByteDance** | New Grad 2026: Backend Software Engineer Graduate | San Jose, CA |
| Jan 01 |
| **ByteDance** | New Grad 2026: Software Development Engineer in Test Graduate | San Jose, CA |
| Jan 01 |
| **Waymo** | WebRAD & Rider Support Full Stack SWE | Mountain View, CA |
| Dec 12 |
| **Viasat** | Software Engineer, Broadband Networks | Carlsbad, CA |
| Dec 12 |
| **Capgemini** | Full Stack AI Engineer | New York, NY |
| Dec 12 |
| **Wanderlog** | Full-Stack Software Engineer 🇺🇸 | San Francisco, CARemote |
| Dec 09 |
| **Trellis AI** | Member of Technical Staff 🇺🇸 | San Francisco, CA |
| Dec 09 |
| **Planbase** | Founding Engineer (Full-Stack) | San Francisco, CA, US |
| Dec 09 |
| **Idler** | Software Engineer 🇺🇸 | San Francisco, CA |
| Dec 09 |
| **Emerge Career** | Founding Product Engineer | New York, NY |
| Dec 09 |
| **Yotta Labs** | Research Engineer - Decentralized AI Systems | Remote |
| Nov 30 |
| **Waymo** | Software Engineer, ML Tools | Mountain View, CA |
| Nov 30 |
| **Thera** | Founding Engineer 🇺🇸 | New York, NY |
| Nov 30 |
| **Thera** | Founding Engineer | Remote |
| Nov 30 |
| **Tesla** | Robotics Systems Engineer, Optimus | Palo Alto, CA |
| Nov 30 |
| **Tesla** | Software Engineer, AI Inference Codesign | Palo Alto, CA |
| Nov 30 |
| **Tesla** | Software Engineer, Maps & Navigation Validation, Vehicle Software | Palo Alto, CA |
| Nov 30 |
| **NVIDIA** | New Grad 2026: Developer Technology Engineer, Public Sector | Santa Clara, CA |
| Nov 30 |
| **Dune** | Data Engineer | Remote |
| Nov 30 |
| **ByteDance** | New Grad 2026: Machine Learning Graduate (eCommerce User Growth & Intelligent Marketing) | Seattle, WA |
| Nov 30 |
| **Amazon** | System Development Engineer, Robotics Integration and Optimization Services | Arlington, VA |
| Nov 30 |
| **Wanderlog (W19)** | New Grad: Full-Stack Software Engineer | San Francisco, CARemote |
| Nov 18 |
| **Wanderlog (W19)** | New Grad: Full-Stack Software Engineer | Remote |
| Nov 18 |
| **Tesla** | Thermal Controls Engineer, Vehicle Software | Palo Alto, CA |
| Nov 18 |
| **Stripe** | Backend Engineer, Secure Endpoint Access | South San Francisco, CASeattle, WARemote |
| Nov 18 |
| **Poka Labs** | Founding Engineer | San Francisco, CA |
| Nov 18 |
| **Phonely** | Forward Deployed Engineer | San Francisco, CA |
| Nov 18 |
| **Lumenalta** | Full Stack Engineer | Remote |
| Nov 18 |
| **dScribe AI** | Founding Engineer 🇺🇸 | Kansas City, MOOverland Park, KSOlathe, KS |
| Nov 18 |
| **Databricks** | AI Tooling Program Engineer | Northeast, United States |
| Nov 18 |
| **Circle** | New Grad 2026: Software Engineer, Backend | United States of America |
| Nov 18 |
| **Apple** | Software Engineer, IS&T Early Career | Sunnyvale, CA |
| Nov 18 |
| **Amazon** | Software Engineer I | San Francisco, CA |
| Nov 18 |
| **Replit** | Software Engineer - New Grad (Summer 2026) | Foster City, CA |
| Nov 16 |
| **IMC** | New Grad 2026: Software Engineer | Chicago, IL |
| Nov 16 |
| **Tesla** | Software Validation Engineer, AI Platforms | Palo Alto, CA |
| Nov 10 |
| **Tesla** | AI Engineer, ML Inference Optimization, Autonomy & Robotics | Palo Alto, CA |
| Nov 10 |
| **Tesla** | In Vehicle Test Engineer, Steering, Vehicle Software | East Liberty, OH |
| Nov 10 |
| **Shopify** | Software Engineer | Remote |
| Nov 10 |
| **ServiceNow** | Frontend Software Engineer 🛂 | San Diego, CA |
| Nov 10 |
| **ServiceNow** | Software Engineer | Santa Clara, CA |
| Nov 10 |
| **Qualcomm Innovation Center, Inc.** | Product Software Engineer | San Diego, CA |
| Nov 10 |
| **General Dynamics Information Technology** | Software Engineer I | Annapolis Junction, MD |
| Nov 10 |
| **Citizen Health** | Software Engineer | San Francisco, CASan Mateo, CA |
| Nov 10 |
| **Apple** | AIML Resident - Siri Agent Modeling | Cupertino, CA |
| Nov 10 |
| **Apple** | AIML Resident - Robot Learning | Santa Clara, CA |
| Nov 10 |
| **Apple** | AIML Resident - Data Operations Capacity Planning & Analytics | Seattle, WACupertino, CA |
| Nov 10 |
| **Apple** | AIML Resident - Knowledge Answer Quality & Richness | Seattle, WASanta Clara, CA |
| Nov 10 |
| **Apple** | AIML Resident - Input Experience NLP | Cupertino, CA |
| Nov 10 |
| **Apple** | AIML Resident - Machine Learning Research | Seattle, WA |
| Nov 10 |
| **AgentMail** | Founding Engineer | San Francisco, CA |
| Nov 10 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| Nov 10 |
| **Warp** | Software Engineer | Remote |
| Nov 05 |
| **Valkyrie** | Derivatives Trader 🛂 | Chicago, IL |
| Nov 05 |
| **Jump Trading** | Campus Crypto Researcher | Chicago, IL |
| Nov 05 |
| **Figma** | Software Engineer, Full Stack | San Francisco, CANew York, NY |
| Nov 05 |
| **Zip** | New Grad 2026: Software Engineer | San Francisco, CA |
| Nov 01 |
| **Tesla** | Machine Learning Engineer, Tesla Insurance | Fremont, CA |
| Nov 01 |
| **Meta** | Data Engineer, Analytics | New York, NY |
| Nov 01 |
| **Clipboard Health** | Software Engineer, Backend | Remote |
| Nov 01 |
| **Citizen Health** | Software Engineer | San Francisco, CASan Mateo, CA |
| Nov 01 |
| **Amazon** | System Development Engineer, macOS MDM, Kuiper Devices & Systems 🇺🇸 | Bellevue, WA |
| Nov 01 |
| **Amazon** | ADC Engineer I, PEET ADC 🇺🇸 | Arlington, VAHerndon, VA |
| Nov 01 |
| **Nextdoor** | New Grad 2026: Machine Learning Engineer, Machine Learning | Dallas, TX |
| Oct 30 |
| **Annapurna Labs** | Silicon & AI Systems Innovation Engineer | Austin, TXSeattle, WACupertino, CA |
| Oct 30 |
| **Proception Inc** | Robotics Software Engineering - Real-Time Control & Embedded Systems | Palo Alto, CA |
| Oct 27 |
| **Planbase** | Founding Engineer (Full-Stack) | San Francisco, CA |
| Oct 27 |
| **Zapier** | Software Engineer, Backend-leaning Full Stack or Backend | Remote |
| Oct 22 |
| **Wanderlog (W19)** | New Grad: Full-Stack Software Engineer | San Francisco, CARemote |
| Oct 22 |
| **Spot & Tango** | Jr. Software Engineer | New York, NY |
| Oct 22 |
| **SMX** | Junior Data Scientist | Patuxent River, MD |
| Oct 22 |
| **Sixtyfour (X25)** | Founding Engineer, AI Research Agents (Full-Stack) 🇺🇸 | San Francisco, CA |
| Oct 22 |
| **Revionics** | New Grad: Machine Learning Engineer | Austin, TXAtlanta, GA |
| Oct 22 |
| **Qualtrics** | Software Engineer I, Digital Experience | Seattle, WA |
| Oct 22 |
| **Liva AI** | Founding Engineer | San Francisco, CA |
| Oct 22 |
| **Intuit** | Software Engineer 1 | Mountain View, CA |
| Oct 22 |
| **ElevenLabs** | Growth Engineer - Mobile | Remote |
| Oct 22 |
| **Docusign** | Software Engineer | Seattle, WA |
| Oct 22 |
| **Claim Health (X25)** | Founding Engineer | New York, NY |
| Oct 22 |
| **Battelle** | Early Career Software Engineer 🇺🇸 | Columbus, OH |
| Oct 22 |
| **Anthrogen** | Member of Technical Staff 🇺🇸 | San Francisco, CA |
| Oct 22 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| Oct 22 |
| **Twitch Interactive, Inc.** | Software Engineer I | Irvine, CASan Francisco, CA |
| Oct 20 |
| **Boerboel** | New Grad: Developer | New York, NYChicago, IL |
| Oct 20 |
| **Boerboel** | New Grad: Quantitative Researcher | New York, NYChicago, IL |
| Oct 20 |
| **Apple** | IS&T Early Career Engineering Program Manager | Austin, TX |
| Oct 20 |
| **Apple** | Software Engineer, Xcode Intelligence Experience | Cupertino, CA |
| Oct 20 |
| **Amazon** | Systems Development Engineer, Network Operations OISL 🇺🇸 | Redmond, WA |
| Oct 20 |
| **Tesla** | Software Security Engineer, Energy Product Software | Palo Alto, CA |
| Oct 18 |
| **Tesla** | Backend Software Engineer, IT Data & Analytics | Fremont, CA |
| Oct 18 |
| **Tesla** | Backend Software Engineer, Optimus & Robotaxi | Palo Alto, CA |
| Oct 18 |
| **Shopify** | Demo Engineer, Software Development | Remote |
| Oct 18 |
| **Amazon** | System Development Engineer, Payload Antenna Team 🇺🇸 | Redmond, WA |
| Oct 18 |
| **TikTok** | New Grad 2026: Machine Learning Engineer | San Jose, CA |
| Oct 16 |
| **Tesla** | Frontend Software Engineer, Energy Charging | Fremont, CA |
| Oct 16 |
| **Taro** | Founding Software Engineer 🇺🇸 | Palo Alto, CA |
| Oct 16 |
| **StarSling (X25)** | New Grad: Full-Stack Software Engineer 🇺🇸 |
| Oct 16 |
| **Stamp (W25)** | Founding Mobile Engineer 🇺🇸 | San Francisco, CA |
| Oct 16 |
| **Stamp** | Founding Full Stack Engineer 🇺🇸 | San Francisco, CA |
| Oct 16 |
| **Stamp** | Founding Machine Learning Engineer 🇺🇸 | San Francisco, CA |
| Oct 16 |
| **Shopify** | Software Engineer - Monorepo Systems (Rust & Nix) | Remote |
| Oct 16 |
| **Maitai** | Full-Stack Engineer - Agent Marketplace (In-Person RWC Only) | Redwood City, CA |
| Oct 16 |
| **Herdora** | Member of Technical Staff | San Francisco, CA |
| Oct 16 |
| **Groundswell** | Technical Consultant | McLean, VA |
| Oct 16 |
| **Google** | Software Engineer II, Early Career, Google Cloud AI Catalyst Program | Sunnyvale, CAKirkland, WASeattle, WA |
| Oct 16 |
| **Corgi** | Full Stack Engineer | Atlanta, GA |
| Oct 16 |
| **Apten** | Software Engineer (Full Stack) 🇺🇸 | San Francisco, CA |
| Oct 16 |
| **Tesla** | Infrastructure & DevOps Engineer, AI Hardware | Austin, TXPalo Alto, CA |
| Oct 14 |
| **Tesla** | Verification Infrastructure & DevOps Engineer, AI Hardware | Austin, TXPalo Alto, CA |
| Oct 14 |
| **Lambda** | Cloud Support Engineer I (Support Response) 🛂 | Remote in USA |
| Oct 14 |
| **Aurora Innovation** | Software Engineer 1 | Pittsburgh, PA |
| Oct 14 |
| **Aurora Innovation** | Software Engineer 1 | Mountain View, CA |
| Oct 14 |
| **Aurora** | Security Software Engineer I | Mountain View, CA |
| Oct 14 |
| **AIG** | Early Career Analyst, Gen AI, Data Engineering | Atlanta, GA |
| Oct 14 |
| **Uneekor** | Software Quality Assurance Engineer | Dallas, TX |
| Oct 11 |
| **QuinStreet** | Software Engineer | Foster City, CA |
| Oct 11 |
| **Appian** | Product Engineer | McLean, VA |
| Oct 11 |
| **ByteDance** | New Grad 2026: Site Reliability Engineer (Edge Services) | San Jose, CA |
| Oct 10 |
| **Anyscale** | New Grad 2026: Software Engineer | San Francisco, CAPalo Alto, CA |
| Oct 10 |
| **Adobe** | New Grad 2026: AI Context Engineer | San Jose, CASan Francisco, CA |
| Oct 10 |
| **Uber** | New Grad 2025: Software Engineer I | San Francisco, CA |
| Oct 09 |
| **Tesla** | Sensing Software Engineer | Palo Alto, CA |
| Oct 09 |
| **Tesla** | Full Stack Software Engineer, Battery Optimization | Palo Alto, CA |
| Oct 09 |
| **Tesla** | Machine Learning Infrastructure Simulation Engineer, Optimus | Palo Alto, CA |
| Oct 06 |
| **General Dynamics Mission Systems** | Junior Software Engineer 🇺🇸 | Dedham, MA |
| Oct 06 |
| **DoorDash** | New Grad: Software Engineer I |
| Oct 06 |
| **American Express** | Software Engineer 1, Technology 🛂 | Plantation, FL |
| Oct 06 |
| **McDonald's** | Software Engineer 1 | Chicago, IL |
| Sep 30 |
| **Honeywell** | Software Engineer I 🇺🇸 | Fort Mill, SC |
| Sep 30 |
| **HoneyWell** | Software Engineer I 🇺🇸 | Clearwater, FL |
| Sep 30 |
| **Google** | New Grad 2026: Software Engineer | Mountain View, CA |
| Sep 30 |
| **Esri** | Software Development Engineer 1 🇺🇸 | St. Louis, MO |
| Sep 30 |
| **Comcast** | Software Engineer 1 | Chicago, ILEnglewood, CO |
| Sep 30 |
| **Pinterest** | New Grad 2026: Software Engineer | Palo Alto, CASeattle, WASF |
| Sep 26 |
| **Persona** | Software Engineer 2026 New Grad | SF |
| Sep 26 |
| **Parafin** | New Grad: Software Engineer | SF |
| Sep 26 |
| **Cellular Sales** | Junior Data Engineer | Knoxville, TN |
| Sep 26 |
| **Plaid** | Software Engineer 🛂 | San Francisco, CANew York, NY |
| Sep 25 |
| **NorthMark Strategies** | New Grad: Software Engineer 🛂 | Dallas, TX |
| Sep 25 |
| **Notion** | Software Engineer, Infrastructure, Early Career | San Francisco, CANew York, NY |
| Sep 24 |
| **Notion** | Software Engineer, Fullstack, Early Career | San Francisco, CANew York, NY |
| Sep 24 |
| **Interaction** | Member of Technical Staff | San Francisco, CA |
| Sep 20 |
| **Channel3** | Founding Engineer 🛂 | New York, NY |
| Sep 20 |
| **Apple** | Camera Framework Engineer, Photo Capture | Cupertino, CA |
| Sep 20 |
| **Eventual** | New Grad: Software Engineer | San Francisco, CA |
| Sep 17 |
| **Duolingo** | New Grad: Software Engineer | Pittsburgh, PA |
| Sep 15 |
| **Duolingo** | New Grad: Data Scientist | Pittsburgh, PA |
| Sep 15 |
| **Planbase** | Founding Engineer (Full-Stack) 🇺🇸 | San Francisco, CA |
| Sep 14 |
| **Coalition** | Software Engineer I | San Francisco, CA |
| Sep 14 |
| **Benchify** | Founding Engineer 🇺🇸 | San Francisco, CANew York, NY |
| Sep 14 |
| **Anima** | Software Engineer | Remote |
| Sep 14 |
| **Thorlabs** | Software Engineer I | Annapolis Junction, MD |
| Sep 12 |
| **Susquehanna International Group (SIG)** | New Grad: Software Developer, Sprc | Ardmore, PA |
| Sep 12 |
| **Sonia** | Founding AI Engineer | San Francisco, CA |
| Sep 12 |
| **Sev1Tech** | Entry Level Software Developer | Lawton, OK |
| Sep 12 |
| **Integration Innovation (i3)** | Entry Level Full-Stack Software Engineer | Huntsville, AL |
| Sep 12 |
| **General Dynamics Mission Systems** | Entry Level Software Engineer | Pittsfield, MA |
| Sep 12 |
| **Garmin** | Software Engineer I, Aviation Web Development | Chandler, AZOlathe, KS |
| Sep 12 |
| **EliseAI** | Software Engineer | New York, NY |
| Sep 12 |
| **Dayton Freight Lines** | Entry Level Software Developer | Dayton, OH |
| Sep 12 |
| **Adobe** | New Grad 2026: Software Engineer | San Jose, CALehi, UT |
| Sep 12 |
| **Adobe** | New Grad 2026: Software Engineer | San Jose, CALehi, UT |
| Sep 12 |
| **Tesla** | Software QA Engineer, Insurance | Fremont, CA |
| Sep 11 |
| **Tesla** | Backend Software Engineer, Residential Energy Experience | Palo Alto, CA |
| Sep 11 |
| **SpiderRock** | New Grad 2026: Software Engineer | Chicago, IL |
| Sep 11 |
| **Nordstrom** | Engineer 1, Full Stack, Store POS+ Team | Seattle, WA |
| Sep 11 |
| **McDonald's Corporation** | Software Engineer I, iOS | Chicago, IL |
| Sep 11 |
| **Jane Street** | Cybersecurity Analyst 🇺🇸 | New York |
| Sep 11 |
| **D3 Global Inc** | New Grad: Backend Engineer | Los Angeles, CA |
| Sep 11 |
| **Visa** | New Grad 2026: Site Reliability Engineer 🛂 | Ashburn, VA |
| Sep 10 |
| **Visa** | New Grad 2026: Site Reliability Engineer 🛂 | Austin, TX |
| Sep 10 |
| **Visa** | New Grad 2026: Software Engineer 🛂 | Highlands Ranch, CO |
| Sep 10 |
| **Visa** | New Grad 2026: Software Engineer 🛂 | Austin, TX |
| Sep 10 |
| **Visa** | New Grad 2026: Site Reliability Engineer 🛂 | Highlands Ranch, CO |
| Sep 10 |
| **Visa** | New Grad 2026: Site Reliability Engineer 🛂 | Highlands Ranch, CO |
| Sep 10 |
| **Visa** | New Grad 2026: Software Engineer 🛂 | Highlands Ranch, CO |
| Sep 10 |
| **Visa** | New Grad 2026: Software Engineer 🛂 | Foster City, CA |
| Sep 10 |
| **Visa** | New Grad 2026: Software Engineer 🛂 | Bellevue, WA |
| Sep 10 |
| **Visa** | New Grad 2026: Associate Product Manager (APM) 🛂 | Foster City, CA |
| Sep 10 |
| **Scale** | New Grad: Software Engineer | San Francisco, CA |
| Sep 10 |
| **Apple** | Wi-Fi Software Systems Performance Engineer | San Diego, CA |
| Sep 10 |
| **Agave (W22)** | New Grad 2025: Software Engineer | San Francisco, CA |
| Sep 10 |
| **Adobe** | New Grad 2026: Machine Learning Engineer | San Jose, CA |
| Sep 10 |
| **Adobe** | New Grad 2026: Application Security Engineer | San Jose, CASan Francisco, CA |
| Sep 10 |
| **YouLearn** | Founding Engineer (Full Stack) 🇺🇸 | San Francisco, CA |
| Sep 08 |
| **Voleon** | Associate Member of Trading Staff | Berkeley, CA |
| Sep 08 |
| **Tesla** | Data Engineer, Energy Service Engineering | Palo Alto, CA |
| Sep 08 |
| **Tesla** | Software Engineer, Autonomous Mobile Robotics | Austin, TX |
| Sep 08 |
| **Tesla** | Software QA Engineer, Infotainment, Vehicle Software | Palo Alto, CA |
| Sep 08 |
| **Sonia** | Founding Design Engineer 🇺🇸 | San Francisco, CA |
| Sep 08 |
| **InQuery** | New Grad: Founding Engineer | New York, NY |
| Sep 08 |
| **Glean** | Software Engineer | Palo Alto, CA |
| Sep 08 |
| **Epsilon** | Associate, Software Engineer | Irving, TX |
| Sep 08 |
| **Epsilon** | New Grad: Associate, Software Engineer | Chicago, IL |
| Sep 08 |
| **Eluvio** | New Grad: Software Engineer, AI Core Apps | Berkeley, CA |
| Sep 08 |
| **EBSCO** | Software Dev Engineer I | Remote in USA |
| Sep 08 |
| **Diverge Health** | Associate Software Developer | Remote in USA |
| Sep 08 |
| **Disney** | Software Engineer I | Glendale, CANew York, NY |
| Sep 08 |
| **DeepGrove** | ML Technical Staff | San Francisco, CA |
| Sep 08 |
| **Decagon** | New Grad 2026: Agent Software Engineer | San Francisco, CA |
| Sep 08 |
| **ByteDance** | New Grad 2026: Product Manager (SMB) | Austin, TX |
| Sep 08 |
| **BlackRock** | Associate, Research Associate – SMA Solutions, Quantitative Investment Solutions (QIS) | Sausalito, CA |
| Sep 08 |
| **Atlassian** | New Grad 2026: Machine Learning Engineer | San Francisco, CA |
| Sep 08 |
| **Arm** | New Grad 2025: Software Applications Engineer | Austin, TX |
| Sep 08 |
| **Amazon** | Security Engineer | Dallas, TX |
| Sep 08 |
| **Valkyrie Trading** | Junior Software Engineer | Chicago, IL |
| Sep 05 |
| **qode.world** | Junior Data Scientist | Tampa, FLJackson Township, NJDallas, TX |
| Sep 05 |
| **MetroStar** | Associate Software Developer 🛂 | Reston, VA |
| Sep 05 |
| **Ellipsis Labs** | Software Engineer | NYC |
| Sep 05 |
| **Altice USA** | Software Dev Engineer I | Plainview, NY |
| Sep 05 |
| **Aflac** | Software Engineer I | Columbus, GA |
| Sep 05 |
| **Stripe** | New Grad: Software Engineer | South San Francisco, CASeattle, WA |
| Sep 03 |
| **Stripe** | Software Engineer - New Grad | Seattle, WASF |
| Sep 03 |
| **Roblox** | New Grad 2026: Associate Product Manager | San Mateo, CA |
| Sep 03 |
| **Roblox** | New Grad 2026: Associate Product Designer 🛂 | San Mateo, CA |
| Sep 03 |
| **Pylon** | New Grad - Software Engineer | SF |
| Sep 03 |
| **Nutanix** | Software Engineer 1 / Early Career - Backend C++/Linux/AWS-S3 | Durham, NC |
| Sep 03 |
| **N1** | New Grad Software Engineer - Backend Rust | Oakland, CANYC |
| Sep 03 |
| **Luma** | Research Scientist / Engineer - Data | Remote |
| Sep 03 |
| **LinkedIn** | Associate Product Builder (APB) - Rotational Program | Mountain View, CASan Francisco, CA |
| Sep 03 |
| **Ivo** | Software Engineer | San Francisco, CA |
| Sep 03 |
| **IBM** | Software Developer |
| Sep 03 |
| **Gecko Robotics** | Software Engineer - New Graduate Rotational Development Program | Boston, MANYC |
| Sep 03 |
| **Garmin** | Software Engineer I - Embedded Software | Olathe, KS |
| Sep 03 |
| **Commure** | New Grad 2026: Software Engineer | Mountain View, CA |
| Sep 03 |
| **Cape** | New Grad: Software Engineer | New York, NYWashington, DC |
| Sep 03 |
| **Atlassian** | New Grad 2026: Software Engineer | Seattle, WA |
| Sep 03 |
| **TikTok** | New Grad 2026: AI/ML Software Engineer (Data Platform TikTok BP) | San Jose, CA |
| Aug 28 |
| **Tesla** | Mobile App Developer, Frontend, Claims & Customer Support | Fremont, CA |
| Aug 28 |
| **Tesla** | Software Integration Engineer, Factory Firmware | Fremont, CA |
| Aug 28 |
| **Tesla** | Software Integration Engineer, Cell Software | AUSTIN, Texas |
| Aug 28 |
| **Tesla** | Kernel Software Engineer | Palo Alto, CA |
| Aug 28 |
| **Samsara** | New Grad: Software Engineering | San Francisco, CA |
| Aug 28 |
| **Commure** | New Grad 2026: Software Engineer | Mountain View, CA |
| Aug 28 |
| **ByteDance** | New Grad 2026: Machine Learning Graduate (eCommerce User Growth & Intelligent Marketing) | San Jose, CA |
| Aug 28 |
| **ByteDance** | New Grad 2026: Software Engineer (AI Applications) | San Jose, CA |
| Aug 28 |
| **Amazon** | System Dev Engineer I, Analytics ADC | Denver, CO |
| Aug 28 |
| **Tesla** | Machine Learning Engineer, Embodied Intelligence, Optimus | Palo Alto, CA |
| Aug 23 |
| **Tesla** | Electrical & Software Engineer, Circuit Board Test Automation | Palo Alto, CA |
| Aug 23 |
| **PayPal** | New Grad: Software Engineer |
| Aug 23 |
| **Harvey** | New Grad: Software Engineer | San Francisco, CA |
| Aug 23 |
| **Epsilon** | New Grad 2025: Associate, Software Engineer | Irving, TX |
| Aug 23 |
| **Citizen Health** | Software Engineer | San Francisco, CASan Mateo, CA |
| Aug 23 |
| **Amazon** | Antenna Systems Engineer, Antenna Calibration, Kuiper 🇺🇸 | Redmond, WA |
| Aug 23 |
| **Adobe** | New Grad 2026: Machine Learning Engineer | San Jose, CASan Francisco, CA |
| Aug 23 |
| **Zip** | New Grad 2026: Software Engineer | San Francisco, CA |
| Aug 22 |
| **Tesla** | Software Engineer, Material Flow Robotics | Palo Alto, CA |
| Aug 22 |
| **Tesla** | Software Engineer, Communications Platform | Fremont, CA |
| Aug 22 |
| **Tesla** | Software Engineer, Frontend, AI Infrastructure Engineering & Tools | Palo Alto, CA |
| Aug 22 |
| **eMoney Advisor, LLC** | Associate Software Engineer | Remote |
| Aug 22 |
| **Apple** | Accessibility Engineer, IS&T, Early Career | Sunnyvale, CA |
| Aug 22 |
| **AMD** | Graphics Software Development Engineer | Bellevue, WA |
| Aug 21 |
| **Tesla** | Software Engineer, Manufacturing Test | SPARKS, Nevada |
| Aug 20 |
| **Tesla** | AI Engineer, Multimodal Model Optimization, Autonomy & Robotics | Palo Alto, CA |
| Aug 20 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Video-on-Demand Algorithm) | San Jose, CA |
| Aug 19 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Data Arch - E-commerce) | Seattle |
| Aug 19 |
| **TikTok** | Product Manager Ads Measurement Graduate (Measurement Signal and Privacy Product) | San Jose, CA |
| Aug 19 |
| **TikTok** | Product Manager Ads Attribution and Measurement Graduate (Measurement Signal and Privacy Product) | San Jose, CA |
| Aug 19 |
| **TikTok** | Special Project Strategist Graduate (TikTok Shop - Operations) | Los Angeles, CA |
| Aug 19 |
| **ByteDance** | New Grad 2026: Software Engineer (Dev Infra) | San Jose, CA |
| Aug 19 |
| **ByteDance** | New Grad 2026: Software Engineer in ML Systems | San Jose, CA |
| Aug 19 |
| **Edgehog Trading** | C++ Software Developer – Trading Strategy Execution | Chicago, IL |
| Aug 18 |
| **qode.world** | Junior Software Developer | NJ |
| Aug 17 |
| **L2TMedia** | Junior Digital Media Data Analyst | Evanston, IL |
| Aug 17 |
| **BAE Systems** | Junior Software Engineer 🇺🇸 | Hill AFB, UT |
| Aug 17 |
| **TikTok** | New Grad 2026: Software Engineer (Commerce Ads) | San Jose, CA |
| Aug 16 |
| **TikTok** | New Grad 2026: Software Engineer (Live Service) | San Jose, CA |
| Aug 16 |
| **TikTok** | New Grad 2026: Software Engineer (Media Engine) | San Jose, CA |
| Aug 16 |
| **TikTok** | Machine Learning Engineer Graduate (TikTok Short Video Content Understanding/Multimodal Recommendation) | San Jose, CA |
| Aug 16 |
| **TikTok** | New Grad 2026: Software Engineer (Media Platform) | San Jose, CA |
| Aug 16 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Foundation Platform) | San Jose, CA |
| Aug 16 |
| **Tesla** | Software Engineer, Core Infrastructure, AI | Palo Alto, CA |
| Aug 16 |
| **SoFi** | New Grad 2025: Fullstack Software Engineer | Seattle, WAHelena, MT |
| Aug 16 |
| **PayPal** | New Grad: Software Engineer |
| Aug 16 |
| **Notion** | Software Engineer, Search Platform | New York, NYSan Francisco, CA |
| Aug 16 |
| **Disney** | Software Engineer I | Seattle, WA |
| Aug 16 |
| **Canonical** | Software Engineer - Python - Cloud | Remote |
| Aug 16 |
| **ByteDance** | New Grad 2026: Software Engineer (Edge Platform) | San Jose, CA |
| Aug 16 |
| **ByteDance** | New Grad 2026: Cloud Network Engineer (Physical Network Infra) | Seattle, WA |
| Aug 16 |
| **ByteDance** | New Grad 2026: Network Engineer (Physical Network Infra) | San Jose, CA |
| Aug 16 |
| **ByteDance** | New Grad 2026: Network Engineer (Physical Network Infra) | Seattle, WA |
| Aug 16 |
| **ByteDance** | New Grad 2026: Cloud Network Engineer (Physical Network Infra) | San Jose, CA |
| Aug 16 |
| **ByteDance** | Site Reliability Engineer (Data Infrastructure) | Seattle |
| Aug 16 |
| **Tria Federal** | Data Analyst-Level I 🇺🇸 | Falls Church, VA |
| Aug 14 |
| **Trexquant** | Quantitative Researcher | Stamford, CT |
| Aug 13 |
| **Trexquant** | Quantitative Researcher - Early Career | Stamford, CT |
| Aug 13 |
| **TikTok** | New Grad 2026: Product Manager, Content Ecosystem | San Jose, CA |
| Aug 13 |
| **TikTok** | New Grad 2026: Product Manager (SMB) | Austin, TX |
| Aug 13 |
| **TikTok** | New Grad 2026: Product Manager Graduate (TikTok Shop User Product) | Seattle, WA |
| Aug 13 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Recommendation Platform) | San Jose |
| Aug 13 |
| **TikTok** | New Grad 2026: Machine Learning Engineer (Monetization Technology - TikTok Ads Creative & Ecosystem) | San Jose, CA |
| Aug 13 |
| **Tesla** | Technical Program Manager, Energy Software | Palo Alto, CA |
| Aug 13 |
| **Suno** | Software Engineer, Early Career | Boston, MANew York, NY |
| Aug 13 |
| **SciTec** | Associate / Staff Mission Data Analyst 🇺🇸 | Boulder, CO |
| Aug 13 |
| **Roblox** | Software Engineer - Early Career | San Mateo, CA |
| Aug 13 |
| **Remodel Health** | Junior Software Engineer | Indianapolis, IN |
| Aug 13 |
| **Prosidian Consulting** | ITSM IT Security Engineer I | Washington, DC |
| Aug 13 |
| **Peraton** | Software Engineering, Associate 🇺🇸 | Herndon, VA |
| Aug 13 |
| **Jump Trading** | Tech Ops Engineer | Chicago, IL |
| Aug 13 |
| **i3** | Full-Stack Software Engineer 🇺🇸 | Hunstville, AL |
| Aug 13 |
| **i3** | Entry Level Full-Stack Software Engineer | Huntsville, AL |
| Aug 13 |
| **Hudson River Trading** | New Grad 2026: Algorithm Developer | New York, NY |
| Aug 13 |
| **Gannett Fleming** | Entry Level Software Developer 🛂 | San Diego, CAChicago, IL |
| Aug 13 |
| **Citadel Securities** | C++ Software Engineer | Miami, FL |
| Aug 13 |
| **ByteDance** | New Grad 2026: Network Engineer (Edge Network) | San Jose, CA |
| Aug 13 |
| **ByteDance** | New Grad 2026: Software Engineer (Dev Infra) | San Jose, CA |
| Aug 13 |
| **ByteDance** | New Grad 2026: Software Engineer (Applied Machine Learning - Enterprise) | San Jose, CA |
| Aug 13 |
| **ByteDance** | New Grad 2026: Software Engineer Graduate (Applied Machine Learning - MLDev) | San Jose, CA |
| Aug 13 |
| **BRM** | Entry Level Software Engineer | San Francisco, CA |
| Aug 13 |
| **Boston Scientific** | Software Engineer I - Engineering - Development | Roseville, MN |
| Aug 13 |
| **Boston Scientific** | Software Engineer I - Engineering - Development | Roseville, MN |
| Aug 13 |
| **Boston Scientific** | Software Engineer I - Engineering - Development | Roseville, MN |
| Aug 13 |
| **Anduril Industries** | Air Dominance & Strike - Flight Software Engineer, Embedded C/C++ 🛂 | Costa Mesa, CA |
| Aug 13 |
| **Anduril Industries** | Software Engineer, Connected Warfare 🇺🇸 | Costa Mesa, CA |
| Aug 13 |
| **Amazon** | Robotics Systems Engineer, Amazon Robotics Deployment Engineering | Austin, TXSeattle, WANorth Reading, MA |
| Aug 13 |
| **Amazon** | Systems Development Engineer I, Ops Tech Solution (OTS) | Austin, TX |
| Aug 13 |
| **Databricks** | New Grad 2026: Data Scientist | Mountain View, CASan Francisco, CA |
| Aug 09 |
| **Databricks** | New Grad 2026: Software Engineer | Bellevue, WAMountain View, CASan Francisco, CA |
| Aug 09 |
| **TikTok** | New Grad 2026: Software Engineer Graduate - Data-Search | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate PGC | Seattle, WA |
| Aug 07 |
| **TikTok** | SDET, Software Development Engineer in Test Graduate (TikTok Eng Test-Privacy Product) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Open Platform | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Product Infrastructure | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Search | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate User Growth | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer (Experimentation and Evaluation) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Intelligent Creation | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Machine Learning Engineer Graduate -Search E-Commerce | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Mobile Reliability (Android) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Data Engineer (Data Platfrom TikTok BP) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Data Engineer (E-commerce) | Seattle, WA |
| Aug 07 |
| **TikTok** | New Grad 2026: Machine Learning Engineer - Local Services Search (BS/MS) | San Jose, CA |
| Aug 07 |
| **TikTok** | Frontend Engineer Graduate, Trust and Safety | Seattle, WA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Monetization Technology - Brand Ads) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Social | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Data Arch - Data Ecosystem ) | San Jose, CA |
| Aug 07 |
| **TikTok** | Site Reliability Engineer Graduate (Compute Platform) | Seattle, WA |
| Aug 07 |
| **TikTok** | Site Reliability Engineer Graduate (Compute Platform) | San Jose, CA |
| Aug 07 |
| **TikTok** | Frontend Engineer Graduate, Trust and Safety | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Machine Learning Engineer (Brand Ads) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Data Platfrom TikTok BP) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Machine Learning Engineer - Data - Search | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: (Machine Learning Engineer, Data-Search-TikTok Recommendation | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Data Arch - ShortText Rec) (BS/MS) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Data Arch - AI/ML Infrastructure) | San Jose, CA |
| Aug 07 |
| **TikTok** | New Grad 2026: Software Engineer | Los Angeles, CA |
| Aug 07 |
| **TikTok** | Product Security Engineer Graduate (Security Assurance) | Seattle, WA |
| Aug 07 |
| **TikTok** | New Grad 2026: Machine Learning Engineer | Seattle, WA |
| Aug 07 |
| **TikTok** | SDET, Software Development Engineer in Test Graduate (TikTok Eng Test-PGC) | San Jose, CA |
| Aug 07 |
| **Tesla** | Systems Engineer, Collision Avoidance, Autonomy & Robotics | Palo Alto, CA |
| Aug 07 |
| **Tesla** | Automation Controls Engineer, Megapack | Palo Alto, CA |
| Aug 07 |
| **Tesla** | Machine Learning Engineer, Model Optimization & Deployment, Optimus | Palo Alto, CA |
| Aug 07 |
| **Royal Caribbean Group** | Associate Engineer, Software | Miramar, FL |
| Aug 07 |
| **Mathtech** | Associate Software Developer | Hamilton, NJ |
| Aug 07 |
| **Jacobs** | Software Engineer, Entry | Kennedy Space Center, FL |
| Aug 07 |
| **Emerson** | Embedded Software Engineer 🛂 | Shakopee, MN |
| Aug 07 |
| **Detroit Defense** | Software Test Engineer 🇺🇸 | Troy, MI |
| Aug 07 |
| **ByteDance** | Site Reliability Engineer Graduate [Security Engineering-US] | San Jose, CA |
| Aug 07 |
| **ByteDance** | New Grad 2026: Software Engineer, Authorization-US | San Jose, CA |
| Aug 07 |
| **Amazon** | System Development Engineer, Amazon Robotics | Arlington, VA |
| Aug 07 |
| **Hume AI** | Product Manager, Growth | New York, NYRemoteSan Francisco, CA |
| Aug 05 |
| **StubHub** | Associate Product Manager - Consumer Experience | New York, NY |
| Aug 03 |
| **Ramp** | New Grad 2026: Software Engineer - Frontend | New York, NY |
| Aug 03 |
| **Ramp** | New Grad 2026: Software Engineer - Backend | New York, NY |
| Aug 03 |
| **Meta** | New Grad 2026: Product Security Engineer | Bellevue, WAMenlo Park, CA |
| Jul 31 |
| **TikTok** | New Grad 2026: Software Engineer (Ads ML Infrastructure) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Machine Learning Engineer Graduate (Lead Ads Technology) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Machine Learning/Research Engineer (Ads Core Global) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Machine Learning Engineer (Commerce Ads) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer/Mobile Engineer Graduate (Monetization Technology - Ads Core Demonstration) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Live-Foundation-Ecosystem | San Jose, CA |
| Jul 30 |
| **TikTok** | Software Development Engineer in Test Graduate (Trust and Safety) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Music | San Jose |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Monetization Technology - Ads Creative) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Engineer (Backend Software Engineer, Trust and Safety- Seattle) | Seattle |
| Jul 30 |
| **TikTok** | Research Scientist Graduate- CV/NLP/Multimodal LLM, Trust and Safety | San Jose, CA |
| Jul 30 |
| **TikTok** | Research Scientist Graduate- CV/NLP/Multimodal LLM, Trust and Safety | Seattle, WA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer | Los Angeles, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer Graduate (Ads Measurement Signal Technology) | San Jose, CA |
| Jul 30 |
| **TikTok** | New Grad 2026: Software Engineer Graduate Short Video (BS/MS) | Seattle |
| Jul 30 |
| **TikTok** | New Grad 2026: Backend Engineer Graduate, Risk and Response | Seattle |
| Jul 30 |
| **Shopify** | Data Platform Engineers | Remote |
| Jul 30 |
| **Shopify** | ML Ops Engineers | Remote |
| Jul 30 |
| **Shopify** | Infrastructure Engineers | Remote |
| Jul 30 |
| **ServiceNow** | Associate Systems Engineer | San Diego, CA |
| Jul 30 |
| **Qualtrics** | Software Engineer I - PAAS | Seattle, WA |
| Jul 30 |
| **Qualtrics** | Machine Learning Engineer | Seattle, WA |
| Jul 30 |
| **Hudson River Trading** | Trade Operations | Austin, TX |
| Jul 30 |
| **Hudson River Trading** | Trade Operations | New York, NY |
| Jul 30 |
| **ByteDance** | New Grad 2026: Software Engineer | San Jose, CA |
| Jul 30 |
| **ByteDance** | New Grad 2026: Backend Software Engineer (Customer Service Platform) | Seattle, WA |
| Jul 30 |
| **Amazon** | System Development Engineer, OTS Delivery Software Engineering | Austin, TX |
| Jul 30 |
| **Amazon** | System Development Engineer, AWS Vetting | Cupertino, CA |
| Jul 30 |
| **TikTok** | New Grad 2025: Product Manager | San Jose, CA |
| Jul 25 |
| **Perplexity** | Associate Product Manager Program | San Francisco, CA |
| Jul 25 |
| **American Express** | Associate - Digital Product Management 🛂 | New York, NY |
| Jul 25 |
| **Tesla** | Software Integration Engineer, AI Platforms | Palo Alto, CA |
| Jul 24 |
| **Tesla** | Camera Software Engineer, AI Platforms | Palo Alto, CA |
| Jul 24 |
| **Tesla** | Software Engineer, Optimus Inference Co Design | Palo Alto, CA |
| Jul 24 |
| **Tesla** | Applications Engineer, Megapack | Palo Alto, CA |
| Jul 24 |
| **QuinStreet** | Entry Level Software Engineer | Foster City, CA |
| Jul 24 |
| **Qualcomm Technologies, Inc.** | GPU Software Engineer | San Diego, CA |
| Jul 20 |
| **Porter** | Full Stack Engineer | New York, NY |
| Jul 15 |
| **Optiver** | New Grad 2026: FPGA Engineer | Austin, TX |
| Jul 15 |
| **Optiver** | New Grad 2026: FPGA Engineer | Chicago, IL |
| Jul 15 |
| **Tesla** | Mobile App Engineer, Service & Roadside Assistance | Palo Alto, CA |
| Jul 14 |
| **Ranger** | Forward-Deployed Test Engineer 🛂 | San Francisco, CA |
| Jul 14 |
| **Qualcomm Technologies, Inc.** | CPU Software Architecture Engineer | San Diego, CA |
| Jul 14 |
| **Old Mission** | New Grad 2026: Junior Quantitative Trader | Chicago, IL |
| Jul 14 |
| **Old Mission** | New Grad 2026: Junior Software Engineer | Chicago, IL |
| Jul 14 |
| **Nuro** | New Grad: Software Engineer, Routing | Mountain View, CA |
| Jul 14 |
| **Cryptic Vector** | Full Stack Developer 🇺🇸 | Cincinnati, OH |
| Jul 14 |
| **Candid Health** | New Grad: Software Engineer | San Francisco, CADenver, CONew York, NY |
| Jul 14 |
| **Candid Health** | New Grad: Forward Deployed Software Engineer | San Francisco, CADenver, CONew York, NY |
| Jul 14 |
| **BlackRock** | Analyst |
| Jul 14 |
| **Apple** | IS&T Early Career Engineering Program Manager Opportunities | Austin, TX |
| Jul 13 |
| **Tesla** | Software Engineer, Machine Learning Integration, Optimus | Palo Alto, CA |
| Jul 05 |
| **Quora** | New Grad: Machine Learning Engineer | Remote |
| Jul 05 |
| **Qualcomm** | Software Engineer - Hypervisor | San Diego, CA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Seattle, WA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | Washington, DC |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | Palo Alto, CA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Seattle, WA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Denver, CO |
| Jul 05 |
| **Optiver** | New Grad 2026: Software Engineer | Austin, TX |
| Jul 05 |
| **Optiver** | New Grad 2026: Software Engineer | Chicago, IL |
| Jul 05 |
| **Optiver** | Graduate Quantitative Researcher | Austin, TX |
| Jul 05 |
| **IMC** | Quantitative Researcher | Chicago, IL |
| Jul 05 |
| **Duolingo** | AI Product Engineer, Math 🛂 | Pittsburgh, PA |
| Jul 05 |
| **Citadel Securities** | New Grad: Quantitative Trader | Miami, FLNew York, NY |
| Jul 05 |
| **Citadel Securities** | New Grad: Quantitative Research Analyst | Miami, FLNew York, NY |
| Jul 05 |
| **Citadel Securities** | Software Engineer | Miami, FLNew York, NY |
| Jul 05 |
| **Bits to Atoms** | Software Engineer 🇺🇸 | Berkeley, CA |
| Jul 05 |
| **Balyasny Asset Management** | Systematic Equities Quantitative Researcher / Developer | New York, NY |
| Jul 05 |
| **Apple** | Software Engineer, IS&T | Sunnyvale, CA |
| Jul 05 |
| **Apple** | Software Engineer, IS&T | Austin, TX |
| Jul 05 |
| **Amazon** | Hardware Simulator SDE I, AWS Machine Learning Accelerators, Annapurna Labs | Cupertino, CA |
| Jul 05 |
| **Twitch** | Software Engineer | San Francisco, CASeattle, WANew York, NY |
| Jun 30 |
| **Twitch** | Software Engineer - Creator |
| Jun 30 |
| **Tesla** | Software Engineer, Optimus | Palo Alto, CA |
| Jun 30 |
| **Tesla** | Technical Artist, UI Design | Hawthorne, CA |
| Jun 30 |
| **Qualtrics** | Software Engineer I, Employee Experience | Seattle, WA |
| Jun 30 |
| **Qualcomm** | Display SW Engineer | San Diego, CA |
| Jun 30 |
| **HashiCorp** | Backend Engineer - Enterprise Identity | RemoteUS |
| Jun 30 |
| **CVS Health** | Associate Software Engineer | Irving, TX |
| Jun 30 |
| **Citi** | Software Engineer | Tampa, FL |
| Jun 30 |
| **Amazon** | Security Engineer, AppSec Testing Automation and Insights | New York, NY |
| Jun 30 |
| **Amazon** | Mission Operations Engineer, Project Kuiper - Mission Operations | Redmond, WA |
| Jun 30 |
| **Visa** | Systems Engineer, Virtualization/Linux Engineering | Highlands Ranch, CO |
| Jun 27 |
| **Tesla** | Firmware Engineer, Silicon Development | Palo Alto, CA |
| Jun 27 |
| **Roblox** | Software Engineer, Infra Foundation | San Mateo, CA |
| Jun 27 |
| **Qualcomm** | IOT Software Engineer | San Diego, CA |
| Jun 27 |
| **Qualcomm** | Software Product Application Engineer | San Diego, CA |
| Jun 27 |
| **Meta** | Software Engineer | Menlo Park, CA |
| Jun 27 |
| **Amazon** | System Development Engineer I, Ops Tech Solutions | Santa Clara, CA |
| Jun 27 |
| **Da Vinci** | Graduate C++ Software Engineer | Miami, FL |
| Jun 21 |
| **Collective Hub, Inc** | New Grad: Software Engineer | San Francisco, CA |
| Jun 21 |
| **Strac** | Full Stack Engineer | Seattle, WAAustin, TX |
| Jun 17 |
| **Sentry** | New Grad 2025: Software Engineer | San Francisco, CA |
| Jun 17 |
| **Qualcomm** | Modem Software and System Engineer | San Diego, CA |
| Jun 17 |
| **Qualcomm** | Product Software Engineer | San Diego, CA |
| Jun 17 |
| **DRS** | Software Engineer I | San Diego, CA |
| Jun 10 |
| **Tesla** | Software Engineer, AI Systems Performance Modeling, Dojo | Palo Alto, CA |
| Jun 09 |
| **Tesla** | Wireless Bluetooth Software Engineer | Palo Alto, CA |
| Jun 09 |
| **Viasat** | Full Stack Software Engineer, Early Career | Carlsbad, CARemote |
| Jun 07 |
| **TransMarket Group** | Junior Quantitative Trader | Chicago, IL |
| Jun 07 |
| **TransMarket Group** | Junior Algorithmic Trader | Chicago, IL |
| Jun 07 |
| **Lyft** | Software Engineer, Rider | New York, NY |
| Jun 07 |
| **Lumafield** | Backend Engineer 🛂 | San Francisco, CA |
| Jun 07 |
| **Lockheed Martin** | AI Platform Engineer | United States |
| Jun 07 |
| **Omnicell** | Software Engineer I | Cranberry Township, PA |
| Jun 06 |
| **N1** | Software Engineer (Backend Rust) | New York City |
| Jun 06 |
| **N1** | Software Engineer (Full Stack) | New York City |
| Jun 06 |
| **Omnicell** | Software Engineer I | Cranberry Township, PA |
| May 31 |
| **Tesla** | Software Engineer, ML Inference Compiler & Deployment, GPU, CPU | Palo Alto, CA |
| May 30 |
| **SquareTrade** | Associate Software Engineer | Brisbane, CA |
| May 30 |
| **Spectrum** | Software Engineer I | Englewood, CO |
| May 30 |
| **Pega** | Associate Software Engineer, UX Engineering | Waltham, MA |
| May 30 |
| **Nuro** | New Grad: Software Engineer, Autonomy | Mountain View, CA |
| May 30 |
| **Mandolin** | New Grad: Front-End Engineer | San Francisco, CA |
| May 30 |
| **Mandolin** | New Grad: Forward Deployed Engineer | San Francisco, CA |
| May 30 |
| **IXL Learning** | New Grad: Software Engineer | Raleigh, NC |
| May 30 |
| **IXL Learning** | New Grad: Software Engineer | San Mateo, CA |
| May 30 |
| **Greenboard (W24)** | New Grad: Software Engineer | New York, NY |
| May 30 |
| **Point72** | Quantitative Developer | New York, NY |
| May 28 |
| **DRW** | Research Engineer | New York, NY |
| May 28 |
| **Citadel Securities** | Systematic Options Trader | Miami, FL |
| May 28 |
| **Qualtrics** | Software Development Engineer I, Customer Experience | Seattle, WA |
| May 23 |
| **Qualcomm** | Graphics Software Kernel Mode Engineer | San Diego, CA |
| May 23 |
| **Qualcomm** | Software Engineer, Gaming AI, PC Compute | San Diego, CA |
| May 23 |
| **Qualcomm** | Graphics Software Engineer | San Diego, CA |
| May 23 |
| **Qualcomm** | Software Engineer | San Diego, CA |
| May 23 |
| **KBR** | Full Stack Software Engineer | Moffett Field, CA |
| May 23 |
| **Garmin** | C#/.NET Software Engineer 1 | Cary, NC |
| May 23 |
| **Apple** | Cellular Platform Software Engineer, Embedded Analytics | Sunnyvale, CA |
| May 23 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| May 23 |
| **Esri** | C++ Software Engineer I, Maps SDKs | Redlands, CA |
| May 17 |
| **Doppel** | Software Engineer | San Francisco, CANew York, NY |
| May 17 |
| **Apple** | Embedded System Software Engineer | San Diego, CA |
| May 17 |
| **Tesla** | Software Engineer, AI Systems Performance Modeling | Palo Alto, CA |
| May 15 |
| **Tesla** | Software Engineer, Mobile Robotics Control & Perception | Palo Alto, CA |
| May 15 |
| **Snowflake** | Software Engineer - Traffic | Bellevue, WA |
| May 15 |
| **Pylon** | New Grad 2025: Software Engineer | Menlo Park, CA |
| May 15 |
| **Nuro** | New Grad: Software Engineer, Autonomy | Mountain View, CA |
| May 15 |
| **Amazon** | Mission Operations Engineer, Project Kuiper | Redmond, WA |
| May 15 |
| **TikTok** | Full-stack Engineer, Data Platform | San Jose, CA |
| May 03 |
| **SIG** | New Grad: Software Developer | Bala Cynwyd, PA |
| May 03 |
| **Thor Solutions** | Software Engineer I | Philadelphia, PA |
| Apr 14 |
| **Peraton** | Junior Software Engineer 🇺🇸 | Sterling, VA |
| Apr 14 |
| **LinkSquares** | Software Engineer | RemoteUS |
| Apr 14 |
| **Bentley** | Software Engineer | Exton, PA |
| Apr 14 |
| **21CS** | Graduate Software Engineer | Morehead City, NC |
| Apr 14 |
| **Tesla** | Linux Site Reliability Engineer, IT Manufacturing Site Reliability Engineering | Fremont, CA |
| Apr 12 |
| **Tesla** | Software Engineer, AI Driven Test Automation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Frontend Engineer, GenAI Model Evaluation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Software Engineer, Metrics, GenAI Model Evaluation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Software Engineer, Drivers & Control Plane, Dojo | Palo Alto, CA |
| Apr 12 |
| **Softheon** | Software Engineer I - Membership | RemoteUS |
| Apr 12 |
| **Esri** | Backend Java Engineer I - Data Pipelines | Redlands, CA |
| Apr 12 |
| **Amperity** | Software Development Engineer I | Seattle, WA |
| Apr 12 |
| **Amazon** | Systems Development Engineer, Mechatronics and Sustainable Packaging | Bellevue, WA |
| Apr 12 |
| **Amazon** | Software Dev Engineer |
| Apr 12 |
| **Credit Genie** | New Grad: Software Engineer | New York, NY |
| Apr 09 |
| **Twitch** | Software Engineer | Seattle, WASan Francisco, CA |
| Apr 05 |
| **Tesla** | Software Engineer, Traction Control & Stability | Palo Alto, CA |
| Apr 05 |
| **Roblox** | New Grad 2025: Software Engineer, Game Solutions Engineering | San Mateo, CA |
| Apr 05 |
| **Roblox** | Software Engineer, Builder Tools | San Mateo, CA |
| Apr 05 |
| **Qualtrics** | Machine Learning Engineer I | Seattle, WA |
| Apr 05 |
| **Amazon** | System Development Engineer, Project Kuiper | Redmond, WA |
| Apr 05 |
| **Qualcomm** | Embedded DSP Software Engineer | San Diego, CA |
| Mar 31 |
| **Microsoft** | Site Reliability Engineer | United States | 🔒 | Feb 15 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 15 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 15 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 15 |
| **Microsoft** | Network Automation Engineer | United States | 🔒 | Feb 15 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 15 |
| **Airtable** | New Grad 2026: Software Engineer | San Francisco, CANew York, NY | 🔒 | Feb 15 |
| **Microsoft** | Machine Learning Engineer | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer Identity & Network Access | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer | United States | 🔒 | Feb 01 |
| **Microsoft** | Software Engineer I | United States | 🔒 | Jan 09 |
| **Microsoft** | Software Engineer | United States | 🔒 | Jan 09 |
| **Microsoft** | Software Engineer | United States | 🔒 | Jan 09 |
| **Microsoft** | Software Engineer: Azure One Fleet Platform | United States | 🔒 | Jan 09 |
| **Microsoft** | Software Engineer 🇺🇸 | United States, Multiple Locations | 🔒 | Jan 07 |
| **Spotify** | Full Stack Engineer, Backstage Portal, Data Experience | New York, NYRemote | 🔒 | Jan 01 |
| **Microsoft** | Software Engineer 🇺🇸 | United States | 🔒 | Jan 01 |
| **WHOOP** | Software Engineer I, Backend | Boston, MA | 🔒 | Dec 12 |
| **Spotify** | Machine Learning Engineer | New York, NYBoston, MARemote | 🔒 | Dec 12 |
| **Spotify** | Fullstack Engineer | New York, NY | 🔒 | Dec 12 |
| **NVIDIA** | New Grad 2026: GPU and SoC Modelling Architect | Santa Clara, CA | 🔒 | Dec 12 |
| **League** | Software Engineer, Backend (Apps & Solutions) 🛂 | United States | 🔒 | Nov 30 |
| **General Motors** | Software Engineer - Early Career 🛂 |
Join the ⬇️ discord ⬇️ and get your applications in right when they open!
Join the Discord to connect with fellow peers and streamline your newgrad search.
| May 15 |
| **Mastercard** | Software Engineer I | Vancouver, Canada |
| May 15 |
| **Google** | Relations Developer, Cloud and Generative AI |
| May 15 |
| **Electronic Arts** | Gameplay Software Engineer | Vancouver, Canada |
| May 15 |
| **Tower Research Capital** | New Grad: C++ Software Engineer, MTL | Montreal, Canada |
| May 03 |
| **Oracle** | Software Developer | RemoteCanada |
| Apr 19 |
| **Oracle** | Software Developer - Rotational Program - NetSuite | Kitchiner, Canada |
| Apr 19 |
| **Applied Systems** | Software Engineer | Toronto, Canada |
| Apr 14 |
| **Amazon** | New Grad 2025: Software Development Engineer I | Vancouver, BCToronto, Canada |
| Apr 12 |
| **Secoda** | New Grad Software Engineer | Toronto, Canada |
| Feb 25 |
| **Wanderlog - YC** | New Grad: Full-Stack Software Engineer | RemoteCanada |
| Feb 18 |
| **Qualcomm** | Machine Learning Framework, Compiler & Performance Engineer | Markham, Canada |
| Feb 16 |
| **IBM** | Software Engineer | Markham, Canada |
| Feb 16 |
| **Amazon** | System Development Engineer, AWS Security | Toronto, Canada |
| Feb 16 |
| **Qualcomm** | DSP Systems Engineer | Markham, Canada |
| Feb 05 |
| **Linamar Corporation** | Jr. Security Engineer | Guelph, Canada |
| Feb 05 |
| **Canadalife** | Software Developer | London, CanadaWinnipeg, MBToronto, ON |
| Feb 05 |
| **Coalition** | Software Engineer, Servicing | CanadaUnited States |
| Jan 16 |
| **ExxonMobil** | New Grad: Software Developer | Calgary, Canada |
| Jan 01 |
| **Quora** | New Grad 2025: Machine Learning Engineer | RemoteUSCanada |
| Dec 24 |
| **Amazon** | New Grad 2025: Front-End Engineer | Vancouver, Canada |
| Nov 11 |
| **Uber** | New Grad 2024: Software Engineer I, TOR | Toronto, Canada |
| Oct 05 |
| **Ciena** | Software Performance Engineer | Ottawa, Canada |
| Sep 18 |
| **Capital One** | New Grad: Software Engineer | Toronto, Canada |
| Aug 31 |
| **Konrad** | New Grad: Software Developer | Vancouver, Canada |
| Aug 06 |
| **Warp** | Software Engineer | Remote US & Canada |
| Jul 10 |
| **TD Bank** | Software Engineer I | Toronto, Canada | 🔒 | May 23 |
| **Cloudflare** | Software Engineer, Experiment and Data Capture |
Join the ⬇️ discord ⬇️ and get your applications in right when they open!
Join the Discord to connect with fellow peers and streamline your newgrad search.
| Jul 20 |
| **Qualcomm Technologies, Inc.** | GPU Software Engineer | San Diego, CA |
| Jul 20 |
| **Microsoft** | Site Reliability Engineer 🇺🇸 | Redmond, WA |
| Jul 20 |
| **Microsoft** | Software Engineer | Multiple Locations, United States |
| Jul 20 |
| **Google DeepMind** | Software Engineer, Full Stack - Gemini | Mountain View, CA |
| Jul 20 |
| **Benchling** | Software Engineer, Full Stack (Lab Auto) | Boston, MA |
| Jul 20 |
| **Porter** | Full Stack Engineer | New York, NY |
| Jul 15 |
| **Optiver** | New Grad 2026: FPGA Engineer | Austin, TX |
| Jul 15 |
| **Optiver** | New Grad 2026: FPGA Engineer | Chicago, IL |
| Jul 15 |
| **Tesla** | Mobile App Engineer, Service & Roadside Assistance | Palo Alto, CA |
| Jul 14 |
| **STR** | Firmware Engineer 🇺🇸 | Dayton, OH |
| Jul 14 |
| **Silvus Technologies** | Software Engineer I, SQA 🇺🇸 | Los Angeles, CA |
| Jul 14 |
| **Sigma** | New Grad: Software Engineer 🛂 | San Francisco, CANew York City, NY |
| Jul 14 |
| **Shield AI** | Software Engineer I, Hardware Test | Dallas, TX |
| Jul 14 |
| **Ranger** | Forward-Deployed Test Engineer 🛂 | San Francisco, CA |
| Jul 14 |
| **Qualcomm Technologies, Inc.** | CPU Software Architecture Engineer | San Diego, CA |
| Jul 14 |
| **Old Mission** | New Grad 2026: Junior Quantitative Trader | Chicago, IL |
| Jul 14 |
| **Old Mission** | New Grad 2026: Junior Software Engineer | Chicago, IL |
| Jul 14 |
| **NVIDIA** | New Grad 2025: ASIC Design Verification Engineer | Austin, TX |
| Jul 14 |
| **NVIDIA** | New Grad 2025: ASIC Design Engineer | Santa Clara, CA |
| Jul 14 |
| **Nuro** | New Grad: Software Engineer, Routing | Mountain View, CA |
| Jul 14 |
| **Microsoft** | Software Engineer | Multiple Locations, United States |
| Jul 14 |
| **Cryptic Vector** | Full Stack Developer 🇺🇸 | Cincinnati, OH |
| Jul 14 |
| **Candid Health** | New Grad: Software Engineer | San Francisco, CADenver, CONew York, NY |
| Jul 14 |
| **Candid Health** | New Grad: Forward Deployed Software Engineer | San Francisco, CADenver, CONew York, NY |
| Jul 14 |
| **BlackRock** | Analyst |
| Jul 14 |
| **Apple** | IS&T Early Career Engineering Program Manager Opportunities | Austin, TX |
| Jul 13 |
| **Tesla** | Software Engineer, Machine Learning Integration, Optimus | Palo Alto, CA |
| Jul 05 |
| **Quora** | New Grad: Machine Learning Engineer | Remote |
| Jul 05 |
| **Qualcomm** | Software Engineer - Hypervisor | San Diego, CA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Seattle, WA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | Washington, DC |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | Palo Alto, CA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer 🇺🇸 | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Seattle, WA |
| Jul 05 |
| **Palantir** | New Grad: Software Engineer | Denver, CO |
| Jul 05 |
| **Palantir** | New Grad 2026: Forward Deployed Software Engineer | Washington, D.C. |
| Jul 05 |
| **Palantir** | New Grad 2026: Forward Deployed Software Engineer | New York, NY |
| Jul 05 |
| **Palantir** | New Grad 2026: Forward Deployed Software Engineer | New York, NY |
| Jul 05 |
| **Optiver** | New Grad 2026: Software Engineer | Austin, TX |
| Jul 05 |
| **Optiver** | New Grad 2026: Software Engineer | Chicago, IL |
| Jul 05 |
| **Optiver** | Graduate Quantitative Researcher | Austin, TX |
| Jul 05 |
| **IMC** | Quantitative Researcher | Chicago, IL |
| Jul 05 |
| **Duolingo** | AI Product Engineer, Math 🛂 | Pittsburgh, PA |
| Jul 05 |
| **Citadel Securities** | New Grad: Quantitative Trader | Miami, FLNew York, NY |
| Jul 05 |
| **Citadel Securities** | New Grad: Quantitative Research Analyst | Miami, FLNew York, NY |
| Jul 05 |
| **Citadel Securities** | Software Engineer | Miami, FLNew York, NY |
| Jul 05 |
| **Bits to Atoms** | Software Engineer 🇺🇸 | Berkeley, CA |
| Jul 05 |
| **Belvedere Trading** | Machine Learning and Algorithm Developer | Boulder, CO |
| Jul 05 |
| **Balyasny Asset Management** | Systematic Equities Quantitative Researcher / Developer | New York, NY |
| Jul 05 |
| **Apple** | Software Engineer, IS&T | Sunnyvale, CA |
| Jul 05 |
| **Apple** | Software Engineer, IS&T | Austin, TX |
| Jul 05 |
| **Amazon** | Hardware Simulator SDE I, AWS Machine Learning Accelerators, Annapurna Labs | Cupertino, CA |
| Jul 05 |
| **Twitch** | Software Engineer | San Francisco, CASeattle, WANew York, NY |
| Jun 30 |
| **Twitch** | Software Engineer - Creator |
| Jun 30 |
| **Tesla** | New Grad 2025: Software Engineer | Hawthorne, CA |
| Jun 30 |
| **Tesla** | Software Engineer, Optimus | Palo Alto, CA |
| Jun 30 |
| **Tesla** | Technical Artist, UI Design | Hawthorne, CA |
| Jun 30 |
| **Qualtrics** | Software Engineer I, Employee Experience | Seattle, WA |
| Jun 30 |
| **Qualcomm** | Display SW Engineer | San Diego, CA |
| Jun 30 |
| **OpenEye** | Software Engineer | Liberty Lake, WA |
| Jun 30 |
| **NVIDIA** | New Grad 2025: ASIC Design Engineer | Santa Clara, CA |
| Jun 30 |
| **HashiCorp** | Backend Engineer - Enterprise Identity | RemoteUS |
| Jun 30 |
| **CVS Health** | Associate Software Engineer | Irving, TX |
| Jun 30 |
| **Citi** | Software Engineer | Tampa, FL |
| Jun 30 |
| **Amazon** | Security Engineer, AppSec Testing Automation and Insights | New York, NY |
| Jun 30 |
| **Amazon** | Mission Operations Engineer, Project Kuiper - Mission Operations | Redmond, WA |
| Jun 30 |
| **Visa** | Systems Engineer, Virtualization/Linux Engineering | Highlands Ranch, CO |
| Jun 27 |
| **USAA** | Software Engineer I | San Antonio, TX |
| Jun 27 |
| **Tesla** | Firmware Engineer, Silicon Development | Palo Alto, CA |
| Jun 27 |
| **Roblox** | Software Engineer, Infra Foundation | San Mateo, CA |
| Jun 27 |
| **Qualcomm** | IOT Software Engineer | San Diego, CA |
| Jun 27 |
| **Qualcomm** | Software Product Application Engineer | San Diego, CA |
| Jun 27 |
| **OpenEye** | Software Engineer I - OWS | Liberty Lake, WA |
| Jun 27 |
| **NVIDIA** | New Grad 2026: ASIC Design Efficiency Engineer | Santa Clara, CA |
| Jun 27 |
| **Meta** | Software Engineer | Menlo Park, CA |
| Jun 27 |
| **Cadence** | New Grad: C++ Software Engineer | Boston, MA |
| Jun 27 |
| **Amazon** | System Development Engineer I, Ops Tech Solutions | Santa Clara, CA |
| Jun 27 |
| **NVIDIA** | New Grad 2025: GPU Power Architect | Santa Clara, CA |
| Jun 21 |
| **Da Vinci** | Graduate C++ Software Engineer | Miami, FL |
| Jun 21 |
| **Collective Hub, Inc** | New Grad: Software Engineer | San Francisco, CA |
| Jun 21 |
| **Strac** | Full Stack Engineer | Seattle, WAAustin, TX |
| Jun 17 |
| **Sentry** | New Grad 2025: Software Engineer | San Francisco, CA |
| Jun 17 |
| **Qualcomm** | Modem Software and System Engineer | San Diego, CA |
| Jun 17 |
| **Qualcomm** | Product Software Engineer | San Diego, CA |
| Jun 17 |
| **NVIDIA** | New Grad 2025: ASIC Verification Engineer | Austin, TX |
| Jun 17 |
| **DRS** | Software Engineer I | San Diego, CA |
| Jun 10 |
| **Tesla** | Software Engineer, AI Systems Performance Modeling, Dojo | Palo Alto, CA |
| Jun 09 |
| **Tesla** | Wireless Bluetooth Software Engineer | Palo Alto, CA |
| Jun 09 |
| **Viasat** | Full Stack Software Engineer, Early Career | Carlsbad, CARemote |
| Jun 07 |
| **TransMarket Group** | Junior Quantitative Trader | Chicago, IL |
| Jun 07 |
| **TransMarket Group** | Python Developer / Data Engineer | Chicago, IL |
| Jun 07 |
| **TransMarket Group** | Junior Algorithmic Trader | Chicago, IL |
| Jun 07 |
| **Relativity Space** | Software Engineer I - Factory Platform | Long Beach, CA |
| Jun 07 |
| **Lyft** | Software Engineer, Rider | New York, NY |
| Jun 07 |
| **Lumafield** | Backend Engineer 🛂 | San Francisco, CA |
| Jun 07 |
| **Lockheed Martin** | AI Platform Engineer | United States |
| Jun 07 |
| **Truist** | Software Engineer I | Atlanta, GA |
| Jun 06 |
| **Omnicell** | Software Engineer I | Cranberry Township, PA |
| Jun 06 |
| **N1** | Software Engineer (Backend Rust) | New York City |
| Jun 06 |
| **N1** | Software Engineer (Full Stack) | New York City |
| Jun 06 |
| **Omnicell** | Software Engineer I | Cranberry Township, PA |
| May 31 |
| **Microsoft** | Software Engineer | Redmond, WA |
| May 31 |
| **Uber** | Software Engineer I - Container Platform | Sunnyvale, CA |
| May 30 |
| **Tesla** | Software Engineer, ML Inference Compiler & Deployment, GPU, CPU | Palo Alto, CA |
| May 30 |
| **SquareTrade** | Associate Software Engineer | Brisbane, CA |
| May 30 |
| **Spectrum** | Software Engineer I | Englewood, CO |
| May 30 |
| **Pega** | Associate Software Engineer, UX Engineering | Waltham, MA |
| May 30 |
| **Nuro** | New Grad: Software Engineer, Autonomy | Mountain View, CA |
| May 30 |
| **Nium** | Software Development Engineer I | San Francisco, CA |
| May 30 |
| **Mandolin** | New Grad: Front-End Engineer | San Francisco, CA |
| May 30 |
| **Mandolin** | New Grad: Forward Deployed Engineer | San Francisco, CA |
| May 30 |
| **IXL Learning** | New Grad: Software Engineer | Raleigh, NC |
| May 30 |
| **IXL Learning** | New Grad: Software Engineer | San Mateo, CA |
| May 30 |
| **Greenboard (W24)** | New Grad: Software Engineer | New York, NY |
| May 30 |
| **Point72** | Quantitative Developer | New York, NY |
| May 28 |
| **DRW** | Research Engineer | New York, NY |
| May 28 |
| **Citadel Securities** | Systematic Options Trader | Miami, FL |
| May 28 |
| **Aquatic Capital Management** | Research Engineer | Chicago, ILNew York, NY |
| May 28 |
| **BainCapital** | New Grad 2026: Tech Opps Analyst | Boston, MA |
| May 25 |
| **Remitly** | Software Development Engineer I | Seattle, WA |
| May 23 |
| **Qualtrics** | Software Development Engineer I, Customer Experience | Seattle, WA |
| May 23 |
| **Qualcomm** | Graphics Software Kernel Mode Engineer | San Diego, CA |
| May 23 |
| **Qualcomm** | Software Engineer, Gaming AI, PC Compute | San Diego, CA |
| May 23 |
| **Qualcomm** | Graphics Software Engineer | San Diego, CA |
| May 23 |
| **Qualcomm** | Software Engineer | San Diego, CA |
| May 23 |
| **NVIDIA** | New Grad 2025: ASIC Verification Engineer | Santa Clara, CA |
| May 23 |
| **Microsoft** | Software Engineer | Multiple Locations |
| May 23 |
| **Microsoft** | Software Engineer | Multiple Locations |
| May 23 |
| **KBR** | Full Stack Software Engineer | Moffett Field, CA |
| May 23 |
| **Garmin** | C#/.NET Software Engineer 1 | Cary, NC |
| May 23 |
| **Apple** | Cellular Platform Software Engineer, Embedded Analytics | Sunnyvale, CA |
| May 23 |
| **Adobe** | Software Development Engineer | San Jose, CA |
| May 23 |
| **FurtherAI** | New Grad: Software/AI Engineer | San Francisco, CA |
| May 17 |
| **Esri** | C++ Software Engineer I, Maps SDKs | Redlands, CA |
| May 17 |
| **Doppel** | Software Engineer | San Francisco, CANew York, NY |
| May 17 |
| **Cloudflare** | Access Software Engineer | Austin, TX |
| May 17 |
| **Apple** | Embedded System Software Engineer | San Diego, CA |
| May 17 |
| **Tesla** | Software Engineer, AI Systems Performance Modeling | Palo Alto, CA |
| May 15 |
| **Tesla** | Software Engineer, Mobile Robotics Control & Perception | Palo Alto, CA |
| May 15 |
| **Snowflake** | Software Engineer - Traffic | Bellevue, WA |
| May 15 |
| **Pylon** | New Grad 2025: Software Engineer | Menlo Park, CA |
| May 15 |
| **NVIDIA** | New Grad 2025: ASIC Verification Engineer | Durham, NCMadison, AL |
| May 15 |
| **Nuro** | New Grad: Software Engineer, Autonomy | Mountain View, CA |
| May 15 |
| **Amazon** | Mission Operations Engineer, Project Kuiper | Redmond, WA |
| May 15 |
| **Yahoo** | Big Data Tools Engineer | United States |
| May 03 |
| **TikTok** | Full-stack Engineer, Data Platform | San Jose, CA |
| May 03 |
| **SIG** | New Grad: Software Developer | Bala Cynwyd, PA |
| May 03 |
| **NVIDIA** | New Grad 2025: VLSI Physical Design Engineer | Westford, MA |
| May 03 |
| **AppLovin** | New Grad: Backend Infrastructure Engineer | Palo Alto, CA |
| Apr 26 |
| **Thor Solutions** | Software Engineer I | Philadelphia, PA |
| Apr 14 |
| **Peraton** | Junior Software Engineer 🇺🇸 | Sterling, VA |
| Apr 14 |
| **LinkSquares** | Software Engineer | RemoteUS |
| Apr 14 |
| **Bentley** | Software Engineer | Exton, PA |
| Apr 14 |
| **21CS** | Graduate Software Engineer | Morehead City, NC |
| Apr 14 |
| **Tesla** | Linux Site Reliability Engineer, IT Manufacturing Site Reliability Engineering | Fremont, CA |
| Apr 12 |
| **Tesla** | Software Engineer, AI Driven Test Automation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Frontend Engineer, GenAI Model Evaluation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Software Engineer, Metrics, GenAI Model Evaluation | Palo Alto, CA |
| Apr 12 |
| **Tesla** | Software Engineer, Drivers & Control Plane, Dojo | Palo Alto, CA |
| Apr 12 |
| **Softheon** | Software Engineer I - Membership | RemoteUS |
| Apr 12 |
| **Esri** | Backend Java Engineer I - Data Pipelines | Redlands, CA |
| Apr 12 |
| **Amperity** | Software Development Engineer I | Seattle, WA |
| Apr 12 |
| **Amazon** | Systems Development Engineer, Mechatronics and Sustainable Packaging | Bellevue, WA |
| Apr 12 |
| **Amazon** | Software Dev Engineer |
| Apr 12 |
| **Palantir** | Deployment Strategist - Build to Apply | New York, NY |
| Apr 11 |
| **Palantir** | Forward Deployed Software Engineer - Build to Apply | New York, NY |
| Apr 11 |
| **Credit Genie** | New Grad: Software Engineer | New York, NY |
| Apr 09 |
| **Twitch** | Software Engineer | Seattle, WASan Francisco, CA |
| Apr 05 |
| **Twitch** | Software Development Engineer - Safety ML | San Francisco, CA |
| Apr 05 |
| **Tesla** | Software Engineer, Traction Control & Stability | Palo Alto, CA |
| Apr 05 |
| **Roblox** | New Grad 2025: Software Engineer, Game Solutions Engineering | San Mateo, CA |
| Apr 05 |
| **Roblox** | Software Engineer, Builder Tools | San Mateo, CA |
| Apr 05 |
| **Qualtrics** | Machine Learning Engineer I | Seattle, WA |
| Apr 05 |
| **Microsoft** | Software Engineer, Fullstack | Charlotte, NC |
| Apr 05 |
| **Corgi - YC** | SDE I Engineer | San Francisco, CA |
| Apr 05 |
| **Corgi - YC** | Junior Full Stack Engineer | San Francisco, CA |
| Apr 05 |
| **Amazon** | System Development Engineer, Project Kuiper | Redmond, WA |
| Apr 05 |
| **Tesla** | Software Engineer, Low Voltage & Body Controls Automation | Palo Alto, CA |
| Mar 31 |
| **Splunk** | Frontend Software Engineer | Seattle, WARemoteUS |
| Mar 31 |
| **Signify** | Mobile App Software Engineer | Menlo Park, CA |
| Mar 31 |
| **ServiceNow** | Software Engineer - AI/ML | Santa Clara, CA |
| Mar 31 |
| **Qualcomm** | Embedded DSP Software Engineer | San Diego, CA |
| Mar 31 |
| **Netflix** | Software Engineer, Cloud Security | RemoteUS |
| Mar 31 |
| **Netflix** | Software Engineer, Android Games SDK | RemoteUS |
| Mar 31 |
| **Microsoft** | Fullstack Software Engineer | Charlotte, NC |
| Mar 31 |
| **CGI** | New Grad: Software Developer | Atlanta, GA |
| Mar 31 |
| **CGI** | New Grad: Software Developer | Lebanon, VA |
| Mar 31 |
| **Booz Allen** | Junior Software Developer | Charleston, SC |
| Mar 31 |
| **Apple** | Project Manager, Software Development & Enterprise Applications | Austin, TX |
| Mar 31 |
| **Chewy** | Software Engineer I | Bellevue, WA |
| Mar 27 |
| **XPeng** | Machine Learning Engineer - LLM, AI & Robotics | Santa Clara, CA |
| Mar 09 |
| **Tesla** | Frontend Engineer, Vehicle UI | Hawthorne, CA |
| Mar 09 |
| **Spotify** | Machine Learning Engineer - Content Understanding | New York, NY |
| Mar 09 |
| **Nike** | Software Engineer I | Beaverton, OR |
| Mar 09 |
| **Keysight** | R&D Software Engineer | Santa Rosa, CAEverett, WA |
| Mar 09 |
| **Exiger** | Software Engineer | Jersey City, NJ |
| Mar 09 |
| **AppLovin** | New Grad: Backend Engineer | Palo Alto, CA |
| Mar 09 |
| **Amazon** | Front-End Engineer I | Seattle, WA |
| Mar 09 |
| **TikTok** | Machine Learning Engineer - Content Ecology - Masters 🇺🇸 | San Jose, CA |
| Feb 25 |
| **Spectrum** | Software Engineer I | Greenwood Village, CO |
| Feb 25 |
| **Rivian** | Product Security Privacy Engineer | Palo Alto, CA |
| Feb 25 |
| **Qualcomm** | Kernel Services Software Engineer | San Diego, CA |
| Feb 25 |
| **Pylon** | New Grad Software Engineer | Menlo Park, CA |
| Feb 25 |
| **DCSCorp** | Computer Engineer I 🇺🇸 | Sterling Heights, MI |
| Feb 25 |
| **BlueHalo** | Software Engineer | Annapolis Junction, MD |
| Feb 25 |
| **Abbott** | Clinical Software Engineer I | Sylmar, CA |
| Feb 25 |
| **Wanderlog - YC** | New Grad: Full-Stack Software Engineer | San Francisco, CARemoteUS |
| Feb 18 |
| **SoloSuit - YC** | Software Engineer | RemoteUS |
| Feb 18 |
| **Jacobs** | Software Engineer | Hudson, NH |
| Feb 18 |
| **Duckie - YC** | Applied AI Software Engineer | San Francisco, CA |
| Feb 18 |
| **Caterpillar** | Early Career Software Engineer | Chicago, ILPeoria, ILIrving, TX |
| Feb 18 |
| **Apple** | Software Engineer, TV App | San Diego, CA |
| Feb 18 |
| **Apple** | Wireless Charging Firmware Engineer | Cupertino, CA |
| Feb 18 |
| **Apple** | Applied Networking Frameworks Engineer | San Diego, CA |
| Feb 18 |
| **Apple** | Embedded Software Engineer | Cupertino, CA |
| Feb 18 |
| **Apple** | SoC Design/Integration & Synthesis Engineer | Cupertino, CA |
| Feb 18 |
| **xAI** | Software Engineer | Memphis, TNPalo Alto, CA |
| Feb 17 |
| **Vanta** | Software Engineer, Entry Level | RemoteUS |
| Feb 17 |
| **TikTok** | New Grad 2025: Software Engineer | San Jose, CA |
| Feb 16 |
| **Tesla** | Data Engineer, Battery Manufacturing Development | Palo Alto, CA |
| Feb 16 |
| **Tesla** | DevOps Systems Engineer, Platform Storage Engineering | Palo Alto, CA |
| Feb 16 |
| **Tesla** | Software Engineer, Tooling, Simulation | Palo Alto, CA |
| Feb 16 |
| **Qualcomm Technologies, Inc** | Windows on Snapdragon Software Engineer | San Diego, CA |
| Feb 16 |
| **Microsoft** | Software Engineer - Fullstack | Mountain View, CA |
| Feb 16 |
| **D.E Shaw Research** | Software Developer Associate | New York, NY |
| Feb 16 |
| **Apple** | Software Build Engineer | San Diego, CA |
| Feb 16 |
| **Apple** | Software Build Engineer | San Diego, CA |
| Feb 16 |
| **Apple** | Tools and Automation Engineer | Cupertino, CA |
| Feb 16 |
| **Apple** | Photos Triage & Tooling Engineer | Cupertino, CA |
| Feb 16 |
| **Apple** | Embedded Real Time Critical Control Firmware Engineer | Sunnyvale, CA |
| Feb 16 |
| **Amazon** | Software Development Engineer I | Seattle, WA |
| Feb 16 |
| **Amazon** | Systems Development Engineer I - Prime Video | Seattle, WA |
| Feb 16 |
| **Microsoft** | New Grad: Software Engineer 🇺🇸 | Redmond, WAReston, VA |
| Feb 11 |
| **Jane Street** | Quantitative Trader | New York, NY |
| Feb 11 |
| **Tesla** | Software Engineer, Gateway | Palo Alto, CA |
| Feb 05 |
| **Softheon** | Software Engineer I - Membership |
| Feb 05 |
| **Amentum** | Software Engineer 🇺🇸 | Fredericksburg, VA |
| Feb 05 |
| **Amentum** | Entry Level Software Engineer | Fredericksburg, VA |
| Feb 05 |
| **Xerox** | Associate Software Engineer | Webster, NY |
| Jan 30 |
| **Itential** | Software Development Engineer I | RemoteUS |
| Jan 30 |
| **First Resonance** | Forward Deployed Software Engineer | Los Angeles, CA |
| Jan 30 |
| **Emerson** | Software Engineer | Austin, TX |
| Jan 30 |
| **Twitch** | Software Engineer API Platform | San Francisco, CA |
| Jan 29 |
| **Tesla** | Software Engineer, Training Performance, AI Infrastructure | Palo Alto, CA |
| Jan 29 |
| **Tesla** | Software Development Engineer, Financial Services | Bellevue, WA |
| Jan 29 |
| **Tesla** | Security Engineer, Energy | Palo Alto, CA |
| Jan 29 |
| **Datadog** | Software Engineer - Distributed Storage | RemoteUS |
| Jan 29 |
| **Apple** | USB-C Firmware Engineer | Cupertino, CA |
| Jan 29 |
| **Amazon** | System Development Engineer I, REALM | Bellevue, WA |
| Jan 29 |
| **Tesla** | Software Integration Engineer, Semi Air Generation & Air Processing Systems | Palo Alto, CA |
| Jan 25 |
| **Siemens** | Software Development Engineer | Waltham, MA |
| Jan 25 |
| **Replicate** | Creative AI Engineer | RemoteUS |
| Jan 25 |
| **Oracle** | Software Developer 1 | Seattle, WA |
| Jan 25 |
| **NetApp** | Software Engineer - ONTAP |
| Jan 25 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Jan 25 |
| **FedEx** | Software Engineer I and II - Gen AI | Memphis, TN |
| Jan 25 |
| **Apple** | Systems Software Engineer | Austin, TX |
| Jan 25 |
| **Apple** | Software Engineer, Authentication Experience | Cupertino, CA |
| Jan 25 |
| **Apple** | Junior Server Engineer - Health Software | Sunnyvale, CA |
| Jan 25 |
| **Apple** | Software Engineer - Large Language Models & Generative AI | Cupertino, CA |
| Jan 25 |
| **Amazon** | Software Development Engineer | Culver City, CA |
| Jan 25 |
| **Tesla** | Software Engineer, Digital Products Engineering | Fremont, CA |
| Jan 21 |
| **Vertafore** | Software Engineer I | Melville, NY |
| Jan 16 |
| **Splunk** | New Grad 2025: Frontend Software Engineer | Denver, CO |
| Jan 16 |
| **QuVa** | Software Engineer I | Minneapolis, MN |
| Jan 16 |
| **Nokia** | Software Dev Engineer | United States |
| Jan 16 |
| **Microsoft** | Software Engineer - Linux Kernel | Redmond, WA |
| Jan 16 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Jan 16 |
| **Microsoft** | Software Engineer | Multiple Locations |
| Jan 16 |
| **HPE** | New Grad: Software Engineer |
| Jan 16 |
| **Honeywell** | Software Engineer | United States |
| Jan 16 |
| **Garmin** | Software Engineer 1, Aviation Tools Developer | Salem, OR |
| Jan 16 |
| **Erie Insurance** | Associate Software Engineer | Erie, PA |
| Jan 16 |
| **Deloitte** | Software Engineer 🇺🇸 | Fort Meade, MD |
| Jan 16 |
| **Cvent** | Software Engineer I | Tysons Corner, VA |
| Jan 16 |
| **Current** | Software Engineer, iOS | New York, NY |
| Jan 16 |
| **American Express** | New Grad 2025: Software Engineer II -- Masters | Phoenix, AZ |
| Jan 16 |
| **Amazon** | Software Dev Engineer |
| Jan 16 |
| **Amazon** | New Grad 2025: Front-End Engineer |
| Jan 16 |
| **Adobe** | New Grad 2025: Software Engineer | San Jose, CASan Francisco, CA |
| Jan 16 |
| **Calfus** | Software Engineer – Generative AI | Pleasanton, CA |
| Jan 10 |
| **ServiceNow** | New Grad: Software Engineer | Santa Clara, CA |
| Jan 09 |
| **ServiceNow** | Associate Software Engineer | San Diego, CA |
| Jan 09 |
| **Levels.fyi** | Backend Software Engineer | RemoteUS |
| Jan 09 |
| **Alloy** | Junior Full Stack Engineer, Operate | New York, NY |
| Jan 09 |
| **Vivint** | Software Engineer, iOS | Salt Lake City, UT |
| Jan 07 |
| **T-Mobile** | Software Engineer | Bellevue, WADenver, COFrisco, TX |
| Jan 07 |
| **Honda** | New Grad 2025: Engineering Development Program 🛂 | Marysville, OH |
| Jan 06 |
| **Apple** | Embedded SoC Driver Engineer | Cupertino, CA |
| Jan 06 |
| **Microsoft** | Software Engineer - Fullstack | Multiple Locations |
| Jan 02 |
| **Microsoft** | Software Engineer - Security | Redmond, WA |
| Jan 02 |
| **Microsoft** | Software Engineer - Fullstack | Atlanta, GA |
| Jan 02 |
| **Microsoft** | Software Engineer - Fullstack | Redmond, WA |
| Jan 02 |
| **Microsoft** | Software Engineer - Fullstack | Redmond, WA |
| Jan 02 |
| **Microsoft** | Software Engineer - AI/ML | Redmond, WA |
| Jan 02 |
| **Quantiq Partners** | New Grad: Software Developer | Austin, TX |
| Jan 01 |
| **Quantiq Partners** | New Grad: Hardware Developer | Austin, TX |
| Jan 01 |
| **Opto** | Software Engineer, Backend | San Francisco, CA |
| Jan 01 |
| **Invisible** | Forward Deployed Engineer | RemoteUS |
| Jan 01 |
| **Trimble** | Software Engineer | Princeton, NJ |
| Dec 27 |
| **Macquarie** | Software Engineer | Philadelphia, PA |
| Dec 27 |
| **GM Financial** | Software Development Engineer I | Arlington, TXIrving, TXDallas, TX |
| Dec 27 |
| **Promi** | Founding Engineer - YC | San Francisco, CASunnyvale, CA |
| Dec 24 |
| **Wex** | AI Productivity Engineer |
| Dec 22 |
| **Peraton** | Associate Software Engineer 🇺🇸 | Annapolis Junction, MD |
| Dec 22 |
| **NetApp** | Entry Level Software Engineer - Cloud |
| Dec 22 |
| **Amazon** | New Grad 2025: Programmer Analyst | Seattle, WA |
| Dec 22 |
| **Microsoft** | Software Developer Engineer | Redmond, WA |
| Dec 19 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Dec 19 |
| **NVIDIA** | New Grad 2025: Developer Technology Engineer, Public Sector | Santa Clara, CA |
| Dec 13 |
| **Stats Perform** | Software Engineer I | RemoteUS |
| Dec 11 |
| **Amazon** | New Grad 2025: Software Dev Engineer, Annapurna ML | Seattle, WACupertino, CA |
| Dec 11 |
| **Amazon** | New Grad 2025: Software Dev Engineer, Annapurna Labs | Seattle, WACupertino, CA |
| Dec 11 |
| **Amazon** | New Grad 2025: Software Development Engineer I, DynamoDB | Seattle, WABellevue, WARedmond, WA |
| Dec 11 |
| **Amazon** | New Grad 2025: Software Development Engineer I, Redshift | Seattle, WARedmond, WAPalo Alto, CA |
| Dec 11 |
| **Amazon** | New Grad 2025: Software Development Engineer I |
| Dec 11 |
| **Acorns** | New Grad: Software Engineer I | Irvine, CANew York, NYRemote |
| Dec 11 |
| **Westinghouse** | New Grad 2025: Software Engineer | Cranberry Township, PA |
| Dec 09 |
| **TikTok** | New Grad 2025: Software Engineer | San Jose, CA |
| Dec 09 |
| **Prelim** | Software Engineer, Product | RemoteUS |
| Dec 08 |
| **NVIDIA** | New Grad 2025: Developer Technology Engineer | Santa Clara, CA |
| Dec 07 |
| **Western Digital** | New Grad 2025: Quality Assurance Engineer | San Jose, CA |
| Dec 05 |
| **Tesla** | Software Engineer, Frontend Vision Systems | Fremont, CA |
| Dec 05 |
| **River** | Software Engineer | RemoteUS |
| Dec 05 |
| **Nuro** | New Grad: Software Engineer, AI Platform | Mountain View, CA |
| Dec 05 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Dec 05 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Dec 05 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Dec 05 |
| **Microsoft** | Product Manager | Redmond, WA |
| Dec 05 |
| **Microsoft** | Technology Consultant 🇺🇸 | Arlington, VA |
| Dec 05 |
| **Garmin** | Software Engineer I | Salem, OR |
| Dec 05 |
| **Codeium** | New Grad: Software Engineer | Mountain View, CA |
| Dec 05 |
| **J.P Morgan Chase** | New Grad 2025: Software Engineer 🛂 |
| Dec 03 |
| **J.P Morgan Chase** | New Grad 2025: Software Engineer 🛂 |
| Dec 03 |
| **General Atomics** | Associate Software Developer 🇺🇸 | Poway, CA |
| Dec 03 |
| **Apple** | Software Engineer, Apple Watch | Cupertino, CA |
| Dec 03 |
| **xAI** | Applied AI Engineer & Researcher | San Francisco, CAPalo Alto, CA |
| Nov 28 |
| **TikTok** | New Grad 2025: Software Engineer, Ads Measurement | San Jose, CA |
| Nov 28 |
| **TikTok** | New Grad 2025: Software Engineer, LIVE Foundation | San Jose, CA |
| Nov 28 |
| **Tesla** | Software Engineer, Frontend Material Flow System | Fremont, CA |
| Nov 28 |
| **Microsoft** | Software Engineer, Security | Redmond, WA |
| Nov 28 |
| **WeaveGrid** | Software Engineer | San Francisco, CA |
| Nov 26 |
| **Visa** | New Grad: Software Engineer | Ashburn, VA |
| Nov 26 |
| **Visa** | New Grad: Software Engineer | Foster City, CA |
| Nov 26 |
| **Tesla** | Software Engineer, Global Logistics Platform | Fremont, CA |
| Nov 26 |
| **Replit** | New Grad 2025: Software Engineer | Foster City, CA |
| Nov 26 |
| **Column** | Software Engineer, Internal Tools | San Francisco, CA |
| Nov 26 |
| **Apple** | Software Engineer, Backend Systems | San Diego, CA |
| Nov 26 |
| **Qualcomm** | Embedded Software Engineer | Boulder, CO |
| Nov 24 |
| **NBA** | Associate DevOps Engineer | Secaucus, NJ |
| Nov 23 |
| **Goldman Sachs** | Associate Software Engineer | Salt Lake City, UT |
| Nov 23 |
| **Replicate** | Software Engineer | San Francisco, CARemote |
| Nov 22 |
| **Better Being** | Software Engineer | Ogden, UT |
| Nov 22 |
| **Tesla** | Frontend Software Engineer | Palo Alto, CA |
| Nov 21 |
| **Qualcomm** | GPU Compiler Engineer | San Diego, CA |
| Nov 21 |
| **Gryps** | Backend Software Engineer | New York, NY |
| Nov 19 |
| **Uplimit** | Software Engineer | San Mateo, CA |
| Nov 18 |
| **Bytedance** | New Grad 2024: Software Engineer | Seattle, WA |
| Nov 18 |
| **Rubrik** | Software Engineer, Entra ID | Palo Alto, CA |
| Nov 16 |
| **Bastian Solutions** | New Grad 2025: Software Engineer | Meridian, ID |
| Nov 16 |
| **Apple** | SoC Embedded Software Engineer | Cupertino, CA |
| Nov 16 |
| **The Trade Desk** | New Grad 2025: Software Engineer | Denver, CO |
| Nov 15 |
| **The Trade Desk** | New Grad 2025: Software Engineer | Boulder, CO |
| Nov 15 |
| **Nike** | Site Reliability Engineer I | Beaverton, OR |
| Nov 15 |
| **Nike** | Software Engineer - Masters | Beaverton, OR |
| Nov 15 |
| **Amazon** | New Grad 2025: Software Engineer, AI/ML |
| Nov 15 |
| **Roblox** | New Grad 2025: Software Engineer, Game Engine Reliability | San Mateo, CA |
| Nov 08 |
| **Mach Industries** | New Grad 2025: Software Engineer | Huntington Beach, CA |
| Nov 08 |
| **DV Energy** | New Grad 2025: Software Developer | New York, NY |
| Nov 08 |
| **Tiktok** | New Grad 2025: Backend Engineer | San Jose, CA |
| Nov 07 |
| **NVIDIA** | New Grad 2025: Developer Technology Engineer, Public Sector | Santa Clara, CA |
| Nov 07 |
| **Zip** | New Grad 2025: Software Engineer | San Francisco, CA |
| Nov 05 |
| **Visa** | New Grad 2025: Site Reliability Engineer | Austin, TX |
| Nov 05 |
| **Textron** | New Grad 2025: Software Engineer | Hunt Valley, MD |
| Nov 05 |
| **bet365** | Software Engineer, Core Systems | Denver, CO |
| Nov 05 |
| **bet365** | Software Developer, Trading and Tools | Denver, CO |
| Nov 05 |
| **Microsoft** | Software Engineer 🇺🇸 | Reston, VA |
| Nov 03 |
| **SeatGeek** | New Grad 2025: Security Engineer | New York, NY |
| Nov 02 |
| **Western Digital** | New Grad 2025: Application Engineer | San Jose, CA |
| Nov 01 |
| **Western Digital** | New Grad 2025: Product Development Engineer | Milpitas, CA |
| Nov 01 |
| **Adobe** | New Grad 2025: Machine Learning Engineer - Masters/PhD | Lehi, UT |
| Nov 01 |
| **OuterBox** | Front End Developer | RemoteUS |
| Oct 30 |
| **Crusoe** | University Software Engineer | San Francisco, CA |
| Oct 30 |
| **Kikoff** | New Grad: Software Engineer | San Francisco, CA |
| Oct 29 |
| **Inkeep** | Backend Engineer | New York, NYSan Francisco, CA |
| Oct 29 |
| **Siemens** | New Grad 2025: Software Engineer | Wilsonville, OR |
| Oct 28 |
| **Roblox** | New Grad 2025: Software Engineer, Networking | San Mateo, CA |
| Oct 28 |
| **Roblox** | New Grad 2025: Software Engineer, Game Engine Performance | San Mateo, CA |
| Oct 26 |
| **Pax8** | Data Engineer I | United States |
| Oct 26 |
| **Nextdoor** | New Grad 2025: Software Engineer | San Francisco, CA |
| Oct 26 |
| **Squarespace** | New Grad 2024: Software Engineer, Java | New York, NY |
| Oct 25 |
| **Doordash** | New Grad 2025: Software Engineer |
| Oct 25 |
| **NOV** | New Grad 2024: Software Engineer | Houston, TX |
| Oct 24 |
| **MLB** | Associate Software Engineer | New York, NY |
| Oct 24 |
| **Replo** | New Grad 2024: Software Engineer | San Francisco, CA |
| Oct 23 |
| **J.P Morgan Chase** | New Grad 2025: Software Engineer, Feb '25 Start |
| Oct 23 |
| **Fitch Group** | New Grad 2025: Associate Software Engineer | New York, NY |
| Oct 23 |
| **Bytedance** | New Grad 2025: Software Engineer | San Jose, CA |
| Oct 23 |
| **Roblox** | New Grad 2025: Software Engineer, Game Engine Network | San Mateo, CA |
| Oct 22 |
| **Tiktok** | New Grad 2025: Machine Learning Engineer, Business Risk Integrated Control | San Jose, CA |
| Oct 21 |
| **Tesla** | Software Development Engineer, Financial Services | Fremont, CA |
| Oct 21 |
| **NBCUniversal** | Associate Software Engineer | RemoteUS |
| Oct 21 |
| **Roblox** | New Grad 2025: Software Engineer, Game Engine Programmability | San Mateo, CA |
| Oct 20 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Oct 20 |
| **Avathon** | Software Engineer | Austin, TX |
| Oct 19 |
| **WeRide** | New Grad 2025: Software Engineer | San Jose, CA |
| Oct 17 |
| **Oracle** | Associate Production Software Engineer | United States |
| Oct 17 |
| **Motional** | Associate Software Engineer | Pittsburgh, PABoston, MA |
| Oct 17 |
| **Crusoe** | University Software Engineer | San Francisco, CA |
| Oct 17 |
| **Clay** | Software Engineer Early Career (2025) | New York, NY |
| Oct 17 |
| **Roblox** | New Grad 2025: Associate Product Manager | San Mateo, CA |
| Oct 16 |
| **Roblox** | New Grad 2025: Software Engineer, Reliability | San Mateo, CA |
| Oct 16 |
| **Marex** | C# Software Developer | Chicago, IL |
| Oct 16 |
| **KBR** | Software Engineer 🇺🇸 | Colorado Springs, CO |
| Oct 16 |
| **Jane Street** | Software Engineer | New York, NY |
| Oct 16 |
| **Fortinet** | Software Development Engineer | Sunnyvale, CA |
| Oct 16 |
| **American Express** | New Grad 2025: Technology Software Engineer | New York, NY |
| Oct 16 |
| **TikTok** | New Grad 2025: Frontend Software Engineer | San Jose, CA |
| Oct 15 |
| **Splunk** | New Grad 2025: C++ Software Engineer | ColoradoRemote |
| Oct 15 |
| **Microsoft** | Data Scientist - Masters | Atlanta, GA |
| Oct 14 |
| **Jobot** | Software Developer | Bryn Mawr, PA |
| Oct 14 |
| **TikTok** | New Grad 2025: Software Engineer | San Jose, CA |
| Oct 11 |
| **TikTok** | New Grad 2025: Fullstack Software Engineer | Seattle, WA |
| Oct 11 |
| **Reevo** | Frontend Software Engineer | Santa Clara, CA |
| Oct 11 |
| **Reevo** | Software Engineer | Santa Clara, CA |
| Oct 11 |
| **Nuro** | New Grad 2024/2025: Software Engineer, Autonomy | Mountain View, CA |
| Oct 11 |
| **Meetsta** | Founding Data Architect Engineer 🛂 | RemoteUS |
| Oct 11 |
| **GQG Partners LLC** | Associate Software Developer | Fort Lauderdale. FL |
| Oct 11 |
| **Charles Schwab** | Software Development & Engineering Associate |
| Oct 11 |
| **Amazon** | New Grad 2024: Software Dev Engineer | Arlington, VASeattle, WAHerndon, VA |
| Oct 11 |
| **TDK** | Embedded Software Engineer | Neptune, NJ |
| Oct 09 |
| **Roblox** | New Grad 2025: Security Software Engineer | San Mateo, CA |
| Oct 09 |
| **Roblox** | New Grad 2025: Software Engineer, Frontend | San Mateo, CA |
| Oct 09 |
| **Jellyfish** | Backend Software Engineer 🛂 | Boston, MARemote |
| Oct 09 |
| **Honeywell** | New Grad 2025: Software Engineer 🇺🇸 | United States |
| Oct 09 |
| **Honeywell** | New Grad 2025: Software Engineer | United States |
| Oct 09 |
| **Apple** | Cellular Software Engineer | San Diego, CA |
| Oct 09 |
| **Microsoft** | Software Engineer 🇺🇸 | Redmond, WA |
| Oct 06 |
| **Cerebras Systems** | New Grad: Performance Engineer - Masters/PhD | Sunnyvale, CA |
| Oct 06 |
| **Cerebras Systems** | New Grad: Kernel Engineer | Sunnyvale, CA |
| Oct 06 |
| **Cerebras Systems** | New Grad: Applied ML Engineer | Sunnyvale, CA |
| Oct 06 |
| **SoFi** | Software Engineer | Seattle, WA |
| Oct 05 |
| **Ansatz** | Software Engineer | New York, NY |
| Oct 05 |
| **Rockstar Games** | Animation R&D Programmer | Manhattan, NY |
| Oct 03 |
| **Rockstar Games** | Animation R&D Programmer | Carlsbad, CA |
| Oct 03 |
| **IXL Learning** | New Grad: Software Engineer | Raleigh, NC |
| Oct 03 |
| **Emerson** | Sales Development Engineer 🛂 | Austin, TX |
| Oct 03 |
| **Capgemini** | Associate Embedded Software Engineer | Redmond, WA |
| Oct 03 |
| **Burtch Works** | Data Engineer | Remote |
| Oct 03 |
| **Burtch Works** | Software Development Engineer | Remote |
| Oct 03 |
| **Arrow Search** | Software Engineer | New York, NY |
| Oct 03 |
| **Splunk** | Early Career, Fedramp Software Engineer | Raleigh, NC Boulder, CO |
| Oct 02 |
| **SMX** | Junior Software Engineer 🇺🇸 | Chantilly, VA |
| Oct 02 |
| **Refuel** | Forward Deployed Engineer | San Francisco, CA |
| Oct 02 |
| **Pocket Worlds** | Software Engineer | Austin, TX |
| Oct 02 |
| **Orca** | Software Engineer (Frontend) | New York, NY |
| Oct 02 |
| **OpenAI** | Software Engineer | San Francisco, CA |
| Oct 02 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Oct 02 |
| **Meta** | Software Engineer, Language |
| Oct 02 |
| **Aviatrix** | Software Engineer | Champaign, IL |
| Oct 02 |
| **Western Digital** | New Grad: System Test Engineer | Rochester, MN |
| Oct 01 |
| **SeatGeek** | New Grad: Software Engineer | New York, NY |
| Oct 01 |
| **Quevera** | Software Engineer 🇺🇸 | Hanover, MD |
| Sep 30 |
| **Numerator** | Data Engineer I | United States |
| Sep 30 |
| **Microsoft** | Software Engineer 🛂 | Redmond, WA |
| Sep 30 |
| **Deltek** | Associate Software Engineer | Remote |
| Sep 30 |
| **Apple** | Signoff Infrastructure Developer Engineer | Sunnyvale, CA |
| Sep 30 |
| **Amazon** | Software Dev Engineer | Seattle, WACupertino, CA |
| Sep 30 |
| **Amazon** | Software Dev Engineer | Seattle, WACupertino, CA |
| Sep 29 |
| **Microsoft** | Software Engineer 🇺🇸 | Redmond, WA |
| Sep 27 |
| **Deutsche Bank** | Technology, Data and Innovation Intern | Cary, NC |
| Sep 25 |
| **Cloudflare** | Software Engineer, Durable Objects | Hybrid |
| Sep 25 |
| **C3.ai** | Software Engineer | Redwood City, CA |
| Sep 25 |
| **C3.ai** | Software Engineer, Platform | Redwood City, CA |
| Sep 25 |
| **Penguin Random House** | Associate Developer, Full Stack | New York, NY |
| Sep 24 |
| **Microsoft** | Platform Software Engineer | Redmond, WA |
| Sep 21 |
| **Microsoft** | Software Engineer | Redmond, WA |
| Sep 20 |
| **Microsoft** | Software Engineer AI/ML | Multiple Locations |
| Sep 20 |
| **Microsoft** | Data Engineer | Redmond, WA |
| Sep 20 |
| **Tesla** | Product Engineer | Fremont, CA |
| Sep 19 |
| **Microsoft** | Software Engineer - Frontend | Redmond, WA |
| Sep 19 |
| **HomePro** | Production Support Software Engineer | Carrollton, TX |
| Sep 19 |
| **Radley James** | Graduate Software Engineer | New York, NY |
| Sep 18 |
| **Precisely** | Associate Data Engineer | United States |
| Sep 18 |
| **Google** | New Grad 2025: Software Engineer - PhD | Multiple Locations |
| Sep 18 |
| **Datadog** | Software Engineer 🇺🇸 | Boston, MANew York, NY |
| Sep 18 |
| **Bloomberg** | New Grad 2025: Software Engineer | New York, NY |
| Sep 18 |
| **Visa** | New Grad 2025: Software Engineer | Austin, TX |
| Sep 17 |
| **IBM** | Entry Level Product Manager: 2025 🛂 |
| Sep 17 |
| **Microsoft** | Software Engineer 🇺🇸 | Redmond, WAAtlanta, GA |
| Sep 15 |
| **Microsoft** | Software Engineer, AI&ML | Redmond, WA |
| Sep 15 |
| **Verkada** | Frontend Engineer | San Mateo, CA |
| Sep 14 |
| **Tiktok** | New Grad 2025: Software Engineer | San Jose, CA |
| Sep 14 |
| **Two Sigma** | New Grad: Quantitative Researcher | New York, NY |
| Sep 13 |
| **TikTok** | TikTok | San Jose, CA |
| Sep 13 |
| **Tiktok** | New Grad 2025: Frontend Software Engineer | San Jose, CA |
| Sep 13 |
| **Tiktok** | New Grad 2025: Software Engineer | San Jose, CA |
| Sep 13 |
| **Tiktok** | New Grad 2025: Frontend Software Engineer | Seattle, WA |
| Sep 13 |
| **Tiktok** | New Grad: Backend Software Engineer | Seattle, WA |
| Sep 13 |
| **Ramp** | New Grad 2025: Frontend Software Engineer | New York, NY |
| Sep 13 |
| **Waabi** | New Grad: Software Engineer | RemoteUS |
| Sep 12 |
| **Tesla** | New Grad Software Engineer 2025 | Palo Alto, CA |
| Sep 12 |
| **Tesla** | New Grad: Software Engineer | Palo Alto, CA |
| Sep 12 |
| **Tesla** | New Grad: Software Engineer | Palo Alto, CA |
| Sep 12 |
| **Tesla** | New Grad: Software Engineer | Fremont, CA |
| Sep 12 |
| **Netflix** | New Grad 2025: Software Engineer | Los Gatos, California |
| Sep 12 |
| **MLB** | New Grad: Associate Software Engineer | New York, NY |
| Sep 12 |
| **Amazon** | New Grad: Front-End Engineer | San Francisco, CA |
| Sep 12 |
| **Tiktok** | New Grad 2025: Test Engineer | San Jose, CA |
| Sep 08 |
| **Robert Half** | New Grad: Software Engineer | Pittsburgh, PA |
| Sep 08 |
| **Microsoft** | New Grad: Software Engineer 🇺🇸 | Redmond, WA |
| Sep 08 |
| **Microsoft** | New Grad: Software Engineer I 🛂 | Redmond, WA |
| Sep 08 |
| **Gecko Robotics** | New Grad: Forward Deployed Software Engineer | New York, NY |
| Sep 08 |
| **Aquatic** | New Grad: Software Engineer | Chicago, ILNew York, NY |
| Sep 08 |
| **Microsoft** | New Grad: Software Engineer | Cambridge, MA |
| Sep 07 |
| **Microsoft** | New Grad: Software Engineer | Redmond, WA |
| Sep 07 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Redmond, WA |
| Sep 04 |
| **Groq** | New Grad: Software Engineer | Mountain View, CA |
| Sep 04 |
| **Broad Institute** | New Grad: Computational Research | Cambridge, MA |
| Sep 04 |
| **Oracle** | New Grad 2025: Software Engineer | Multiple |
| Sep 03 |
| **Oracle** | New Grad 2025: Software Engineer | San Francisco, CA |
| Sep 03 |
| **American Express** | New Grad 2025: Information Security Analyst | New York, NY |
| Sep 01 |
| **Tesla** | New Grad: Backend Software Engineer | Fremont, CA |
| Aug 30 |
| **Jane Street** | New Grad: Domain Specific Language Engineer | New York, NY |
| Aug 30 |
| **Seagate** | HDD Product Manager | Shakopee, MN |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - Fusion Applications Development 🛂 | Redwood City, CAPleasanton, CASanta Clara, CA |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - OCI 🛂 | Santa Clara, CA |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - OCI 🛂 | Nashville, TN |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - NetSuite 🛂 |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - Global Industries 🛂 |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - OCI 🛂 | Austin, TX |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - Database Technologies 🛂 |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - OCI 🛂 | Seattle, WA |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - Analytics Cloud 🛂 |
| Aug 29 |
| **Oracle** | New Grad 2025: Software Engineer - Corporate Architecture 🛂 |
| Aug 29 |
| **ByteDance** | New Grad 2025: Site Reliability Engineer | San Jose, CA |
| Aug 29 |
| **Reynolds and Reynolds** | New Grad: Site Reliability Engineer | Dayton, OH |
| Aug 27 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Redmond, WA |
| Aug 27 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Atlanta, GA |
| Aug 27 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Mountain View, CA |
| Aug 27 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Cambridge, MA |
| Aug 27 |
| **Microsoft** | New Grad: Software Engineer, Fullstack | Multiple |
| Aug 27 |
| **iManage** | New Grad: Technical Support Engineer | Chicago, IL |
| Aug 27 |
| **Honeywell** | New Grad 2025: IT/Cyber/DS Engineer | United States |
| Aug 27 |
| **Honeywell** | New Grad 2025: AI/ML Engineer | United States |
| Aug 27 |
| **Honeywell** | New Grad 2025: Software Engineer | United States |
| Aug 27 |
| **DriveWealth** | New Grad: Software Engineer - Masters | New York, NY |
| Aug 27 |
| **ByteDance** | New Grad 2025: Research Scientist | San Jose, CA |
| Aug 27 |
| **ByteDance** | New Grad 2025: QA Engineer | Seattle, WA |
| Aug 27 |
| **Nextdoor** | New Grad 2025: Machine Learning Engineer - MS/PHD | San Francisco, CA |
| Aug 25 |
| **Meta** | New Grad: Network Production Engineer |
| Aug 25 |
| **Gecko Robotics** | New Grad: Field Software Engineer | Pittsburg, PA |
| Aug 25 |
| **Gecko Robotics** | New Grad: Embedded Software Engineer | Pittsburg, PA |
| Aug 25 |
| **Gecko Robotics** | New Grad: Localization Engineer | Pittsburg, PA |
| Aug 25 |
| **Gecko Robotics** | New Grad: Software Engineer | Boston, MA |
| Aug 25 |
| **ByteDance** | New Grad 2025: Machine Learning Engineer | San Jose, CA |
| Aug 25 |
| **ByteDance** | New Grad 2025: Frontend Software Engineer | Seattle, WA |
| Aug 25 |
| **ByteDance** | New Grad 2025: Software Engineer | Seattle, WA |
| Aug 25 |
| **ByteDance** | New Grad 2025: Backend Software Engineer | San Jose, CA |
| Aug 25 |
| **ByteDance** | New Grad 2025: Mobile Software Engineer | San Jose, CA |
| Aug 25 |
| **Applied Intuition** | New Grad: Software Engineer - PHD | Mountain View, CA |
| Aug 25 |
| **Jane Street** | New Grad 2025: Linux Engineer | New York, NY |
| Aug 23 |
| **Jane Street** | New Grad 2025: FPGA Engineer | New York, NY |
| Aug 23 |
| **Jane Street** | New Grad: Software Engineer | New York, NY |
| Aug 23 |
| **Gecko Robotics** | New Grad: Forward Deployed Engineer 🛂 | Pittsburgh, PABoston, MANew York, NY |
| Aug 23 |
| **Tiktok** | New Grad: Machine Learning Engineer | San Jose, CA |
| Aug 21 |
| **Meta** | New Grad: Production Engineer |
| Aug 21 |
| **Microsoft** | New Grad: Software Engineer | Multiple Locations |
| Aug 20 |
| **The Trade Desk** | New Grad 2025: Software Engineer | San Francisco, CA |
| Aug 15 |
| **IBM** | New Grad 2025: Product Manager |
| Aug 14 |
| **Databricks** | New Grad 2025: Data Scientist | Mountain View, CA |
| Aug 14 |
| **Blackrock** | New Grad 2025: Analyst Program | United States |
| Aug 10 |
| **Airgoods - YC** | New Grad: Full-Stack Engineer | New York, NY |
| Aug 10 |
| **Neocis** | New Grad 2025: Software Engineer | Miami, FL |
| Aug 08 |
| **Meta** | New Grad: Production Engineer |
| Aug 08 |
| **Roblox** | New Grad: Software Engineer 🛂 | San Mateo, CA |
| Aug 06 |
| **Tiktok** | New Grad 2025: Frontend Engineer | San Jose, CA |
| Aug 01 |
| **TikTok** | New Grad 2025: Machine Learning Engineer | San Jose, CA |
| Jul 31 |
| **Tiktok** | New Grad 2025: Software Engineer | San Jose, CA |
| Jul 31 |
| **Ramp** | New Grad 2025: Software Engineer - Frontend | New York, NY |
| Jul 31 |
| **Tiktok** | Machine Learning Engineer - 2025 Start | Seattle, WA |
| Jul 29 |
| **TikTok** | New Grad Machine Learning Engineer | San Jose, CA |
| Jul 29 |
| **TikTok** | ML Engineer | Seattle, WA |
| Jul 29 |
| **Microsoft** | Software Engineer | Atlanta, GARedmond, WA |
| Jul 29 |
| **ByteDance** | Software Engineer Graduate - 2025 Start | San Jose, CA |
| Jul 29 |
| **Amazon** | Software Dev Engineer | Seattle. WACupertino, CA |
| Jul 29 |
| **TikTok** | Software Engineer Graduate (TikTok LIVE Foundation) - 2025 Start | San Jose, CA |
| Jul 25 |
| **Tiktok** | Software Engineer Graduate (Intelligent Creation Mobile) - 2025 Start (BS/MS) | San Jose, CA |
| Jul 25 |
| **Tiktok** | Machine Learning Engineer 2025 Start (TikTok Recommendation) | San Jose, CA |
| Jul 24 |
| **TikTok** | Software Engineer Graduate (TikTok Short Video) - 2025 Start (Bachelors/Master) | San Jose, CA |
| Jul 23 |
| **Optiver** | Graduate Software Engineer (2025 Start – Chicago) | Chicago, IL |
| Jul 23 |
| **ByteDance** | Software Engineer Graduate (AML- Engine) - 2025 Start (BS/MS) | San Jose, CA |
| Jul 23 |
| **Axle Health** | Software Engineer (New Grad) | Los Angeles, CA |
| Jul 22 |
| **Jane Street** | Front End Software Engineer | New York, NY |
| Jul 11 |
| **TikTok** | iOS Software Engineer | San Jose, CA |
| Jul 10 |
| **Radley James** | Junior C++ Engineer | San Francisco, CA |
| Jul 10 |
| **OpenAI** | Software Engineer, Backend | San Francisco, CA |
| Jul 10 |
| **Optiver** | Graduate Software Engineer (2025 Start – Austin) | Austin, TX |
| Jul 09 |
| **Citadel** | Software Engineer | Chicago,ILMiami, FLNew York, NY |
| Jul 09 |
| **JPMorgan Chase** | 2025 Software Engineer Program 🛂 |
| Jul 05 |
| **Citadel Securities** | Software Engineer – 2025 University Graduate (US) | Miami, FLNew York, NY |
| Jul 05 |
| **NVIDIA** | New Grad 2025: ASIC Hardware Design Engineer | Austin, TX | 🔒 | Jul 14 |
| **NVIDIA** | New Grad 2025: Systems Software Engineer | Hillsboro, OR | 🔒 | Jul 14 |
| **NVIDIA** | New Grad 2025: Hardware Applications Engineer, Datacenter | Santa Clara, CA | 🔒 | Jul 14 |
| **NVIDIA** | New Grad 2025: ASIC Design Engineer | Santa Clara, CA | 🔒 | Jul 05 |
| **Galatea Associates** | Software Engineer Associate 🛂 |