Showing preview only (1,693K chars total). Download the full file or copy to clipboard to get everything.
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,
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
SYMBOL INDEX (15 symbols across 3 files) FILE: .github/scripts/contribution_approved.py function add_https_to_url (line 12) | def add_https_to_url(url): function getData (line 18) | def getData(body, is_edit, username): function main (line 54) | def main(): FILE: .github/scripts/update_readmes.py function main (line 8) | def main(): FILE: .github/scripts/util.py function setOutput (line 12) | def setOutput(key, value): function fail (line 16) | def fail(why): function getLocations (line 20) | def getLocations(listing): function getSponsorship (line 27) | def getSponsorship(listing): function getLink (line 34) | def getLink(listing): function create_md_table (line 50) | def create_md_table(listings): function filterListings (line 70) | def filterListings(listings, earliest_date): function getListingsFromJSON (line 81) | def getListingsFromJSON(filename=".github/scripts/listings.json"): function embedTable (line 89) | def embedTable(listings): function sortListings (line 132) | def sortListings(listings): function checkSchema (line 159) | def checkSchema(listings):
Condensed preview — 18 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,830K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/edit_role.yaml",
"chars": 3239,
"preview": "name: Edit Role\ndescription: Edit a Job Posting on our list\ntitle: \"Editing Role\"\nlabels: [\"edit_role\"]\nbody:\n - type: "
},
{
"path": ".github/ISSUE_TEMPLATE/feature_suggestion.yaml",
"chars": 455,
"preview": "name: New Feature Request\ndescription: Submit your ideas for improvements to the repo!\ntitle: \"New Feature Request\"\nlabe"
},
{
"path": ".github/ISSUE_TEMPLATE/misc.yaml",
"chars": 503,
"preview": "name: Miscellaneous Issue\ndescription: Ask us a question or tell us what we could do better\ntitle: \"Misc Issue\"\nlabels: "
},
{
"path": ".github/ISSUE_TEMPLATE/new_role.yaml",
"chars": 2851,
"preview": "name: New Role\ndescription: Contribute a Job Posting to our list\ntitle: \"New Role\"\nlabels: [\"new_role\"]\nbody:\n - type: "
},
{
"path": ".github/scripts/contribution_approved.py",
"chars": 3979,
"preview": "import sys\nimport json\nimport subprocess\nimport sys\nimport uuid\nfrom datetime import datetime\nimport os\nimport util\nimpo"
},
{
"path": ".github/scripts/listings.json",
"chars": 612195,
"preview": "[\n {\n \"date_updated\": 1743415809,\n \"url\": \"https://careers.qualcomm.com/careers/job/446704474013\",\n "
},
{
"path": ".github/scripts/update_readmes.py",
"chars": 449,
"preview": "import json\nfrom datetime import datetime\nimport os\nimport util\nimport re\n\n\ndef main():\n\n listings = util.getListings"
},
{
"path": ".github/scripts/util.py",
"chars": 7154,
"preview": "import json\n\nfrom datetime import date, datetime, timezone, timedelta\nimport random\nimport os\n\n# SIMPLIFY_BUTTON = \"http"
},
{
"path": ".github/workflows/contribution_approved.yml",
"chars": 1951,
"preview": "name: Contribution Approved\n\non:\n issues:\n types: [\"labeled\"]\n\nconcurrency: add_internships\n\njobs:\n run-python-scri"
},
{
"path": ".github/workflows/update_readmes.yml",
"chars": 1226,
"preview": "name: Update READMEs\n\non:\n push:\n paths:\n - '.github/scripts/listings.json'\n workflow_dispatch:\n\nconcurrency: "
},
{
"path": ".gitignore",
"chars": 8,
"preview": "testing/"
},
{
"path": "CONTRIBUTING.md",
"chars": 2033,
"preview": "# Contributing to the Job List\nThank you for your interest in contributing to the new-grad job list!\n\nBelow, you'll find"
},
{
"path": "Canada.md",
"chars": 14676,
"preview": "# New Grad Positions by V\nUse this repo to share and keep track of entry-level software, tech, CS, PM, quant jobs for 20"
},
{
"path": "LICENSE.txt",
"chars": 1082,
"preview": "\nThe MIT License (MIT)\n\nCopyright (c) 2025 Vansh Bataviya\n\nPermission is hereby granted, free of charge, to any person o"
},
{
"path": "README.md",
"chars": 202803,
"preview": "# New Grad Positions by V\nUse this repo to share and keep track of entry-level software, tech, CS, PM, quant jobs for 20"
},
{
"path": "archived/2025/Canada.md",
"chars": 13182,
"preview": "# Canadian New Grad Positions by V \n\nUse this repo to share and keep track of entry-level software, tech, CS, PM, quant "
},
{
"path": "archived/2025/README.md",
"chars": 226247,
"preview": "# New Grad Positions by V\nUse this repo to share and keep track of entry-level software, tech, CS, PM, quant jobs for 20"
},
{
"path": "archived/2025/listings.json",
"chars": 590522,
"preview": "[\n {\n \"source\": \"Simplify\",\n \"company_name\": \"Axios\",\n \"id\": \"a3dad451-a0c4-447c-b79c-691b756e5c"
}
]
About this extraction
This page contains the full source code of the vanshb03/New-Grad-2025 GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 18 files (1.6 MB), approximately 519.3k tokens, and a symbol index with 15 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.