├── .github
├── ISSUE_TEMPLATE
│ ├── edit_role.yaml
│ ├── feature_suggestion.yaml
│ ├── misc.yaml
│ └── new_role.yaml
├── scripts
│ ├── __pycache__
│ │ └── util.cpython-311.pyc
│ ├── contribution_approved.py
│ ├── listings.json
│ ├── update_readmes.py
│ └── util.py
└── workflows
│ ├── contribution_approved.yml
│ └── update_readmes.yml
├── CONTRIBUTING.md
├── README.md
└── archived
├── README-2022.md
├── README-2023.md
└── README-2024.md
/.github/ISSUE_TEMPLATE/edit_role.yaml:
--------------------------------------------------------------------------------
1 | name: Edit Role
2 | description: Edit a Job Posting on our list
3 | title: "Editing Role"
4 | labels: ["edit_role"]
5 | body:
6 | - type: markdown
7 | attributes:
8 | value: |
9 | ## Edit Job Posting Form
10 | Thanks for taking the time to contribute!
11 | Make sure you've read `CONTRIBUTING.md` before submitting your edits
12 | Please only fill in **link, reason, and whichever fields you would like to edit**
13 | You may leave the others empty
14 | - type: input
15 | id: url
16 | attributes:
17 | label: Link to Job Posting
18 | placeholder: ex. example.com/link/to/posting
19 | validations:
20 | required: true
21 | - type: input
22 | id: company_name
23 | attributes:
24 | label: Company Name
25 | placeholder: ex. Google
26 | validations:
27 | required: false
28 | - type: input
29 | id: title
30 | attributes:
31 | label: Job Title
32 | placeholder: ex. ML Software Engineer
33 | validations:
34 | required: false
35 | - type: input
36 | id: location
37 | attributes:
38 | label: Location
39 | description: |
40 | Where is the job located?
41 | Please separate locations with a pipe "|" if there are multiple options.
42 | Include Remote if remote option available.
43 | placeholder: ex. San Franciso, CA | Austin, TX | Remote
44 | validations:
45 | required: false
46 | - type: dropdown
47 | id: sponsorship
48 | attributes:
49 | label: Does this job offer sponsorship?
50 | description: |
51 | If the posting does not fall into one of these
52 | categories, select "Other" then specify in parentheses at the end of
53 | the Job Title what the sponsorship status is
54 | multiple: false
55 | options:
56 | - Offers Sponsorship
57 | - Does Not Offer Sponsorship
58 | - U.S. Citizenship is Required
59 | - Other
60 | validations:
61 | required: false
62 | - type: dropdown
63 | id: active
64 | attributes:
65 | label: Is this job posting currently accepting applications?
66 | description: Mark this as "false" if the job is no longer active.
67 | multiple: false
68 | options:
69 | - "Yes"
70 | - "No"
71 | validations:
72 | required: false
73 | - type: checkboxes
74 | id: is_visible
75 | attributes:
76 | label: Permanently remove this job from the list?
77 | 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
78 | options:
79 | - label: "Yes, remove this job"
80 | - type: input
81 | id: email
82 | attributes:
83 | label: Email associated with your GitHub account (Optional)
84 | description: |
85 | If you would like to be listed as the contributor to the repository when our github action
86 | commits your contribution to the repo, please provide your email. This is the only time your
87 | email will be used. If left blank, your contribution will still be made, but it will be made
88 | by the bot actions@github.com.
89 | placeholder: ex. firstLast@gmail.com
90 | validations:
91 | required: false
92 | - type: textarea
93 | id: reason
94 | attributes:
95 | label: Reason for edit
96 | description: If the reason for your edit is not obvious, please explain here.
97 | placeholder: This job is no longer accepting applications...
98 | validations:
99 | required: false
100 |
101 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_suggestion.yaml:
--------------------------------------------------------------------------------
1 | name: New Feature Request
2 | description: Submit your ideas for improvements to the repo!
3 | title: "New Feature Request"
4 | labels: ["enhancement"]
5 | body:
6 | - type: markdown
7 | attributes:
8 | value: |
9 | Thanks for taking the time to suggest a new feature or improvement
10 | - type: textarea
11 | id: improvement
12 | attributes:
13 | label: Improvement
14 | placeholder: ex. I think the repo should be more colorful...
15 | validations:
16 | required: true
17 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/misc.yaml:
--------------------------------------------------------------------------------
1 | name: Miscellaneous Issue
2 | description: Ask us a question or tell us what we could do better
3 | title: "Misc Issue"
4 | labels: ["misc"]
5 | body:
6 | - type: markdown
7 | attributes:
8 | value: |
9 | Thanks for taking the time to give us feedback
10 | - type: textarea
11 | id: misc
12 | attributes:
13 | label: Issue/Question
14 | description: Ask us a question or tell us what we could do better
15 | placeholder: ex. There are a few jobs that aren't actually technical...
16 | validations:
17 | required: true
18 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/new_role.yaml:
--------------------------------------------------------------------------------
1 | name: New Role
2 | description: Contribute a Job Posting to our list
3 | title: "New Role"
4 | labels: ["new_role"]
5 | body:
6 | - type: markdown
7 | attributes:
8 | value: |
9 | ## New Job Posting Contribution Form
10 | Thanks for taking the time to contribute!
11 | > Make sure you've read `CONTRIBUTING.md` before submitting your internship
12 | - type: input
13 | id: url
14 | attributes:
15 | label: Link to Job Posting
16 | placeholder: ex. example.com/link/to/posting
17 | validations:
18 | required: true
19 | - type: input
20 | id: company_name
21 | attributes:
22 | label: Company Name
23 | placeholder: ex. Google
24 | validations:
25 | required: true
26 | - type: input
27 | id: title
28 | attributes:
29 | label: Job Title
30 | placeholder: ex. ML Software Engineer
31 | validations:
32 | required: true
33 | - type: input
34 | id: location
35 | attributes:
36 | label: Location
37 | description: |
38 | Where is the job located?
39 | Please separate locations with a pipe "|" if there are multiple options.
40 | Include Remote if remote option available.
41 | placeholder: San Franciso, CA | Austin, TX | Remote
42 | validations:
43 | required: true
44 | - type: dropdown
45 | id: sponsorship
46 | attributes:
47 | label: Does this job offer sponsorship?
48 | description: |
49 | If the posting does not fall into one of these
50 | categories, select "Other" then specify in parentheses at the end of
51 | the Internship Title what the sponsorship status is
52 | multiple: false
53 | options:
54 | - Offers Sponsorship
55 | - Does Not Offer Sponsorship
56 | - U.S. Citizenship is Required
57 | - Other
58 | validations:
59 | required: true
60 | - type: dropdown
61 | id: active
62 | attributes:
63 | label: Is this internship currently accepting applications?
64 | multiple: false
65 | options:
66 | - "Yes"
67 | - "No"
68 | validations:
69 | required: true
70 | - type: input
71 | id: email
72 | attributes:
73 | label: Email associated with your GitHub account (Optional)
74 | description: |
75 | If you would like to be listed as the contributor to the repository when our github action
76 | commits your contribution to the repo, please provide your email. This is the only time your
77 | email will be used. If left blank, your contribution will still be made, but it will be made
78 | by the bot actions@github.com.
79 | placeholder: ex. firstLast@gmail.com
80 | validations:
81 | required: false
82 | - type: textarea
83 | id: reason
84 | attributes:
85 | label: Extra Notes (Optional)
86 | description: |
87 | Optionally, you may provide extra context/insights to our team about the job.
88 | This will not be shown anywhere on the repo, but might ensure your contribution is accepted.
89 | placeholder: This is an exciting new company in the vr space...
90 | validations:
91 | required: false
92 |
--------------------------------------------------------------------------------
/.github/scripts/__pycache__/util.cpython-311.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SimplifyJobs/New-Grad-Positions/1fcf51ba8f7bce2d728fb6c2bcd7774794ad5562/.github/scripts/__pycache__/util.cpython-311.pyc
--------------------------------------------------------------------------------
/.github/scripts/contribution_approved.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import json
3 | import subprocess
4 | import sys
5 | import uuid
6 | from datetime import datetime
7 | import os
8 | import util
9 | import re
10 |
11 |
12 | def add_https_to_url(url):
13 | if not url.startswith(("http://", "https://")):
14 | url = "https://" + url
15 | return url
16 |
17 |
18 | def getData(body, is_edit, username):
19 | data = {}
20 | lines = [text.strip("# ") for text in re.split('[\n\r]+', body)]
21 | #["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_"]
22 |
23 | data["date_updated"] = int(datetime.now().timestamp())
24 |
25 | if "no response" not in lines[1].lower():
26 | data["url"] = add_https_to_url(lines[1].strip())
27 | if "no response" not in lines[3].lower():
28 | data["company_name"] = lines[3]
29 | if "no response" not in lines[5].lower():
30 | data["title"] = lines[5]
31 | if "no response" not in lines[7].lower():
32 | data["locations"] = [line.strip() for line in lines[7].split("|")]
33 | if "no response" not in lines[9].lower():
34 | data["sponsorship"] = "Other"
35 | for option in ["Offers Sponsorship", "Does Not Offer Sponsorship", "U.S. Citizenship is Required"]:
36 | if option in lines[9]:
37 | data["sponsorship"] = option
38 | if "none" not in lines[11].lower():
39 | data["active"] = "yes" in lines[11].lower()
40 | if is_edit:
41 | data["is_visible"] = "[x]" not in lines[13].lower()
42 |
43 | email = lines[15 if is_edit else 13].lower()
44 | if "no response" not in email:
45 | util.setOutput("commit_email", email)
46 | util.setOutput("commit_username", username)
47 | else:
48 | util.setOutput("commit_email", "action@github.com")
49 | util.setOutput("commit_username", "GitHub Action")
50 |
51 | return data
52 |
53 |
54 | def main():
55 | event_file_path = sys.argv[1]
56 |
57 | with open(event_file_path) as f:
58 | event_data = json.load(f)
59 |
60 |
61 | # CHECK IF NEW OR OLD JOB
62 |
63 | new_role = "new_role" in [label["name"] for label in event_data["issue"]["labels"]]
64 | edit_role = "edit_role" in [label["name"] for label in event_data["issue"]["labels"]]
65 |
66 | if not new_role and not edit_role:
67 | util.fail("Only new_role and edit_role issues can be approved")
68 |
69 |
70 | # GET DATA FROM ISSUE FORM
71 |
72 | issue_body = event_data['issue']['body']
73 | issue_user = event_data['issue']['user']['login']
74 |
75 | data = getData(issue_body, is_edit=edit_role, username=issue_user)
76 |
77 | if new_role:
78 | data["source"] = issue_user
79 | data["id"] = str(uuid.uuid4())
80 | data["date_posted"] = int(datetime.now().timestamp())
81 | data["company_url"] = ""
82 | data["is_visible"] = True
83 |
84 | # remove utm-source
85 | utm = data["url"].find("?utm_source")
86 | if utm == -1:
87 | utm = data["url"].find("&utm_source")
88 | if utm != -1:
89 | data["url"] = data["url"][:utm]
90 |
91 |
92 | # UPDATE LISTINGS
93 |
94 | listings = []
95 | with open(".github/scripts/listings.json", "r") as f:
96 | listings = json.load(f)
97 |
98 | listing_to_update = next(
99 | (item for item in listings if item["url"] == data["url"]), None)
100 | if listing_to_update:
101 | if new_role:
102 | util.fail("This role is already in our list. See CONTRIBUTING.md for how to edit a listing")
103 | for key, value in data.items():
104 | listing_to_update[key] = value
105 |
106 | util.setOutput("commit_message", "updated listing: " + listing_to_update["title"] + " at " + listing_to_update["company_name"])
107 | else:
108 | if edit_role:
109 | util.fail("We could not find this role in our list. Please double check you inserted the right url")
110 | listings.append(data)
111 | util.setOutput("commit_message", "added listing: " + data["title"] + " at " + data["company_name"])
112 |
113 | with open(".github/scripts/listings.json", "w") as f:
114 | f.write(json.dumps(listings, indent=4))
115 |
116 |
117 | if __name__ == "__main__":
118 | main()
119 |
--------------------------------------------------------------------------------
/.github/scripts/update_readmes.py:
--------------------------------------------------------------------------------
1 | import json
2 | from datetime import datetime
3 | import os
4 | import util
5 | import re
6 |
7 |
8 | def main():
9 |
10 | listings = util.getListingsFromJSON()
11 |
12 | util.checkSchema(listings)
13 | filtered = util.filterListings(listings, earliest_date=1714528377)
14 |
15 | util.sortListings(filtered)
16 | util.embedTable(filtered)
17 |
18 | util.setOutput("commit_message", "Updating README at " + datetime.now().strftime("%B %d, %Y %H:%M:%S"))
19 |
20 |
21 | if __name__ == "__main__":
22 | main()
23 |
--------------------------------------------------------------------------------
/.github/scripts/util.py:
--------------------------------------------------------------------------------
1 | import json
2 | import re
3 | from datetime import date, datetime, timezone, timedelta
4 | import random
5 | import os
6 |
7 | # SIMPLIFY_BUTTON = "https://i.imgur.com/kvraaHg.png"
8 | SIMPLIFY_BUTTON = "https://i.imgur.com/MXdpmi0.png" # says apply
9 | SHORT_APPLY_BUTTON = "https://i.imgur.com/fbjwDvo.png"
10 | SQUARE_SIMPLIFY_BUTTON = "https://i.imgur.com/aVnQdox.png"
11 | LONG_APPLY_BUTTON = "https://i.imgur.com/G5Bzlx3.png"
12 | INACTIVE_THRESHOLD_MONTHS = 4
13 |
14 | # Define categories with their correct anchor formats and emojis
15 | CATEGORIES = {
16 | "Software": {
17 | "name": "Software Engineering",
18 | "emoji": "💻"
19 | },
20 | "AI/ML/Data": {
21 | "name": "Data Science, AI & Machine Learning",
22 | "emoji": "🤖"
23 | },
24 | "Quant": {
25 | "name": "Quantitative Finance",
26 | "emoji": "📈"
27 | },
28 | "Hardware": {
29 | "name": "Hardware Engineering",
30 | "emoji": "🔧"
31 | }
32 | }
33 |
34 | def setOutput(key, value):
35 | with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
36 | print(f'{key}={value}', file=fh)
37 |
38 | def fail(why):
39 | setOutput("error_message", why)
40 | exit(1)
41 |
42 | def getLocations(listing):
43 | locations = "".join(listing["locations"])
44 | if len(listing["locations"]) <= 3:
45 | return locations
46 | num = str(len(listing["locations"])) + " locations"
47 | return f'**{num}**
{locations} '
48 |
49 | def getSponsorship(listing):
50 | if listing["sponsorship"] == "Does Not Offer Sponsorship":
51 | return " 🛂"
52 | elif listing["sponsorship"] == "U.S. Citizenship is Required":
53 | return " 🇺🇸"
54 | return ""
55 |
56 | def getLink(listing):
57 | if not listing["active"]:
58 | return "🔒"
59 | link = listing["url"]
60 | if "?" not in link:
61 | link += "?utm_source=Simplify&ref=Simplify"
62 | else:
63 | link += "&utm_source=Simplify&ref=Simplify"
64 | # return f'
'
65 |
66 | if listing["source"] != "Simplify":
67 | return f'
'
68 |
69 | simplifyLink = f"https://simplify.jobs/p/{listing['id']}?utm_source=GHList"
70 | return (
71 | f'
'
72 | f'

'
73 | f'

'
74 | f'
'
75 | )
76 |
77 | def mark_stale_listings(listings):
78 | now = datetime.now()
79 | for listing in listings:
80 | if listing["source"] != "Simplify":
81 | age_in_months = (now - datetime.fromtimestamp(listing["date_posted"])).days / 30
82 | if age_in_months > INACTIVE_THRESHOLD_MONTHS:
83 | listing["active"] = False
84 | return listings
85 |
86 | def filter_active(listings):
87 | return [listing for listing in listings if listing.get("active", False)]
88 |
89 | def create_md_table(listings):
90 | table = ""
91 | table = "| Company | Role | Location | Application | Age |\n"
92 | table += "| ------- | ---- | -------- | ---------- | --- |\n"
93 | prev_company = None
94 | prev_days_active = None
95 |
96 | for listing in listings:
97 | raw_url = listing.get("company_url", "").strip()
98 | company_url = raw_url + '?utm_source=GHList&utm_medium=company' if raw_url.startswith("http") else ""
99 | company = f"**[{listing['company_name']}]({company_url})**" if company_url else listing["company_name"]
100 | location = getLocations(listing)
101 | position = listing["title"] + getSponsorship(listing)
102 | link = getLink(listing)
103 |
104 | # Days active calculation
105 | days_active = (datetime.now() - datetime.fromtimestamp(listing["date_posted"])).days
106 | days_active = max(days_active, 0)
107 |
108 | days_display = (
109 | "0d" if days_active == 0 else
110 | f"{(days_active // 30)}mo" if days_active >= 30 else
111 | f"{days_active}d"
112 | )
113 |
114 | if prev_company == listing['company_name'] and prev_days_active == days_active:
115 | company = "↳"
116 | else:
117 | prev_company = listing['company_name']
118 | prev_days_active = days_active
119 |
120 | table += f"| {company} | {position} | {location} | {link} | {days_display} |\n"
121 |
122 | return table
123 |
124 |
125 | def filterListings(listings, earliest_date):
126 | final_listings = []
127 | inclusion_terms = ["software eng", "software dev", "data scientist", "data engineer", "founding eng", "research eng", "product manage", "apm", "frontend", "front end", "front-end", "backend", "back end", "full-stack", "full stack", "full-stack", "devops", "android", "ios", "mobile dev", "sre", "site reliability eng", "quantitative trad", "quantitative research", "quantitative trad", "quantitative dev", "security eng", "compiler eng", "machine learning eng", "hardware eng", "firmware eng", "infrastructure eng"]
128 | new_grad_terms = ["new grad", "early career", "college grad", "entry level", "founding", "early in career", "university grad", "fresh grad", "2024 grad", "2025 grad", "engineer 0", "engineer 1", "engineer i ", "junior", "sde 1", "sde i"]
129 | for listing in listings:
130 | if listing["is_visible"] and listing["date_posted"] > earliest_date:
131 | if listing['source'] != "Simplify" or (any(term in listing["title"].lower() for term in inclusion_terms) and (any(term in listing["title"].lower() for term in new_grad_terms) or (listing["title"].lower().endswith("engineer i")))):
132 | final_listings.append(listing)
133 |
134 | return final_listings
135 |
136 | def getListingsFromJSON(filename=".github/scripts/listings.json"):
137 | with open(filename) as f:
138 | listings = json.load(f)
139 | print("Recieved " + str(len(listings)) +
140 | " listings from listings.json")
141 | return listings
142 |
143 | def create_category_table(listings, category_name):
144 | category_listings = [listing for listing in listings if listing["category"] == category_name]
145 | if not category_listings:
146 | return ""
147 |
148 | emoji = next((cat["emoji"] for cat in CATEGORIES.values() if cat["name"] == category_name), "")
149 | header = f"\n\n## {emoji} {category_name} New Grad Roles\n\n"
150 | header += "[Back to top](#2025-new-grad-positions-by-coder-quad-and-simplify)\n\n"
151 |
152 | # Optional callout under Data Science section
153 | if category_name == "Data Science, AI & Machine Learning":
154 | header += (
155 | "> 🎓 Here's the [resume template](https://docs.google.com/document/d/1azvJt51U2CbpvyO0ZkICqYFDhzdfGxU_lsPQTGhsn94/edit?usp=sharing) that Pitt CSC and Stanford CS share with software new grads.\n"
156 | ">\n"
157 | "> 🧠 Want to know what keywords your resume is missing for a job? Use the blue Simplify application link to instantly compare your resume to any job description.\n\n"
158 | )
159 |
160 | # Sort and split
161 | active = sorted([l for l in category_listings if l["active"]], key=lambda l: l["date_posted"], reverse=True)
162 | inactive = sorted([l for l in category_listings if not l["active"]], key=lambda l: l["date_posted"], reverse=True)
163 |
164 | result = header
165 | if active:
166 | result += create_md_table(active) + "\n\n"
167 |
168 | if inactive:
169 | result += (
170 | "\n"
171 | f"🗃️ Inactive roles ({len(inactive)})
\n\n"
172 | + create_md_table(inactive) +
173 | "\n\n \n\n"
174 | )
175 |
176 | return result
177 |
178 | def classifyJobCategory(job):
179 | # First check if there's an existing category
180 | if "category" in job and job["category"]:
181 | # Map the existing category to our standardized categories
182 | category = job["category"].lower()
183 | if category in ["hardware", "hardware engineering", "embedded engineering"]:
184 | return "Hardware Engineering"
185 | elif category in ["quant", "quantitative finance"]:
186 | return "Quantitative Finance"
187 | elif category in ["ai/ml/data", "data & analytics", "ai & machine learning", "data science"]:
188 | return "Data Science, AI & Machine Learning"
189 | elif category in ["software", "software engineering"]:
190 | return "Software Engineering"
191 |
192 | # If no category exists or it's not recognized, classify by title
193 | title = job.get("title", "").lower()
194 | if any(term in title for term in ["hardware", "embedded", "fpga", "circuit", "chip", "silicon", "asic"]):
195 | return "Hardware Engineering"
196 | elif any(term in title for term in ["quant", "quantitative", "trading", "finance", "investment"]):
197 | return "Quantitative Finance"
198 | elif any(term in title for term in ["data science", "data scientist", "data science", "ai &", "machine learning", "ml", "analytics", "analyst" ]):
199 | return "Data Science, AI & Machine Learning"
200 | return "Software Engineering"
201 |
202 | def ensureCategories(listings):
203 | for listing in listings:
204 | listing["category"] = classifyJobCategory(listing)
205 | return listings
206 |
207 | def embedTable(listings):
208 | listings = ensureCategories(listings)
209 | listings = mark_stale_listings(listings)
210 |
211 | active_listings = filter_active(listings)
212 | category_counts = {}
213 | for category_info in CATEGORIES.values():
214 | count = len([l for l in active_listings if l["category"] == category_info["name"]])
215 | category_counts[category_info["name"]] = count
216 |
217 | total_active = len(active_listings)
218 | # Create category links with counts using correct anchor formats and emojis
219 | category_links = []
220 | for category_info in CATEGORIES.values():
221 | count = category_counts[category_info["name"]]
222 | anchor = category_info["name"].lower().replace(" ", "-").replace(",", "").replace("&", "")
223 | category_links.append(f"{category_info['emoji']} **[{category_info['name']}](#-{anchor}-new-grad-roles)** ({count})")
224 | category_counts_str = "\n\n".join(category_links)
225 |
226 | filepath = "README.md"
227 | newText = ""
228 | in_browse_section = False
229 | browse_section_replaced = False
230 | in_table_section = False
231 |
232 | with open(filepath, "r") as f:
233 | for line in f.readlines():
234 | if not browse_section_replaced and line.startswith("### Browse"):
235 | # Start of Browse section
236 | in_browse_section = True
237 | newText += f"### Browse {total_active} New Grad Roles by Category\n\n{category_counts_str}\n\n---\n"
238 | browse_section_replaced = True
239 | continue
240 |
241 | if in_browse_section:
242 | if line.startswith("---"):
243 | in_browse_section = False
244 | continue
245 |
246 | if not in_table_section and "TABLE_START" in line:
247 | in_table_section = True
248 | newText += line
249 | # Add page break before first category
250 | newText += "\n---\n\n"
251 | # Add tables for each category
252 | for category_info in CATEGORIES.values():
253 | newText += create_category_table(listings, category_info["name"])
254 | newText += "\n"
255 | table_section_replaced = True
256 | continue
257 |
258 | if in_table_section:
259 | if "TABLE_END" in line:
260 | in_table_section = False
261 | newText += line
262 | continue
263 |
264 | if not in_browse_section and not in_table_section:
265 | newText += line
266 |
267 | with open(filepath, "w") as f:
268 | f.write(newText)
269 |
270 | def sortListings(listings):
271 | oldestListingFromCompany = {}
272 | linkForCompany = {}
273 |
274 | for listing in listings:
275 | date_posted = listing["date_posted"]
276 | if listing["company_name"].lower() not in oldestListingFromCompany or oldestListingFromCompany[listing["company_name"].lower()] > date_posted:
277 | oldestListingFromCompany[listing["company_name"].lower()] = date_posted
278 | if listing["company_name"] not in linkForCompany or len(listing["company_url"]) > 0:
279 | linkForCompany[listing["company_name"]] = listing["company_url"]
280 |
281 | listings.sort(
282 | key=lambda x: (
283 | x["active"], # Active listings first
284 | x['date_posted'],
285 | x['company_name'].lower(),
286 | x['date_updated']
287 | ),
288 | reverse=True
289 | )
290 |
291 | for listing in listings:
292 | listing["company_url"] = linkForCompany[listing["company_name"]]
293 |
294 | return listings
295 |
296 |
297 | def checkSchema(listings):
298 | props = ["source", "company_name",
299 | "id", "title", "active", "date_updated", "is_visible",
300 | "date_posted", "url", "locations", "company_url",
301 | "sponsorship"]
302 | for listing in listings:
303 | for prop in props:
304 | if prop not in listing:
305 | fail("ERROR: Schema check FAILED - object with id " +
306 | listing["id"] + " does not contain prop '" + prop + "'")
--------------------------------------------------------------------------------
/.github/workflows/contribution_approved.yml:
--------------------------------------------------------------------------------
1 | name: Contribution Approved
2 |
3 | on:
4 | issues:
5 | types: ["labeled"]
6 |
7 | concurrency: add_internships
8 |
9 | jobs:
10 | run-python-script:
11 | runs-on: ubuntu-latest
12 | if: github.event.label.name == 'approved'
13 |
14 | steps:
15 | - name: Checkout Repository
16 | uses: actions/checkout@v3
17 |
18 | - name: Set up Python
19 | uses: actions/setup-python@v3
20 | with:
21 | python-version: "3.9"
22 |
23 | - name: execute contribution_approved.py
24 | id: python_script
25 | env:
26 | GITHUB_EVENT_PATH: ${{ github.event_path }}
27 | run: python .github/scripts/contribution_approved.py $GITHUB_EVENT_PATH
28 |
29 | - name: execute update_readmes.py
30 | id: python_script_readme
31 | run: python .github/scripts/update_readmes.py
32 |
33 | - name: commit files
34 | if: success()
35 | run: |
36 | git config --local user.email ${{ steps.python_script.outputs.commit_email }}
37 | git config --local user.name ${{ steps.python_script.outputs.commit_username }}
38 | git add .github/scripts/listings.json
39 | git add README.md
40 | git diff-index --quiet HEAD || (git commit -a -m "${{ steps.python_script.outputs.commit_message }}" --allow-empty)
41 |
42 | - name: push changes
43 | if: success()
44 | uses: ad-m/github-push-action@v0.6.0
45 | with:
46 | github_token: ${{ secrets.GITHUB_TOKEN }}
47 | branch: dev
48 |
49 | - name: Auto Close Issue
50 | run: gh issue close --comment "Your contribution was accepted. Auto-closing issue" ${{ github.event.issue.number }}
51 | if: success()
52 | env:
53 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54 |
55 | - name: Problem With Action
56 | run: gh issue comment ${{ github.event.issue.number }} --body "There was an error with our github action. Error - ${{ steps.python_script.outputs.error_message }} ${{ steps.python_script_readme.outputs.error_message }}"
57 | if: failure()
58 | env:
59 | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60 |
--------------------------------------------------------------------------------
/.github/workflows/update_readmes.yml:
--------------------------------------------------------------------------------
1 | name: Update READMEs
2 |
3 | on:
4 | push:
5 | paths:
6 | - '.github/scripts/listings.json'
7 | workflow_dispatch:
8 |
9 | concurrency:
10 | group: listings_update
11 | cancel-in-progress: true
12 |
13 |
14 | jobs:
15 | run-python-script:
16 | runs-on: ubuntu-latest
17 |
18 | steps:
19 | - name: Checkout Repository
20 | uses: actions/checkout@v3
21 |
22 | - name: Set up Python
23 | uses: actions/setup-python@v3
24 | with:
25 | python-version: "3.9"
26 |
27 | - name: execute update_readmes.py
28 | id: python_script
29 | run: python .github/scripts/update_readmes.py
30 |
31 | - name: Set commit message (with fallback)
32 | id: final_commit_message
33 | run: |
34 | msg="${{ steps.python_script.outputs.commit_message }}"
35 | if [ -z "$msg" ]; then
36 | msg="Auto commit: update README"
37 | fi
38 | echo "message=$msg" >> "$GITHUB_OUTPUT"
39 |
40 | - name: commit files
41 | if: success()
42 | run: |
43 | git config --local user.email action@github.com
44 | git config --local user.name 'Github Action'
45 | git add README.md
46 | git diff-index --quiet HEAD || \
47 | git commit -a -m "${{ steps.final_commit_message.outputs.message }}" --allow-empty
48 |
49 | - name: push changes
50 | if: success()
51 | uses: ad-m/github-push-action@v0.6.0
52 | with:
53 | github_token: ${{ secrets.GITHUB_TOKEN }}
54 | branch: dev
55 |
56 | - name: Problem With Action
57 | run: echo "There was an error with the github action. ${{ steps.python_script.outputs.error_message }}"
58 | if: failure()
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to the Job List
2 | Thank you for your interest in contributing to the Coder Quad and Simplify new-grad job list!
3 |
4 | Below, you'll find the guidelines for our repository. If you have any questions, please create a [miscellaneous issue](https://github.com/SimplifyJobs/New-Grad-Positions/issues/new/choose).
5 |
6 | ## Finding a Job to Add
7 | We ask that the jobs openings that you add meet some requirements. Specifically, your posting must
8 | - be in one of the following categories:
9 | - software/computer engineering
10 | - computer/data science
11 | - product management
12 | - quant
13 | - any other tech-related field
14 | - be for recently graduated students
15 | - be located in the United States, Canada, or remote.
16 | - not already exist in the list.
17 |
18 | ## Adding a Job
19 | Cool! You're ready to add a job to the list. Follow these steps:
20 |
21 | 1) First create a new issue [here](https://github.com/SimplifyJobs/New-Grad-Positions/issues/new/choose).
22 | 2) Select the **New Role** issue template.
23 | 3) Fill in the information about your job opening into the form, then hit submit.
24 | > Please make a new submission for each unique position, **even if they are for the same company**.
25 | 4) That's it! Once a member of our team has reviewed your submission, it will be automatically added to the `README`
26 |
27 | ## Editing a Job
28 | To edit a job posting (changing name, setting as inactive, removing, etc.), follow these steps:
29 | 1) First copy the url of the job you would like to edit.
30 | > This can be found by right-clicking on the `APPLY` button and selecting **copy link address**
31 | 2) Create a new issue [here](https://github.com/SimplifyJobs/New-Grad-Positions/issues/new/choose).
32 | 3) Select the **Edit Role** issue template.
33 | 4) Fill in the url to the **link** input.
34 | > This is how we ensure your edit affects the correct job posting
35 | 5) Leave every other input blank except for whichever fields you would like to update or change about the role.
36 | 6) If it is not obvious why you are making these edits, please specify why in the reason box at the bottom of the form.
37 | 7) Hit submit. A member of our team will review your revision and approve it shortly.
38 |
--------------------------------------------------------------------------------
/archived/README-2022.md:
--------------------------------------------------------------------------------
1 | # 2022 New Grad Applications
2 |
3 | The 2022 Full time grind has begun! Use this repo to share and keep track of any full time positions in quant, SWE, and PM.
4 |
5 | **Contribute by making a pull request!**
6 |
7 | ## Resources
8 | Here are some resources Coder Quad recommends to prepare for OA's and technical interviews!
9 | #### Books
10 | * [Competitive Programmer's Handbook](https://cses.fi/book/book.pdf)
11 |
12 | ## The List
13 |
14 | | Name | Location | Notes |
15 | |---|---|-------------|
16 | |[Akuna Capital](https://akunacapital.com/careers?experience=junior&department=development#careers) | Chicago | Various Junior Developer Positions |
17 | |[Amazon](https://www.amazon.jobs/en/jobs/1558079/software-development-engineer-2022-us?cmpid=SPLICX0248M&utm_source=linkedin.com&utm_campaign=cxro&utm_medium=social_media&utm_content=job_posting&ss=paid) | US | New Grad SDE |
18 | |[Arrowstreet Capital](https://arrowstreetcapital.wd5.myworkdayjobs.com/en-US/Arrowstreet/details/XMLNAME-2022-Technology-Rotational-Development-Program_R523) | Boston | SWE Technology Rotational Development Program |
19 | |[Jane Street](https://www.janestreet.com/join-jane-street/position/5311286002/) | NYC | |
20 | [Hudson River Trading](https://www.hudsonrivertrading.com/careers/job/?gh_jid=82675)| New York | Algo Developer, [SWE](https://www.hudsonrivertrading.com/careers/job/?gh_jid=86641) |
21 | |[Fidelity](https://jobs.fidelity.com/job-search-results/?parent_category[]=Technology)| Boston + others | Full-Stack Engineer and Others|
22 | |[Stytch](https://jobs.ashbyhq.com/stytch/b4ee9734-3657-4393-8eca-269ae179d7eb) | SF | |
23 | |[Cruise](https://boards.greenhouse.io/cruise/jobs/2364685) | SF | |
24 | |[Nvidia](https://nvidia.wd5.myworkdayjobs.com/UniversityJobs/) | Various | Many SWE New Grad positions |
25 | |[Airtable](https://boards.greenhouse.io/airtable/jobs/5311220002?) | SF | |
26 | |[Grubhub](https://careers-grubhub.icims.com/jobs/11919/software-engineer-i/job) | Chicago, NY, Boston | New Grad SWE (Spring/Winter 2022) |
27 | |[Asana](https://boards.greenhouse.io/earlycareerprograms/jobs/3261084) | SF | New Graduate: Software Engineering (2022 start)
28 | |[The Voleon Group](https://jobs.lever.co/voleon/a059b894-b468-4fb1-a86f-36fb63afe3a5) | Berkeley | |
29 | |[SIG](https://careers.sig.com/job/5471/Software-Developer-Campus-2022-Start) | Bala Cynwyd, PA | |
30 | |[Goldman Sachs](https://www.goldmansachs.com/careers/students/programs/americas/new-analyst-program.html) | Various | New Analyst (SWE and others)|
31 | |[Johnson & Johnson](https://jobs.jnj.com/jobs/2005853988W?lang=en-us&previousLocale=en-US) | Cincinnati | |
32 | |[Capital Group](https://jobs.capitalgroup.com/job/Los-Angeles-New-Grad-Software-Development-Engineer-I-CA-90071/740361000/) | LA | |
33 | |[DRW](https://drw.com/careers/job/1881596) | Austin, Chicago | |
34 | |[Five Rings](https://fiverings.avature.net/careers/FolderDetail/New-York-New-York-United-States-Software-Developer-Campus-Hire-Full-Time-Class-of-2022/543) | NYC | |
35 | |[Palantir](https://www.palantir.com/careers/) | NYC, Palo Alto, Seattle, London | Multiple SWE Positions |
36 | |[McKinsey](https://www.mckinsey.com/careers/search-jobs/jobs/analyst-softwareengineerdataengineerdatascientist-campusstudents-41876) | Multiple | SWE Consulting |
37 | |[Morgan Stanley](https://www.morganstanley.com/careers/career-opportunities-search#) | NYC, Alpharetta | |
38 | |[Vanguard](https://www.vanguardjobs.com/job-search-results/?category=Technology&level%5B%5D=Student%20%26%20Recent%20Graduates) | Multiple | |
39 | |[Belvedere Trading](http://www.belvederetrading.com/jobs/) | Chicago | Quant + Swe |
40 | |[Brex](https://www.brex.com/careers/engineering/5319155002?gh_jid=5319155002)| Remote | |
41 | |[Microsoft](https://careers.microsoft.com/us/en/job/1085245/Software-Engineering-Full-time-Opportunities-for-University-Graduates) | Multiple | |
42 | |[Facebook](https://www.facebook.com/careers/v2/jobs/213402246952404/) | Multiple | |
43 | |[Red Ventures](https://careers.redventures.com/positions.html?team=college&office=&brand=) | Multiple | |
44 | |[IMC](https://careers.imc.com/us/en/job/REQ-01188/Graduate-Software-Engineer) | Chicago | SWE, [Quant](https://careers.imc.com/us/en/job/REQ-01184/Graduate-Quant-Trader) |
45 | |[Optiver](https://www.optiver.com/working-at-optiver/career-opportunities/5423850002/) | Chicago, Austin | [SWE (Chicago)](https://www.optiver.com/working-at-optiver/career-opportunities/5423850002/), [SWE (Austin)](https://www.optiver.com/working-at-optiver/career-opportunities/5423874002/) |
46 | |[General Motors](https://search-careers.gm.com/job/GENEA0084JR000044848ENUS/Entry-Level-Global-Product-Development-Software-Engineer-Rotational-Program) | Warren, Michigan, United States of America | Entry Level Global Product Development – Software Engineer Rotational Program |
47 | |[Qualtrics](https://www.qualtrics.com/careers/us/en/job/260179/Software-Engineer-New-Grad-Seattle-WA) | Seattle, Provo | |
48 | |[Robinhood](https://robinhood.com/us/en/careers/openings/) | Menlo Park, CA | Multiple positions, listed under University at bottom of the page|
49 | |[Sunshine](https://jobs.lever.co/sunshine/a576f278-9748-49ab-b0b5-1104ef8880c4) | Palo Alto, CA | |
50 | |[PEAK6](https://careers.peak6.com/jobs/campus/chicago-il-united-states/software-engineer-campus-entry-level/3193254?gh_jid=3193254#/) | Chicago, IL | |
51 | |[Roblox](https://corp.roblox.com/careers/listing/?gh_jid=3185067) | San Mateo, CA | |
52 | |[Duolingo](https://boards.greenhouse.io/duolingo/jobs/5422486002?gh_src=10b1cce22us) | Pittsburgh, PA | |
53 | |[L3Harris](https://careers.l3harris.com/search-jobs/Software%20engineer%20new%20grad/4832/1?glat=40.71066&glon=-73.99903) | Many | |
54 | |[Secureframe](https://jobs.lever.co/secureframe/d90aa468-f846-413f-a9c9-0834d3dfa9d7) | SF (remote) | |
55 | |[Keysight Technologies](https://jobs.keysight.com/job/Santa-Rosa-R&D-Engineer-2%2C-Software-CA-95401/768839700/) | Santa Rosa, CA | |
56 | |[Citrix](https://jobs.citrix.com/job/R27644/University-Software-Engineer-2022) | Multiple | |
57 | |[Nuro](https://www.nuro.ai/careersitem?gh_jid=3355701) | Mountain View | |
58 | |[Capital One](https://campus.capitalone.com/job/mclean/technology-development-program-associate-2022/1786/19643594) | Multiple | |
59 | |[JP Morgan](https://jpmc.fa.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1001/job/210139739/apply/email?keyword=2022+Software+Engineer+Program+-+Full+Time+Opportunity) | NYC | |
60 | |[MathWorks](https://www.mathworks.com/company/jobs/opportunities/search?job_type_id%5B%5D=1756&keywords=new+graduate&location%5B%5D=US&posting_org_id%5B%5D=1&posting_team_id%5B%5D=6&posting_team_id%5B%5D=5&posting_team_id%5B%5D=22&posting_team_id%5B%5D=21&posting_team_id%5B%5D=12&posting_team_id%5B%5D=12&posting_team_id%5B%5D=3&posting_team_id%5B%5D=13&posting_team_id%5B%5D=1&posting_team_id%5B%5D=20&posting_team_id%5B%5D=11&posting_team_id%5B%5D=8&posting_team_id%5B%5D=4&posting_team_id%5B%5D=7&posting_team_id%5B%5D=18&posting_team_id%5B%5D=10&posting_team_id%5B%5D=9&posting_team_id%5B%5D=2) | Natick, MA | |
61 | |[PayPal](https://wd1.myworkdaysite.com/recruiting/paypal/jobs/job/San-Jose-CA/Software-Engineer---Recent-College-Graduate_R0075015) | Multiple Locations | |
62 | |[Salesforce](https://salesforce.wd1.myworkdayjobs.com/en-US/External_Career_Site/job/California---San-Francisco/AMTS-Software-Engineer_JR105192?d=cta-nav-sjb-1) | Multiple Locations | |
63 | |[Affirm](https://boards.greenhouse.io/affirm/jobs/4650345003) | Remote | |
64 | [Acorns](https://boards.greenhouse.io/acorns/jobs/2589045?gh_jid=2589045) | Irvine, CA | Option to be remote|
65 | |[IBM](https://careers.ibm.com/job/13459877/entry-level-associate-developer-commercial-remote/?codes=JB_EPH_JobBoard2021) | Various | |
66 | |[TIBCO Software](https://hrbrg.co/of6nni) | Chicago | SWE Messaging Engineering Team |
67 | |[Stripe](https://stripe.com/jobs/listing/new-grad-software-engineer/3368453?gh_src=73vnei) | Multiple | |
68 | |[Datadog](https://www.datadoghq.com/careers/detail/?gh_jid=3339660&gh_src=8363eca61) | New York | SWE |
69 | |[Quora](https://boards.greenhouse.io/quora) | Remote | SWE, ML, Data science |
70 | |[Benchling](https://www.benchling.com/careers/?gh_jid=3248513#detail) | San Francisco, Boston | |
71 | |[ElasticSearch](https://jobs.elastic.co/jobs/engineering/distributed-global/graduate-software-engineer/3342699?lang=en_us#/) | US, Canada, UK & others | SWE |
72 | |[Figma](https://jobs.lever.co/figma/54b745d8-29b1-45cd-8109-63213f524929) | SF, NYC | Software Engineer, New Grad (2022) |
73 | |[Silicon Labs](https://jobs.jobvite.com/silabs/job/odEEgfwv) | Austin, Boston | Software Engineer – New College Graduate |
74 | |[Cisco](https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-I-Full-Time-United-States/1337310) | Multiple | Software Engineer I (Full Time) United States - No Visa sponsorship |
75 | |[Aquatic](https://boards.greenhouse.io/aquaticcapitalmanagement) | Chicago | Quant, SWE |
76 | |[Citadel](https://www.citadel.com/careers/open-positions/positions-for-students/?keyword=Full%20Time) | New York, Chicago | Quant, SWE |
77 | |[Blend](https://boards.greenhouse.io/blend/jobs/4092807004) | SF, NYC, Remote | Software Engineer, New Grad |
78 | |[Zoom](https://zoom.wd5.myworkdayjobs.com/Zoom/1/refreshFacet/318c8bb6f553100021d223d9780d30be) | Remote | [Full Stack](https://zoom.wd5.myworkdayjobs.com/en-US/Zoom/job/Remote--CA---Bay-Area/XMLNAME-2022-Full-Stack-Development-Engineer--NEW-GRAD-_R5738), [Frontend](https://zoom.wd5.myworkdayjobs.com/en-US/Zoom/job/Remote--CA---Bay-Area/XMLNAME-2022-Front-End-Development-Engineer--NEW-GRAD-_R5740), [Backend](https://zoom.wd5.myworkdayjobs.com/en-US/Zoom/job/Remote--CA---Bay-Area/XMLNAME-2022-Back-End-Development-Engineer--NEW-GRAD-_R5741), [Devops](https://zoom.wd5.myworkdayjobs.com/en-US/Zoom/job/Remote--CA---Bay-Area/XMLNAME-2022-DevOps-Engineer--NEW-GRAD-_R5743-1) |
79 | |[Databricks](https://databricks.com/company/careers/open-positions/job?gh_jid=5488575002) | SF | |
80 | |[Point72](https://careers.point72.com/CSJobDetail?jobName=2022-cubist-software-engineer-program&jobCode=CSS-0003338) | NYC | Multiple roles |
81 | |[~~FactSet~~](https://factset.wd1.myworkdayjobs.com/en-US/FactSetCareers/job/New-York-NY-USA/Software-Engineer---Americas-Campus--July-2022-_R12000) | Multiple | |
82 | |[Ironclad](https://jobs.lever.co/ironcladapp/33179813-c6f6-439d-977d-0a68733d77cf) | SF | |
83 | |[Verkada](https://jobs.lever.co/verkada?department=Engineering&commitment=Full-Time) | San Mateo, CA | [Backend](https://jobs.lever.co/verkada/bec69e5c-a213-42b8-8bfa-bcde4da59623) [Frontend](https://jobs.lever.co/verkada/db65cdcd-d9a4-4c12-ac4e-18938a422601) [Computer Vision](https://jobs.lever.co/verkada/df9e9fcb-2d66-4e8d-8a3c-892a200d470a) [Embedded Systems](https://jobs.lever.co/verkada/df7390d9-b69f-4f3c-a43d-817cbf4af161)|
84 | |[Rippling](https://www.rippling.com/careers/4627196003?gh_jid=4627196003) | SF | |
85 | |[Yext](https://www.yext.com/careers/open-positions?facetFilters=%257B%2522c_jobCategory%2522%253A%255B%257B%2522c_jobCategory%2522%253A%257B%2522%2524eq%2522%253A%2522Interns%2520%2526%2520New%2520Grads%2522%257D%257D%255D%252C%2522c_jobLocationShortDescription%2522%253A%255B%255D%257D) | Multiple | Multiple roles |
86 | |[AnyScale](https://jobs.lever.co/anyscale/207867b9-8780-4e90-a82c-d8dd46ecba12) | SF| |
87 | |[DoorDash](https://boards.greenhouse.io/doordash/jobs/3393632?gh_jid=3393632) | Multiple | Software Engineer, New Grad (Winter 2021/Spring 2022) |
88 | |[Blackstone](https://blackstone.wd1.myworkdayjobs.com/en-US/Blackstone_Campus_Careers) | NYC, London + Others | SWE, Analyst, others |
89 | |[Twilio](https://www.twilio.com/company/jobs?department=students#open-positions) | SF, Denver | SWE, others |
90 | |[Workday](https://workday.wd5.myworkdayjobs.com/en-US/Workday_University_Careers) | Multiple | Multiple |
91 | |[EAB](https://eab.com/careers/open-positions/) | Multiple | Multiple "Associate" positions starting Summer 2022 |
92 | |[IXL](https://ie.ixl.com/company/careers) | San Mateo, Raleigh, Toronto | New Grad SWE |
93 | |[Visa](https://careers.smartrecruiters.com/Visa/university-recruiting) | Multiple | Multiple positions |
94 | |[Gem](https://www.gem.com/company/careers#jobboard) | San Francisco | New Grad Product Engineer (Rotation) |
95 | |[Indeed](https://ur-careers-indeed.icims.com/jobs/search?ics_keywords=Grad) | US-Remote | SWE |
96 | |[Restaurant Brands International](https://careers.rbi.com/global/en/c/campus-jobs) | Miami, Toronto | SWE, Leadership |
97 | |[Pinterest](https://www.pinterestcareers.com/job-search-results/?keyword=university%20grad%20swe&primary_category=University&job_type=Regular) | San Francisco, Palo Alto, Seattle, Toronto | SWE |
98 | |[Liberty Mutual](https://jobs.libertymutualgroup.com/job/13586540/2022-techstart-full-time-program-portsmouth-nh/) | Various | TechStart Full-Time Program |
99 | |[Two Sigma](https://careers.twosigma.com/careers/Careers?jobId=8473) | NYC | SWE |
100 | |[Accenture](https://www.accenture.com/us-en/careers/life-at-accenture/entry-level) | Multiple | Development programs - no separate links, click "Create Your Profile" |
101 | |[Becton Dickinson](https://bdx.wd1.myworkdayjobs.com/EXTERNAL_CAREER_SITE_USA/job/USA-CA---San-Diego-Bldg-AB/BD-Software-Development-Program--SDP-_R-410769-1) | CA, NJ, MD | Software Development Program |
102 | |[Vise](https://boards.greenhouse.io/viseai/jobs/4695495003) | NY | SWE |
103 | |[Circle](https://boards.greenhouse.io/circle/jobs/5506852002) | Ithaca, US-remote | SWE (Backend), SWE (Frontend), Data Scientist |
104 | |[Jerry](https://jobs.lever.co/getjerry/3f85c5dd-4b36-4035-a8b6-e54c349054e8) | Toronto, SF | SWE |
105 | |[OneTrust](https://www.onetrust.com/careers/detail/?gh_jid=3331757) | Atlanta | Java Developer, QA, Consultant (search "New Grad" on search bar) |
106 | |[Cadence](https://cadence.wd1.myworkdayjobs.com/en-US/Univ_Careers/job/SAN-JOSE/Software-Engineer--New-College-Graduate_R35300) | San Jose | SWE |
107 | |[Redfin](https://www.redfin.com/careers/departments/emerging-talent) | Seattle | [SWE](https://redfin.wd1.myworkdayjobs.com/redfin_careers/job/WA---Seattle/Full-Time-Opportunities-for-Recent-Graduates-OR-BootCamp-Graduates_40452), [Product Designer](https://redfin.wd1.myworkdayjobs.com/redfin_careers/job/WA---Seattle/Product-Designer--Full-Time-Opportunities-for-Students-and-Recent-Graduates_41458), [Product Management](https://redfin.wd1.myworkdayjobs.com/redfin_careers/job/WA---Seattle/Product-Manager--Full-Time-Opportunities-for-Students-and-Recent-Graduates_41361) |
108 | |[UBS](https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25008&siteid=5131&PageType=JobDetails&jobid=239106#jobDetails=239106_5131) | Multiple (US, London, Hongkong, Singapore...) | Tech, Banking, Asset Management, Multiple |
109 | |[DraftKings](https://draftkings.wd1.myworkdayjobs.com/DraftKings/) | Boston | [Analyst](https://draftkings.wd1.myworkdayjobs.com/en-US/DraftKings/job/Boston-MA/Analyst--December-2021-and-2022-Grads-Only-_JR1637), [SWE](https://draftkings.wd1.myworkdayjobs.com/en-US/DraftKings/job/Boston-MA/Software-Engineer--December-2021-and-2022-Grads-Only-_JR1633) |
110 | |[Coursera](https://jobs.lever.co/coursera/97594f4e-0906-4f7f-b183-0cc9a0e0885f) | Mountain View, Toronto | SWE |
111 | |[Delta Airlines](https://delta.avature.net/careers/SearchJobs/associate%20software%20engineer) | Atlanta | Associate SWE |
112 | |[Plaid](https://plaid.com/careers/openings/all-departments/all-locations/?role=new%20grad) | NYC, SF, Salt Lake City | SWE |
113 | |[SeatGeek](https://seatgeek.com/jobs/107959?gh_jid=107959) | NYC | SWE |
114 | |[Squarespace](https://www.squarespace.com/careers/jobs/3408877) | NYC | SWE |
115 | |[Western Digital](https://jobs.smartrecruiters.com/WesternDigital/743999770489869-software-engineering-new-college-grad-pursuing-bachelor-of-science-) | San Jose, CA | SWE |
116 | |[TikTok](https://careers.tiktok.com/position/7002790917644568845/detail) | MTV, SFO, SEA | SWE |
117 | |[Better](https://boards.greenhouse.io/better/jobs/3416543) | NYC | |
118 | |[Sentry](https://boards.greenhouse.io/sentry/jobs/3462843) | SF, Toronto | SWE |
119 | |[Abnormal Security](https://boards.greenhouse.io/abnormalsecurity/jobs/4708438003) | SF | SWE |
120 | |[HP Enterprise](https://careers.hpe.com/job/Hewlett-Packard-Enterprise-Roseville-California/160181802) | Multiple Locations in the US | SWE |
121 | |[MemSQL](https://boards.greenhouse.io/singlestore/jobs/3401522) | SF | SWE |
122 | |[Discovery](https://jobs.discovery.com/careers-home/jobs/27025?lang=en-us&previousLocale=en-US) | NY, WA, TN | SWE |
123 | |[Ebay](https://ebay.wd5.myworkdayjobs.com/en-US/apply/job/Software-Engineer--Recent-Graduate_R0049006) | Multiple Locations in the US | SWE |
124 | |[Expedia](https://lifeatexpediagroup.com/jobs?keyword=Graduate%20Software%20Development%20Engineer%20I%20-%20August%202022) | Seattle, Austin, Chicago | SWE |
125 | |[Audible](https://www.audiblecareers.com/job/newark/software-development-engineer-i/27552/19666722) | Newark, NJ | SWE |
126 | |[Ocient](https://www.ocient.com/jobs/?gh_jid=4578160003) | Remote (Based in Chicago) | SWE |
127 | |[Adobe](https://adobe.wd5.myworkdayjobs.com/external_university) | SF, San Jose, Seattle | 2022 University Graduate: [PM](https://adobe.wd5.myworkdayjobs.com/en-US/external_university/job/San-Francisco/XMLNAME-2022-University-Graduate--Product-Manager_R114940), [SDE](https://adobe.wd5.myworkdayjobs.com/en-US/external_university/job/Seattle/XMLNAME-2022-University-Graduate---Software-Development-Engineer_R114913), [SDE 1](https://adobe.wd5.myworkdayjobs.com/en-US/external_university/job/San-Jose/XMLNAME-2022-University-Graduate---Software-Development-Engineer-1_R114900) |
128 | |[Amdocs](https://jobs.amdocs.com/job/Plano-Software-Developer-Graduate-TX-75023/793531000/) | US, CA, Others | SWE, Software Test Engineer, Others ([Full list here](https://jobs.amdocs.com/search/?createNewAlert=false&q=Graduate&locationsearch=)) |
129 | |[GD Mission Systems](https://gdmissionsystems.com/careers/entry-level-software-engineer-san-jose-ca-usa-2021-48108-opportunity) | CA, VA, PA, others | SWE, EE, others ([Full list here](https://gdmissionsystems.com/careers/job-search?state=eyJ3aGF0IjoiZW50cnkgbGV2ZWwiLCJ3aGVyZSI6IiIsIklzVGVzdE1vZGUiOiIiLCJsYXRpdHVkZSI6bnVsbCwibG9uZ2l0dWRlIjpudWxsLCJhZGRyZXNzIjoiW10iLCJmYWNldHMiOltdfQ%3D%3D)) |
130 | |[GSK](https://jobs.gsk.com/en-gb/jobs/305824?lang=en-us&previousLocale=en-GB) | US, UK | Leader Program in Tech/Engineering/Finance/Supply Chain ([Full list here](https://jobs.gsk.com/en-gb/jobs/305824?lang=en-us&previousLocale=en-GB)) |
131 | |[Bloomberg](https://careers.bloomberg.com/job/detail/92290) | NY, Princeton, London, Singapore, Others | [SWE - NY](https://careers.bloomberg.com/job/detail/92290), [Data Analyst - Princeton](https://careers.bloomberg.com/job/detail/93660), [Financial Research Data Analyst - NY](https://careers.bloomberg.com/job/detail/93661) ([Full list here](https://careers.bloomberg.com/job/search?el=Students+and+Recent+Graduates)) |
132 | |[Broadway Technology](https://jobs.lever.co/broadwaytechnology/6824e17d-ac84-45f3-b269-46e7d5e2d3da) | Austin, NY, Canada | SWE, Consultant ([Full list here](https://jobs.lever.co/broadwaytechnology?department=Student)) |
133 | |[Lenovo](https://jobs.lenovo.com/en_US/careers/JobDetail/Advisory-Cloud-Engineer-Global-Future-Leaders/29204) | US, China | Global Future Leaders Program - ([Cloud Engineer](https://jobs.lenovo.com/en_US/careers/JobDetail/Advisory-Cloud-Engineer-Global-Future-Leaders/29204), [Software Product Manager](https://jobs.lenovo.com/en_US/careers/JobDetail/Software-Product-Manager-Global-Future-Leaders/28401), [others](https://jobs.lenovo.com/en_US/careers/SearchJobsUniversity)) |
134 | |[SingleStore](https://boards.greenhouse.io/singlestore/jobs/3437007) | Raleigh, Seattle, SF, Lisbon (Portugal) | SWE |
135 | |[Eightfold AI](https://app.eightfold.ai/careers/job?domain=volkscience.com&pid=68728335636) | Santa Clara | SWE |
136 | |[Old Mission Capitol](https://www.oldmissioncapital.com/careers/?gh_jid=4371488003) | Chicago | SWE, [Quant Trader](https://www.oldmissioncapital.com/careers/?gh_jid=4454178003)
137 | |[Flexport](https://boards.greenhouse.io/flexport/jobs/3479879?s=LinkedIn&source=LinkedIn) | Bellevue, Chicago (High Priority), San Francisco | SWE |
138 | |[NetApp](https://netapp.eightfold.ai/careers?query=NetApp%20Emerging%20Talent%20-%20Software%20%26%20QA%20Engineer) | Multiple Locations in the US | SWE, QA |
139 | |[Twitter](https://jobs.smartrecruiters.com/ni/Twitter2/38c17a4c-60d1-4333-b666-22632c1ce39b-2022-engineering-new-graduates-and-early-career-north-america-latin-america) | SF | Various Engineer Positions |
140 | |[Netflix](https://jobs.netflix.com/jobs/127236667) | Los Gatos, California | New Grad, Software Engineer |
141 | |[Square](https://www.smartrecruiters.com/Square/743999776502570) | SF, Remote | Software Engineer (New Grad) |
142 | |[Atlassian](https://www.atlassian.com/company/careers/detail/620921f2-c09c-4d3e-8bd2-f8781fbcc276) | CA, Remote | SWE, PM, Site Reliability Eng, Data Scientist ([Full list here](https://www.atlassian.com/company/careers/students))|
143 | |[Gusto](https://boards.greenhouse.io/gusto/jobs/3499021) | SF, NYC, Denver | No sponsorship |
144 | |[Google](https://careers.google.com/jobs/results/139295856164512454-software-engineer-early-career-campus/) | US, [Canada](https://careers.google.com/jobs/results/74898009881486022-software-developer-early-career-campus/) | SWE, [Front End](https://careers.google.com/jobs/results/91669597192626886-ux-engineer-front-end-early-career/) |
145 | |[Gap Inc](https://www.gapinc.com/en-us/jobs/37/63/gaptech-engineering-rotational-program-2) | San Francisco, Columbus, Atlanta, Dallas | SWE |
146 | |[Aura](https://careers-aura.icims.com/jobs/1479/platform-engineer/job) | Remote | SWE/Platform Engineer |
147 | |[Slack](https://salesforce.wd1.myworkdayjobs.com/en-US/Slack/job/California---San-Francisco/Associate-Software-Engineer--New-Grad----Slack_JR117902-2) | SF | SWE |
148 | |[Tucows](https://tucows.com/job/?gh_jid=4665305003) | Canada, USA, Fully Remote | SWE, PM ([Full list here](https://tucows.com/careers/opportunities/))|
149 | |[Benchling](https://www.benchling.com/careers/?gh_jid=3248513#detail) | SF, [Boston](https://www.benchling.com/careers/?gh_jid=3632416#detail) | |
150 | |[Jerry](https://jobs.lever.co/getjerry/3f85c5dd-4b36-4035-a8b6-e54c349054e8) | SF, [Vancouver](https://jobs.lever.co/getjerry/e0d8f129-4750-4b42-b950-d3ba2a96a604), [Toronto](https://jobs.lever.co/getjerry/192721da-da33-4a7a-8ece-aca135e52c14) | |
151 | |[WillowTree](https://www.willowtreeapps.com/careers/jobs?gh_jid=5525482002) | Charlottesville, Columbus, Durham NC | |
152 | |[Forward](https://jobs.lever.co/goforward/073d1961-b3fd-4515-a7a4-a34a2eedb74a?lever-source=ForwardJobsLP) | San Francisco |Full Stack |
153 | |[Merge](https://boards.greenhouse.io/merge/jobs/4147906004) | San Francisco, NYC | Full Stack |
154 | |[Orchard](https://boards.greenhouse.io/orchard/jobs/4822825002) | NYC | SWE |
155 | |[Coinbase](https://www.coinbase.com/careers/positions/1724688?gh_jid=1724688) | Remote | Full Stack |
156 | |[Raytheon Technologies](https://careers.rtx.com/global/en/job/191574MBR) | Riverdale, MD | Systems Engineer |
157 | |[Scale AI](https://scale.com/careers/4037926005) | San Francisco | Software Engineer |
--------------------------------------------------------------------------------
/archived/README-2023.md:
--------------------------------------------------------------------------------
1 |
2 | # 2023 New Grad Applications
3 |
4 | The 2023 Full time grind has begun! Use this repo to share and keep track of any full time positions in Quant, Data Scientist, SWE, ML Engineer and PM.
5 |
6 | **Contribute by making a pull request!**
7 |
8 | ## Resources
9 |
10 | Here are some resources Coder Quad recommends to prepare for OA's and technical interviews!
11 |
12 | #### Books
13 |
14 | - [Competitive Programmer's Handbook](https://cses.fi/book/book.pdf)
15 |
16 | ## The List
17 |
18 | | Name | Location | Notes |
19 | | -------------------------------------- | -------- | --------------------------------------- |
20 | | [Akuna Capital](https://akunacapital.com/careers?experience=junior&department=development#careers) | Chicago | Various Junior Developer Positions |
21 | | [~~Disney~~](https://disney.wd5.myworkdayjobs.com/en-US/disneycareer/job/Software-Engineer-I_10021078) | Burbank, CA | Software Engineer I |
22 | | [~~VMware~~](https://careers.vmware.com/main/jobs/R2212905?lang=en-us) | Palo Alto, California; Atlanta, Georgia | Launch New Grad SWE |
23 | | [~~IMC~~](https://imc.wd5.myworkdayjobs.com/invitation/job/Chicago/Graduate-Software-Engineer_REQ-01946#utm_source=peoplepath) | Chicago | Graduate Software Engineer |
24 | | [Palantir](https://jobs.lever.co/palantir/c34b424e-caf2-455a-b104-ae1096ccca29) | Denver, CO | Software Engineer, New Grad |
25 | | [Sofi](https://www.sofi.com/careers/) | NYC; Seattle; SF; Murrah, UT; Remote;... | Several "New Grad, Software Engineer" roles in "Engineering". Some of them may need to start in Jan 23 / ASAP |
26 | | [Egen Solutions](https://jobs.lever.co/egensolutions/b8241d47-ab6c-456c-823d-1a6bd59e402f) | Naperville, IL | Software Engineer, University Graduates, 2023 |
27 | | [~~Amazon~~](https://www.amazon.jobs/en/jobs/2080728/software-development-engineer-2023-us) | US | [New Grad SDE](https://www.amazon.jobs/en/jobs/2080728/software-development-engineer-2023-us), [New Grad Frontend](https://www.amazon.jobs/en/jobs/2141834/front-end-engineer-2023-us) |
28 | | [~~Sunshine~~](https://jobs.lever.co/sunshine/a576f278-9748-49ab-b0b5-1104ef8880c4/apply) | Palo Alto, CA | SWE New Grad 2023 |
29 | | [Jane Street](https://www.janestreet.com/join-jane-street/position/6214578002/) | NYC | Software Engineer, New Grad |
30 | | [~~Raytheon Technologies~~](https://careers.rtx.com/global/en/job/01544342) | Sterling, VA | Software Engineer I, New Grad |
31 | | [~Cruise~](https://www.getcruise.com/careers/jobs/3851967/?department=University%20Opportunities%20%26%20Internships&search=software%20engineer) | San Francisco, CA | New Grad, Software Engineer, Developer Platform |
32 | | [Goldman Sachs](https://www.goldmansachs.com/careers/students/programs/americas/new-analyst-program.html) | US | 2023 New Analyst Program |
33 | | [~~Applied Intuition~~](https://jobs.lever.co/applied/?team=New%20Grad) | Mountain View, CA | New Grad, Software Engineer |
34 | | [D. E. Shaw](https://www.deshaw.com/careers/choose-your-path) | NYC, London | Various tech roles |
35 | | [~~Indeed~~](https://university.indeed.jobs/university/jobs/39977?lang=en-us) | Remote | Associate Research Engineer |
36 | | [~~Capital One~~](https://www.capitalonecareers.com/job/mclean/technology-development-program-associate-2023/31238/31914108720) | US | Technology Development Program Associate |
37 | | [~~Virtu Financial~~](https://www.virtu.com/careers/) | New York, NY | Entry-Level Software Engineer |
38 | | [~~Citadel~~](https://www.citadel.com/careers/open-positions/positions-for-students/?keyword=Full%20Time) | US | Software Engineer |
39 | | [~~Philadelphia Phillies~~](https://boards.greenhouse.io/philadelphiaphilliesrddepartment/jobs/5203393003?gh_src=99fc01a23us) | Philadelphia, PA | Software Engineer Associate (Spring/Summer 2023) |
40 | | [~~Caterpillar~~](https://careers.caterpillar.com/en/jobs/job/r0000140356-2023-associate-software-engineer-cat-digital/?source=LinkedIn) | Champaign, IL | Associate Software Engineer (Cat Digital) |
41 | | [~~Procter & Gamble~~](https://www.pgcareers.com/job/cincinnati/software-data-engineer-2023-grads/936/32401863136) | Cincinnati, OH | Software/Data Engineer 2023 Grads |
42 | | [~Optiver~](https://grnh.se/57f5e82c2us) | US | [Austin](https://grnh.se/399a56ed2us). Quantitative trading for [Chicago](https://grnh.se/d3570d372us) and [Austin](https://grnh.se/7f269bd52us). Hardware engineer for [Chicago](https://grnh.se/c79a58512us) and [Austin](https://grnh.se/1490cbe32us). |
43 | | [Oracle](https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/requisitions?location=United%20States&locationId=300000000149325&selectedFlexFieldsFacets=%22AttributeChar16%7CCampusSoftware%22) | US | Software Engineer 2023 Grads |
44 | | [Cisco](https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-I-Full-Time-United-States/1380884?source=LinkedIn) | US multiple | [**No Visa Sponsorship**](https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-I-Full-Time-United-States/1380884?source=LinkedIn#:~:text=Able%20to%20legally%20live%20and%20work%20in%20the%20country%20for%20which%20you%E2%80%99re%20applying%2C%20without%20visa%20support%20or%20sponsorship%C2%A0); Software Engineer I (Full Time) United States |
45 | | [~~Stytch~~](https://jobs.ashbyhq.com/stytch/b4ee9734-3657-4393-8eca-269ae179d7eb) | San Francisco, CA | New Grad, Software Engineer |
46 | | [SIG](https://careers.sig.com/job/SUSQA004Y6229) | Bala Cynwyd, PA | Software Developer--Campus 2023 Start |
47 | | [~~Raytheon Technologies~~](https://careers.rtx.com/global/en/job/01501768/Software-Engineer-I-New-Grad) | Cedar Rapids, IA | Software Engineer I(New Grad)(Hybrid)|
48 | | [Qualcomm](https://qualcomm.wd5.myworkdayjobs.com/External/job/San-Diego-USA/Software-Engineer--University-Grad-_3043053?source=APPLICANT_SOURCE-6-2) | San Diego, CA | Software Engineer - New Grad|
49 | | [Five Rings](https://fiverings.avature.net/careers) | New York, NY | Software Developer--Campus 2023 Start |
50 | | [~Citrix~](https://citrix.wd1.myworkdayjobs.com/en-US/CitrixCareers/job/Software-Engineer--2023-_R34470) | US | Software Engineer 2023 |
51 | | [WeRide.ai](https://jobs.lever.co/weride/97063737-808b-4078-b1d8-8ffcef30635a) | San Jose, CA | Software Engineer (New Grad) |
52 | | [~~Otter.ai~~](https://otter.ai/job-detail?gh_jid=5120493003&gh_src=null) | ~~Mountain View, CA~~ | ~~Software Engineer, Backend (New Grad)~~|
53 | | [MathWorks](https://www.mathworks.com/company/jobs/opportunities/16217?source=19210&s_eid=Rci_19210) | Natick, MA | Multiple Openings - Engineering Development Group |
54 | | [Vanta](https://boards.greenhouse.io/vanta/jobs/5745472002) | New York, San Francisco | Software Engineer, New Grad |
55 | | [Verkada](https://jobs.lever.co/verkada/b0946e83-4174-4ecb-9873-6d0030ca1023) | San Mateo, CA | [Backend](https://jobs.lever.co/verkada/b0946e83-4174-4ecb-9873-6d0030ca1023), [Frontend](https://jobs.lever.co/verkada/dfcab784-b82e-4bcc-9949-3cff41a5084e) , [Security](https://jobs.lever.co/verkada/47c2d4d8-ee90-4809-8084-dabc2e93b321?lever-source=LinkedIn)|
56 | | [~Credit Suisse~](https://tas-creditsuisse.taleo.net/careersection/campus/jobdetail.ftl?job=213383&lang=en) | New York, NY; Raleigh, NC | 2023 Americas Technology Full-Time Analyst. For the role in Raleigh, search for the job title on their website. |
57 | | [Old Mission](https://www.oldmissioncapital.com/careers/?gh_jid=5193176003) | Multiple locations | College Graduates - Full-Time - Junior Software Engineer |
58 | | [~Abnormal Security~](https://careers.abnormalsecurity.com/open-roles?gh_jid=5131426003) | San Francisco, California | New Grad SWE |
59 | | [~~Audible~~](https://www.amazon.jobs/en/jobs/1999808/software-development-engineer?cmpid=SPLICX0248M&utm_source=linkedin.com&utm_campaign=audible&utm_medium=social_media&utm_content=job_posting&ss=paid) | Culver City, CA | Software Development Engineer|
60 | | [~~Argano~~](https://argano.hrmdirect.com/employment/view.php?req=2024176) | Remote | Junior Software Engineer|
61 | | [~~Microsoft~~](https://careers.microsoft.com/us/en/job/1388843/Software-Engineering-Full-Time-Opportunities-for-University-Graduates?jobsource=indeed&utm_source=indeed&utm_medium=indeed&utm_campaign=indeed-feed) | USA | New Graduate Software Engineer |
62 | | [~~Uber~~](https://university-uber.icims.com/jobs/116884/job) | San Francisco, Sunnyvale, CA; Seattle, WA; Boulder, CO; New York, NY; Toronto, ON | New Grad - Software Engineer I |
63 | | [~~Lawrence Livermore National Laboratory~~](https://www.llnl.gov/join-our-team/careers/find-your-job/all/software%20developer/3743990000246205) | Livermore, CA or remote | Software Developer |
64 | | [~~Hudson River Trading~~](https://www.hudsonrivertrading.com/careers/job/?_4118765=Full-Time%3A+New+Grad&_4168241=Software+Engineering%3AC%2B%2B&gh_jid=4454918&req_id=311) | Multiple | Software Engineer & [Algo Software Engineer](https://www.hudsonrivertrading.com/careers/job/?_4118765=Full-Time%3A+New+Grad&_4168241=Software+Engineering%3AC%2B%2B&gh_jid=4454781&req_id=310). For the roles in other locations, search for the job title on their website. |
65 | | [~~Roblox~~](https://jobs.roblox.com/careers?gh_jid=4395968) | San Mateo, CA| Software Engineer - New Grad (Summer 2023)|
66 | | [~~Ceridian~~](https://www.mydayforce.com/CandidatePortal/en-us/mydayforce/site/alljobs/Posting/View/43677) | Remote | Software Developer; 0 Experience Required
67 | | [Aquatic](https://boards.greenhouse.io/aquaticcapitalmanagement) | Chicago, IL or Remote | Junior Developer and Quant positions
68 | | [~~Neeva~~](https://jobs.lever.co/neeva/8f7622f3-174b-421b-88f2-407c89ef55fe?lever-source=LinkedInJobs) | Mountain View, CA | Software Engineer, New Grad, 2023 |
69 | | [Forward](https://jobs.lever.co/goforward/073d1961-b3fd-4515-a7a4-a34a2eedb74a) | San Francisco, CA| Software Engineer - New Grad Full Stack)|
70 | | [Cisco](https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-I-Full-Time-United-States/1380884?source=coderQuad) | San Jose, CA | Software Engineer I (Full Time)
71 | | [~Broadway Technology~](https://jobs.lever.co/broadwaytechnology/d364919b-64e9-464a-b848-04bc3a4dcd15?lever-origin=applied&lever-source%5B%5D=Handshake%20Applicant) | NYC | Software Engineer (New Grad-Fall 2022/Spring 2023) |
72 | | [~~Morgan Stanley~~](https://morganstanley.tal.net/vx/candidate/apply/12947) | NYC & more | 2023 Technology Full-Time Analyst Program. For the roles in other locations, look up the job title on their website. |
73 | | [Capstone Investment Advisors](https://www.capstoneco.com/careers/2023-technology-graduate-rotation-program-nyc/?gh_jid=6223901002) | NYC, London | 2023 Technology Graduate Rotation Program. For the role in London, look up the job title on their website. |
74 | | [~Seven Eight Capital~](https://www.seveneightcapital.com/join-us) | NYC | [2023 Software Engineer (Campus Hire Graduating 2023)](https://boards.greenhouse.io/seveneightcapital/jobs/6306094002?gh_jid=6306094002), Quant Developer, Quant Researcher roles also available |
75 | | [PEAK6](https://careers.peak6.com/jobs/technology-management/chicago-il-new-york-ny-austin-tx/software-engineer-campus-entry-level/4449643?gh_jid=4449643#/) | NYC & more | Software Engineer - Campus Entry-Level. The same application is used for all locations. |
76 | | [Bloomberg](https://careers.bloomberg.com/job/detail/105010) | New York, NY | 2023 Software Engineer
77 | | [Two Sigma](https://careers.twosigma.com/careers/SearchJobs/campus%20hire) | NYC, Houston(TX), and London | Software Engineer, Quantitative Researcher |
78 | | [Pure Storage](https://boards.greenhouse.io/purestorage/jobs/4462848) | Mountain View, CA | Software Engineer Grad (for Spring/Summer 2023) |
79 | | Databricks | Seattle / San Francisco | [Software Engineer - New Grad (2023 Start)](https://www.databricks.com/company/careers/open-positions/job?gh_jid=6289866002);
[Data Scientist - New Grad (2023 Start)](https://www.databricks.com/company/careers/open-positions/job?gh_jid=6289909002);
[IT Data Engineer New Grad (2023)](https://www.databricks.com/company/careers/open-positions/job?gh_jid=6414385002&gh_src=62a881d62);
[Salesforce Engineer New Grad (2023)](https://www.databricks.com/company/careers/open-positions/job?gh_jid=6414384002) |
80 | | [~Restaurant Brands International~](https://careers.rbi.com/global/en/job/6262048002/2023-Technical-Development-Program-TDP-Software-Engineering-Full-Time) | Miami, FL | 2023 Technical Development Program (TDP), Software Engineering (Full-Time). |
81 | | [~Johnson & Johnson~](https://jobs.jnj.com/jobs/2206060951W?lang=en-us) | Cincinnati, OH | Assistant/Associate Engineer, 2023 Engineering Development Program (EDP) |
82 | | [Jump Trading](https://www.jumptrading.com/careers/4457617/?gh_jid=4457617) | Chicago | Campus \| Software Engineer 2023 (Full-Time) |
83 | | [~~SRC~~](https://jobs.jobvite.com/src-inc/job/omtCkfwv) | Syracuse, NY | Software Engineer - New Grad |
84 | | [~~F5~~](https://f5.recsolu.com/jobs/-UQRHJZzdpMkPLRHVhQ7ew) | Seattle, WA | 2023 University Graduates - Software Engineer |
85 | | [EAB](https://recruit.hirebridge.com/v3/Jobs/JobDetails.aspx?cid=7856&jid=581704&locvalue=1036) | Remote & more | Associate Software Engineer (Full Time Starting Summer 2023) |
86 | | [~~Schmidt Futures~~](https://jobs.lever.co/schmidtfutures/b4a9e13d-8fdb-4e24-a104-3720442e5ddf) | NYC | Engineer, Technologists for Global Transformation (TGT) Program - Fall 2023. Accepts OPT and will sponsor work visas. |
87 | | [~~Crusoe Energy~~](https://jobs.lever.co/crusoeenergy/14a0355b-d17c-48ab-a697-529e008fe677) | San Francisco | University \| Software Engineer |
88 | | [~Roivant Sciences~](https://boards.greenhouse.io/roivantsciences/jobs/4457842) | NYC | Roivant Rotational Analyst 2023 (Tech) |
89 | | [~~Alcon~~](https://alcon.wd5.myworkdayjobs.com/careers_alcon/job/Fort-Worth-Texas/XMLNAME-2023-Envision-R-D-Program---Discipline-Track-2_R-2022-18015-1) | Fort Worth, TX & more | 2023 Envision R&D Programs - Discipline Track 2. Accepts OPT but will NOT sponsor work visas. |
90 | | [Quantcast](https://jobs.lever.co/quantcast/052ae051-4aad-4c51-af01-8f74c1756c57) | San Francisco | Software Engineer - New College Graduate |
91 | | [~~Figma~~](https://boards.greenhouse.io/figma/jobs/4595288004) | NYC, SF, and London | Software Engineer, Data Scientist, Product Design |
92 | | [Flatiron Health](https://flatiron.com/careers/open-positions/4454680) | New York, NY | Software Engineer (2023 New Graduate)
93 | | [~Circle~](https://boards.greenhouse.io/circle/jobs/6331155002) | Remote | New Grad Software Engineer, Backend/Frontend. Various locations and remote. Search under Engineering Department to see all locations |
94 | | [~~Google~~](https://careers.google.com/jobs/results/131020049566573254-software-engineer-early-career-campus/) | USA | Software Engineer, Early Career, Campus |
95 | | [American Express](https://aexp.eightfold.ai/careers?query=Campus&location=United%20States) | [Sunrise, FL](https://aexp.eightfold.ai/careers?query=Campus&location=United%20States&pid=12787262&domain=aexp.com) / [Phoenix, AZ](https://aexp.eightfold.ai/careers?query=Campus&location=United%20States&pid=12787218&domain=aexp.com) | **No Visa Sponsorship** SWE, Information Security, DS, PM... Check the website for more locations and positions. |
96 | | [SambaNova Systems](https://boards.greenhouse.io/sambanovasystems/jobs/4589084004) | Palo Alto, CA | NCG - Software Engineer |
97 | | [~Manulife~](https://manulife.wd3.myworkdayjobs.com/MFCJH_Jobs/job/Boston-Massachusetts/START-Program---Software-Engineering_JR22080183-1) | Boston, MA | START Program - New Grad (June 2023 Start) |
98 | | [NetApp](https://netapp.eightfold.ai/careers?pid=12956090&domain=netapp.com&utm) | San Jose, CA & more | NetApp Emerging Talent - Software Engineer. For the same role in other locations, look up the job title on their website. |
99 | | [~U.S. Bank~](https://careers.usbank.com/global/en/job/UBNAGLOBAL20220029893EXTERNALENGLOBAL) | Richfield, MN & more | 2023 Engineering Full-Time Rotation Program Early Careers (Undergraduate) |
100 | | [~~Rippling~~](https://www.rippling.com/careers/5237048003?gh_jid=5237048003) | San Francisco, CA | Software Engineer - New Grad |
101 | | [Bank of America](https://campus.bankofamerica.com/careers/global_technology_analyst_program__2023.html) | NYC & more | Global Technology Analyst Program - 2023 |
102 | | [~~Textron Specialized Vehicles~~](https://textron.taleo.net/careersection/textron/jobdetail.ftl?job=303763) | Augusta, GA | 2023 Software Engineer I |
103 | | [Gordian Software](https://jobs.ashbyhq.com/GordianSoftware/80539622-fb89-4806-9d1f-b319d100fedd/application) | Bellevue, WA & remote | Software Engineer (New College Graduate) |
104 | | [Neuralink](https://boards.greenhouse.io/neuralink/jobs/5285569003) | Fremont, CA & more | Software Engineer (Fresh Grad 2023) |
105 | | [~~Adobe~~](https://adobe.wd5.myworkdayjobs.com/en-US/external_university) | US | Multiple 2023 New Grad Roles |
106 | | [~~Levvel~~](https://jobs.lever.co/levvel/870a74c2-2ab1-46e4-83ff-c24d620b6c0f?lever-via=Emo8FrYRZ6/) | Remote | Junior Developer (Early Talent 2023) |
107 | | [~General Motors~](https://search-careers.gm.com/jobs/job/entry-level-software-engineering-rotational-program-warren-jr-000089747/) | Warren, MI | Entry-Level Software Engineering Rotational Program |
108 | | [Mueller Water Products](https://muellerwaterproducts.wd5.myworkdayjobs.com/en-US/Mueller/job/Atlanta-GA/XMLNAME-2023-Software-Engineer-Development-Program_R3169) | Atlanta, GA | 2023 Software Engineer Development Program |
109 | | [~RTI~](https://boards.greenhouse.io/rti/jobs/4510497?gh_src=aafe777a1us) | Greensboro, NC | Software Engineer - New Grad |
110 | | [Cat Digital](https://cat.wd5.myworkdayjobs.com/en-US/CaterpillarCareers/job/XMLNAME-2023-Software-Engineering-Recent-Grad-Positions---Cat-Digital_R0000153666) | Chicago & more | 2023 Software Engineering Recent Grad |
111 | | [Thomson Reuters](https://jobs.thomsonreuters.com/job/16553660/software-engineer-new-grad-2023-eagan-mn/) | Eagan, MN | Software Engineer - New Grad - 2023 |
112 | | [JPMorgan Chase](https://jpmc.fa.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1001/job/210321358) | US | **No Visa Sponsorship** Software Engineer. Check their website for more locations and positions. |
113 | | [~Thomson Reuters~](https://jobs.thomsonreuters.com/job/16553660/software-engineer-new-grad-2023-eagan-mn/) | Eagan, MN | Software Engineer - New Grad - 2023 |
114 | | [Silicon Labs](https://jobs.jobvite.com/silabs/job/oOjJkfwU) | Austin, TX | Software Engineer - New College Graduate |
115 | | [SpaceX](https://boards.greenhouse.io/spacex/jobs/6324788002?gh_jid=6324788002&gh_src=130ac1d82us) | USA | New Graduate, Software Engineer. Requires US Citizenship |
116 | | [~~Benchling~~](https://www.benchling.com/careers?jobId=4504765&gh_src=838b85821us) | Boston, MA | Software Engineer, New Graduate |
117 | | [~~NetFlix~~](https://jobs.netflix.com/jobs/225717269) | Los Gatos/ Los Angeles, California | New Grad 2023 (Undergrad) |
118 | | [~~Amdocs~~](https://jobs.amdocs.com/job/Champaign-Software-Engineer-New-Grad-IL/914631400/) | Champaign Illinois | Software Engineer - New Grad |
119 | | [~~National Instruments (NI)~~](https://pef.fa.us1.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX/job/5936?utm_medium=jobshare&utm_medium=jobboard&utm_source=Linkedin) | Austin, TX | Software Engineer - New Graduate. NO petition for H-1B status from student visas for this position. |
120 | | [~~ThoughtSpot~~](https://www.thoughtspot.com/job/4496761?gh_jid=4496761) | US Remote | Software Engineer (New Grad) [~~master candidate only~~](https://www.thoughtspot.com/job/4496761?gh_jid=4496761#:~:text=You%20are%20about%20to%20complete%20a%20master%E2%80%99s%20degree%20in%20Computer%20Science%2C%20Engineering%20or%20a%20related%20field.)|
121 | | [Whatnot](https://boards.greenhouse.io/whatnot/jobs/4309462004) | US Remote | Software Engineer - New Grad |
122 | | [Zscaler](https://jobs.smartrecruiters.com/Zscaler/743999839821324-cloud-operations-engineer-junior-new-grad-san-jose-ca) | San Jose, CA | **US Citizens Only** Cloud Operations Engineer (Junior/New Grad) |
123 | | [~~Multiply Labs~~](https://www.multiplylabs.com/join-us?gh_jid=4643686004&gh_src=a15a853d4us) | San Francisco & remote | Software Engineer - Summer / Fall 2023 |
124 | | [Viasat](https://careers.viasat.com/careers/SearchJobs/software?5924=%5B136579%2C136575%2C71960%2C136260%2C3676758%2C957887%2C447%2C136263%2C136276%2C136273%2C3565878%2C861477%2C861476%2C2141510%2C136264%2C450%2C451%2C4113995%2C438%2C136265%2C282724%2C136266%2C457%2C955417%2C445%2C955416%2C136267%2C453%2C429%2C1041212%2C3928212%2C136268%2C1703352%2C861478%2C2072344%2C796317%2C282732%2C4113999%2C796323%2C4110574%2C4110573%2C796319%2C796320%2C136280%2C136269%2C443%2C431%2C440%2C696735%2C136270%2C282733%2C2675930%2C3876358%2C136574%2C2675931%2C136277%2C136576%2C1815203%2C3695097%2C3708561%2C1703695%2C282719%2C1703694%2C436%2C136258%2C3243974%2C282722%2C430%2C437%2C71963%2C4113978%2C796325%2C136271%2C136573%2C2065633%2C136272%2C47975%2C2072343%2C861483%2C1815182%2C282720%5D&5924_format=4692&5925=%5B421%5D&5925_format=4693&5926=543&5926_format=4694&listFilterMode=1) | US multiple | Software Engineer Early Career. LOTS of them. *NOTE* Some requires US Citizenship or Permanent Resident |
125 | | [Dell Technologies](https://dell.wd1.myworkdayjobs.com/ExternalNonPublic/job/Round-Rock-Texas-United-States/Software-Engineer_R206821) | US Remote | Software Engineer |
126 | | [Bank of America](https://campus.bankofamerica.com/careers/global_technology_analyst_program__2023.html#:~:text=pursuing%20a%20BA/BS%20degree) | USA | Software Engineer (New Grad)|
127 | | [Duolingo](https://boards.greenhouse.io/duolingo/jobs/6302219002) | Pittsburgh, PA | [Software Engineer I, New Graduate](https://boards.greenhouse.io/duolingo/jobs/6302219002), [Operations Engineer, New Graduate](https://boards.greenhouse.io/duolingo/jobs/6444746002), and [AI Research Engineer, New PhD/Masters Graduate](https://boards.greenhouse.io/duolingo/jobs/6351942002) |
128 | | [Delta Airlines](https://delta.avature.net/careers/SearchJobs/associate%20software%20engineer) | Atlanta | Associate SWE |
129 | | [RVO Health](https://www.redventures.com/careers/apply/4518163) | Charlotte, NC | 2023 Software Engineer |
130 | | [Vecna](https://vecnahealthcare.com/careers/?gnk=job&gni=8a7885a882ae53b00182e5e79a5c0889&gns=LinkedIn%2BLimited) | Burlington, MA | New Grad - Software Engineer |
131 | | [~Western Digital~](https://jobs.smartrecruiters.com/WesternDigital/743999839535273-new-college-grad-engineer-software-engineering?trid=55fe2b03-11c1-41e1-ab70-337c7fd98d48) | Rochester, MN | New College Grad Engineer, Software Engineering |
132 | | [ByteDance](https://jobs.bytedance.com/en/position/7138210801609591077/detail?spread=BSPP2KS) | Mountain View, CA | Software Engineer, University Graduate (Lark)- 2023 Start (BS/MS) |
133 | | [Deutsche Bank](https://db.recsolu.com/external/requisitions/BdxMLqPU47fab0oSR7kz-g) | NYC & more | Deutsche Bank Analyst Program - Technology, Data and Innovation - New York - 2023. For the same role in other locations, google the job title. |
134 | | [~IBM~](https://careers.ibm.com/job/16565244/entry-level-backend-developer-2023-remote/?codes=IBM_CareerWebSite) | NYC & more | **No Visa Sponsorship** Entry Level Backend Developer: 2023. The same application is used for all locations. |
135 | | [~~Anyscale~~](https://jobs.lever.co/anyscale/207867b9-8780-4e90-a82c-d8dd46ecba12) | San Francisco, CA | Software Engineer (New Grad) |
136 | | [FactSet](https://factset.wd1.myworkdayjobs.com/FactSetCareers/job/New-York-NY-USA/Software-Engineer---Americas-Campus--July-2023-_R18011) | NYC & more | Software Engineer - Americas Campus (July 2023). Use the same application for all locations. |
137 | | [~~Belvedere Trading~~](https://jobs.lever.co/belvederetrading/58aa92b6-6444-43b5-bd67-cb75219a80f0) | Chicago, IL | Software Engineer - Entry Level 2023 |
138 | | [~~Ironclad~~](https://jobs.lever.co/ironcladapp/33179813-c6f6-439d-977d-0a68733d77cf) | San Francisco, CA | Software Engineer, New Grad |
139 | | [BlackRock](https://careers.blackrock.com/early-careers/americas/?2022-2023) | USA | Full-Time Analyst Program |
140 | | [~Western Digital~](https://jobs.smartrecruiters.com/WesternDigital/743999839535273-new-college-grad-engineer-software-engineering?trid=55fe2b03-11c1-41e1-ab70-337c7fd98d48) | Rochester, MN | New College Grad Engineer, Software Engineering |
141 | | [Paramount](https://careers.viacomcbs.com/job/Los-Angeles-Software-Engineering-Development-Program-%28Start-Date-January-June-2023%29-CA-90069/930477600/?feedId=340900&utm_source=LinkedInJobPostings&utm_campaign=ViacomCBS_LinkedIn) | Los Angeles, New York, San Francisco | Software Engineering Development Program (Start Date: January / June 2023)|
142 | | [~~Datadog~~](https://app.ripplematch.com/job/datadog/98af8a8c/) | NYC & more | Software Engineer - Recent Grad |
143 | | [Flexport](https://boards.greenhouse.io/flexport) | Bellevue, Chicago, San Francisco | Search for "2023 New Grad" in the openings page. 4 Available: Full-Stack Software Engineer for [Masters](https://boards.greenhouse.io/flexport/jobs/3878424) and [Undergrad](https://boards.greenhouse.io/flexport/jobs/4499827); [Machine Learning Scientist](https://boards.greenhouse.io/flexport/jobs/4515031); [Applied Research Scientist (PhD)](https://boards.greenhouse.io/flexport/jobs/4515144) |
144 | | [~AT&T~](https://www.att.jobs/search-jobs?orgIds=117&acm=61644) | US | **No Visa Sponsorship** SWE, DA, Network, and Technical Business Manager |
145 | | [~~Merge~~](https://boards.greenhouse.io/merge/jobs/4147906004?s=LinkedIn&source=LinkedIn) | San Francisco, CA & New York City, NY | New Grad 2023, Software Engineering |
146 | | [Visa](https://usa.visa.com/en_us/jobs/REF52473N) | Austin, TX | Software Engineer - Undergrad New College Grad - Multiple Locations - 2023 |
147 | | [Appian Corporation](https://app.ripplematch.com/job/appian/7d45c0ae/?tl=de206e19) | McLean, VA | Technology Strategy Engineer |
148 | | [Arm](https://earlycareers-arm.icims.com/jobs/6215/graduate-rotation-engineer---cpu/job?mode=submit_apply) | Austin, TX | Graduate Rotation Engineer - CPU |
149 | | [Netsmart](https://ntst.wd1.myworkdayjobs.com/Careers/job/Overland-Park-KS/Software-Engineer-May-Grad-2023--Campus-_R010688?source=LinkedIn) | Overland Park, KS | **No Visa Sponsorship** Software Engineer May Grad 2023 |
150 | | [TikTok](https://careers.tiktok.com/position?keywords=&category=&location=CT_203%2CCT_75%2CCT_222%2CCT_104%2CCT_223%2CCT_221%2CCT_247%2CCT_157%2CCT_243%2CCT_114%2CCT_94&project=&type=2&job_hot_flag=¤t=1&limit=10&functionCategory=) | Mountain View, Santa Clara, SF, Seattle, LA, and NYC | SWE, MLE, DS, SRE, and Researcher |
151 | | [~~Garda Capital Partner~~](https://boards.greenhouse.io/gardacp/jobs/4614474004) | NYC | Python Software Engineer |
152 | | [~~KBX~~](https://jobs.kochcareers.com/jobs/10523579-software-engineer-full-time-2023-remote?bid=370&tm_company=12614&tm_event=view&tm_job=KOCH-INFOR-81497-OTHLOC-US-CO-DENVER3) | Remote | Software Engineer - Full Time 2023 (Remote) |
153 | | [~EY~](https://studentjobs.ey.com/job/phoenix/usa-consulting-technology-consulting-staff/39053/35333171488) | NYC & more | USA - Consulting - Technology Consulting - Staff. Use the same application for any location. Will sponsor a work visa. |
154 | | [~PMG~](https://momentum.wd1.myworkdayjobs.com/PMG/job/Dallas-Office/Graduate-Leadership-Program---Software-Developer---Summer-2023_JR100144) | Dallas, TX | Graduate Leadership Program - Software Engineer - Summer 2023. Will sponsor a work visa. |
155 | | [Point72](https://careers.point72.com/CSJobDetail?jobName=2023-cubist-quant-academy-developers&jobCode=CSS-0010116) | NYC | 2023 Cubist Quant Academy--Developers |
156 | | [~Lam Research~](https://careers.lamresearch.com/job/Fremont-Software-Engineer-Sys-3-CA-94538/878792900/?feedId=157600) | Fremont, CA | ~New College Graduate Software Engineer~ |
157 | | [Cadence Design Systems](https://cadence.wd1.myworkdayjobs.com/External_Careers/job/SAN-JOSE/Software-Engineer-for-Mixed-Signal-Simulation-and-Verification--New-College-Graduate-_R40004-1) | San Jose, CA | Software Engineer for Mixed-Signal Simulation and Verification (New College Graduate). [Software Engineer (New College Graduate)](https://cadence.wd1.myworkdayjobs.com/External_Careers/job/SAN-JOSE/Software-Engineer--New-College-Graduate-_R40844-1) |
158 | | [~~PwC~~](https://jobs.us.pwc.com/job/los-angeles/products-and-tech-pwc-labs-software-engineer-associate-summer-fall-23/932/33431420992) | CA-Los Angeles,DC-Washington,GA-Atlanta,IL-Chicago,MA-Boston,NY-New York,US-Remote | Products & Tech - PwC Labs Software Engineer Associate Summer/Fall '23 |
159 | | [~PROS~](https://pros.wd5.myworkdayjobs.com/PROS_Careers/job/USA-Houston-Hybrid/XMLNAME-2023-University-Recruiting---Software-Engineer-I_R2428) | Houston, TX | 2023 University Recruiting - Software Engineer I |
160 | | [~~Qualtrics~~](https://www.qualtrics.com/careers/us/en/job/260179/Software-Engineer-New-Grad-Seattle-WA) | [Seattle](https://www.qualtrics.com/careers/us/en/job/260179/Software-Engineer-New-Grad-Seattle-WA), [Reston(VA)](https://www.qualtrics.com/careers/us/en/job/3559206/Software-Engineer-New-Grad-Reston-VA), [Provo(UT)](https://www.qualtrics.com/careers/us/en/job/180276/Software-Engineer-New-Grad-Provo-UT) | **No Visa Sponsorship** Software Engineer - New Grad |
161 | | [~~Fairmarkit~~](https://www.fairmarkit.com/careers?gh_jid=4653176004) | Remote | Software Engineer - 2023 New Grad |
162 | | [~~WillowTree~~](https://boards.greenhouse.io/willowtree/jobs/6330270002) | Multiple | Backend Software Engineer - New Grad 2023. Will NOT sponsor work visas. Use the same application for all locations. |
163 | | [~~Hudl~~](https://boards.greenhouse.io/hudl/jobs/3187136) | Remote | Software Engineer - December & May Graduates |
164 | | [~Aon~](https://jobs.aon.com/jobs/58607) | NYC & more | Early Careers: Cyber Associate - Nationwide. Use the same application for all locations. |
165 | | [~~Brex~~](https://www.brex.com/careers/6368437002) | Remote | Software Engineer, New Grad - c/o 2023 (Remote) |
166 | | [Atlassian](https://www.atlassian.com/company/careers/students) | Fully Remote, MTV | [SWE](https://www.atlassian.com/company/careers/detail/977df53a-539d-4b6c-9fbf-0167d8ffd83b), [Security](https://www.atlassian.com/company/careers/detail/c8c64071-c8be-402c-8ee7-147cfc2d5f93), [SRE](https://www.atlassian.com/company/careers/detail/3dd03324-aff9-4e59-b3c6-8516c530f868) - **Does not offer H1B sponsors for F1 visa holders** |
167 | | [~~Nike~~](https://jobs.nike.com/job/URSRCGTECHENGUD23) | Beaverton, Oregon | Software Engineer ([Undergraduate](https://jobs.nike.com/job/URSRCGTECHENGUD23), [Graduate with 1-3 years experience](https://jobs.nike.com/job/URSRCGTGD23)) |
168 | | Zoom | Remote; San Jose (CA) | [2023 Software Development Engineer - New Grad, US Remote](https://zoom.wd5.myworkdayjobs.com/Zoom/job/Remote--US/XMLNAME-2023-Software-Development-Engineer---New-Grad_R10542-1?source=linkedin);
[2023 Video Processing Software Engineer - New Grad, Master required, San Jose (CA)](https://zoom.wd5.myworkdayjobs.com/en-US/Zoom/job/XMLNAME-2023-Video-Processing-Software-Engineer---New-Grad_R10670);
[2023 Video Processing Algorithm Engineer - New Grad, San Jose (CA)](https://zoom.wd5.myworkdayjobs.com/Zoom/job/San-Jose-CA/XMLNAME-2023-Video-Processing-Algorithm-Engineer---New-Grad_R10671?source=linkedin);
[2023 DevOps Engineer - New Grad, **NO SPONSORSHIP**, US Remote](https://zoom.wd5.myworkdayjobs.com/Zoom/job/Remote--US/DevOps-Engineer_R10623-1?source=linkedin) |
169 | | [Nutanix](https://nutanix.eightfold.ai/careers?pid=13264357&domain=nutanix.com) | San Jose, CA (Hybrid) | Software Engineering - New Grad |
170 | | [Sentar](https://sentar.hrmdirect.com/employment/job-opening.php?req=2180283&job) | Huntsville, AL | **Need Active DoD Security Clearance at the SAP/SCI level or above** Junior Software Developer |
171 | | [M&T Bank](https://mtb.wd5.myworkdayjobs.com/Campus/job/Technology-Development-Program_R39785) | Buffalo, NY | **No Visa Sponsorship** Technology Development Program |
172 | | [~Zebra~](https://zebra.eightfold.ai/careers/job?domain=zebra.com&pid=343609669687) | Holtsville, New York | **No Visa Sponsorship** Software Engineer, I |
173 | | [~~Wells Fargo~~](https://www.wellsfargojobs.com/job/charlotte/2023-wells-fargo-technology-analyst-program-software-engineering/1251/35926657312) | Charlotte, NC | **No Visa Sponsorship** 2023 Wells Fargo Technology Analyst Program - Software Engineering |
174 | | [Citi](https://jobs.citi.com/job/new-york/icg-technology-full-time-analyst-software-development-new-york-city-north-america-2023/287/34889411712) | NYC, Tampa(FL), Jacksonville(FL), Dallas(TX), Mississauga(Canada) | **No Visa Sponsorship** ICG Technology, Full Time Analyst, Software Development (Check their website for more roles and more locations) |
175 | | [United Airlines](https://careers.united.com/job/16486849/associate-early-career-digital-leadership-program-campus-2023-hires-new-grads-chicago/) | Chicago,IL | **No Visa Sponsorship** Associate – Early Career Digital Leadership Program |
176 | | [~~American Airlines~~](https://jobs.aa.com/job/Dallas-Associate-Developer%2C-IT-Applications-ADEPT-TX-75201/931446100/) | DFW Airport, TX | Associate Developer, IT Applications ADEPT |
177 | | [~Peraton~](https://careers.peraton.com/job-details/16618504/software-engineer-entry-level-blacksburg-va-blacksburg-va/?utm_medium=%22mcloud-jobads%22&utm_campaign=Engineering&utm_content=Software%20Engineer%20(Entry-level)-%20Blacksburg,%20VA&utm_term=2022-124881&utm_source=Indeed) | Blacksburg, VA | **U.S. Citizenship and the ability to obtain and maintain a security clearance** Software Engineer (Entry-Level) |
178 | | [~Pinterest~](https://www.pinterestcareers.com/job/16663907/university-grad-software-engineer-usa-remote/) | US Remote | [University Grad Software Engineer](https://www.pinterestcareers.com/job/16663907/university-grad-software-engineer-usa-remote/) (**No Visa Sponsorship**)
[University Grad Machine Learning Engineer](https://www.pinterestcareers.com/job/16663106/university-grad-machine-learning-engineer-2023-usa-remote/) (**Sponsorship available, Masters only**) |
179 | | [Sentry](https://boards.greenhouse.io/sentry/jobs/4349409?s=LinkedIn&source=LinkedIn) | San Francisco, CA | Software Engineer, New Grad (2023) |
180 | | [DISCO](https://www.csdisco.com/careers/software-engineer-associate) | Austin, TX | Software Engineer Associate |
181 | | [ZipRecruiter](https://boards.greenhouse.io/ziprecruiter/jobs/4546753) | Santa Monica, CA or US Remote | Software Engineer - New Grad |
182 | | [Singularity Data](https://apply.workable.com/risingwave-labs/j/02769A5861/) | Santa Clara| Software Engineer (New Grad)-Cloud Database |
183 | | [~~New Relic,Inc.~~](https://newrelic.careers/careers/JobDetail/Associate-Software-Engineer/2847?s=LinkedIn&nl=0) | Remote | (**No Visa Sponsorship available**) Associate Software Engineer |
184 | | [~~Singularity Data~~](https://apply.workable.com/risingwave-labs/j/02769A5861/) | Santa Clara| Software Engineer (New Grad)-Cloud Database
185 | | [~~Intuit~~](http://jobs.intuit.com/job/mountain-view/software-engineer-1/27595/35078684656?utm_source=copy&utm_medium=social_post&utm_campaign=Intuit_social) | Mountain View, San Diego | Software Engineer 1 |
186 | | [~COGNEX~](https://cognex.wd1.myworkdayjobs.com/en-US/External_Career_Site/job/XMLNAME-2023-Campus-Recruitment---Software-Engineering-Development-Program_R0007730) | Natick, MA | [2023 Campus Recruitment - Software Engineering Development Program](https://cognex.wd1.myworkdayjobs.com/en-US/External_Career_Site/job/XMLNAME-2023-Campus-Recruitment---Software-Engineering-Development-Program_R0007730), [2023 Campus Recruitment - Applications Engineering Development Program](https://cognex.wd1.myworkdayjobs.com/en-US/External_Career_Site/job/XMLNAME-2023-Campus-Recruitment---Applications-Engineering-Development-Program_R0007731) |
187 | | [~~Lutron~~](https://careers-lutron.icims.com/jobs/2711/project-application-software-engineer-2023---cincinnati%2c-oh/job) | [Cincinnati, OH](https://careers-lutron.icims.com/jobs/2711/project-application-software-engineer-2023---cincinnati%2c-oh/job) and [Boynton Beach, FL](https://careers-lutron.icims.com/jobs/2521/project-application-software-engineer-2023---boynton-beach%2c-fl/job) | Project Application Software Engineer 2023 |
188 | | [~~McDonald's~~](https://jobs.smartrecruiters.com/McDonaldsCorporation/743999851126028-software-development-engineering-program-summer-2023-start-date-?trid=cf2fc9e8-2b80-4529-a4f8-99fd0e9a4297) | Chicago | **No Visa Sponsorship** Software Development Engineering Program |
189 | | [HPE](https://careers.hpe.com/us/en/hpe-interns-graduates) | San Jose(CA), Alpharetta(GA), Andover(MA), Bloomington(MN), Durham(NC), Ft. Collins(CO), Nashua(NH) | SDE, DS, PM, MLE ... |
190 | | [Northrop Grumman](https://www.northropgrumman.com/jobs/?country=United%20States%20of%20America&category=Engineering&search=2023%20Associate%20Software%20Engineer) | US | **Be able to obtain a U.S. Government security clearance (U.S. citizenship is a pre-requisite)** 2023 Associate Software Engineer |
191 | | [~~Bentley~~](https://jobs.bentley.com/job/Philadelphia-Software-Engineer-Rotation-Program-2023-Graduates-PA-19102/934779600/) | [Philadelphia, PA](https://jobs.bentley.com/job/Philadelphia-Software-Engineer-Rotation-Program-2023-Graduates-PA-19102/934779600/), [Huntsville, AL](https://jobs.bentley.com/job/Huntsville-Software-Engineer-Rotation-Program-2023-Graduates-AL-35806/934780500/), and [Burlington, ON, CA](https://jobs.bentley.com/job/Burlington-Software-Engineer-Rotation-Program-2023-Graduates-ON-L7L-5Z1/933088200/) | Software Engineer Rotation Program - 2023 Graduates |
192 | | [~~Twilio~~](https://boards.greenhouse.io/twiliostudents/jobs/4539524) | Remote | Software Engineer New Grad |
193 | | SingleStore | San Francisco, Seattle, North Carolina (Raleigh) | Software Engineer, Database Engine (University Graduate) |
194 | | [~~DoorDash~~](https://boards.greenhouse.io/doordash/jobs/4563590) | LOS ANGELES, CA; NEW YORK, NY; SAN FRANCISCO, CA; SEATTLE, WA; SOUTH BAY, CA; UNITED STATES - REMOTE | Software Engineer, Entry-Level 2022/23 |
195 | | [Fidelity](https://jobs.fidelity.com/job-details/16491200/2022-2023-undergraduates-leap-full-stack-engineer/) | Durham, NH; Westlake, TX; Merrimack, NH; Smithfield, RI; and Boston, MA | **No Visa Sponsorship** Undergraduates Full Stack Engineer |
196 | | [Okta](https://www.okta.com/company/careers/) | US Remote | ~~[New Grad Software Engineer, Devices Platform (Dec 2022)](https://www.okta.com/company/careers/engineering/software-engineer-devices-platform-new-grad-december-2022-4450143/?gh_src=7j0um41), [Software Engineer, (macOS) New Grad (December 2022)](https://www.okta.com/company/careers/engineering/software-engineer-macos-new-grad-december-2022-4563838/), [Software Engineer, Azure Integrations - New Grad (December 2022)](https://www.okta.com/company/careers/engineering/software-engineer-azure-integrations-new-grad-december-2022-4353520/)~~, ~~[Software Engineer, Customer Identity Cloud - New Grad (May/June 2023)](https://www.okta.com/company/careers/engineering/software-engineer-customer-identity-cloud-new-grad-mayjune-2023-4579647/)~~, ~~[Software Engineer in Test - New Grad (May/June 2023)](https://www.okta.com/company/careers/engineering/software-engineer-in-test-new-grad-mayjune-2023-4650432/)~~, ~~[Software Engineer, Engineering Services - New Grad (Dec 2022)](https://www.okta.com/company/careers/engineering/software-engineer-engineering-services-new-grad-dec-2022-4624884/)~~, [Competitive Intelligence, New Grad, Customer Identity Cloud](https://www.okta.com/company/careers/product/competitive-intelligence-new-grad-customer-identity-cloud-4620106/) |
197 | | [~~Lucid~~](https://boards.greenhouse.io/lucidsoftware/jobs/4365607004) | Remote, US | Software Engineer |
198 | | [~~Comcast~~](https://jobs.comcast.com/jobs/description/regular?job_id=R339662&external_or_internal=external) | Philadelphia, LA | CORE Technology Rotational Program |
199 | | [Mastercard](https://mastercard.wd1.myworkdayjobs.com/Campus/job/OFallon-Missouri/Software-Engineer_R-174382) | Multiple Locations | Software Engineer I |
200 | | [Walmart](https://careers.walmart.com/us/jobs/WD1241701-usa-2023-full-time-sams-club-software-engineer-ii) | BENTONVILLE, AR | (**No Visa Sponsorship available**) Sam's Club Software Engineer II |
201 | | [Draftkings](https://draftkings.wd1.myworkdayjobs.com/en-US/Campus_Career_Portal/) | Boston, MA | SWE, SRE, and Data Analyst |
202 | | [~USAA~](https://www.usaajobs.com/job/-/-/1207/36525714528) | San Antonio, Texas; Phoenix, Arizona; Plano, Texas | Software Engineer - Early Career(*Closed*) |
203 | | [BAE System](https://jobs.baesystems.com/global/en/search-results?keywords=2023%20Entry%20Level%20Software%20Engineer&s=1) | US | **Requires US Citizenship Status** 2023 Entry Level Software Engineer |
204 | | Nextdoor | San Francisco, CA / US Remote | Machine Learning Engineer - New Grad 2023 (Master / PhD required) ([SF](https://about.nextdoor.com/careers-list/?gh_jid=4571489), [Remote](https://about.nextdoor.com/careers-list/?gh_jid=4571500)); Software Engineer - New Grad 2023 ([SF](https://about.nextdoor.com/careers-list/?gh_jid=4328986)) |
205 | | [~Tebra~](https://boards.greenhouse.io/tebra/jobs/4094268005) | Newport Beach, CA (Remote) | Front End Software Engineer I |
206 | | [~~Rakuten Advertising~~](https://rakuten.wd1.myworkdayjobs.com/en-US/RakutenAdvertising/job/Associate-Software-Engineer_1012132-1) | San Mateo, CA; New York, NY; Midvale, Utah | Associate Software Engineer |
207 | | [PayPal](https://wd1.myworkdaysite.com/recruiting/paypal/jobs/job/San-Jose-California-United-States-of-America/Software-Engineer--Recent-Graduate_R0092213-1?Codes=W-LINKEDIN) | US multiple | Software Engineer- Recent Graduate |
208 | | [~~Lockedheed Martin~~](https://sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25037&siteid=5010&PageType=JobDetails&jobid=705384) | Marietta, GA | **Must be a US Citizen. This position is located at a facility that requires special access and an Interim Secret clearance required to start.** Software Engineer (Early Career) |
209 | | [ADP](https://tech.adp.com/job-search-results/?keyword=grad) | Norfolk, VA; Alpharetta, GA; Pasadena, CA; and Roseland, NJ | GPT Development Program – Associate Application Developer |
210 | | [Chewy](https://careers.chewy.com/us/en/job/4521685/Software-Engineer-1-2023-Campus-Recruiting) | Boston, MA; Minneapolis, MN; Plantation, FL; or Bellevue, WA | **Current permanent U.S. work authorization required** Software Engineer 1 – 2023 Campus Recruiting |
211 | | [H&R Block](https://sjobs.brassring.com/TGnewUI/Search/Home/Home?partnerid=25515&siteid=5710#home) | Kansas City | Search "Associate Software Engineer" for the roles, it needs ssn(*) |
212 | | [~Aurora~](https://aurora.tech/jobs/associate-software-engineer-6238945002) | MTV, Seattle, Louisville, Pittsburgh, and San Francisco | Associate Software Engineer (Check their website for other locations) |
213 | | [Samsara](https://www.samsara.com/company/careers/roles?departments=Early%20Career) | Remote - US | [~~SWE~~](https://boards.greenhouse.io/samsara/jobs/4475858?gh_jid=4475858), [Firmware](https://boards.greenhouse.io/samsara/jobs/4475594?gh_jid=4475594) |
214 | | [Anduril](https://jobs.lever.co/anduril/59640365-448f-49c3-bce3-8b83e0570197) | Costa Mesa, CA | **Need U.S. Person status** (Software Engineer)[https://jobs.lever.co/anduril/59640365-448f-49c3-bce3-8b83e0570197], (Mission Software Engineer)[https://jobs.lever.co/anduril/b0a84037-8a50-4584-8637-ec3f9389bf91], [Robotics Software Engineer](https://jobs.lever.co/anduril/e9eecced-536a-460a-8145-5c9fcdb84a8b), [Embedded Software Engineer](https://jobs.lever.co/anduril/13240f81-0325-41a7-b268-e9f464805bc8), [Electrical Engineer](https://jobs.lever.co/anduril/698c6c0b-9097-4028-bad3-44aaaaa07d0e) |
215 | | [~~nCino~~](https://ncino.wd5.myworkdayjobs.com/en-US/nCinoCareers/job/Salt-Lake-City-UT/Software-Engineer_R3627) | Salt Lake City, UT | **No Visa Sponsorship** Associate Software Engineer |
216 | | [IXL](https://ie.ixl.com/company/careers?gh_jid=6304481002) | [San Mateo, CA](https://ie.ixl.com/company/careers?gh_jid=6304481002); [Raleigh, NC](https://ie.ixl.com/company/careers?gh_jid=6304459002); and [Toronto, ON, Canada](https://ie.ixl.com/company/careers?gh_jid=6304303002) | Software Developer, New Grad |
217 | | [~Fannie Mae~](https://careers.smartrecruiters.com/FannieMae/fannie-mae-campus-full-time-job-openings) | [Plano, TX](https://jobs.smartrecruiters.com/FannieMae/743999851914330-campus-technology-program-associate-hybrid-?trid=625a4303-39ed-42ba-8966-7c3b33eb99f9); [Reston, VA](https://jobs.smartrecruiters.com/FannieMae/743999851912506-campus-technology-program-associate-hybrid-?trid=625a4303-39ed-42ba-8966-7c3b33eb99f9) | **Be authorized to work in the U.S. without sponsorship** Technology Program Associate (Hybrid) |
218 | | [Anduril](https://jobs.lever.co/anduril/59640365-448f-49c3-bce3-8b83e0570197) | Costa Mesa, CA and Atlanta, GA | **Need U.S. Person status** [Software Engineer](https://jobs.lever.co/anduril/59640365-448f-49c3-bce3-8b83e0570197), [Mission Software Engineer](https://jobs.lever.co/anduril/b0a84037-8a50-4584-8637-ec3f9389bf91), [Robotics Software Engineer](https://jobs.lever.co/anduril/e9eecced-536a-460a-8145-5c9fcdb84a8b), [Embedded Software Engineer](https://jobs.lever.co/anduril/13240f81-0325-41a7-b268-e9f464805bc8), [Electrical Engineer](https://jobs.lever.co/anduril/698c6c0b-9097-4028-bad3-44aaaaa07d0e) |
219 | | [Vanguard](https://www.vanguardjobs.com/job-search-results/?category=Technology&level[]=Student%20%26%20Recent%20Graduates) | US | **No Visa Sponsorship** several IT, application engineers, and security roles |
220 | | [Apple](https://jobs.apple.com/en-us/details/200430385/engineer-evolve-rotation-program?team=SFTWR) | Seattle, Austin, and NYC | Engineer, Evolve Rotation Program. Search "Engineer, Evolve Rotation Program" on their website for more locations |
221 | | [~~ServiceNow~~](https://careers.servicenow.com/careers/jobs/743999853831491EXT?lang=en-us) | Santa Clara, CA | Assoc Software Engineer |
222 | | [Intel](https://jobs.intel.com/job/phoenix/college-graduate-computer-science-bs-ms-phd/41147/35292770992) | Phoenix, AZ; Albuquerque, NM; Hillsboro, OR; Santa Clara, CA; and Columbus, OH | College Graduate - Computer Science (BS/MS/PHD) |
223 | | [~~Abbott~~](https://www.jobs.abbott/us/en/job/ABLAUS31037598ENUSEXTERNAL/Software-Engineer-I?utm_source=linkedin&utm_medium=phenom-feeds) | CALIFORNIA - SYLMAR | SOFTWARE ENGINEER I |
224 | | [TripActions](https://tripactions.com/job-openings/4488671?gh_jid=4488671&gh_src=b13de4e21) | Palo Alto, CA | Software Engineering Internship/ New College Grad |
225 | | [ExodusPoint Capital](https://boards.greenhouse.io/exoduspoint/) | NYC, London | Graduate Python Developer, Infrastructure Graduate Analyst, Technology Developer – Rotational Program, and Junior Trading Engineer. Some may need Master/Phd degree. |
226 | | [Awardco](https://www.award.co/careers) | Pleasant Grove, Utah | (**No Visa Sponsorship available**) [Back-End SWE (C# and .NET Framework)](https://www.award.co/position?gh_jid=4118198004) and [Salesforce Developer](https://award.co/position?gh_jid=4664842004) |
227 | | [~~Demiurge Studios~~](https://jobs.lever.co/demiurgestudios/95ac4f8a-e374-41e5-9136-afaa58b74c63) | Boston, MA | 2023 Associate Software Engineer |
228 | | [~~Vontive~~](https://apply.workable.com/vontive/j/A66EF3C988/) | San Francisco | New Grad Software Engineer (2023) |
229 | | [~~CrowdStrike~~](https://crowdstrike.wd5.myworkdayjobs.com/en-US/crowdstrikecareers/details/Cloud-Engineer---SRE--Remote-_R10039?q=2023) | USA,Remote | Cloud Engineer - SRE |
230 | | [Expedia](https://careers.expediagroup.com/jobs/?keyword=early+careers&&filter[category]=Technology&filter[country]=United+States) | Seattle,Austin,Chicago | Multiple Roles DS,SDE,Machine Learning
231 | | [eBay](https://app.ripplematch.com/job/ebay/58692682/)|San Jose, CA, USA - San Francisco, CA, USA - Austin, TX, USA - Salt Lake City, UT, USA +4|Software Engineer, Recent College Graduate|
232 | | [~Boeing~](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer_00000304196-1) | Multiple locations | **Need U.S. Person status** [Entry Level Software Engineer](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer_00000304196-1), [Entry Level Software Engineer - F15 USAF Trainers](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer---F15-USAF-Trainers_00000337291-1), [Entry Level Real Time Software Engineer](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Real-Time-Software-Engineer_00000342554-1)
233 | | [Decide](https://boards.greenhouse.io/decide/jobs/4080847005) | Austin, TX Remote | Software Engineer, Integration Development |
234 | | [~Boeing~](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer_00000304196-1) | Multiple locations | **Need U.S. Person status** [Entry Level Software Engineer](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer_00000304196-1), [Entry Level Software Engineer - F15 USAF Trainers](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Software-Engineer---F15-USAF-Trainers_00000337291-1), [Entry Level Real Time Software Engineer](https://boeing.wd1.myworkdayjobs.com/en-US/EXTERNAL_CAREERS/job/Entry-Level-Real-Time-Software-Engineer_00000342554-1) |
235 | | [Cloudflare](https://boards.greenhouse.io/cloudflare/jobs/4557684) | Multiple locations | Software Engineer - New Grad
236 | | [Forbes](https://boards.greenhouse.io/forbes/jobs/4659385004) | Jersey City, NJ | [Junior Software Engineer, Systems](https://boards.greenhouse.io/forbes/jobs/4659385004) |
237 | | [~Codvo~](https://www.glassdoor.co.in/job-listing/sde-codvo-ai-JV_KO0,3_KE4,12.htm?jl=1008139209570&trk=bingjobs) | Remote-India | SDE-Full time - 2 years Experience Required |
238 | | [NXP](https://nxp.wd3.myworkdayjobs.com/careers/job/Austin-Oakhill-Office/Entry-Level-Software-Engineers---December-2022-and-May-2023-Graduates_R-10043733?source=web_handshake) | Austin (Oakhill, Office), San Jose (Plumeria Dr), Irvine, San Diego, Austin (Ed Bluestein, Office), Chandler (Office) | Entry Level Software Engineers - December 2022 and May 2023 Graduates |
239 | | [Voleon](https://jobs.lever.co/voleon/a059b894-b468-4fb1-a86f-36fb63afe3a5) | BERKELEY, CA OR AUSTIN, TX | Software Engineer - University Hire 2023 |
240 | | [Observe](https://jobs.lever.co/observeinc/0df1b2ef-0118-4cc1-b219-f11bf06faceb) | San Mateo | [Software Engineer: Frontend, New Grad](https://jobs.lever.co/observeinc/0df1b2ef-0118-4cc1-b219-f11bf06faceb);
[Software Engineer: Core Platform](https://jobs.lever.co/observeinc/0b61025a-cf38-4893-bacc-e12990e616df) |
241 | | [~Baseten~](https://jobs.ashbyhq.com/baseten/f0b68c84-4110-4097-81fe-248842fe4a6b) | San Francisco, CA / US Remote | ~Full Stack SWE - New Grad~
242 | | [~~Snackpass~~](https://boards.greenhouse.io/snackpass/jobs/4566648004) | NYC, SF, LA, Remote | **No Visa Sponsorship** Full Stack Software Engineer ||[Tackle.io](https://jobs.lever.co/tackle/884413e2-082a-41f1-86da-f53164d1f955) | US Remote | Software Engineer New Graduate |
243 | | [~Liberty Mutual~](https://jobs.libertymutualgroup.com/job/16486204/2023-techstart-full-time-program-portsmouth-nh/#tab-id-1) | Portsmouth, NH;Indianapolis, IN; Boston, MA; Dover, NH; Seattle, WA | **Authorized to work in the U.S. without restrictions** 2023 TechStart Full-Time Program |
244 | | [Veeva](https://jobs.lever.co/veeva/67720ee3-fa21-49cc-83f0-5bd60e972e85) | Pleasanton, CA; Columbus, OH; Boston, MA; Toronto, Canada | **Work visa sponsorship is available for Masters/PhDs** Search "Associate Software Engineer" on https://jobs.lever.co/veeva/ for roles opened to Bachelors and in other locations |
245 | | [~Sage~](https://www.sage.com/en-us/company/careers/career-search/?keywords=Early%20Careers%20Program&page=1) | Richmond, BC, Canada | Associate Test Engineer, Associate Data Engineer, and Junior Software Developer |
246 | | [Interactive Brokers](https://boards.greenhouse.io/ibkr/jobs/6378233002) | North America | Multiple locations. Role matched to your qualifications. |
247 | | [Norfolk Southern](https://jobs.nscorp.com/job/Atlanta-Associate-Developer-Trainee-2023-GA-30308/945994000/) | Atlanta | [Associate Developer Trainee 2023](https://jobs.nscorp.com/job/Atlanta-Associate-Developer-Trainee-2023-GA-30308/945994000/) and [Jav/J2EE Application Developer Trainee 2023](https://jobs.nscorp.com/job/Atlanta-JavJ2EE-Application-Developer-Trainee-2023-GA-30308/946001500/) |
248 | | [~Relay~](https://www.linkedin.com/jobs/view/3310335943/?refId=41358236-dbe3-455c-90bb-f5a3ce38b8f4&trackingId=CMh%2BOu8jSMO3idvLVjtU5Q%3D%3D) | Raleigh-Durham-Chapel Hill Area (Hybrid) | Software Engineer - Early Career |
249 | | [Northern Trust](https://careers.northerntrust.com/jobs/new-grad-technology-chicago-33462) | [Chicago](https://careers.northerntrust.com/jobs/new-grad-technology-chicago-33462) and [except Chicago](https://careers.northerntrust.com/jobs/early-career-technology-all-us-locations-except-chicago-29161) | **No Visa Sponsorship** [New Grad Technology - Chicago](https://careers.northerntrust.com/jobs/new-grad-technology-chicago-33462) and [Early Career Technology - All US locations (except Chicago)](https://careers.northerntrust.com/jobs/early-career-technology-all-us-locations-except-chicago-29161) |
250 | | [~Airtable~](https://grnh.se/f142e2602us) | San Francisco, CA; New York, NY | Software Engineer, New Grad (2023)|
251 | | [~Medallion~](https://boards.greenhouse.io/medallion/jobs/4148296004?utm_source=Simplify) | Remote | New Graduate Software Engineer
252 | | [Nightfall AI](https://jobs.lever.co/nightfall/d9edaa15-300f-48b0-9481-556ad995cd00) | San Francisco | [New Grad Full Stack Engineer](https://jobs.lever.co/nightfall/d9edaa15-300f-48b0-9481-556ad995cd00) and [New Grad Backend Engineer](https://jobs.lever.co/nightfall/80cdcd6e-1d19-41c5-9eeb-ee1b3d4d5a56) |
253 | | [~~Niantic~~](https://boards.greenhouse.io/niantic/jobs/6452435002) | Lawrence, KS | Software Engineer, New Grad |
254 | | [Constant Contact](https://careers.constantcontact.com/global/en/job/4605737/Software-Engineering-Development-Program-United-States) | Waltham | Software Engineering Development Program (United States) |
255 | | Stytch | San Francisco | [Software Engineer - New Grad 2023](https://jobs.ashbyhq.com/stytch/b4ee9734-3657-4393-8eca-269ae179d7eb?utm_source=35JPEzvE9E) |
256 | | [Sprout Social](https://sproutsocial.com/careers/open-positions/?gh_jid=4503546&gh_src=4d2fd2d61us#/4503546) | Remote US | Associate Software Engineer - New Grad |
257 | | [C3.ai](https://c3.ai/job-description/?gh_jid=6345004002) | Redwood City, CA | Software Engineer - Early Professional (2023) |
258 | | [Cleanlab.ai](https://cleanlab.ai/careers/) | Remote | **Full-time positions start summer 2023** Backend Engineer, Frontend Engineer, Full-Stack Engineer, Infrastructure Engineer, ML Engineer, and Research Scientist |
259 | | [SAP](https://jobs.sap.com/job/Palo-Alto-SOFTWARE-ENGINEERING-SAP-Next-Talent-Rotational-Program-%282023-Grads%29-CA-94304/865869201/) | Palo Alto, CA | **Requirement of not needing permanent US work authorization (now nor in the future) to be considered, there is no visa sponsorship available at this time.** SOFTWARE ENGINEERING: SAP Next Talent - Rotational Program (2023 Grads) |
260 | | [~Glean~](https://boards.greenhouse.io/gleanwork/jobs/4006730005) | Palo Alto | Software Engineer - University Grad |
261 | | [Charles Schwab](https://jobs.schwabjobs.com/job/westlake/associate-software-development-and-engineering/33727/39220254208) | Westlake, TX; Austin, TX; Phoenix, AZ; Ann Arbor,MI ;Jersey City, NJ; Chicago, IL; Lone Tree, CO; Raleigh, NC | **A graduation date of December 2022 or earlier and ability to start full time with the program on January 23rd** Associate - Software Development & Engineering |
262 | | Radical Semiconductors | Los Angeles, CA | **No Visa Sponsorship** [Full-Stack Product Engineer (New Grad)](https://simplify.jobs/p/4695e0d6-77c6-453c-ab8c-239abb28a450/Full-Stack-Product-Engineer-New-Grad) |
263 | | Affirm | Remote(US) | [Software Engineer, New Grad 2023](https://boards.greenhouse.io/affirm/jobs/5249942003?t=54db7ac73us)|
264 | | [2K (Visual Concepts)](https://boards.greenhouse.io/visualconcepts/jobs/5293521003) | Austin, TX | **This is a great opportunity ideally starting in January 2023.** Associate Software Engineer (Please check their websites for other locations and roles, but can't confirm if they are ng roles.) |
265 | | [Blend360](https://careers.smartrecruiters.com/Blend360?search=new%20grad) | Denver, CO; Columbia, MD | Data Engineer and Data Scientist |
266 | | [Tektronix](https://careers.fortive.com/job/FORTUSTEK011301/2023-Engineering-Rotation-Program-Participant?utm_source=linkedin&src=SNS-10043&utm_medium=phenom-feeds&src=SNS-10043) | Beaverton, Oregon | 2023 Engineering Rotation Program |
267 | | Gartner | Stamford, CT; Irving, TX | [Associate Software Engineer (LAUNCH Rotational Program - 2023 Grads)](https://jobs.gartner.com/jobs/job/70128-associate-software-engineer-launch-rotational-program-2023-grads/)|
268 | | [Washington University School of Medicine](https://medicine.wustl.edu) | [St. Louis](https://goo.gl/maps/6K2ZDhTL8D8Rz12AA)/Remote | [Application Developer - WashU IT Research Infrastructure Services](https://wustl.wd1.myworkdayjobs.com/External/job/Washington-University-Medical-Campus/Application-Developer-Opportunities---WUIT---Research-Application-Engineering_JR66760) |
269 | | [~~Auterion~~](https://auterion.com/company/careers-open-position/?gh_jid=6414930002) | Sorrento Valley, CA | **Require US Citizenship.** Frontend Software Engineer, Web Applications (New Graduate) ||
270 | | Grant Street Group | Remote | **No Visa Sponsorship. The anticipated start date for this position is in January 2023.** [Entry Level Software Developer](https://www.grantstreet.com/careers/career_opportunities/entry-level-software-developer-remote-11-21-2022/)|
271 | | [Nium Inc](https://jobs.lever.co/nium) | San Francisco | **Hiring new grads as well as experienced folks.** [Backend Engineer](https://jobs.lever.co/nium/f20a5f60-6c69-4f44-8f64-45b92dec4d09) and [Frontend Engineer](https://jobs.lever.co/nium/590ef78f-04ff-4110-9c12-b5786894ea29) |
272 | | [Ramp](https://ramp.com/careers) | New York | New grad frontend and backend. [Backend Engineer](https://jobs.ashbyhq.com/ramp/6ddcd218-c384-4559-b697-64b32cf3f9a8) and [Frontend Engineer](https://jobs.ashbyhq.com/ramp/8f1c0c78-268d-46e0-8ed5-45b66eae61d8) |
273 |
--------------------------------------------------------------------------------
/archived/README-2024.md:
--------------------------------------------------------------------------------
1 | # 2024 New Grad Positions by Coder Quad and Simplify
2 |
3 | Use this repo to share and keep track of entry-level software, tech, CS, PM, quant jobs for new graduates.
4 |
5 | :warning: Please note that this repository is exclusively for roles in the United States, Canada, or Remote positions :earth_americas:
6 |
7 | 🙏 **Contribute by submitting an [issue](https://github.com/SimplifyJobs/New-Grad-Positions/issues/new/choose)! See the contribution guidelines [here](./CONTRIBUTING.md)!** 🙏
8 |
9 | > Update (Sep 1, 2023) 🥳
10 | >
11 | > You might have noticed that the repo looks a little different 👀.
12 | >
13 | > Coder Quad has teamed up with Simplify to maintain this repo, and we've made some exciting new changes!
14 | >
15 | > - ⬆️ More Jobs! - A script automatically updates this repo with new jobs on Simplify.
16 | > - ✏️ Easier Contributions! - Submit an issue to add/edit a job. See [guidelines](./CONTRIBUTING.md).
17 | > - ✨ New Apply Options! - gray button is standard posting, blue is Simplify's one-click application.
18 | ---
19 |
20 |
😮💨 Tired of checking every day for new Jobs? 😩
21 |
22 | Check out ⬇️ SWE List ⬇️ that sends you email updates for this repo
23 |
24 |
29 |
Share any other cool projects you make using the repo, and we might give you a shoutout!
30 |
31 |
32 |
33 | ---
34 |
35 |
51 |
52 | ---
53 |
54 | ## The List 🚴🏔
55 |
56 | - 🛂 - Does NOT offer Sponsorship
57 | - 🇺🇸 - Requires U.S. Citizenship
58 | - 🔒 - Job application is closed
59 |
60 | [⬇️ Jump to bottom ⬇️](https://github.com/SimplifyJobs/New-Grad-Positions#we-love-our-contributors-%EF%B8%8F%EF%B8%8F)
61 |
62 |
63 | | Company | Role | Location | Application/Link | Date Posted |
64 | | --- | --- | --- | :---: | :---: |
65 | | **[Verkada](https://simplify.jobs/c/Verkada)** | Software Engineer - Engineering Productivity | San Mateo, CA | 🔒 | Jun 18 |
66 | | **[Verkada](https://simplify.jobs/c/Verkada)** | Frontend Engineer - Search & Computer Vision | San Mateo, CA | 🔒 | Jun 18 |
67 | | **[Zynga](https://simplify.jobs/c/Zynga)** | Software Engineer-1 | Urbana, IL | 🔒 | Jun 18 |
68 | | **[Prelim](https://simplify.jobs/c/Prelim)** | Software Engineer - NY Remote | Remote in USA | 🔒 | Jun 18 |
69 | | **[Kalderos](https://simplify.jobs/c/Kalderos)** | Software Engineer I | Remote in USA | 🔒 | Jun 13 |
70 | | **[Autotrader.ca](https://simplify.jobs/c/AutoTrader-CA)** | Full stack Engineer | Greater Toronto Area, ON, Canada | 🔒 | Jun 13 |
71 | | **[Replo](https://simplify.jobs/c/Replo)** | Software Engineer – New Grad | SF | 🔒 | Jun 13 |
72 | | **HealthJoy** | Associate Data Scientist | Remote in USA | 🔒 | Jun 12 |
73 | | **[Search Discovery](https://simplify.jobs/c/SearchDiscovery)** | Data Engineer I | Cleveland, OH | 🔒 | Jun 12 |
74 | | **UiPath** | Software Engineer I | Bellevue, WA | 🔒 | Jun 12 |
75 | | **The New York Times** | Associate Data Engineer | NYC | 🔒 | Jun 11 |
76 | | **DAT Freight & Analytics** | Associate Software Engineer | Beaverton, OR | 🔒 | Jun 11 |
77 | | **The New York Times** | Associate Android Engineer - Games | NYC | 🔒 | Jun 11 |
78 | | **NVIDIA** | System Software Engineer – New College Grad 2024 - Graphics Developer Tool | Austin, TXSanta Clara, CA | 🔒 | Jun 11 |
79 | | **DoorDash** | Software Engineer - Backend - All Levels / All Teams | **5 locations**
Seattle, WASFLANYCSunnyvale, CA | 🔒 | Jun 11 |
80 | | **Autotrader.ca** | Junior Android Engineer | Toronto, ON, Canada | 🔒 | Jun 10 |
81 | | **Optiver** | Campus: Quantitative Trader - 2024 Start - Chicago | Chicago, IL | 🔒 | Jun 10 |
82 | | **[Veeva Systems](https://simplify.jobs/c/Veeva-Systems)** | Associate Software Engineer in Test | Pleasanton, CA | 🔒 | Jun 08 |
83 | | **[Konrad Group](https://simplify.jobs/c/Konrad-Group)** | Mobile Developer – Entry Level | Toronto, ON, Canada | 🔒 | Jun 06 |
84 | | **Arsiem Corporation** | Software Engineer 1 | Remote in USA | 🔒 | Jun 05 |
85 | | **HeyGen** | Frontend Software Engineer | Palo Alto, CASF | 🔒 | Jun 05 |
86 | | **Perpay** | Junior Data Engineer | Philadelphia, PA | 🔒 | May 31 |
87 | | **Nium** | Backend Engineer - Sde I | SF | 🔒 | May 31 |
88 | | **[OpenEye](https://simplify.jobs/c/OpenEye)** | Software Engineer I | Liberty Lake, WA | 🔒 | May 31 |
89 | | **AccuWeather** | Software Developer I | State College, PARemote in USA | 🔒 | May 31 |
90 | | **Breeze Airways** | Software Engineer | Remote in USA | 🔒 | May 31 |
91 | | **Breeze Airways** | Software Engineer | Remote in USA | 🔒 | May 31 |
92 | | **Splunk** | Software Engineer - Early in Career - Frontend | Vancouver, BC, Canada | 🔒 | May 28 |
93 | | **[Varicent](https://simplify.jobs/c/Varicent)** | Software Developer I | Remote in Canada | 🔒 | May 28 |
94 | | **Awardco** | Front-End Software Engineer | Orem, UT | 🔒 | May 24 |
95 | | **Navan** | Evergreen: New College Grad Software Engineer - Front-End | Palo Alto, CA | 🔒 | May 24 |
96 | | **[Arsiem Corporation](https://simplify.jobs/c/Arsiem-Corporation)** | Software Engineer 1 | Annapolis Junction, MD | 🔒 | May 23 |
97 | | **Vonage** | Associate Software Engineer - Java | London, UK | 🔒 | May 22 |
98 | | **STR** | Software Developer | Arlington, VA | 🔒 | May 21 |
99 | | **Magna** | Software Engineer – New Grad | NYC | 🔒 | May 21 |
100 | | **Redhorse** | Full Stack Software Engineer Level I - Active Secret Clearance Required | Arlington, VA | 🔒 | May 21 |
101 | | **Trustpilot** | Software Engineer I - API Platform | London, UK | 🔒 | May 21 |
102 | | **Bolster** | Software Engineer - Back-end systems | Santa Clara, CA | 🔒 | May 20 |
103 | | **Arsiem Corporation** | Software Engineer 1 | Annapolis Junction, MD | 🔒 | May 17 |
104 | | **Dialpad** | Software Engineer | Toronto, ON, Canada | 🔒 | May 17 |
105 | | **[Match Group](https://simplify.jobs/c/Match-Group)** | Data Scientist I | Hollywood, LA | 🔒 | May 17 |
106 | | **[Pendo](https://simplify.jobs/c/Pendo)** | Software Engineer - Associate | Sheffield, UK | 🔒 | May 16 |
107 | | **OwnBackup** | Associate Software Engineer | Englewood, NJ | 🔒 | May 16 |
108 | | **[Arsiem Corporation](https://simplify.jobs/c/Arsiem-Corporation)** | Software Engineer 1 | Annapolis Junction, MD | 🔒 | May 15 |
109 | | **[Alarm.com](https://simplify.jobs/c/Alarm)** | Software Engineer - Android | Cambridge, MA | 🔒 | May 15 |
110 | | **[Gemini](https://simplify.jobs/c/Gemini)** | Software Developer - Security | Remote in USA | 🔒 | May 15 |
111 | | **Marqeta** | Software Engineer I | Vancouver, BC, Canada | 🔒 | May 14 |
112 | | **Marqeta** | Software Engineer I | Toronto, ON, Canada | 🔒 | May 14 |
113 | | **Datavant** | Software Engineer | Remote in USA | 🔒 | May 14 |
114 | | **Rocket Lab USA** | Embedded Flight Software Engineer I/II Pipeline | Littleton, CO | 🔒 | May 14 |
115 | | **G2** | Associate Software Engineer - Ruby on Rails | Chicago, IL | 🔒 | May 14 |
116 | | **Octopus Energy** | Software Engineer - Python | Manchester, UK | 🔒 | May 13 |
117 | | **IXL Learning** | Front-End Software Engineer - IXL Product | San Mateo, CA | 🔒 | May 13 |
118 | | **Elegen** | Software Engineer - Testing & Development | San Carlos, CA | 🔒 | May 10 |
119 | | **Wiley Edge** | Junior Software Engineer | United States | 🔒 | May 10 |
120 | | **Alchemy** | Software Engineer - Wallet Services - Full Stack | SFNYC | 🔒 | May 10 |
121 | | **Square** | Android Engineer - Families - Cash App | Remote in USA | 🔒 | May 10 |
122 | | **Arsiem Corporation** | Software Engineer 0 | Annapolis Junction, MD | 🔒 | May 10 |
123 | | **BJSS** | Software Engineer - Android | Glasgow, UK | 🔒 | May 10 |
124 | | **Visa** | Software Engineer - New College Grad-2024 | Bellevue, WA | 🔒 | May 10 |
125 | | **Rhombus Power** | Data Engineer - Palo Alto | Palo Alto, CA | 🔒 | May 09 |
126 | | **D2L** | Software Developer - Skillswave | Remote | 🔒 | May 08 |
127 | | **[Red Six Aerospace](https://simplify.jobs/c/RedSixAero)** | Software Engineer | Orlando, FL | 🔒 | May 08 |
128 | | **Moloco** | Front End Engineer - Moloco Commerce Media | San Carlos, CA | 🔒 | May 08 |
129 | | **Trustpilot** | Associate Data Scientist - B2B | London, UK | 🔒 | May 08 |
130 | | **Trustpilot** | Associate Data Scientist - B2B | Edinburgh, UK | 🔒 | May 08 |
131 | | **Fortra** | Associate Software Engineer | Remote in USA | 🔒 | May 08 |
132 | | **Red Ventures** | Associate Data Engineer - Red Platform | Charlotte, NC | 🔒 | May 07 |
133 | | **[Arsiem Corporation](https://simplify.jobs/c/Arsiem-Corporation)** | Software Engineer 1 | Annapolis Junction, MD | 🔒 | May 07 |
134 | | **[Street Context](https://simplify.jobs/c/StreetContext)** | Software Developer 1 - Full Stack | Toronto, ON, Canada | 🔒 | May 07 |
135 | | **Upstart** | Software Engineer - Home Lending | Remote in USA | 🔒 | May 06 |
136 | | **[Splunk](https://simplify.jobs/c/Splunk)** | Software Engineer - Early in Career - Frontend | ColoradoNorth Carolina | 🔒 | May 06 |
137 | | **Popmenu** | Support Software Engineer | Remote in USA | 🔒 | May 06 |
138 | | **Good Inside** | Machine Learning Engineer | NYC | 🔒 | May 06 |
139 | | **Coalition** | Software Engineer - Underwriting | Remote in USA | 🔒 | May 06 |
140 | | **[Coalition](https://simplify.jobs/c/Coalition)** | Software Engineer - Underwriting | Remote | 🔒 | May 06 |
141 | | **Square** | Software Engineer - Android - Mobile Developer Experience | Remote in USA | 🔒 | May 06 |
142 | | **Axon** | Embedded Applications Software Engineer I | Seattle, WA | 🔒 | May 04 |
143 | | **[Arsiem Corporation](https://simplify.jobs/c/Arsiem-Corporation)** | Software Engineer 0 | Annapolis Junction, MD | 🔒 | May 03 |
144 | | **[Anteriad](https://simplify.jobs/c/Anteriad)** | Data Engineer | Littleton, CO | 🔒 | May 03 |
145 | | **Solar Landscape** | Front-End Engineer | Shrewsbury, NJ | 🔒 | May 01 |
146 | | **[WeRide](https://simplify.jobs/c/WeRide)** | Software Engineer – New Grads 2024 - Planning & Control | San Jose, CA | 🔒 | May 01 |
147 | | **[WeRide](https://simplify.jobs/c/WeRide)** | Software Engineer – New Grads 2024 - Perception | San Jose, CA | 🔒 | May 01 |
148 | | **Ekimetrics** | Consultant in Data Engineering | NYC | 🔒 | May 01 |
149 | | **Engineers Gate** | Software Engineer | NYC | 🔒 | May 01 |
150 | | **[Nightfall](https://simplify.jobs/c/Nightfall)** | New Grad Backend Engineer | SF | 🔒 | Apr 30 |
151 | | **Walmart** | 2025 Summer Intern: Software Engineer II | Bentonville, ARSunnyvale, CA | 🔒 | Apr 30 |
152 | | **DigitalOcean** | Software Engineer I - Resiliency:Maintenance | Remote in USA | 🔒 | Apr 30 |
153 | | **DigitalOcean** | Software Engineer I - Resiliency:Maintenance | Remote | 🔒 | Apr 30 |
154 | | **[Splunk](https://simplify.jobs/c/Splunk)** | Software Engineer - Early in Career - Backend/Full-stack | ColoradoNorth Carolina | 🔒 | Apr 30 |
155 | | **STORD** | Software Engineer | Remote in USA | 🔒 | Apr 30 |
156 | | **theScore** | IOS Developer - Sportsbook Engagement | Toronto, ON, Canada | 🔒 | Apr 27 |
157 | | **Yellowbrick** | Software Engineer | Mountain View, CA | 🔒 | Apr 27 |
158 | | **[Jerry](https://simplify.jobs/c/Jerry)** | Associate Software Engineer - Toronto | Toronto, ON, Canada | 🔒 | Apr 27 |
159 | | **Sumo Logic** | SWE-1 – Site Reliability Engineer | Remote in USA | 🔒 | Apr 27 |
160 | | **[Tempus](https://simplify.jobs/c/Tempus)** | Software Engineer - Neuro | Chicago, IL | 🔒 | Apr 26 |
161 | | **84.51 Degrees** | Software Engineer - Quality Engineering - P431 | Chicago, ILHighland Park, ILCincinnati, OH | 🔒 | Apr 26 |
162 | | **Opal** | Software Engineer – Early Career | SF | 🔒 | Apr 26 |
163 | | **Astranis** | Full Stack Engineer - Network Software Engineer | SF | 🔒 | Apr 25 |
164 | | **Affirm** | Software Engineer I - Partner Interface - CAN | Remote | 🔒 | Apr 25 |
165 | | **Sanctuary AI** | Software Engineer - Robotics Simulation | Vancouver, BC, Canada | 🔒 | Apr 25 |
166 | | **Zynga** | Software Engineer 1 - Client - Harry Potter | Toronto, ON, Canada | 🔒 | Apr 25 |
167 | | **Navan [https://simplify.jobs/c/Navan]** | University Graduate Software Engineer, Back-End | Palo Alto, CA | 🔒 | Apr 24 |
168 | | **[Nominal](https://simplify.jobs/c/74e9f35a-1825-4520-a7b8-6a1cc49c1e40)** | Software Engineer – New Grad | New York, NY | 🔒 | Apr 24 |
169 | | **[Jerry](https://simplify.jobs/c/Jerry)** | New Graduate Software Engineer Toronto and Alberta | Toronto, ON, Canada | 🔒 | Apr 24 |
170 | | **[Nominal](https://simplify.jobs/c/74e9f35a-1825-4520-a7b8-6a1cc49c1e40)** | Software Engineer – New Grad | Los Angeles, CA | 🔒 | Apr 24 |
171 | | **[Nominal](https://simplify.jobs/c/74e9f35a-1825-4520-a7b8-6a1cc49c1e40)** | Software Engineer – New Grad | Austin, TX | 🔒 | Apr 24 |
172 | | **The Voleon Group** | Data Scientist - Client Research | Oakland, CA | 🔒 | Apr 23 |
173 | | **Persona** | Software Engineer – New Grad - Sf | SF | 🔒 | Apr 23 |
174 | | **[Weedmaps](https://simplify.jobs/c/Weedmaps)** | Software Engineer I - Android - Hybrid | Remote in USA | 🔒 | Apr 23 |
175 | | **Affirm** | Software Engineer I - Backend - Disclosures | Remote | 🔒 | Apr 23 |
176 | | **Grand Rounds** | Software Engineer I - Orchestration Platform - Canada | Remote | 🔒 | Apr 23 |
177 | | **Splunk** | Software Engineer - Backend - Early in Career | Canada | 🔒 | Apr 23 |
178 | | **Nutanix** | Early Career/ Software Engineer 1 | San Jose, CA | 🔒 | Apr 23 |
179 | | **[Rivos](https://simplify.jobs/c/Rivos)** | AI Software Engineer | **4 locations**
Austin, TXSanta Clara, CAFort Collins, COPortland, OR | 🔒 | Apr 23 |
180 | | **Wispr AI** | 0 – 1 Swift Engineer - IOS / Macos | SF | 🔒 | Apr 22 |
181 | | **[Constellation Technologies](https://simplify.jobs/c/Constellation-Technologies)** | Software Engineers - Multiple levels | Odenton, MD | 🔒 | Apr 22 |
182 | | **[Forward](https://simplify.jobs/c/Forward)** | Software Engineer - Growth | SF | 🔒 | Apr 21 |
183 | | **Hive** | Machine Learning Engineer | Seattle, WA | 🔒 | Apr 21 |
184 | | **DoraHacks** | Full Stack Engineer | Remote in USA | 🔒 | Apr 20 |
185 | | **MRI Software** | Machine Learning Engineer I | Cleveland, OH | 🔒 | Apr 19 |
186 | | **FanDuel** | Software Engineer - Fraud | Atlanta, GA | 🔒 | Apr 19 |
187 | | **[Current](https://simplify.jobs/c/Current)** | Software Engineer - Associate | NYC | 🔒 | Apr 19 |
188 | | **Center** | Data Scientist - 1 | Minneapolis, MNBellevue, WA | 🔒 | Apr 18 |
189 | | **Orb Labs** | Early Software Engineer | Remote in USA | 🔒 | Apr 18 |
190 | | **Capital Solutions Group** | Python Frameworks Software Developer - Tkoclv-Sw2 | San Antonio, TX | 🔒 | Apr 18 |
191 | | **Cardiosense** | Software Engineer - Iot | Chicago, IL | 🔒 | Apr 18 |
192 | | **Stride** | Software Engineer | NYC | 🔒 | Apr 18 |
193 | | **Padlet** | Software Engineer - Mobile | SF | 🔒 | Apr 18 |
194 | | **Nominal** | Software Engineer – New Grad | Austin, TX | 🔒 | Apr 18 |
195 | | **Nominal** | Software Engineer – New Grad | NYC | 🔒 | Apr 18 |
196 | | **Nominal** | Software Engineer – New Grad | LA | 🔒 | Apr 18 |
197 | | **Applied Materials** | Software Engineer III - E3 | Santa Clara, CA | 🔒 | Apr 18 |
198 | | **PatientPoint** | Entry Level Data Engineer | Cincinnati, OH | 🔒 | Apr 17 |
199 | | **Nisum** | IOS Mobile QA Tester G5983 | Pleasanton, CA | 🔒 | Apr 16 |
200 | | **Digital.ai** | Associate Software Engineer | Remote in USA | 🔒 | Apr 16 |
201 | | **TripAdvisor** | Software Engineer I - Full Stack | Ottawa, ON, Canada | 🔒 | Apr 16 |
202 | | **Jerry** | Associate Data Scientist - Class of 2024 | Palo Alto, CA | 🔒 | Apr 12 |
203 | | **fuboTV** | Associate Software Engineer | Remote in USA | 🔒 | Apr 12 |
204 | | **PerformLine** | Software Engineer - Python | Remote in USA | 🔒 | Apr 12 |
205 | | **HoYoverse** | Software Engineer – Fresh Grad - Testing - Risk Control | Montreal, QC, CanadaLA | 🔒 | Apr 12 |
206 | | **[Iterative Health](https://simplify.jobs/c/Iterative-Health)** | Software Engineer I - Backend - Future Openings | Remote in USA | 🔒 | Apr 12 |
207 | | **Samsara** | Machine Learning Engineer – New Grad | Remote in USA | 🔒 | Apr 12 |
208 | | **US Mobile** | Software Engineer - Canada | Remote | 🔒 | Apr 11 |
209 | | **Tempus** | Software Engineer | Chicago, IL | 🔒 | Apr 10 |
210 | | **Wiley Edge** | Junior Software Engineer | United States | 🔒 | Apr 09 |
211 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
212 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
213 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
214 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
215 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
216 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
217 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
218 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
219 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
220 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
221 | | **minware** | Front End Engineer | Charlotte, NC | 🔒 | Apr 07 |
222 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
223 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
224 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
225 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
226 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
227 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
228 | | **minware** | Front End Engineer | Remote in USA | 🔒 | Apr 07 |
229 | | **Autotrader.ca** | Bilingual full stack Engineer | Montreal, QC, Canada | 🔒 | Apr 07 |
230 | | **Quantcast** | Software Engineer - Edge Services | London, UK | 🔒 | Apr 07 |
231 | | **[Overbond](https://simplify.jobs/c/Overbond)** | Data Scientist - Fixed Income Trading | Remote | 🔒 | Apr 06 |
232 | | **FanDuel** | Data Scientist | NYC | 🔒 | Apr 06 |
233 | | **PolyAI** | Junior Software Engineer - Data-UK Based | London, UK | 🔒 | Apr 05 |
234 | | **Jerry** | Associate Data Scientist - Class of 2024 | Palo Alto, CA | 🔒 | Apr 04 |
235 | | **FreedomPay** | Software Engineer - Associate | Philadelphia, PA | 🔒 | Apr 04 |
236 | | **Snowflake** | Data Scientist – New College Grad | San Mateo, CA | 🔒 | Apr 04 |
237 | | **ClearEdge** | Software Engineer | Annapolis Junction, MD | 🔒 | Apr 04 |
238 | | **Applied Materials** | Software Engineer II - E2 | Chandler, AZ | 🔒 | Apr 04 |
239 | | **Western Digital** | New College Grad Engineer - Software Engineering - Graduating Dec 2023 - May 2024 | Rochester, MN | 🔒 | Apr 04 |
240 | | **Diligent Robotics** | Robotics Software Development Engineer in Test | Austin, TX | 🔒 | Apr 03 |
241 | | **[Zynga](https://simplify.jobs/c/Zynga)** | Software Engineer-1 | United States | 🔒 | Apr 02 |
242 | | **HeartFlow** | Software Engineer - ML Engineering/ML Ops | Remote in USA | 🔒 | Apr 02 |
243 | | **Vestmark** | Software Engineer | Cambridge, MA | 🔒 | Apr 02 |
244 | | **Red Ventures** | Associate Software Engineer - AI Products | Charlotte, NC | 🔒 | Apr 01 |
245 | | **[Universal Electronics](https://simplify.jobs/c/Universal-Electronics)** | Software Engineer I | Orange, CA | 🔒 | Apr 01 |
246 | | **Homebase** | Security Engineer - Hybrid | **4 locations**
Houston, TXToronto, ON, CanadaSFDenver, CO | 🔒 | Apr 01 |
247 | | **FreedomPay** | Software Engineer - Associate | Philadelphia, PA | 🔒 | Mar 29 |
248 | | **Second Spectrum** | Software Engineer - Platform | NYC | 🔒 | Mar 29 |
249 | | **Genius Sports** | Software Engineer - Platform | NYC | 🔒 | Mar 29 |
250 | | **TigerGraph** | Software Engineer-Core Engine | San Carlos, CA | 🔒 | Mar 29 |
251 | | **Plusgrade** | Développeur Logiciel - Backend - /Development Engineer - Backend | Montreal, QC, Canada | 🔒 | Mar 28 |
252 | | **Zeta** | Software Development Engineer I | Remote in USA | 🔒 | Mar 28 |
253 | | **Squarepoint Capital** | Software Developer - Data Pipelines - Python | Montreal, QC, CanadaLondon, UK | 🔒 | Mar 28 |
254 | | **Optiver** | Software Engineer - Developer Excellence | London, UK | 🔒 | Mar 27 |
255 | | **[Astranis](https://simplify.jobs/c/Astranis)** | Flight Software Engineer - Associate Program - Fall 2024 | SF | 🔒 | Mar 27 |
256 | | **DRW** | Full Stack Software Developer | Montreal, QC, Canada | 🔒 | Mar 27 |
257 | | **[Mobilityware](https://simplify.jobs/c/df72d273-6345-4a96-ae58-6b11e76ec398)** | Software Engineer I - Unity | Irvine, CA | 🔒 | Mar 27 |
258 | | **Konrad Group** | Software Developer – Entry Level | San Jose, CA | 🔒 | Mar 26 |
259 | | **Sunshine** | Software Engineer – New College Grad | Palo Alto, CA | 🔒 | Mar 26 |
260 | | **Immuta** | Software Engineer - Application Support | Cambridge, MAHyattsville, MDColumbus, OH | 🔒 | Mar 26 |
261 | | **Tower Research Capital** | Quantitative Researcher/Data Scientist | NYC | 🔒 | Mar 26 |
262 | | **[Zynga](https://simplify.jobs/c/Zynga)** | Software Engineer-1 | United Kingdom | 🔒 | Mar 24 |
263 | | **UiPath** | Software Engineer II | Bellevue, WA | 🔒 | Mar 23 |
264 | | **Second Spectrum** | Software Engineer - Video Content Augmentation | NYC | 🔒 | Mar 22 |
265 | | **Anduril** | Flight Software Engineer - Embedded C | Newport Beach, CA | 🔒 | Mar 22 |
266 | | **Genius Sports** | Software Engineer - Video Content Augmentation | NYC | 🔒 | Mar 22 |
267 | | **MotherDuck** | Data Engineering Advocate | Seattle, WA | 🔒 | Mar 22 |
268 | | **Canonical** | Python Software Engineer - Ubuntu Hardware Certification Team | Remote in USA | 🔒 | Mar 22 |
269 | | **IXL Learning** | Software Engineer – New Grad | San Mateo, CA | 🔒 | Mar 20 |
270 | | **[IXL Learning](https://simplify.jobs/c/IXL-Learning)** | Software Engineer – New Grad | Raleigh, NC | 🔒 | Mar 20 |
271 | | **IXL Learning** | Associate Product Manager – New Grad | San Mateo, CA | 🔒 | Mar 20 |
272 | | **Torch Dental** | Software Engineer | NYC | 🔒 | Mar 19 |
273 | | **Salesforce** | Software Engineering MTS – New Grad | **11 locations**
Cambridge, MASeattle, WAIndianapolis, INSFRemote in USAMcLean, VAChicago, ILNYCBellevue, WAAtlanta, GABurlington, MA | 🔒 | Mar 19 |
274 | | **Okta** | Software Engineer New Grad - Customer Identity Cloud - Summer 2024 | Remote | 🔒 | Mar 18 |
275 | | **Western Digital** | New College Grad Engineer - Software Engineer - Firmware Engineering | San Jose, CA | 🔒 | Mar 18 |
276 | | **Wiley Edge** | Junior Software Engineer | United States | 🔒 | Mar 17 |
277 | | **Applied Materials** | Data Scientist II – New College Grad | Santa Clara, CA | 🔒 | Mar 14 |
278 | | **[Qrypt](https://simplify.jobs/c/Qrypt)** | Software Engineer I | NYC | 🔒 | Mar 13 |
279 | | **[Credit Karma](https://simplify.jobs/c/Credit-Karma)** | Mobile Software Engineer - Android - All Levels | Charlotte, NC | 🔒 | Mar 13 |
280 | | **Ribbon Health** | Software Engineer | NYC | 🔒 | Mar 12 |
281 | | **SEAKR Engineering** | Embedded Software Engineer I/II | Cherry Hills Village, CO | 🔒 | Mar 12 |
282 | | **Barbaricum** | Junior Data Scientist | Remote in USA | 🔒 | Mar 11 |
283 | | **Wolverine Trading** | Software Engineer | Chicago, IL | 🔒 | Mar 11 |
284 | | **Koddi** | Data Scientist - Cohort Program | Fort Worth, TX | 🔒 | Mar 09 |
285 | | **NVIDIA** | System Software Engineer – New College Grad 2024 - Cloud AI | Santa Clara, CA | 🔒 | Mar 09 |
286 | | **NVIDIA** | Compiler Engineer – New College Grad 2024 - Deep Learning | Redmond, WASanta Clara, CA | 🔒 | Mar 09 |
287 | | **Foursquare** | Software Engineer - Dpio | Seattle, WA | 🔒 | Mar 08 |
288 | | **Foursquare** | Software Engineer - Dpio | SF | 🔒 | Mar 08 |
289 | | **Foursquare** | Software Engineer - Dpio | NYC | 🔒 | Mar 08 |
290 | | **Foursquare** | Software Engineer - Dpio | Chicago, IL | 🔒 | Mar 08 |
291 | | **Foursquare** | Software Engineer - Dpio | Remote in USA | 🔒 | Mar 08 |
292 | | **Interactive Brokers** | Software Developer - C++ | Greenwich, CT | 🔒 | Mar 08 |
293 | | **Okta** | Software Engineer I – New Grad - 2024 | Bellevue, WA | 🔒 | Mar 08 |
294 | | **Okta** | 2024 New Grad - Software Engineer I | Toronto, ON, Canada | 🔒 | Mar 07 |
295 | | **Match Group** | Software Engineer - IOS | Palo Alto, CA | 🔒 | Mar 02 |
296 | | **Anaplan** | Software Engineer | York, UK | 🔒 | Mar 01 |
297 | | **HeartFlow** | Entry-level Software Engineer - Frontend Full Stack | Austin, TXMountain View, CA | 🔒 | Mar 01 |
298 | | **Alarm.com** | Software Engineer | Vienna, VA | 🔒 | Feb 29 |
299 | | **Abnormal Security** | Software Engineer II - Cloud Infrastructure | Remote in USA | 🔒 | Feb 29 |
300 | | **Coalition** | Software Engineer-Cyber Policies | Canada | 🔒 | Feb 28 |
301 | | **Coalition** | Software Engineer-Cyber Policies | United States | 🔒 | Feb 28 |
302 | | **Altera Digital Health** | Associate Software Engineer - Remote | Remote in USA | 🔒 | Feb 28 |
303 | | **Altera Digital Health** | Associate Software Engineer - Remote | Remote in USA | 🔒 | Feb 28 |
304 | | **Govini** | Software Engineer | Pittsburgh, PA | 🔒 | Feb 27 |
305 | | **Western Digital** | New College Grad Engineer - Software Engineering - Graduating Dec 2023 - May 2024 | Rochester, MN | 🔒 | Feb 25 |
306 | | **NewsBreak** | Machine Learning Engineer – Junior & New Grad | Mountain View, CA | 🔒 | Feb 24 |
307 | | **Dow Jones** | Software Engineer | Gaithersburg, MD | 🔒 | Feb 23 |
308 | | **Watershed** | Software engineer – New grad | SF | 🔒 | Feb 23 |
309 | | **Thumbtack** | Product Data Scientist - Customer Growth | Remote in USA | 🔒 | Feb 21 |
310 | | **Thumbtack** | Product Data Scientist - Customer Growth | Remote | 🔒 | Feb 21 |
311 | | **Onbe** | Associate Software Engineer | Dallas, TX | 🔒 | Feb 21 |
312 | | **Onbe** | Associate Software Engineer | Conshohocken, PA | 🔒 | Feb 21 |
313 | | **Onbe** | Associate Software Engineer | Wheeling, IL | 🔒 | Feb 21 |
314 | | **Wayfair** | Software Engineer I - Summer 2024 | Cambridge, MA | 🔒 | Feb 19 |
315 | | **IXL Learning** | Front-End Software Engineer - IXL Product | San Mateo, CA | 🔒 | Feb 16 |
316 | | **[Konrad Group](https://simplify.jobs/c/Konrad-Group)** | Software Developer – Entry Level | Toronto, ON, Canada | 🔒 | Feb 16 |
317 | | **Datavant** | Data Engineer | Remote in USA | 🔒 | Feb 16 |
318 | | **Acorns** | Software Engineer I - Web | Remote in USA | 🔒 | Feb 15 |
319 | | **DriveWealth** | Software Development Engineer 2 | NYC | 🔒 | Feb 14 |
320 | | **NVIDIA** | Software Engineer – New College Grad 2024 | Santa Clara, CA | 🔒 | Feb 14 |
321 | | **NVIDIA** | Web Application Software Engineer – New College Grad 2024 | Santa Clara, CA | 🔒 | Feb 14 |
322 | | **PayPal** | Software Engineer – Recent Grad | San Jose, CA | 🔒 | Feb 14 |
323 | | **DoorDash** | Software Engineer I - Android - Graduation Date Spring 2022 - Winter 2023 | SFNYC | 🔒 | Feb 14 |
324 | | **Narmi** | Software Engineer - Solutions | NYC | 🔒 | Feb 14 |
325 | | **NVIDIA** | Compiler Engineer – New College Grad 2024 - Deep Learning | Redmond, WASanta Clara, CA | 🔒 | Feb 14 |
326 | | **DoorDash** | Software Engineer I - Backend - Graduation Date Spring 2022-Winter 2023 | Seattle, WASFNYC | 🔒 | Feb 13 |
327 | | **TigerGraph** | Software Engineer - Infrastructure | San Carlos, CA | 🔒 | Feb 13 |
328 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | San Jose, CA | 🔒 | Feb 13 |
329 | | **Western Digital** | New College Grad - Data Scientist | San Jose, CA | 🔒 | Feb 10 |
330 | | **Govini** | Entry Level Data Scientist | Pittsburgh, PA | 🔒 | Feb 09 |
331 | | **Root16** | Software Engineer | Chicago, IL | 🔒 | Feb 07 |
332 | | **Empowerly** | Product Manager | Remote in USA | 🔒 | Feb 07 |
333 | | **Rockset** | Software Engineer – New Grad | San Mateo, CA | 🔒 | Feb 07 |
334 | | **Gelber Group** | Software Engineer-Equity Derivatives Desk | Chicago, IL | 🔒 | Feb 03 |
335 | | **NewsBreak** | Software Engineer – Junior & New Grad | Mountain View, CA | 🔒 | Feb 02 |
336 | | **Zynga** | Software Engineer - Client - Tech Enablement - Central tech | Canada | 🔒 | Feb 01 |
337 | | **Western Digital** | New College Grad - Software Engineer - System Testing | Rochester, MN | 🔒 | Feb 01 |
338 | | **Navan** | New College Grad Software Engineer - Front-End | Palo Alto, CA | 🔒 | Feb 01 |
339 | | **Zanbato** | Full Stack Software Engineer | Mountain View, CA | 🔒 | Jan 31 |
340 | | **Cepton Technologies** | Embedded Software Engineer | San Jose, CA | 🔒 | Jan 27 |
341 | | **Kin Insurance** | Software Engineer - Back-End Focus | Remote in USA | 🔒 | Jan 27 |
342 | | **Western Digital** | New College Grad Engineer - Software Engineering - Firmware | San Jose, CA | 🔒 | Jan 27 |
343 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | Remote in USA | 🔒 | Jan 26 |
344 | | **NVIDIA** | Software Engineer – New College Grad 2024 - Chip Design Tools | Santa Clara, CA | 🔒 | Jan 25 |
345 | | **[Jane Street](https://simplify.jobs/c/Jane-Street)** | Software Engineer | NYC | 🔒 | Jan 25 |
346 | | **Cadence Design Systems** | Software Engineer II – New College Grad - Burlington - MA/Greater Boston Area | Northridge, LA | 🔒 | Jan 24 |
347 | | **Abnormal Security** | Software Engineer II - Cloud Infrastructure | Remote in USA | 🔒 | Jan 24 |
348 | | **Skydio** | Wireless Software Engineer - All levels | San Mateo, CA | 🔒 | Jan 24 |
349 | | **Barbaricum** | Data Engineer | Springfield, VA | 🔒 | Jan 23 |
350 | | **Pure Storage** | Software Engineer Grad | Santa Clara, CA | 🔒 | Jan 20 |
351 | | **NVIDIA** | Backend Compiler Engineer – New College Grad 2024 - Gpu | Austin, TXRemote in USA | 🔒 | Jan 20 |
352 | | **Codazen** | Full-Stack Engineer Summer 2024 New Grad | Irvine, CA | 🔒 | Jan 19 |
353 | | **Western Digital** | New College Grad Engineer - Software Engineering - Graduating Dec 2023 - May 2024 | Rochester, MN | 🔒 | Jan 18 |
354 | | **Similarweb** | Data Scientist – Entry Level | NYC | 🔒 | Jan 17 |
355 | | **Jerry** | Full Stack Software Engineer - Chatbot | SF | 🔒 | Jan 13 |
356 | | **Intercom** | Data Scientist - Product Analytics | London, UK | 🔒 | Jan 11 |
357 | | **Western Digital** | New College Grad Software Engineer-Firmware Engineering - HDD Servo Signal Integration and Detection | San Jose, CA | 🔒 | Jan 09 |
358 | | **Fizz** | Software Engineer | Palo Alto, CA | 🔒 | Jan 07 |
359 | | **Samsara** | Hardware Product Manager – New Grad | Remote in USA | 🔒 | Jan 05 |
360 | | **Vail Systems** | Software Engineer - Ivr | Atlanta, GA | 🔒 | Jan 04 |
361 | | **WeRide** | Software Engineer – New Grads 2024 - Campus Recruiting | San Jose, CA | 🔒 | Jan 03 |
362 | | **IXL Learning** | Software Engineer – New Grad | San Mateo, CA | 🔒 | Dec 28 |
363 | | **[IXL Learning](https://simplify.jobs/c/IXL-Learning)** | Software Developer – New Grad | Toronto, ON, Canada | 🔒 | Dec 28 |
364 | | **IXL Learning** | Software Engineer – New Grad | Raleigh, NC | 🔒 | Dec 28 |
365 | | **Anduril** | C++ Software Engineer - Systems and Build - Imaging | Lexington, MA | 🔒 | Dec 23 |
366 | | **Jerry** | Full Stack Software Engineer - Chatbot | SF | 🔒 | Dec 23 |
367 | | **NVIDIA** | GPU Compute Compiler Engineer – New College Grad 2024 | Austin, TXRedmond, WASanta Clara, CA | 🔒 | Dec 21 |
368 | | **Constellation Technologies** | Software Engineer - Design - Multiple levels | Odenton, MD | 🔒 | Dec 20 |
369 | | **Constellation Technologies** | Software Engineer – Entry level | Odenton, MD | 🔒 | Dec 20 |
370 | | **Zoox** | Software Engineer: Secure Embedded Operating Systems | San Mateo, CA | 🔒 | Dec 20 |
371 | | **Constellation Technologies** | Software Engineer - Level 1 & Level 0 | Odenton, MD | 🔒 | Dec 19 |
372 | | **Constellation Technologies** | Software Engineer - Nifi - Multiple levels | **9 locations**
CaliforniaTexasFloridaVirginiaColoradoUtahMarylandHawaiiOdenton, MD | 🔒 | Dec 19 |
373 | | **Navan** | New College Grad - Android Engineer | Palo Alto, CA | 🔒 | Dec 19 |
374 | | **Arista Networks** | Software Engineer – Fresh graduates | Vancouver, BC, Canada | 🔒 | Dec 16 |
375 | | **NVIDIA** | DL Infrastructure Engineer – New College Grad 2024 | Santa Clara, CA | 🔒 | Dec 16 |
376 | | **Rackner** | Software Engineer | Arlington, VA | 🔒 | Dec 15 |
377 | | **NVIDIA** | Software Engineer – New College Grad 2024 - Deep Learning Inference Workflows | Santa Clara, CA | 🔒 | Dec 15 |
378 | | **Marshall Wace** | New Grad Software Engineer | New York, NY | 🔒 | Dec 14 |
379 | | **[Neuralink](https://simplify.jobs/c/Neuralink)** | Software Engineer New Grad | Fremont, CA | 🔒 | Dec 13 |
380 | | **NVIDIA** | System Verification Infrastructure Engineer – New College Grad 2024 | Santa Clara, CADurham, NCHillsboro, OR | 🔒 | Dec 13 |
381 | | **Wayfair** | Data Engineer | Cambridge, MA | 🔒 | Dec 13 |
382 | | **Minitab** | Software Engineer | State College, PA | 🔒 | Dec 13 |
383 | | **Alto Pharmacy** | Early Career Software Engineer | Remote | 🔒 | Dec 10 |
384 | | **Nutanix** | Software Engineer 1 / Early Career | San Jose, CA | 🔒 | Dec 09 |
385 | | **Flipp** | Data Engineer Associate | Remote | 🔒 | Dec 09 |
386 | | **Salesforce** | Software Engineer AMTS/MTS – New Grad | Seattle, WASF | 🔒 | Dec 08 |
387 | | **NVIDIA** | Compiler Engineer – New College Grad 2024 - LLVM | Austin, TXRedmond, WASanta Clara, CA | 🔒 | Dec 05 |
388 | | **Wiley Edge** | Junior Software Engineer | NYC | 🔒 | Dec 04 |
389 | | **Ripple** | Software Engineer I | Toronto, ON, Canada | 🔒 | Dec 02 |
390 | | **Veeva Systems** | Associate Devops Engineer – Seeking 2024 Grads | Remote in USA | 🔒 | Dec 02 |
391 | | **E-Space** | GNC Software Engineer | Saratoga, CA | 🔒 | Dec 02 |
392 | | **Visa** | Software Engineer - New College Grad-2024 | Atlanta, GA | 🔒 | Dec 02 |
393 | | **Visa** | Software Engineer - New College Grad-2024 | Austin, TX | 🔒 | Dec 02 |
394 | | **Proprio** | Software Engineer: Algorithms | Seattle, WA | 🔒 | Dec 01 |
395 | | **pony.ai** | Software Engineer - Data and Evaluation | Fremont, CA | 🔒 | Dec 01 |
396 | | **Constellation Technologies** | Information Systems Security Engineer - Isse - Level 2 | Annapolis Junction, MD | 🔒 | Nov 30 |
397 | | **Celonis** | Software Engineer - Machine Learning | Palo Alto, CA | 🔒 | Nov 30 |
398 | | **theScore** | Data Scientist | Toronto, ON, Canada | 🔒 | Nov 30 |
399 | | **Arsiem Corporation** | Software Engineer 0 | Annapolis Junction, MD | 🔒 | Nov 30 |
400 | | **Instacart** | Software Engineer | Toronto, ON, Canada | 🔒 | Nov 30 |
401 | | **Palantir** | Forward Deployed Data Engineer - UK Government | London, UK | 🔒 | Nov 30 |
402 | | **Penn Interactive** | Data Scientist | Philadelphia, PA | 🔒 | Nov 30 |
403 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | Northridge, LA | 🔒 | Nov 30 |
404 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | San Jose, CA | 🔒 | Nov 30 |
405 | | **Technergetics** | Entry Level Software Developer | Remote | 🔒 | Nov 30 |
406 | | **NVIDIA** | System Software Engineer – New College Grad 2024 - GPU Server | Santa Clara, CA | 🔒 | Nov 30 |
407 | | **Episode Six** | Associate Devops Engineer | Austin, TX | 🔒 | Nov 30 |
408 | | **Navan** | New College Grad Software Engineer - Front-End | Palo Alto, CA | 🔒 | Nov 30 |
409 | | **GigaBrain** | Software Engineer | LA | 🔒 | Nov 29 |
410 | | **Rhombus Power** | Data Engineer - Active TS or TS/SCI Clearance - Washington DC | Washington, DC | 🔒 | Nov 09 |
411 | | **Rhombus Power** | Data Engineer - Active TS or TS/SCI Clearance - Honolulu | Honolulu, HI | 🔒 | Nov 09 |
412 | | **Tanius Technology** | Software Developer | Danville, CA | 🔒 | Nov 09 |
413 | | **[Tanius Technology](https://simplify.jobs/c/Tanius-Tech)** | Software Developer | Danville, CA | 🔒 | Nov 09 |
414 | | **Techruiter** | Front End Engineer - PHP/Javascript | London, UK | 🔒 | Nov 09 |
415 | | **Salesforce** | Software Engineering AMTS – New Grad | **4 locations**
Palo Alto, CASeattle, WASFKirkland, WA | 🔒 | Nov 07 |
416 | | **Affirm** | Software Engineer – Early Career | Chicago, IL | 🔒 | Nov 07 |
417 | | **Affirm** | Software Engineer – Early Career | SF | 🔒 | Nov 07 |
418 | | **Affirm** | Software Engineer – Early Career | NYC | 🔒 | Nov 07 |
419 | | **Gecko Robotics** | Forward Deployed Software Engineer | Washington, DCNYC | 🔒 | Nov 07 |
420 | | **Uber** | 2024 Software Engineering Boost Fellowship - US | NYC | 🔒 | Nov 03 |
421 | | **Constellation Technologies** | Software Engineer 0 | Odenton, MD | 🔒 | Nov 03 |
422 | | **Visa** | Software Engineer - New College Grad-2024 | Austin, TX | 🔒 | Nov 03 |
423 | | **Visa** | Software Engineer - New College Grad-2024 | Atlanta, GA | 🔒 | Nov 03 |
424 | | **Oscar Health** | Data Scientist I - Risk Analytics | LA | 🔒 | Nov 03 |
425 | | **Oscar Health** | Data Scientist I - Risk Analytics | NYC | 🔒 | Nov 03 |
426 | | **Oscar Health** | Data Scientist I - Risk Analytics | Remote | 🔒 | Nov 03 |
427 | | **Okta** | Site Reliability Engineer | London, UK | 🔒 | Nov 02 |
428 | | **Movable Ink** | Associate Software Developer - Integrations | Toronto, ON, Canada | 🔒 | Nov 02 |
429 | | **Arista Networks** | Software Engineer | Vancouver, BC, Canada | 🔒 | Nov 02 |
430 | | **Arista Networks** | Software Engineer - Packet Forwarding Engines | Vancouver, BC, Canada | 🔒 | Nov 02 |
431 | | **Arista Networks** | Software Engineer - Network Systems | Vancouver, BC, Canada | 🔒 | Nov 02 |
432 | | **Matroid** | Full Stack Engineer for Computer Vision Products | Palo Alto, CA | 🔒 | Nov 02 |
433 | | **ServiceNow** | Machine Learning Engineer – New Grad | Montreal, QC, Canada | 🔒 | Nov 01 |
434 | | **Palantir** | Software Engineer – New Grad | Washington, DC | 🔒 | Oct 31 |
435 | | **Wisk** | Software Engineer | Mesa, AZ | 🔒 | Oct 30 |
436 | | **Nutanix** | Software Engineer 1 / Early Career | San Jose, CA | 🔒 | Oct 27 |
437 | | **Visa** | Site Reliability Engineer – New College Grad - 2024 | Denver, CO | 🔒 | Oct 27 |
438 | | **Palantir** | Software Engineer – New Grad | Washington, DC | 🔒 | Oct 26 |
439 | | **Visa** | Site Reliability Engineer – New College Grad - 2024 | Austin, TX | 🔒 | Oct 26 |
440 | | **AnaVation LLC** | Software Developer - Remote | Chantilly, VA | 🔒 | Oct 25 |
441 | | **Palantir** | Forward Deployed Software Engineer – New Grad - UK Government | London, UK | 🔒 | Oct 25 |
442 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | Austin, TXSan Jose, CA | 🔒 | Oct 25 |
443 | | **[Mixpanel](https://simplify.jobs/c/Mixpanel)** | Software Engineer - Fullstack | SF | 🔒 | Oct 24 |
444 | | **Palantir** | Software Engineer – New Grad | Seattle, WA | 🔒 | Oct 23 |
445 | | **Cadence Design Systems** | Software Engineer – New College Grad 2024 | San Jose, CAPittsburgh, PA | 🔒 | Oct 23 |
446 | | **Salesforce** | Software Engineering AMTS – New Grad | Seattle, WASFRemote in USA | 🔒 | Oct 23 |
447 | | **Alchemy** | Software Engineer – New Grad | SFNYC | 🔒 | Oct 20 |
448 | | **The Athletic Media Company** | Software Engineer - Full Stack - Australia | United States | 🔒 | Oct 18 |
449 | | **Loop** | Software Engineer – 2024 New Grad | SF | 🔒 | Oct 18 |
450 | | **Loop** | Software Engineer – 2024 New Grad | Chicago, IL | 🔒 | Oct 18 |
451 | | **Salesforce** | Software Engineering AMTS/MTS – New Grad | **10 locations**
Cambridge, MASeattle, WAIndianapolis, INSFRemote in USAChicago, ILNYCBellevue, WAAtlanta, GABurlington, MA | 🔒 | Oct 18 |
452 | | **Immuta** | Software Engineer - Application Support | Hyattsville, MD | 🔒 | Oct 13 |
453 | | **Immuta** | Software Engineer - Application Support | Hyattsville, MD | 🔒 | Oct 13 |
454 | | **[Figma](https://simplify.jobs/c/Figma)** | Associate Product Manager, Early Career (2024) | San Francisco, CANew York, NY, | 🔒 | Oct 12 |
455 | | **Cummins** | Software Engineer Entry Level Full Time Positions | Columbus, Indiana | 🔒 | Oct 12 |
456 | | **[Wayfair](https://simplify.jobs/c/Wayfair)** | Software Engineer I - Summer 2024 | Boston, Massachusetts | 🔒 | Oct 12 |
457 | | **Zoom** | AI Machine Learning Engineer – New Grad | Oakland, CA | 🔒 | Oct 11 |
458 | | **Zoom** | AI Machine Learning Engineer – New Grad | Oakland, CA | 🔒 | Oct 11 |
459 | | **Zoom** | AI Machine Learning Engineer – New Grad | Oakland, CA | 🔒 | Oct 11 |
460 | | **Qumulo** | Software Development Engineer: Entry-Level - 2024 | Seattle, WA | 🔒 | Oct 11 |
461 | | **Wayfair** | Software Engineer I - Summer 2024 | Austin, TX | 🔒 | Oct 10 |
462 | | **Forward** | Software Engineer – Entry Level - Full Stack | SF | 🔒 | Oct 10 |
463 | | **Sprout Social** | Associate Software Engineer – New Grad | Remote in USA | 🔒 | Oct 10 |
464 | | **NVIDIA** | Infrastructure Engineer – New College Grad 2024 | Toronto, ON, Canada | 🔒 | Oct 10 |
465 | | **Grammarly** | Software Engineer – New Grad | Remote in USAUnited States | 🔒 | Oct 10 |
466 | | **[Wispr AI](https://simplify.jobs/c/Wispr-AI)** | 0 – 1 Software Engineer | SF | 🔒 | Oct 10 |
467 | | **Chartboost** | Software Engineer - Bidder | Remote in USA | 🔒 | Oct 04 |
468 | | **NVIDIA** | Compiler Engineer – New College Grad - LLVM | Austin, TXRedmond, WASanta Clara, CA | 🔒 | Oct 04 |
469 | | **Visa** | Software Engineer - New College Grad-2024 | San Mateo, CA | 🔒 | Oct 03 |
470 | | **Visa** | Software Engineer - New College Grad-2024 | Austin, TX | 🔒 | Oct 03 |
471 | | **Visa** | Software Engineer - New College Grad-2024 | Atlanta, GA | 🔒 | Oct 03 |
472 | | **Applied Intuition** | Embedded Software Engineer – New Grad | Mountain View, CA | 🔒 | Oct 02 |
473 | | **Chartboost** | Data Engineer | SF | 🔒 | Sep 30 |
474 | | **[Jane Street](https://simplify.jobs/c/Jane-Street)** | Software Engineer | NYC | 🔒 | Sep 29 |
475 | | **Everlaw** | Software Engineer | Oakland, CA | 🔒 | Sep 29 |
476 | | **Palantir** | Software Engineer – New Grad | Denver, CO | 🔒 | Sep 29 |
477 | | **SoFi** | New Grad – Software Engineer - Borrow | Helena, MT | 🔒 | Sep 29 |
478 | | **Optiver** | Campus: Software Engineer - 2024 Start - Austin | Austin, TX | 🔒 | Sep 29 |
479 | | **84.51 Degrees** | Software Engineer - Development Program 2024 | Chicago, ILCincinnati, OH | 🔒 | Sep 29 |
480 | | **Figma** | Business Data Scientist – Early Career - 2024 | SFNYC | 🔒 | Sep 28 |
481 | | **Pomelo** | Software Engineer – New Graduates | SF | 🔒 | Sep 27 |
482 | | **Cantina** | Media Software Engineer - Real-Time | Sunnyvale, CA | 🔒 | Sep 26 |
483 | | **FreedomPay** | Software Engineer Associate - Device Team | Philadelphia, PA | 🔒 | Sep 26 |
484 | | **Pinterest** | University Grad Software Engineer - USA | Remote in USA | 🔒 | Sep 26 |
485 | | **Pinterest** | University Grad Software Engineer - Palo Alto | Palo Alto, CA | 🔒 | Sep 26 |
486 | | **Uncountable** | Product Manager (New Grad) | SFNYC | 🔒 | Sep 25 |
487 | | **Schrödinger** | Software Developer | NYC | 🔒 | Sep 24 |
488 | | **Conduit** | Software Engineer – New Grad | SF | 🔒 | Sep 24 |
489 | | **HPR (Hyannis Port Research)** | Software Engineer I | Needham, MA | 🔒 | Sep 24 |
490 | | **Abnormal Security** | Machine Learning Engineer | Remote in USA | 🔒 | Sep 23 |
491 | | **Abnormal Security** | Software Engineer II - Machine Learning | Remote | 🔒 | Sep 22 |
492 | | **Pear VC** | Founding Software Engineer | NYC | 🔒 | Sep 21 |
493 | | **Salesforce** | Software Engineering AMTS – New Grad | Seattle, WASFRemote in USA | 🔒 | Sep 20 |
494 | | **Codazen** | Full-Stack Engineer Winter New Grad | Irvine, CA | 🔒 | Sep 20 |
495 | | **Oscar Health** | Data Scientist I - Risk Analytics | Remote | 🔒 | Sep 20 |
496 | | **Oscar Health** | Data Scientist I - Risk Analytics | LA | 🔒 | Sep 20 |
497 | | **Oscar Health** | Data Scientist I - Risk Analytics | NYC | 🔒 | Sep 20 |
498 | | **ZipRecruiter** | Software Engineer – New Grad | Santa Monica, CA | 🔒 | Sep 18 |
499 | | **EliseAI** | Software Engineer – 2024 Campus Grads - 2023 | NYC | 🔒 | Sep 17 |
500 | | **Chartboost** | Software Engineer - Bidder | Remote in USA | 🔒 | Sep 15 |
501 | | **Capital One** | Associate – FT New Grad 2024 - Software Engineer | Toronto, ON, Canada | 🔒 | Sep 15 |
502 | | **Palantir** | Forward Deployed Infrastructure Engineer - US Government | Washington, DC | 🔒 | Sep 14 |
503 | | **Regrello** | Software Engineer - AI | Remote in USA | 🔒 | Sep 13 |
504 | | **Vanta** | Software Engineer – New Grad | SF | 🔒 | Sep 13 |
505 | | **Arista Networks** | Software Engineer | Vancouver, BC, Canada | 🔒 | Sep 12 |
506 | | **Northern Labs** | Backend Developer | Remote | 🔒 | Sep 12 |
507 | | **Orion Innovation** | Software Developer IAC23124 | Edison, NJ | 🔒 | Sep 12 |
508 | | **Arista Networks** | Software Engineer - Packet Forwarding Engines | Vancouver, BC, Canada | 🔒 | Sep 12 |
509 | | **Arista Networks** | Software Engineer - Network Systems | Vancouver, BC, Canada | 🔒 | Sep 12 |
510 | | **Connectly** | Software Engineer - Backend | Remote | 🔒 | Sep 12 |
511 | | **Vontive** | New Grad Software Engineer - 2023 | SF | 🔒 | Sep 12 |
512 | | **Matroid** | Full Stack Engineer for Computer Vision Products | Palo Alto, CA | 🔒 | Sep 12 |
513 | | **Aviatrix** | Software Engineer – New Grad | Urbana, IL | 🔒 | Sep 11 |
514 | | **Perpay** | Software Engineer – New Grad 2024 | Philadelphia, PA | 🔒 | Sep 11 |
515 | | **Phaidra** | Software Engineer - Connectivity | Remote | 🔒 | Sep 11 |
516 | | **Garmin** | SOFTWARE ENGINEER 1 - EMBEDDED DEVELOPMENT | Olathe, KS | 🔒 | Sep 11 |
517 | | **Samsara** | Software Engineer – New Grad | Remote | 🔒 | Sep 09 |
518 | | **Chartboost** | Software Engineer - Bidder | Remote | 🔒 | Sep 08 |
519 | | **Wolverine Trading** | Entry-Level Software Engineer - Immediate Start | Chicago, IL | 🔒 | Sep 08 |
520 | | **Wellington Management** | Software Engineering Track – Investment Services & Technology Early Career Program - Class of 2024 - Boston | Cambridge, MA | 🔒 | Sep 07 |
521 | | **Okta** | Software Engineer New Grad - Customer Identity Cloud | Remote in USA | 🔒 | Sep 07 |
522 | | **Capital One** | FT Associate – New Grad 2024 - Software Engineer | Toronto, ON, Canada | 🔒 | Sep 07 |
523 | | **WhatNot** | Software Engineer – 2024 New Grad | Remote | 🔒 | Sep 07 |
524 | | **Applied Materials** | Software Engineer – New College Grad Opportunity - Common Systems Software | Santa Clara, CA | 🔒 | Sep 07 |
525 | | **Top Hat** | Software Developer | Canada | 🔒 | Sep 07 |
526 | | **Nuro** | Software Engineer - Web Application | Mountain View, CA | 🔒 | Sep 06 |
527 | | **Glean** | Software Engineer – University Grad | Palo Alto, CA | 🔒 | Sep 05 |
528 | | **Chartboost** | Software Engineer - Bidder - Spain | Remote | 🔒 | Sep 05 |
529 | | **RVO Health** | 2024 Early Career Program: Software Engineering Intern | Charlotte, NC | 🔒 | Sep 01 |
530 | | **RVO Health** | 2024 Early Career Program: Software Engineer | Charlotte, NC | 🔒 | Sep 01 |
531 | | **Applied Intuition** | Software Engineer – New Grad | Mountain View, CA | 🔒 | Sep 01 |
532 | | **ZipRecruiter** | Software Engineer – New Grad | Santa Monica, CA | 🔒 | Sep 01 |
533 | | **SeatGeek** | Software Engineer – New Grad | NYC | 🔒 | Sep 01 |
534 | | **SeatGeek** | Software Engineer – New Grad | Remote in USA | 🔒 | Sep 01 |
535 | | **SeatGeek** | Application Security Engineer – New Grad | NYC | 🔒 | Sep 01 |
536 | | **SeatGeek** | Application Security Engineer – New Grad | Remote in USA | 🔒 | Sep 01 |
537 | | **Techruiter** | Full Stack Developers - Javascript - Nodejs | London, UK | 🔒 | Aug 31 |
538 | | **January** | Software Engineer - New York City | NYC | 🔒 | Aug 31 |
539 | | **January** | Software Engineer - San Francisco | SF | 🔒 | Aug 31 |
540 | | **IXL Learning** | Software Engineer - Teachers Pay Teachers | Raleigh, NC | 🔒 | Aug 31 |
541 | | **[Ramp](https://simplify.jobs/c/Ramp)** | New Grad 2024 - Software Engineer - Backend | NYC | 🔒 | Aug 30 |
542 | | **NVIDIA** | GPU Performance Software Engineer – New College Grad 2023 | Santa Clara, CA | 🔒 | Aug 30 |
543 | | **The Boeing Company** | Manager Software Development – Early Career Program | Seattle, WA | 🔒 | Aug 30 |
544 | | **Stripe** | Software Engineering – New Grad | Toronto, ON, Canada | 🔒 | Aug 30 |
545 | | **[Ramp](https://simplify.jobs/c/Ramp)** | New Grad 2024 - Software Engineer - Frontend | NYC | 🔒 | Aug 30 |
546 | | **Hudson River Trading** | Software Engineer – 2024 Grads - C++ | NYC | 🔒 | Aug 28 |
547 | | **Hudson River Trading** | Software Engineer – 2024 Grads - C++ | London, UK | 🔒 | Aug 28 |
548 | | **Netflix** | New Grad Software Engineer - 2024 | Los Gatos, CA | 🔒 | Aug 28 |
549 | | **NVIDIA** | Software Engineer – New College Grad 2024 - Deep Learning Cudnn | Santa Clara, CA | 🔒 | Aug 25 |
550 | | **Turbo.net** | Software Engineer | Redmond, WA | 🔒 | Aug 25 |
551 | | **Hitachi Vantara** | Software Development Engineer - Full Stack | Waltham, MA | 🔒 | Aug 25 |
552 | | **Hitachi Vantara** | Entry Level Software Engineer | Wimborne Minster, Wimborne, UK | 🔒 | Aug 25 |
553 | | **Figma** | Data Scientist – Early Career - 2024 | SFNYC | 🔒 | Aug 25 |
554 | | **Qualtrics** | Software Engineer – New Grad - Seattle - WA | Seattle, WA | 🔒 | Aug 24 |
555 | | **Qualtrics** | Software Engineer – New Grad - Provo - UT | Provo, UT | 🔒 | Aug 24 |
556 | | **Qualtrics** | Software Engineer – New Grad - Reston - VA | Reston, VA | 🔒 | Aug 24 |
557 | | **Anyscale** | Software Engineer – New Grad 2024 | SF | 🔒 | Aug 24 |
558 | | **US Mobile** | Software Engineer | NYC | 🔒 | Aug 24 |
559 | | **OKX ** | Software Engineer – New Grad - Backend - Mobile | San Jose, CA | 🔒 | Aug 23 |
560 | | **Scale AI** | Software Engineer – New Grad | SF | 🔒 | Aug 22 |
561 | | **Okcoin** | Software Engineer – New Grad - Backend - Frontend - Mobile | San Jose, CA | 🔒 | Aug 22 |
562 | | **Ready** | Full Stack Software Engineer | SF | 🔒 | Aug 22 |
563 | | **Stripe** | Software Engineering – New Grad | Toronto, ON, Canada | 🔒 | Aug 21 |
564 | | **Stripe** | Software Engineering – New Grad | **4 locations**
Seattle, WASFChicago, ILNYC | 🔒 | Aug 21 |
565 | | **Figma** | Software Engineer – Early Career - 2024 | SFNYC | 🔒 | Aug 21 |
566 | | **Zscaler** | Software Engineer | San Jose, CA | 🔒 | Aug 21 |
567 | | **Palantir** | Software Engineer – New Grad | NYC | 🔒 | Aug 21 |
568 | | **[Uncountable](https://simplify.jobs/c/Uncountable)** | Full-Stack Engineer – New Grad | SFNYC | 🔒 | Aug 20 |
569 | | **Rhombus Power** | Data Engineer - Omaha | Omaha, NE | 🔒 | Aug 18 |
570 | | **Rhombus Power** | Data Engineer - Colorado Springs | Colorado Springs, CO | 🔒 | Aug 18 |
571 | | **Jump Trading** | Campus Quantitative Researcher - Full-Time | London, UK | 🔒 | Aug 18 |
572 | | **Databricks** | Data Scientist – New Grad - 2024 Start | SF | 🔒 | Aug 18 |
573 | | **Sonatype** | Associate Data Scientist | Remote in USA | 🔒 | Aug 18 |
574 | | **Salesforce** | Associate Site Reliability Engineer – New Grad - Govcloud | Reston, VABurlington, MA | 🔒 | Aug 14 |
575 | | **Kitware** | OSTP Software Developer | Clifton Park, NY | 🔒 | Aug 14 |
576 | | **[Saviynt](https://simplify.jobs/c/Saviynt)** | Associate Engineer - Software Engineering | El Segundo, CA | 🔒 | Aug 13 |
577 | | **AnaVation LLC** | Software Engineer | Reston, VA | 🔒 | Aug 12 |
578 | | **Arrowstreet Capital** | Quantitative Researcher | Cambridge, MA | 🔒 | Aug 11 |
579 | | **Arrowstreet Capital** | Quantitative Developer | Cambridge, MA | 🔒 | Aug 11 |
580 | | **Magic Leap** | Associate – Software Engineer - Graphics Systems | Sunnyvale, CA | 🔒 | Aug 10 |
581 | | **Jump Trading** | Campus Quantitative Researcher - Full-Time | Chicago, IL | 🔒 | Aug 10 |
582 | | **TransMarket Group** | Python Developer / Data Engineer | Chicago, IL | 🔒 | Aug 10 |
583 | | **Gecko Robotics** | Software Engineer – New Grad - Robot Systems | Pittsburgh, PA | 🔒 | Aug 09 |
584 | | **Color** | New Grad Software Engineer | Remote in USA | 🔒 | Aug 09 |
585 | | **Tensley Consulting** | Software Engineer Lvl 3 | Annapolis Junction, MD | 🔒 | Aug 09 |
586 | | **Tensley Consulting** | Software Engineer Level 1 - Java-focused | Annapolis Junction, MD | 🔒 | Aug 09 |
587 | | **Beta Technologies** | Test Equipment Software Engineer - Airborne Software | Burlington, VT | 🔒 | Aug 09 |
588 | | **Beta Technologies** | Test Equipment Software Engineer - Airborne Software | Raleigh, NCBurlington, VT | 🔒 | Aug 09 |
589 | | **Beta Technologies** | Embedded Software Engineer - Airborne Software | Raleigh, NC | 🔒 | Aug 09 |
590 | | **WeRide** | Software Engineer – New Grads 2024 | San Jose, CA | 🔒 | Aug 07 |
591 | | **Palantir** | Forward Deployed Software Engineer – New Grad - US Government | NYC | 🔒 | Aug 07 |
592 | | **Databricks** | Software Engineer – New Grad - 2024 Start | Bellevue, WA | 🔒 | Aug 04 |
593 | | **Databricks** | Software Engineer – New Grad - Distributed Data Systems - 2024 Start | Bellevue, WA | 🔒 | Aug 04 |
594 | | **Databricks** | Software Engineer – New Grad - 2024 Start | Mountain View, CA | 🔒 | Aug 04 |
595 | | **Databricks** | Software Engineer – New Grad - 2024 Start | SF | 🔒 | Aug 04 |
596 | | **Databricks** | Software Engineer – New Grad - Distributed Data Systems - 2024 Start | Mountain View, CA | 🔒 | Aug 04 |
597 | | **The Voleon Group** | Data Scientist | Oakland, CA | 🔒 | Aug 04 |
598 | | **Belvedere Trading** | Software Engineer – Entry Level 2024 Chicago | Chicago, IL | 🔒 | Aug 04 |
599 | | **Constellation Technologies** | Software Engineer 0 | Odenton, MD | 🔒 | Aug 03 |
600 | | **[Arsiem Corporation](https://simplify.jobs/c/Arsiem-Corporation)** | Software Engineer 0 | Annapolis Junction, MD | 🔒 | Aug 03 |
601 | | **Arsiem Corporation** | Software Engineer 1 | Annapolis Junction, MD | 🔒 | Aug 03 |
602 | | **Ramp** | New Grad 2023 - Software Engineer - Frontend | NYC | 🔒 | Aug 02 |
603 | | **Ramp** | New Grad 2023 - Software Engineer - Backend | NYC | 🔒 | Aug 02 |
604 | | **Skyryse** | Model Based Design Software Engineer | El Segundo, CA | 🔒 | Aug 02 |
605 | | **Veeva Systems** | Associate Software Engineer – Seeking 2024 Grads | Raleigh, NC | 🔒 | Aug 02 |
606 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Cambridge, MA | 🔒 | Aug 02 |
607 | | **Waabi** | Software Engineer - Simulation | Toronto, ON, CanadaSFRemote in USA | 🔒 | Aug 02 |
608 | | **Veeva Systems** | Associate Software Engineer – Seeking 2024 Grads | Cambridge, MA | 🔒 | Aug 02 |
609 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Toronto, ON, Canada | 🔒 | Aug 02 |
610 | | **Veeva Systems** | Associate Software Engineer – Seeking 2024 Grads | Kansas City, MO | 🔒 | Aug 02 |
611 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Kansas City, MO | 🔒 | Aug 02 |
612 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Columbus, OH | 🔒 | Aug 02 |
613 | | **[Veeva Systems](https://simplify.jobs/c/Veeva-Systems)** | Associate Software Engineer – Seeking 2024 Grads | Toronto, ON, Canada | 🔒 | Aug 02 |
614 | | **Veeva Systems** | Associate Software Engineer – Seeking 2024 Grads | Columbus, OH | 🔒 | Aug 02 |
615 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Raleigh, NC | 🔒 | Aug 02 |
616 | | **Veeva Systems** | Associate Software Engineer – Seeking 2024 Grads | Pleasanton, CA | 🔒 | Aug 02 |
617 | | **Veeva Systems** | Associate Software Engineer – Master’s 2024 Graduates in Computer Science | Pleasanton, CA | 🔒 | Aug 02 |
618 | | **Yassir** | Backend Software Engineer | Remote | 🔒 | Aug 02 |
619 | | **Yassir** | Backend Software Engineer | Montreal, QC, Canada | 🔒 | Aug 02 |
620 | | **Yassir** | Backend Software Engineer | London, UK | 🔒 | Aug 02 |
621 | | **Sentry** | Software Engineer – New Grad - 2024 | Toronto, ON, Canada | 🔒 | Aug 01 |
622 | | **Sentry** | Software Engineer – New Grad - 2024 | SF | 🔒 | Aug 01 |
623 | | **Palantir** | Forward Deployed Software Engineer – New Grad | NYC | 🔒 | Aug 01 |
624 | | **Palantir** | Forward Deployed Software Engineer – New Grad - US Government | Washington, DC | 🔒 | Aug 01 |
625 | | **Gecko Robotics** | Software Engineer – New Grad | Cambridge, MA | 🔒 | Jul 31 |
626 | | **Alarm.com** | Software Engineer | Liberty Lake, WA | 🔒 | Jul 31 |
627 | | **NVIDIA** | System Verification Infrastructure Engineer – New College Grad 2023 | Santa Clara, CADurham, NCHillsboro, OR | 🔒 | Jul 27 |
628 | | **The Nudge** | Software Engineer | SF | 🔒 | Jul 25 |
629 | | **[Flashpoint](https://simplify.jobs/c/Flashpoint)** | DOD Skillbridge - Software Engineering | Remote in USA | 🔒 | Jul 19 |
630 | | **Covariant** | Software Engineer | Oakland, CA | 🔒 | Jul 19 |
631 | | **Vatic Investments** | Quantitative Researcher – Grads - Full Time | NYC | 🔒 | Jul 19 |
632 | | **Konrad Group** | Software Developer – Entry Level | Toronto, ON, Canada | 🔒 | Jul 19 |
633 | | **Verdant Robotics** | Machine Learning Devops Engineer | Hayward, CA | 🔒 | Jul 19 |
634 | | **Study.com** | Associate Software Engineer | Mountain View, CA | 🔒 | Jul 19 |
635 | | **KoBold Metals** | Associate Data Scientist | Lusaka, Zambia | 🔒 | Jul 19 |
636 | | **WhatNot** | Software Engineer - Infrastructure | **6 locations**
Seattle, WASFLANYCPhoenix, AZDenver, CO | 🔒 | Jul 19 |
637 | | **Aquatic Capital Management** | Software Engineer: Early Career | Chicago, IL | 🔒 | Jul 19 |
638 | | **Aquatic Capital Management** | Quantitative Researcher: Early Career | Chicago, IL | 🔒 | Jul 19 |
639 | | **Palantir** | Software Engineer - Developer Productivity | London, UK | 🔒 | Jul 19 |
640 | | **Vail Systems** | Software Engineer - Ivr | Chicago, IL | 🔒 | Jul 19 |
641 | | **Point72** | Data Scientist - Proprietary Research | NYC | 🔒 | Jul 19 |
642 | | **Zoox** | Interhost – C++ Software Engineer | San Mateo, CA | 🔒 | Jul 19 |
643 | | **Tower Research Capital** | Quantitative Trader - 2024 | NYC | 🔒 | Jul 19 |
644 | | **IXL Learning** | Software Engineer – New Grad | San Mateo, CA | 🔒 | Jul 19 |
645 | | **Old Mission** | College Graduates - Full-Time - Junior Software Engineer - 2024 | Chicago, IL | 🔒 | Jul 19 |
646 | | **Akuna Capital** | Software Engineer - Entry-Level - C++ | Chicago, IL | 🔒 | Jul 19 |
647 | | **Konrad Group** | Mobile Developer – Entry Level | Toronto, ON, Canada | 🔒 | Jul 19 |
648 | | **Konrad Group** | Mobile Developer – Entry Level | Vancouver, BC, Canada | 🔒 | Jul 19 |
649 | | **Hive** | Machine Learning Engineer | SF | 🔒 | Jul 19 |
650 | | **Forward** | Software Engineer - Mobile Applications | SF | 🔒 | Jul 19 |
651 | | **Tower Research Capital** | Quantitative Research Analyst | **5 locations**
Las Vegas, NVMiami, FLChicago, ILNYCCharleston, SC | 🔒 | Jul 19 |
652 | | **Harmony** | AI Backend Engineer | Palo Alto, CA | 🔒 | Jul 19 |
653 | | **IXL Learning** | Software Engineer – New Grad | Raleigh, NC | 🔒 | Jul 19 |
654 | | **Konrad Group** | Software Developer – Entry Level | Vancouver, BC, Canada | 🔒 | Jul 19 |
655 |
656 |
657 | [⬆️ Back to Top ⬆️](https://github.com/SimplifyJobs/New-Grad-Positions#the-list-)
658 |
659 | ## We love our contributors ❤️❤️
660 |
--------------------------------------------------------------------------------