dev 68daf3f08cbe cached
17 files
4.8 MB
1.2M tokens
14 symbols
1 requests
Download .txt
Showing preview only (5,009K chars total). Download the full file or copy to clipboard to get everything.
Repository: ouckah/Summer2025-Internships
Branch: dev
Commit: 68daf3f08cbe
Files: 17
Total size: 4.8 MB

Directory structure:
gitextract_oj9nzx47/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── close_internship.yaml
│   │   ├── new_internship.yaml
│   │   └── other.yaml
│   ├── scripts/
│   │   ├── contribution_approved.py
│   │   ├── listings.json
│   │   ├── update_readmes.py
│   │   └── util.py
│   └── workflows/
│       ├── contribution_approved.yml
│       └── update_readmes.yml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE.txt
├── OFFSEASON_README.md
├── README.md
└── archived/
    └── 2025/
        ├── OFFSEASON_README.md
        ├── README.md
        └── archived.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/ISSUE_TEMPLATE/close_internship.yaml
================================================
name: Close Internship
description: Request to close/archive an internship listing
title: "Close Internship"
labels: ["close_internship"]
body:
  - type: markdown
    attributes:
      value: |
        ## Close Internship Request
        Use this form to request closing an internship listing.
        
  - type: input
    id: company_name
    attributes:
      label: Company Name
      description: Name of the company
      placeholder: ex. Google
    validations:
      required: true
      
  - type: input
    id: role_title
    attributes:
      label: Role Title
      description: Title of the internship role
      placeholder: ex. Software Engineering Intern
    validations:
      required: true
      
  - type: input
    id: job_url
    attributes:
      label: Job URL (Optional)
      description: |
        Link to the job posting (optional, helps with identification if there are multiple similar roles)
      placeholder: ex. https://example.com/careers/software-engineer-intern
    validations:
      required: false
      
  - type: dropdown
    id: closure_reason
    attributes:
      label: Reason for closing
      description: Why should this listing be closed?
      multiple: false
      options:
        - Position filled
        - Application deadline passed
        - Posting removed by company
        - Duplicate listing
        - Position cancelled
        - Other
    validations:
      required: true
      
  - type: textarea
    id: additional_info
    attributes:
      label: Additional Information (Optional)
      description: |
        Any additional context about why this listing should be closed
      placeholder: The company has confirmed the position is no longer available...
    validations:
      required: false

================================================
FILE: .github/ISSUE_TEMPLATE/new_internship.yaml
================================================
name: New Internship
description: Contribute an internship to our list
title: "New Internship"
labels: ["new_internship"]
body:
  - type: markdown
    attributes:
      value: |
        ## New Internship Contribution Form
        Thanks for taking the time to contribute!
        > Make sure you've read `CONTRIBUTING.md` before submitting your internship
  - type: input
    id: url
    attributes:
      label: Link to Internship Posting
      placeholder: ex. example.com/link/to/posting
    validations:
      required: true
  - type: input
    id: company_name
    attributes:
      label: Company Name
      placeholder: ex. Google
    validations:
      required: true
  - type: input
    id: title
    attributes:
      label: Internship Title
      placeholder: ex. ML Software Intern
    validations:
      required: true
  - type: input
    id: location
    attributes:
      label: Location
      description: |
        Where is the internship located? 
        Please separate locations with a pipe "|" if there are multiple options. 
        Include Remote if remote option available.
      placeholder: San Franciso, CA | Austin, TX | Remote
    validations:
      required: true
  - type: dropdown
    id: season
    attributes:
      label: What season is this internship for?
      description: |
        Select the season during which this internship is available.
      multiple: false
      options:
        - "Summer"
        - "Winter"
        - "Spring"
        - "Fall"
    validations:
      required: true
  - type: dropdown
    id: sponsorship
    attributes:
      label: Does this internship offer sponsorship?
      description: |
        If the posting does not specify, or it does not fall into one of these
        categories, select "Other" then specify in parentheses at the end of
        the Internship Title what the sponsorship status is
      multiple: false
      options:
        - Other
        - Offers Sponsorship
        - Does Not Offer Sponsorship
        - U.S. Citizenship is Required
    validations:
      required: true
  - type: dropdown
    id: active
    attributes:
      label: Is this internship currently accepting applications?
      multiple: false
      options:
        - "Yes"
        - "No"
    validations:
      required: true
  - type: input
    id: email
    attributes:
      label: Email associated with your GitHub account (Optional)
      description: |
        If you would like to be listed as the contributor to the repository when our github action 
        commits your contribution to the repo, please provide your email. This is the only time your 
        email will be used. If left blank, your contribution will still be made, but it will be made 
        by the bot actions@github.com.
      placeholder: ex. firstLast@gmail.com
    validations:
      required: false
  - type: textarea
    id: reason
    attributes:
      label: Extra Notes (Optional)
      description: |
        Optionally, you may provide extra context/insights to our team about the internship.
        This will not be shown anywhere on the repo, but might ensure your contribution is accepted.
      placeholder: This is an exciting new company in the vr space...
    validations:
      required: false


================================================
FILE: .github/ISSUE_TEMPLATE/other.yaml
================================================
name: Other
description: Use this issue for any questions/suggestions or closed internships.
title: "Issue: "
labels: ["other"]
body:
  - type: markdown
    attributes:
      value: |
        Thanks for taking the time to create this issue!
  - type: dropdown
    id: category
    attributes:
      label: Select a category
      description: Please select the category that best fits your issue.
      multiple: false
      options:
        - 'Question'
        - 'Suggestion'
        - 'Closed Internship'
        - 'Other'
    validations:
      required: true
  - type: textarea
    id: other
    attributes:
      label: Issue/Question/Closed Internship
      description: Please provide a brief description of the issue, question, closed internship, or suggestion.
      placeholder: ex. I have a question about the repo, I have a suggestion for the repo, An internship has been closed, How can I contribute to the repo?, etc.
    validations:
      required: true

================================================
FILE: .github/scripts/contribution_approved.py
================================================
import json
import sys
import uuid
from datetime import datetime
import util
import re

# TODO: fix this object display comment formatting
# ["Company Name", "_No response_", "Internship Title", "_No response_", "Link to Internship Posting", "example.com/link/to/posting", "Location", "San Franciso, CA | Austin, TX | Remote"]
LINES = {
    "url": 1,
    "company_name": 3,
    "title": 5,
    "locations": 7,
    "season": 9,
    "sponsorship": 11,
    "active": 13,
    "email": 15,
    "email_is_edit": 17
}

# Lines for close_internship form
CLOSE_LINES = {
    "company_name": 1,
    "role_title": 3,
    "job_url": 5,
    "closure_reason": 7,
    "additional_info": 9
}

# lines that require special handling
SPECIAL_LINES = set(["url", "locations", "sponsorship", "active", "email", "email_is_edit"])

def add_https_to_url(url):
    if not url.startswith(("http://", "https://")):
        url = f"https://{url}"
    return url


def getData(body, is_edit, is_close, username):
    lines = [text.strip("# ") for text in re.split('[\n\r]+', body)]
    
    data = {"date_updated": int(datetime.now().timestamp())}

    if is_close:
        # Handle close internship form
        if "no response" not in lines[CLOSE_LINES["company_name"]].lower():
            data["company_name"] = lines[CLOSE_LINES["company_name"]].strip()
        if "no response" not in lines[CLOSE_LINES["role_title"]].lower():
            data["role_title"] = lines[CLOSE_LINES["role_title"]].strip()
        if "no response" not in lines[CLOSE_LINES["job_url"]].lower():
            data["job_url"] = add_https_to_url(lines[CLOSE_LINES["job_url"]].strip())
        if "no response" not in lines[CLOSE_LINES["closure_reason"]].lower():
            data["closure_reason"] = lines[CLOSE_LINES["closure_reason"]].strip()
        
        # Set default email for close operations
        util.setOutput("commit_email", "action@github.com")
        util.setOutput("commit_username", "GitHub Action")
        return data

    # url handling
    if "no response" not in lines[ LINES["url"] ].lower():
        data["url"] = add_https_to_url(lines[ LINES["url"] ].strip())

    # location handling
    if "no response" not in lines[ LINES["locations"] ].lower():
        data["locations"] = [line.strip() for line in lines[ LINES["locations"] ].split("|")]

    # sponsorship handling
    if "no response" not in lines[ LINES["sponsorship"] ].lower():
        data["sponsorship"] = "Other"
        for option in ["Offers Sponsorship", "Does Not Offer Sponsorship", "U.S. Citizenship is Required"]:
            if option in lines[ LINES["sponsorship"] ]:
                data["sponsorship"] = option

    # active handling
    if "none" not in lines[ LINES["active"] ].lower():
        data["active"] = "yes" in lines[ LINES["active"] ].lower()

    # regular field handling (company_name, etc.)
    for title, line_index in LINES.items():
        if title in SPECIAL_LINES: continue
        content = lines[line_index]

        if "no response" not in content.lower():
            data[title] = content

    # email handling
    if is_edit:
        data["is_visible"] = "[x]" not in lines[15].lower()
    email = lines[ LINES["email_is_edit"] if is_edit else LINES["email"] ].lower()
    if "no response" not in email:
        util.setOutput("commit_email", email)
        util.setOutput("commit_username", username)
    else:
        util.setOutput("commit_email", "action@github.com")
        util.setOutput("commit_username", "GitHub Action")
    
    return data


def main():
    event_file_path = sys.argv[1]

    with open(event_file_path) as f:
        event_data = json.load(f)


    # CHECK IF NEW OR OLD INTERNSHIP

    new_internship = "new_internship" in [label["name"] for label in event_data["issue"]["labels"]]
    edit_internship = "edit_internship" in [label["name"] for label in event_data["issue"]["labels"]]
    close_internship = "close_internship" in [label["name"] for label in event_data["issue"]["labels"]]

    if not new_internship and not edit_internship and not close_internship:
        util.fail("Only new_internship, edit_internship, and close_internship issues can be approved")


    # GET DATA FROM ISSUE FORM

    issue_body = event_data['issue']['body']
    issue_user = event_data['issue']['user']['login']

    data = getData(issue_body, is_edit=edit_internship, is_close=close_internship, username=issue_user)

    if new_internship:
        data["source"] = issue_user
        data["id"] = str(uuid.uuid4())
        data["date_posted"] = int(datetime.now().timestamp())
        data["company_url"] = ""
        data["is_visible"] = True

    if not close_internship:
        # remove utm-source
        utm = data["url"].find("?utm_source")
        if utm == -1:
            utm = data["url"].find("&utm_source")
        if utm != -1:
            data["url"] = data["url"][:utm]


    # UPDATE LISTINGS

    def get_commit_text(listing):
        closed_text = "" if listing["active"] else "(Closed)"
        sponsorship_text = "" if listing["sponsorship"] == "Other" else ("(" + listing["sponsorship"] + ")")
        listing_text = (listing["title"].strip() + " at " + listing["company_name"].strip() + " " + closed_text + " " + sponsorship_text).strip()
        return listing_text

    with open(".github/scripts/listings.json", "r") as f:
        listings = json.load(f)

    if close_internship:
        # Handle closing internship by company name, role title, and optionally URL
        company_name = data.get("company_name")
        role_title = data.get("role_title")
        job_url = data.get("job_url")
        
        if not company_name or not role_title:
            util.fail("Company name and role title are required to close an internship")
        
        # Find matching listings
        candidates = []
        for item in listings:
            if (item["company_name"].lower() == company_name.lower() and 
                item["title"].lower() == role_title.lower()):
                candidates.append(item)
        
        # If URL provided, filter by URL
        if job_url and candidates:
            url_matches = [item for item in candidates if item["url"] == job_url]
            if url_matches:
                candidates = url_matches
        
        if not candidates:
            util.fail(f"No internship found matching company '{company_name}' and role '{role_title}'")
        elif len(candidates) > 1:
            util.fail(f"Multiple internships found matching company '{company_name}' and role '{role_title}'. Please provide the job URL to specify which one to close.")
        
        listing_to_close = candidates[0]
        
        # Mark as inactive and update timestamp
        listing_to_close["active"] = False
        listing_to_close["date_updated"] = data["date_updated"]
        
        util.setOutput("commit_message", "closed listing: " + get_commit_text(listing_to_close))
    else:
        if listing_to_update := next(
            (item for item in listings if item["url"] == data["url"]), None
        ):
            if new_internship:
                util.fail("This internship is already in our list. See CONTRIBUTING.md for how to edit a listing")
            for key, value in data.items():
                listing_to_update[key] = value

            util.setOutput("commit_message", "updated listing: " + get_commit_text(listing_to_update))
        else:
            if edit_internship:
                util.fail("We could not find this internship in our list. Please double check you inserted the right url")
            listings.append(data)

            util.setOutput("commit_message", "added listing: " + get_commit_text(data))

    with open(".github/scripts/listings.json", "w") as f:
        f.write(json.dumps(listings, indent=4))


if __name__ == "__main__":
    main()


================================================
FILE: .github/scripts/listings.json
================================================
[
    {
        "date_updated": 1757786110,
        "url": "https://www.tesla.com/careers/search/job/241053",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Software Controls Engineer Intern, Optimus - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "06a66d4b-7139-4aee-9563-e08f6ac6b339",
        "date_posted": 1744270686,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1741114501,
        "url": "https://blackrock.tal.net/vx/lang-en-GB/mobile-0/brand-3/xf-e774a855fe31/candidate/so/pm/1/pl/1/opp/9601-2026-Summer-Internship-Program-AMERS/en-GB",
        "locations": [
            "Atlanta, GA",
            "Boston, MA",
            "Chicago, IL",
            "Mexico City, MX",
            "Miami, FL",
            "Montreal, QC",
            "New York, NY",
            "Newport Beach, CA",
            "Princeton, NJ",
            "San Francisco, CA",
            "Santa Monica, CA",
            "Sausalito, CA",
            "Seattle, WA",
            "Toronto, Canada",
            "Washington, DC",
            "Wilmington, DE"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Blackrock",
        "title": "2026 Summer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "d2c404c8-5895-4ec0-95c2-3d17aed38beb",
        "date_posted": 1741114501,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825763,
        "url": "https://www.tesla.com/careers/search/job/240953",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Haskell Software Developer, Vehicle Firmware Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "92a37e8d-7652-4f27-bf5d-c829fca1ffca",
        "date_posted": 1744271371,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392726,
        "url": "https://careers.amd.com/careers-home/jobs/63596/job",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "AMD",
        "title": "Software Engineering Intern/Co-op - Masters - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "2a7705a7-5237-4734-b75f-d1ccc91fa159",
        "date_posted": 1744271648,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825676,
        "url": "https://www.tesla.com/careers/search/job/240980",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Red Team Security Engineer, Vehicle Software Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "0a3eac61-6cfb-4adb-91fb-0dd2f28c7ead",
        "date_posted": 1744271721,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392727,
        "url": "https://careers.amd.com/careers-home/jobs/63597/job",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "AMD",
        "title": "Firmware Engineering Intern/ Co-Op - Masters - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "3fecf134-032b-4b09-98ca-8d107579837d",
        "date_posted": 1744271804,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748655033,
        "url": "https://job-boards.greenhouse.io/bridgewatercampusrecruiting/jobs/7950103002",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Bridgewater Associates",
        "title": "Campus Investment Engineer Intern - 2026",
        "season": "Summer",
        "source": "vanshb03",
        "id": "17f808e1-d403-486f-882a-af94e5855f70",
        "date_posted": 1744317983,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825602,
        "url": "https://www.tesla.com/careers/search/job/241088",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Fullstack C++ Engineer, Vehicle User Interface Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c457e8ea-b515-4b36-ad50-130fc47d68f0",
        "date_posted": 1744736784,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Shoreline-Backend-Engineering-Intern---Fall-2025_JR1996691?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Shoreline Backend Engineering Intern - Fall",
        "source": "vanshb03",
        "id": "acda8b70-db75-4a20-bbdb-e012785707ef",
        "date_posted": 1745624832,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Technical-Product-Management-Intern--CUDA---Fall-2025_JR1993871?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Technical Product Management Intern, CUDA - Fall",
        "source": "vanshb03",
        "id": "d053a73c-d06b-497a-8f8c-888c77bffa61",
        "date_posted": 1745624911,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750126997,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Robotics-Software-Intern--Robotics-Platform---Fall-2025_JR1996262?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Robotics Software Intern, Robotics Platform - Fall",
        "source": "vanshb03",
        "id": "4faabb7f-a1d3-43c2-bc0b-22a0c2317860",
        "date_posted": 1745624946,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Applied-Physics-ML-Research-Intern---Fall-2025_JR1996924?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Applied Physics ML Research Intern - Fall",
        "source": "vanshb03",
        "id": "9912734a-0166-4abf-bf9f-60b859a8e36f",
        "date_posted": 1745624976,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineering-Intern--AI-Storage-Infrastructure---Fall-2025_JR1996386?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, AI Storage Infrastructure - Fall",
        "source": "vanshb03",
        "id": "8ee400c0-c1ef-4d17-b8bd-175214ca73cc",
        "date_posted": 1745624976,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineering-Intern--Deep-Learning-Accelerator---Fall-2025_JR1996923?q=Fall&source=jobboardvansh&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, Deep Learning Accelerator - Fall",
        "source": "vanshb03",
        "id": "2eaac027-726c-4a9e-9621-141dc3a1da4a",
        "date_posted": 1745624976,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineering-Intern--GPU-Communications-and-Networking---Fall-2025_JR1996389?q=Fall&source=jobboardlinkedin&locations=16fc4607fc4310011e929f7115f90000&locations=91336993fab910af6d702fae0bb4c2e8",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, GPU Communications and Networking - Fall",
        "source": "vanshb03",
        "id": "8350951d-6d04-4939-88c3-59511b3d7ec7",
        "date_posted": 1745624976,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1745877660,
        "url": "https://careers.salesforce.com/en/jobs/jr293195/summer-2026-intern-software-engineer/",
        "locations": [
            "San Francisco, CA",
            "Seattle, WA",
            "Palo Alto, CA",
            "Atlanta, GA",
            "Boston, MA",
            "New York, NY",
            "Burlington, MA",
            "Dallas, TX",
            "Indianapolis, ID"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Salesforce",
        "title": "Software Engineer Intern - 2026",
        "season": "Summer",
        "source": "vanshb03",
        "id": "1b7298f8-3be1-4373-b3bf-352687108161",
        "date_posted": 1745877660,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Active-Trader-Segment-Intern-Co-op--Fall-2025-_R_1410919",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Active Trader Segment Intern/Co-op",
        "source": "vanshb03",
        "id": "3fbae75f-8aca-4dea-97b6-19af54e5fc7d",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Mobile-Software-Engineer-Intern-Co-op_R_1412266",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Mobile Software Engineer Intern/Co-op",
        "source": "vanshb03",
        "id": "79a85486-24bf-422d-91e8-2d2f3e464706",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Software-Engineer-Intern-Co-op_R_1412258",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Software Engineer Intern/Co-op",
        "source": "vanshb03",
        "id": "b5faf971-f479-40e8-9f33-5062001ce7ff",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/TD-Terrace---160-Front-Street-West-Corporate-Toronto-Ontario/Distribution---Geospatial-Intelligence-Analyst-Intern-Co-op_R_1410739",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Distribution & Geospatial Intelligence Analyst Intern/Co-op",
        "source": "vanshb03",
        "id": "d5aa754e-0ad7-421d-9611-143a40f58c61",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Compliance-Business-Oversight-Co-op-Intern_R_1415690",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Compliance Model Oversight Analyst Intern/Co-op",
        "source": "vanshb03",
        "id": "64a17e0e-8444-44f3-8195-9334aaf7ad04",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Data-Analyst-Intern-Co-op_R_1412261",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Data Analyst Intern/Co-op",
        "source": "vanshb03",
        "id": "8c764d3d-4767-420b-87ac-2ce38a74c2ef",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Asset-Management-Portfolio-Analytics-Developer-Intern-Co-op_R_1416200",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Asset Management Portfolio Analytics Developer Intern/Co-op",
        "source": "vanshb03",
        "id": "25bc9db4-1b4d-483a-979d-b7b0ae563db9",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Risk-Data-Management-Intern-Co-op_R_1415859",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Risk Data Management Intern/Co-op",
        "source": "vanshb03",
        "id": "1e794016-a1fb-45f8-bf1a-bf5fe85efa7f",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Software-Developer-Intern-Co-op--FALL-2025-_R_1409616-1",
        "locations": [
            "Toronto, Canada",
            "Kitchener, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Software Developer Intern/Co-op",
        "source": "vanshb03",
        "id": "0d4218c1-fadd-4bc1-9289-d70f493be76f",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Asset-Management-Portfolio-Analytics-Data-Analyst-Intern-Co-op--Fall-2025-_R_1416196",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Asset Management Portfolio Analytics Data Analyst Intern/Co-op",
        "source": "vanshb03",
        "id": "b8031317-8eef-47dc-a88a-9f176ff61201",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Data-Engineer-Intern-Co-op_R_1412262",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Data Engineer Intern/Co-op",
        "source": "vanshb03",
        "id": "0ecc438c-32b6-4184-b77d-8dc7847136e7",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://td.wd3.myworkdayjobs.com/TD_Bank_Careers/job/Toronto-Ontario/Business-System-Analyst-Intern-Co-op_R_1412250",
        "locations": [
            "Toronto, Canada"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "TD Bank",
        "title": "Business System Analyst Intern/Co-op",
        "source": "vanshb03",
        "id": "3f66e5f8-e441-4574-b461-1f68ecaa17cc",
        "date_posted": 1745880642,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825374,
        "url": "https://www.tesla.com/careers/search/job/242048",
        "locations": [
            "Fremont, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Software Engineer Intern, Thermal & Chassis Analytics",
        "source": "vanshb03",
        "id": "1215e6cd-e15e-4e2b-9a9a-5ac26ba4421d",
        "date_posted": 1745882292,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825400,
        "url": "https://www.tesla.com/careers/search/job/240190",
        "locations": [
            "Fremont, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Data Analytics Intern, Supply Chain",
        "source": "vanshb03",
        "id": "0a210bf2-0cf5-4f0d-ae75-bde69f1fdf7d",
        "date_posted": 1745882292,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825434,
        "url": "https://www.tesla.com/careers/search/job/242108",
        "locations": [
            "Fremont, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Software Engineering Intern, Applications Engineering",
        "source": "vanshb03",
        "id": "c04684dd-bc32-47e2-9c45-931871138b2a",
        "date_posted": 1745882292,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838568,
        "url": "https://brunswick.wd1.myworkdayjobs.com/en-US/search/job/Champaign-IL/Computer-Graphics-Software-Developer-Intern_JR-046195",
        "locations": [
            "Urbana, IL"
        ],
        "season": "Spring",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Brunswick",
        "title": "Computer Graphics Software Developer Intern",
        "source": "vanshb03",
        "id": "db6ad7ce-aa64-4f3c-b0d4-fe0391a2ce4b",
        "date_posted": 1745978620,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-CA-Remote/Software-Engineering-Intern--GenAI---Fall-2025_JR1993478",
        "locations": [
            "Santa Clara, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern - GenAI",
        "source": "vanshb03",
        "id": "e79696f5-7e9d-4793-b4ff-84d74be73948",
        "date_posted": 1745978620,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757825786,
        "url": "https://www.tesla.com/careers/search/job/242174",
        "locations": [
            "Palo Alto, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Fullstack Software Engineer Intern, Machine Learning Platform",
        "source": "vanshb03",
        "id": "0f93d6d6-11ed-4d23-9dba-0ef86b8ec003",
        "date_posted": 1746053933,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1746114921,
        "url": "https://jobs.ashbyhq.com/cohere/b6c994c7-a435-4fd7-975b-4fb2e10a1a30",
        "locations": [
            "Canada",
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Cohere",
        "title": "Software Engineer Intern/Co-op - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "9c9979a3-2c8e-44a7-9ba5-442e4b3aa898",
        "date_posted": 1746114921,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753369132,
        "url": "https://jobs.lever.co/nimblerx/58e71e79-f977-4311-894d-f77e5fe88dce",
        "locations": [
            "Redwood City, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Nimble",
        "title": "Software Engineer Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d4188e2a-c65c-4d7d-83d4-37ca1b8b95f6",
        "date_posted": 1746564690,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392748,
        "url": "https://jobs.battelle.org/us/en/job/BMIBMIUS75470EXTERNALENUS/Cyber-Trust-Analytics-Intern-Fall-2025",
        "locations": [
            "Columbus, OH"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Battelle",
        "title": "Cyber Trust & Analytics Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "43089dc6-3361-46dc-8b75-f4957eb8e54b",
        "date_posted": 1746564783,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Machine-Learning-Co-op_R410773",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Machine Learning Intern, Co-Op",
        "source": "vanshb03",
        "id": "888ba9ac-546e-4616-9a31-fe1e391e9785",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/NJ---Mount-Laurel-1800-Bishops-Gate/Comcast-Automation-Engineer-Co-op_R411014",
        "locations": [
            "Mt Laurel Township, NJ"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Automation Engineer Intern, Co-Op",
        "source": "vanshb03",
        "id": "5f9ddb48-fbe1-4e35-8ad7-d9263fa51ebb",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-AeGIS-Iris-Software-Development-Co-op_R410983",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Aegis/Iris Software Development Intern, Co-Op",
        "source": "vanshb03",
        "id": "97d61aa1-21b9-4960-b19a-e5453d4c92e0",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Innovation-Labs-Co-op_R410776",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Innovation Labs Intern, Co-Op",
        "source": "vanshb03",
        "id": "bdfbbe15-8e99-4f2c-86da-49d5eabe5814",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Software-Engineer-Co-op_R410418",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Software Engineer Intern, Co-Op",
        "source": "vanshb03",
        "id": "71516eb5-765d-4677-acb8-f1b672257976",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1748631575,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Software-Engineer-Co-op_R411729",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Software Engineer Intern, Co-Op",
        "source": "vanshb03",
        "id": "c11c73bf-0aae-40d0-8ca6-09934fffb8f5",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Data-Program-Delivery-Co-op_R410992",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Data Program Delivery Intern, Co-Op",
        "source": "vanshb03",
        "id": "c1bc516e-3b8d-4ee8-93e7-1eba23f7ccb1",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Software-Engineer-Co-op_R410997",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Software Engineer Intern, Co-Op",
        "source": "vanshb03",
        "id": "732a1623-0bf1-4e02-866e-6c17cc16b4ec",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---Philadelphia-1800-Arch-St/Comcast-Software-Engineer-Co-op_R410777",
        "locations": [
            "Philadelphia, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Software Engineer Intern, Co-Op",
        "source": "vanshb03",
        "id": "b537df60-09a5-4401-8c46-ed3c6c87caae",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1753392763,
        "url": "https://careers.formlabs.com/job/6830690/apply/?gh_jid=6830690",
        "locations": [
            "Cambridge, MA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Formlabs",
        "title": "Hardware Systems Engineering Intern",
        "source": "vanshb03",
        "id": "69e4d7a5-0445-4dde-9159-f45d631d09b6",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1769639051,
        "url": "https://job-boards.greenhouse.io/aquaticcapitalmanagement/jobs/7985726002",
        "locations": [
            "Chicago, IL"
        ],
        "season": "Summer",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Aquatic Capital Management",
        "title": "Quantitative Researcher Intern",
        "source": "vanshb03",
        "id": "d6bbeef2-67fd-4cc5-9a81-519792823b38",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://comcast.wd5.myworkdayjobs.com/Comcast_Careers/job/PA---West-Chester-1354-Boot-Rd/Comcast-DevX-Portfolio-Co-op_R410406",
        "locations": [
            "West Chester, PA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": false,
        "company_name": "Comcast",
        "title": "Comcast Devx Portfolio Intern, Co-Op",
        "source": "vanshb03",
        "id": "e52b8b55-854a-41b6-980c-7f1f5feba037",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1746749561,
        "url": "https://www.tesla.com/careers/search/job/242661",
        "locations": [
            "Palo Alto, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Performance Modeling Engineer Intern, Dojo",
        "source": "vanshb03",
        "id": "ea970ccb-fe15-4803-8bc4-fada40b952b6",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1746749561,
        "url": "https://www.tesla.com/careers/search/job/242665",
        "locations": [
            "Palo Alto, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Software Machine Learning Engineer Intern, Reliability Energy Engineering",
        "source": "vanshb03",
        "id": "10aedcdc-1e0a-4dc2-a3f1-5f91accfc05b",
        "date_posted": 1746749561,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1746908794,
        "url": "https://www.tesla.com/careers/search/job/242741",
        "locations": [
            "Palo Alto, CA"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "ML Performance Software Engineer Intern, Dojo",
        "source": "vanshb03",
        "id": "7bcdc721-8d15-4da0-a500-1df62973c094",
        "date_posted": 1746908794,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1746908794,
        "url": "https://fa-evmr-saasfaprod1.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/20045",
        "locations": [
            "Berkeley Heights, NJ"
        ],
        "season": "Fall",
        "sponsorship": "Other",
        "active": true,
        "company_name": "Nokia",
        "title": "Hardware Development Co-op Intern",
        "source": "vanshb03",
        "id": "6581432c-9c44-46ee-ab32-1767dab90051",
        "date_posted": 1746908794,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392764,
        "url": "https://careers.snowflake.com/us/en/job/SNCOUS1ECD6729D4D744D7ADB3BCD438B54E27EXTERNALENUSD606671FAB0C4305B901CDD4E66DEA76/",
        "locations": [
            "Menlo Park, CA"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": false,
        "company_name": "Snowflake",
        "title": "Software Engineer Intern (Core Engineering)",
        "season": "Fall",
        "source": "SitaaronKL",
        "id": "f5220c0c-35fe-4efd-8f0b-db919e7cd1da",
        "date_posted": 1747169933,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1747299682,
        "url": "https://www.tesla.com/careers/search/job/242996",
        "locations": [
            "Fremont, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Factory Firmware Hardware Design Engineer Intern, Vehicle Firmware - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "100f17d2-08bf-49b7-a239-4ed9d456b0d6",
        "date_posted": 1747299682,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1747299758,
        "url": "https://jobs.ashbyhq.com/ramp/0f1c331d-21b6-44fb-a326-5357d6e30188",
        "locations": [
            "New York, NY",
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Ramp",
        "title": "Software Engineer Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "f9d5d5dc-57e7-43af-94d5-e95a41e1d8f6",
        "date_posted": 1747299758,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748631577,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Deep-Learning-Server-Software-Intern--DGX---Fall-2025_JR1990592",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Deep Learning Server Software Intern, DGX - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "7ec6ba77-9a92-4f2a-ae29-93c7b68f2e16",
        "date_posted": 1747650526,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748144939,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-TX-Austin/Camera-Systems-Software-Engineering-Intern---Fall-2025_JR1993696",
        "locations": [
            "Austin, TX",
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Camera Systems Software Engineering Intern - Fall",
        "season": "Fall",
        "source": "vanshb03",
        "id": "89befab7-7063-452c-9106-c08b889497fb",
        "date_posted": 1747650566,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1747930183,
        "url": "https://jobs.ashbyhq.com/openai/a04c133d-f969-4ce0-9217-b639232a1f09",
        "locations": [
            "San Francisco, CA",
            "Seattle, WA"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": false,
        "company_name": "OpenAI",
        "title": "Software Engineer Intern/Co-Op, Applied Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "772d28be-7952-4dcf-a3f4-7999f7d612e1",
        "date_posted": 1747930183,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748032363,
        "url": "https://jobs.bytedance.com/en/position/7507012740722166023/detail",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "ByteDance",
        "title": "Backend Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d7aa2e63-f377-4348-860c-b1a223a7c273",
        "date_posted": 1748032363,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748109783,
        "url": "https://job-boards.greenhouse.io/point72/jobs/7297613002",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Point72",
        "title": "Quantitative Developer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "28cd77fc-36e9-4331-b3f3-39e9f4149c33",
        "date_posted": 1748109783,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748631580,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Backend-Compiler-Engineer-Intern---Fall-2025_JR1997903",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Backend Compiler Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "fb84e7fd-4a82-424c-97a1-8ae901cc8190",
        "date_posted": 1748109811,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748135738,
        "url": "https://www.stokespace.com/careers/current-openings/?gh_jid=5500675004",
        "locations": [
            "Kent, WA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Stoke Space",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "ebf41b25-e4f1-47e1-b7cf-f1db857f8e8c",
        "date_posted": 1748135738,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748135782,
        "url": "https://jobs.citi.com/job/new-york/markets-quantitative-analysis-summer-analyst-new-york-city-us-2026/287/77659897200",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citi",
        "title": "Quantitative Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "29420c35-16c9-4f56-acaf-613e8b5653b6",
        "date_posted": 1748135782,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748135823,
        "url": "https://group.bnpparibas/en/careers/job-offer/2026-summer-analyst-internship-technology",
        "locations": [
            "Jersey City, NJ"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "BNP Paribas",
        "title": "Summer Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "c2b21661-422f-4182-bddb-47793bd82bcb",
        "date_posted": 1748135823,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754706004,
        "url": "https://roberthalf.wd1.myworkdayjobs.com/ProtivitiNA/job/NEW-YORK-CITY/New-York-City-Digital-Intern---2026_JR-254945",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Protiviti",
        "title": "Digital Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "c9998b27-de30-404c-b0da-560a7e5b8dea",
        "date_posted": 1748135864,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748136991,
        "url": "https://www.sgh.com/careers/job-openings/view-job/?gh_jid=7835075002",
        "locations": [
            "Washington, DC"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Simpson Gumpertz & Heger",
        "title": "Building Technology Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "b369b5dd-1cf7-429b-a18a-4e2d99079d1c",
        "date_posted": 1748136991,
        "company_url": "",
        "is_visible": false
    },
    {
        "date_updated": 1748137043,
        "url": "https://www.deshaw.com/careers/proprietary-trading-intern-new-york-summer-2026-5379",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "D.E Shaw",
        "title": "Proprietary Trading Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "f6db5b21-9d7e-4a7e-9c74-b5d58b34e0c4",
        "date_posted": 1748137043,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748137106,
        "url": "https://www.deshaw.com/careers/fundamental-research-analyst-intern-new-york-summer-2026-5378",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "D.E Shaw",
        "title": "Fundamental Research Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "ad838857-2d4c-4e16-b227-726ea9ae2829",
        "date_posted": 1748137106,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752506000,
        "url": "https://voloridge-investment-management.hiringthing.com/job/889648/research-software-engineer-intern-2026",
        "locations": [
            "Jupiter, FL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Voloridge",
        "title": "Research Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "b746ce2c-0eb4-4ce2-b3df-7d66f7dcccdd",
        "date_posted": 1748137289,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751988680,
        "url": "https://voloridge-investment-management.hiringthing.com/job/889639/quantitative-research-intern-2026",
        "locations": [
            "Jupiter, FL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Voloridge",
        "title": "Quantitative Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "a0116925-ec94-42c0-92e6-479fa1e97aa0",
        "date_posted": 1748137316,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1765306323,
        "url": "https://job-boards.greenhouse.io/aquaticcapitalmanagement/jobs/7990895002",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Aquatic Capital Management",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "9ecafac9-6d95-4d0a-b80a-02801756cd47",
        "date_posted": 1748137378,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748655033,
        "url": "https://boards.greenhouse.io/embed/job_app?for=gsacapital&token=7526394002",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "GSA Capital",
        "title": "Quantitative Researcher Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "f32cb2b5-99e8-44c6-9809-e74574d52aef",
        "date_posted": 1748137917,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748138967,
        "url": "https://careers.sig.com/job/9305/Quantitative-Systematic-Trading-Internship-Master-s-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Systematic Trading Intern, Masters",
        "season": "Summer",
        "source": "vanshb03",
        "id": "92d245ee-c6a9-4baf-9efa-9c83fb98ec84",
        "date_posted": 1748138967,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748139026,
        "url": "https://careers.sig.com/job/9306/Quantitative-Research-Internship-Master-s-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Research Intern, Masters",
        "season": "Summer",
        "source": "vanshb03",
        "id": "7aaf5de3-1487-4d1f-b4dd-8fef08d0c58e",
        "date_posted": 1748139026,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392768,
        "url": "https://careers.sig.com/job/9053/Growth-Equity-Investment-Analyst-Internship-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Susquehanna",
        "title": "Growth Equity Investment Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "f03195e2-0ec3-4c89-8163-ddf13ad962e1",
        "date_posted": 1748139125,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748139176,
        "url": "https://careers.sig.com/job/9304/Quantitative-Systematic-Trading-Internship-PhD-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Systematic Trading Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "d81bf3bf-8a31-4027-b214-77a4d8461695",
        "date_posted": 1748139176,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748139313,
        "url": "https://careers.sig.com/job/9238/Quantitative-Research-Internship-PhD-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "7ccf8feb-5b2b-4929-8286-19d50dff6934",
        "date_posted": 1748139313,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748139819,
        "url": "https://tower-research.com/open-positions/?gh_jid=6651908",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tower Research Capital",
        "title": "Machine Learning Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "acc124c6-3cce-4f88-a9ab-89c4b0d4f2da",
        "date_posted": 1748139819,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748140200,
        "url": "https://www.lockheedmartinjobs.com/job/herndon/cyber-software-engineering-intern-summer-2026/694/81556994752",
        "locations": [
            "Herndon, VA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Lockheed Martin",
        "title": "Cyber Software Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "75090051-0bc6-44bd-a486-90301c70279c",
        "date_posted": 1748140200,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392769,
        "url": "https://careers.garmin.com/careers-home/jobs/15952/job",
        "locations": [
            "Chandler, AZ"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Garmin",
        "title": "Software Engineer Intern/Co-Op",
        "season": "Fall",
        "source": "vanshb03",
        "id": "e5576919-db7a-4b85-9478-7ec92161fb73",
        "date_posted": 1748143354,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748143628,
        "url": "https://bambusdev.my.site.com/s/details?jobReq=Applied-AI-Engineer--Fall-2025-Associate_REQ6818",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Balyasny Asset Management",
        "title": "Applied AI Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c36fb023-da01-4fad-a8b3-9087e066c2f8",
        "date_posted": 1748143628,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748279549,
        "url": "https://lifeattiktok.com/search/7507388155302185223?spread=XKM9ZXE",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tiktok",
        "title": "Full Stack Software Engineer Intern, Foundation Platform",
        "season": "Fall",
        "source": "vanshb03",
        "id": "b96e13dc-feb3-411d-b5a7-28c9f08e9075",
        "date_posted": 1748279549,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838573,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Software-Engineer--Fleet-Health-Instrumentation-Intern---Fall-2025_JR1997488",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineer Intern, Fleet Health Instrumentation",
        "season": "Fall",
        "source": "vanshb03",
        "id": "a5693f74-5bd9-4ed7-ac64-87a989e9432f",
        "date_posted": 1748281436,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748631587,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Compute-Systems-Software-Intern---Fall-2025_JR1997349",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Compute Systems Software Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d789ef6e-4bce-4071-93e6-783ec4ba6fbd",
        "date_posted": 1748281686,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749294146,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/System-Software-Intern--Power-Management---Fall-2025_JR1991268",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "System Software Intern, Power Management",
        "season": "Fall",
        "source": "vanshb03",
        "id": "f2f7f6d2-b522-47ca-9dd4-65d4fbda2d4a",
        "date_posted": 1748281738,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748631592,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Systems-Software-Engineering-Intern--GPU-Virtualization---Fall-2025_JR1996983",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Systems Software Engineering Intern, GPU Virtualization",
        "season": "Fall",
        "source": "vanshb03",
        "id": "48725354-b0ce-4ad0-8aac-591a98b813d9",
        "date_posted": 1748306604,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748631594,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Software-Engineering-Intern--Core-Computer-Vision---Fall-2025_JR1990301",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, Core Computer Vision",
        "season": "Fall",
        "source": "vanshb03",
        "id": "7ffac569-3ce8-4ba5-8513-8953f2a1ba1c",
        "date_posted": 1748306636,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748452496,
        "url": "https://www.tesla.com/careers/search/job/243711",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Supercharger SIL Test Infrastructure Software Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "011de9be-ae63-4f06-adc4-7734117d2f58",
        "date_posted": 1748452496,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748452529,
        "url": "https://www.tesla.com/careers/search/job/243733",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "System Validation Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d6db48c0-75da-4375-9908-50d7f566ecbb",
        "date_posted": 1748452529,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392770,
        "url": "https://careers.medpace.com/jobs/11408/job",
        "locations": [
            "Cincinnati, OH"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Medpace",
        "title": "Web Developer Intern, Feasibility & Proposals",
        "season": "Fall",
        "source": "vanshb03",
        "id": "1b3d5e02-0561-4fd2-ac8b-a6c1c8ff0af6",
        "date_posted": 1748452808,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750945539,
        "url": "https://jj.wd5.myworkdayjobs.com/jj/job/Cincinnati-Ohio-United-States-of-America/Software-Engineering-Co-op---Fall-2025_R-011682",
        "locations": [
            "Cincinnati, OH"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Johnson & Johnson",
        "title": "Software Engineering Co-op",
        "season": "Fall",
        "source": "vanshb03",
        "id": "768cf45a-2369-49fe-9b05-b4b0cbc59e4b",
        "date_posted": 1748453117,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749001123,
        "url": "https://job-boards.greenhouse.io/mercury/jobs/5463106004",
        "locations": [
            "San Francisco, CA",
            "New York, NY",
            "Portland, OR",
            "Remote"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Mercury",
        "title": "Backend Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "92dc5839-c89c-40fe-9bf8-0b4d736d9b97",
        "date_posted": 1748453179,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749001122,
        "url": "https://job-boards.greenhouse.io/mercury/jobs/5548410004",
        "locations": [
            "San Francisco, CA",
            "New York, NY",
            "Portland, OR",
            "Remote"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Mercury",
        "title": "Full-stack Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "a2bcae93-069b-48a7-9b08-31c43858db7a",
        "date_posted": 1748453205,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749001122,
        "url": "https://job-boards.greenhouse.io/mercury/jobs/5548047004",
        "locations": [
            "San Francisco, CA",
            "New York, NY",
            "Portland, OR",
            "Remote"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Mercury",
        "title": "Frontend Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d661c723-72a2-4e21-9894-07812bae0640",
        "date_posted": 1748453220,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749294153,
        "url": "https://haier.wd3.myworkdayjobs.com/ge_appliances/job/USA-Louisville-KY/Software-Engineering-Co-op-Summer-2026_REQ-22833",
        "locations": [
            "Louisville, KY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "GE Appliances",
        "title": "Software Engineering Co-op",
        "season": "Summer",
        "source": "vanshb03",
        "id": "0536a1ab-60a2-4b9d-9bcb-a5b93e9755b5",
        "date_posted": 1748453270,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750945544,
        "url": "https://haier.wd3.myworkdayjobs.com/ge_appliances/job/USA-Louisville-KY/Software-Engineering-Co-op-Spring-2026_REQ-21720",
        "locations": [
            "Louisville, KY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "GE Appliances",
        "title": "Software Engineering Co-op",
        "season": "Spring",
        "source": "vanshb03",
        "id": "8e4725df-488e-4ae7-9f8a-2f0ca12fd9d2",
        "date_posted": 1748453296,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753480142,
        "url": "https://job-boards.greenhouse.io/verkada/jobs/4726446007",
        "locations": [
            "San Mateo, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Verkada",
        "title": "Software Engineering Intern, Backend",
        "season": "Fall",
        "source": "vanshb03",
        "id": "10421445-e596-46b7-8fa3-b04af7baf548",
        "date_posted": 1748491931,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751258503,
        "url": "https://job-boards.greenhouse.io/verkada/jobs/4634987007",
        "locations": [
            "San Mateo, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Verkada",
        "title": "Software Engineering Intern, Mobile",
        "season": "Fall",
        "source": "vanshb03",
        "id": "98541bf1-875a-490e-9a63-aacc75579f5f",
        "date_posted": 1748492000,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754705996,
        "url": "https://job-boards.greenhouse.io/verkada/jobs/4609412007",
        "locations": [
            "San Mateo, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Verkada",
        "title": "Technical Support Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "3a7b77e4-b87a-4966-a683-2c98fa4c3850",
        "date_posted": 1748492055,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748492386,
        "url": "https://www.amazon.jobs/en/jobs/2993367/asic-engineering-internship-fall-2025-rfic-communications-systems-project-kuiper",
        "locations": [
            "Redmond, WA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Amazon",
        "title": "ASIC Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "bedb98d8-0bf9-46ce-a77c-6998e80b017e",
        "date_posted": 1748492386,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838585,
        "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Networking-Software-Intern--Fall--2025_JR1998188",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Networking Software Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "ec167a71-7164-4384-839f-3381cf1d554d",
        "date_posted": 1748577033,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749001124,
        "url": "https://job-boards.greenhouse.io/rsinternboard/jobs/7855756002?gh_jid=7855756002",
        "locations": [
            "Stennis, MI"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Relativity Space",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "fd39ada5-b6fe-40a4-b39e-c764de4e91d3",
        "date_posted": 1748577110,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748577171,
        "url": "https://www.tesla.com/careers/search/job/243735",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Software Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "31e04c2d-6f72-440c-a7fd-053c9e8e35ff",
        "date_posted": 1748577171,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437274,
        "url": "https://liveramp.wd5.myworkdayjobs.com/liverampcareers/job/San-Francisco/Software-Engineer--Co-op---Clean-Rooms_JR011637",
        "locations": [
            "San Francisco, CA",
            "Little Rock, AR"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "LiveRamp",
        "title": "Software Engineer, Co-op - Clean Rooms",
        "season": "Fall",
        "source": "vanshb03",
        "id": "75f8104e-7429-4b0a-8362-4b69f94c2861",
        "date_posted": 1748579303,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748579559,
        "url": "https://neuralink.com/careers/apply/?gh_jid=6569020003&gh_src=c356a2533us",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Neuralink",
        "title": "Software Engineer Intern, Implant",
        "season": "Fall",
        "source": "vanshb03",
        "id": "abc7845c-16bf-414c-9758-a887ee764eb5",
        "date_posted": 1748579559,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748581077,
        "url": "https://group.bnpparibas/en/careers/job-offer/2026-summer-associate-internship-global-markets-quantitative-research-and-trading-1",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "BNP Paribas",
        "title": "Quant Research & Trading Intern",
        "season": "Summer",
        "source": "lsgordon",
        "id": "cb963f0b-3aa1-42de-a688-ee13b0a40830",
        "date_posted": 1748581077,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749294165,
        "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineering-Intern--AI-Tools-Analysis---2025_JR1998233",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, AI Tools Analysis",
        "season": "Fall",
        "source": "vanshb03",
        "id": "e5b170dc-5ebd-4bcc-8e70-a2625075fbb2",
        "date_posted": 1748638810,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392781,
        "url": "https://careers.amd.com/careers-home/jobs/63889?lang=en-us",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "AMD",
        "title": "Firmware Engineering Intern/Co-Op",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d4605270-7d1a-46e6-af92-551024369e72",
        "date_posted": 1748638851,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392780,
        "url": "https://careers.amd.com/careers-home/jobs/63578?lang=en-us",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "AMD",
        "title": "Software Engineering Intern/Co-Op",
        "season": "Fall",
        "source": "vanshb03",
        "id": "6183fc69-1f01-4025-9d7e-211b282ef2a5",
        "date_posted": 1748638875,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751486202,
        "url": "https://job-boards.greenhouse.io/podium81/jobs/6932534",
        "locations": [
            "Lehi, UT"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Podium",
        "title": "Security Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "3a943df0-2f20-495d-a969-a48572cb0940",
        "date_posted": 1748644489,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392780,
        "url": "https://careers.formlabs.com/job/6901361/apply/?gh_jid=6901361",
        "locations": [
            "Somerville, MA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Formlabs",
        "title": "Web Development Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "395e43f7-5436-4017-ab14-006cffe52e8d",
        "date_posted": 1748644572,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838380,
        "url": "https://job-boards.greenhouse.io/wurljobs/jobs/4454109006",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Wurl",
        "title": "Full Stack Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4276cc6a-3ca2-4dca-b70a-acef5998b763",
        "date_posted": 1748645257,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748716965,
        "url": "https://careers.leonardodrs.com/job/Beavercreek-Fall-2025-Software-Engineering-Intern-OH-45431/1295374800/",
        "locations": [
            "Beavercreek, OH"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Leonardo DRS",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "0efa75c0-f334-4f3f-8c9f-7f060c166938",
        "date_posted": 1748716965,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838591,
        "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/SRE-DevOps-Engineer-Intern--IPP---Fall-2025_JR1996817",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "SRE DevOps Engineer Intern, IPP",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4d0e23b0-4d43-4b23-9e6d-115fadf3b0a2",
        "date_posted": 1748716996,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748717027,
        "url": "https://www.tesla.com/careers/search/job/243876",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Charging Distributed Systems Software Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "0fdcfac8-9a23-4afb-859b-bb610eb58586",
        "date_posted": 1748717027,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748717045,
        "url": "https://www.tesla.com/careers/search/job/243937",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Firmware Engineer Intern, AI Hardware",
        "season": "Fall",
        "source": "vanshb03",
        "id": "99d348dd-d73a-4b82-a62d-7c6bf05f698d",
        "date_posted": 1748717045,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1774442905,
        "url": "https://job-boards.greenhouse.io/neuralink/jobs/6594261003",
        "locations": [
            "Fremont, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Neuralink",
        "title": "Machine Learning Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "17c11c35-3ea2-4558-acda-699516b5521a",
        "date_posted": 1748717073,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748751124,
        "url": "https://www.tesla.com/careers/search/job/243734",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Powerwall Product Manager Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "568cf828-3aec-408f-852d-70ed367ca35e",
        "date_posted": 1748751124,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829126,
        "url": "https://jobs.apple.com/en-us/details/200606143/hardware-technology-internships?team=STDNT",
        "locations": [
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Apple",
        "title": "Hardware Technology Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "c73c54cc-4369-4f35-92d1-989e4ee2076d",
        "date_posted": 1748829126,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829139,
        "url": "https://jobs.apple.com/en-us/details/200606141/engineering-program-management-internships?team=STDNT",
        "locations": [
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Apple",
        "title": "Engineering Program Management Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "20ab5502-4bef-447a-b152-92a6536dc5b8",
        "date_posted": 1748829139,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829161,
        "url": "https://jobs.apple.com/en-us/details/200606469/machine-learning-ai-internships?team=STDNT",
        "locations": [
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Apple",
        "title": "Machine Learning / AI Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "00f567fc-9c16-4cc4-bb2c-8a4f700a8e85",
        "date_posted": 1748829161,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829173,
        "url": "https://jobs.apple.com/en-us/details/200606475/hardware-engineering-internships?team=STDNT",
        "locations": [
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Apple",
        "title": "Hardware Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "0eb17c82-149d-49c5-9af2-773b45522ea5",
        "date_posted": 1748829173,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829269,
        "url": "https://jobs.apple.com/en-us/details/200606145/software-engineering-internships?team=STDNT",
        "locations": [
            "United States"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Apple",
        "title": "Software Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "34a2859a-4b01-440c-9f21-c7f2c43173ed",
        "date_posted": 1748829269,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748829739,
        "url": "https://careers.point72.com/CSJobDetail?jobName=quantitative-research-intern-nlp-&jobCode=CSS-0013383",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Point72",
        "title": "Quantitative Research Intern (NLP)",
        "season": "Summer",
        "source": "vanshb03",
        "id": "37adb69c-1e7c-4593-b9cf-3af7748786e6",
        "date_posted": 1748829739,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437276,
        "url": "https://blueorigin.wd5.myworkdayjobs.com/en-US/BlueOrigin/job/Seattle-WA/Spring-2026-Avionics-Software-Engineering-Intern---Undergraduate_R52403",
        "locations": [
            "Seattle, WA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Blue Origin",
        "title": "Avionics Software Engineer Intern",
        "season": "Spring",
        "source": "vanshb03",
        "id": "7b5f0bd2-2ecd-49da-85b0-21a45ada50af",
        "date_posted": 1748830508,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1748830749,
        "url": "https://www.tesla.com/careers/search/job/243890",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "AI Engineer Intern, Self-Driving",
        "season": "Fall",
        "source": "vanshb03",
        "id": "e199e264-141f-4fe8-a458-fbf5ed911ca7",
        "date_posted": 1748830749,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392803,
        "url": "https://www.splunk.com/en_us/careers/jobs/site-reliability-engineer-intern-33064.html",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Splunk",
        "title": "Site Reliability Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "f1c4cb55-457a-41c9-a191-f37945beee88",
        "date_posted": 1748954354,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749080297,
        "url": "https://www.tesla.com/careers/search/job/243842",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Firmware Engineer Intern, Energy Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c48b73c6-19da-40db-86c1-774b700280d8",
        "date_posted": 1749080297,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749172617,
        "url": "https://jobs.ashbyhq.com/n1/afe7deb5-9cfd-4926-bcb4-058d418592a6",
        "locations": [
            "New York"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "N1",
        "title": "Software Engineer Intern (Backend, Rust)",
        "season": "Summer",
        "source": "Orazej",
        "id": "03b12e4c-fcdb-4a64-b65e-5661c5bef7b1",
        "date_posted": 1749172617,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749172644,
        "url": "https://jobs.ashbyhq.com/n1/b531e33f-d1c2-4892-b6b7-13ce22569578",
        "locations": [
            "New York"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "N1",
        "title": "Software Engineer Intern (Fullstack)",
        "season": "Summer",
        "source": "Orazej",
        "id": "d1078860-a360-4cba-b4f9-a94cdbd4530d",
        "date_posted": 1749172644,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749173404,
        "url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749924007?gh_jid=4749924007",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TransMarket Group",
        "title": "Systems Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "be869a9d-2920-4aa2-b2ee-f778140abb2f",
        "date_posted": 1749173404,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749173446,
        "url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749908007?gh_jid=4749908007",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TransMarket Group",
        "title": "DevOps/SRE Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "bda8602f-2132-4ab5-9d44-f8d5a80954aa",
        "date_posted": 1749173446,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749173471,
        "url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749915007?gh_jid=4749915007",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TransMarket Group",
        "title": "Quantitative Trader Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "26e00142-def4-4b75-8a6d-fe80dae2ffaf",
        "date_posted": 1749173471,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757797624,
        "url": "https://jobs.jobvite.com/splunk-careers/job/ofq7vfw1",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Splunk",
        "title": "Software Engineer Intern, Frontend",
        "season": "Fall",
        "source": "vanshb03",
        "id": "2d37610b-5d2e-47d7-b9ef-c0e5f3c18e18",
        "date_posted": 1749173670,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757799072,
        "url": "https://jobs.jobvite.com/splunk-careers/job/o7n7vfwQ",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Splunk",
        "title": "Software Engineer Intern, Backend/Full-stack",
        "season": "Fall",
        "source": "vanshb03",
        "id": "a9ce21a1-67fb-45dc-a77f-db549fca98bb",
        "date_posted": 1749173708,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757786125,
        "url": "https://jobs.jobvite.com/splunk-careers/job/otG8vfww",
        "locations": [
            "Remote",
            "Canada"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Splunk",
        "title": "Software Engineer Co-Op, Backend/Full-stack",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c8f481f0-e484-4033-88e4-b78d5ef13bfb",
        "date_posted": 1749173760,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750127015,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-us/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Windows-AI-Engineering-Intern---Fall-2025_JR1998337",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Windows AI Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "cc7d8617-2302-46c2-88aa-9b1ecbe4076a",
        "date_posted": 1749173824,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838599,
        "url": "https://asml.wd3.myworkdayjobs.com/asmlext1/job/Wilton-CT-USA/Fall-2025-Co-op---Feature-Detection-and-Data-Science--Internship--_J-00321843",
        "locations": [
            "Wilton, CT"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "ASML",
        "title": "Feature Detection and Data Science Co-op Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "cdda7630-e9b4-4a03-b2f1-3ede8cb1ba03",
        "date_posted": 1749173854,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749176486,
        "url": "https://lifeattiktok.com/search/7392099728617523507?spread=XKM9ZXE",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TikTok",
        "title": "Tool Software Engineer Intern, TikTok Effect House",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4433892d-730c-4ab7-ad04-d06c44f90f3a",
        "date_posted": 1749176486,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838380,
        "url": "https://job-boards.greenhouse.io/transmarketgroup/jobs/4749906007?gh_jid=4749906007",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "TransMarket Group",
        "title": "Algorithmic Trader Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "e4c46459-2217-4758-b370-766a79f53834",
        "date_posted": 1749177218,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749260792,
        "url": "https://ats.rippling.com/en-GB/rippling/jobs/3fd9615a-d0c7-458c-a0fc-5d9d7f0ce77c",
        "locations": [
            "New York, NY",
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Rippling",
        "title": "Frontend Software Engineer Intern",
        "season": "Winter",
        "source": "vanshb03",
        "id": "df70fa57-977b-4f31-832e-a0e57ed070b5",
        "date_posted": 1749260792,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749260811,
        "url": "https://ats.rippling.com/en-GB/rippling/jobs/ee1ec0b1-9a55-408d-979d-9c74f257e9ea",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Rippling",
        "title": "Machine Learning Engineer Intern",
        "season": "Winter",
        "source": "vanshb03",
        "id": "62b793bb-caea-465f-a95f-ce43bb81f1fc",
        "date_posted": 1749260811,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750945553,
        "url": "https://bmo.wd3.myworkdayjobs.com/en-US/External/job/New-York-NY-USA/Junior-Software-Developer--Fall-2025--Internship----4-months_R250013865",
        "locations": [
            "New York, NY",
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "BMO",
        "title": "Junior Software Developer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "8f98f275-5eb6-4cd8-a21b-0256fcf0de1a",
        "date_posted": 1749261120,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749838604,
        "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineering-Intern--LLM-NIM-Engineering---Fall-2025_JR1990733",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Software Engineering Intern, LLM NIM Engineering",
        "season": "Fall",
        "source": "vanshb03",
        "id": "8cb5de01-60e2-4ea2-a080-ccfc5298e2e2",
        "date_posted": 1749261151,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749261180,
        "url": "https://fireflyspace.com/careers/?jobId=EE4A2E87-DC33-C12B-D025-085A77D1CA8C",
        "locations": [
            "Cedar Park, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Firefly Aerospace",
        "title": "Software Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "fd02b15d-cc4b-4a0e-be25-b8206af35a5a",
        "date_posted": 1749261180,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749262000,
        "url": "https://ats.rippling.com/en-GB/rippling/jobs/203e0cac-0e30-4603-8087-f764e8c3f85c",
        "locations": [
            "New York, NY",
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Rippling",
        "title": "Software Engineer Intern",
        "season": "Winter",
        "source": "vanshb03",
        "id": "859558cb-6cc3-4251-8a23-4545fdfaebfa",
        "date_posted": 1749262000,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749268538,
        "url": "https://www.amazon.jobs/en/jobs/2875846/amazon-robotics-software-development-engineer-co-op-fall-2025",
        "locations": [
            "Westborough, MA",
            "North Reading, MA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Amazon Robotics",
        "title": "Software Development Engineer Co-Op",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d1d88f10-7402-471a-8869-3fa42d8884ab",
        "date_posted": 1749268538,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750127021,
        "url": "https://nvidia.wd5.myworkdayjobs.com/nvidiaexternalcareersite/job/US-CA-Santa-Clara/Data-Science-and-Insights-Intern--Omniverse---Fall-2025_JR1996816",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Data Science and Insights Intern, Omniverse",
        "season": "Fall",
        "source": "vanshb03",
        "id": "87c7775c-cfe6-4bbb-aecd-9060be9403be",
        "date_posted": 1749269059,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392817,
        "url": "https://www.pinterestcareers.com/jobs/6917750/2025-fall-machine-learning-intern/?gh_jid=6917750",
        "locations": [
            "San Francisco, CA",
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Pinterest",
        "title": "Machine Learning Intern, Masters/PhD",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c352773d-5803-4a57-8c37-379f300b9e32",
        "date_posted": 1749269167,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749424625,
        "url": "https://careers.ansys.com/job/Evanston-Spring-2026-Intern-Meshing-%28MSPHD%29-IL-60201/1292622200",
        "locations": [
            "Evanston, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Ansys",
        "title": "Meshing Software Internship",
        "season": "Spring",
        "source": "gavieeen",
        "id": "3117d586-2ae2-4618-b687-e6f5102d5eee",
        "date_posted": 1749424625,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749443786,
        "url": "https://careers.sig.com/job/9377/Quantitative-Trader-Internship-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Trader Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "7e3c6097-3845-4e04-b773-fb8bdf24c654",
        "date_posted": 1749443786,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1765306323,
        "url": "https://job-boards.greenhouse.io/worldquant/jobs/4574082006?gh_src=78427c666us",
        "locations": [
            "Old Greenwich, CT"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "WorldQuant",
        "title": "Software Engineer Intern, AI/LLM Initiative",
        "season": "Fall",
        "source": "vanshb03",
        "id": "aff5ef46-63cf-4378-92a7-202fb2c2ee07",
        "date_posted": 1749595407,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749595470,
        "url": "https://jobs.dolby.com/careers/job/29512720?domain=dolby.com&hl=en",
        "locations": [
            "Sunnyvale, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Dolby",
        "title": "Cloud QA Automation Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d6edf35d-d666-423d-92a1-87bc4ad597ce",
        "date_posted": 1749595470,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749595513,
        "url": "https://www.tesla.com/careers/search/job/244394",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Software Engineering Intern, Recruiting",
        "season": "Fall",
        "source": "vanshb03",
        "id": "cd7f878a-7af0-4da6-993b-93ffa9c74b2f",
        "date_posted": 1749595513,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751747075,
        "url": "https://www.careers.jnj.com/en/jobs/r-018331/front-end-software-engineering-intern/",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Johnson & Johnson",
        "title": "Front End Software Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "0523da3d-12da-47f4-855e-ce4540de5ce9",
        "date_posted": 1749595643,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749596068,
        "url": "https://jobs.dolby.com/careers/job/29526769",
        "locations": [
            "Atlanta, GA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Dolby",
        "title": "Information Security Architecture Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "e8741729-6e96-4f16-a21b-58ce51e16360",
        "date_posted": 1749596068,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749596100,
        "url": "https://jobs.dolby.com/careers/job/29512719",
        "locations": [
            "Sunnyvale, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Dolby",
        "title": "Dolby Vision Software QA Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "f4702ef2-d799-4217-932e-1b7d2bd7c12c",
        "date_posted": 1749596100,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749596146,
        "url": "https://jobs.dolby.com/careers/job/29512187",
        "locations": [
            "Sunnyvale, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Dolby",
        "title": "Video Coding Research Intern, AI Focus",
        "season": "Fall",
        "source": "vanshb03",
        "id": "be9f0ab4-835a-4322-87e2-1593902bc0d5",
        "date_posted": 1749596146,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1749822368,
        "url": "https://www.jobs.abbott/us/en/job/ABLAUS31121333ENUSEXTERNAL/2026-IT-Intern",
        "locations": [
            "Waukegan, IL"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": true,
        "company_name": "Abbott",
        "title": "IT Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "a1e1b0ef-dfd8-4a64-af47-c958d2f4ce09",
        "date_posted": 1749822368,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751389912,
        "url": "https://job-boards.greenhouse.io/8451university/jobs/8028712002",
        "locations": [
            "Cincinnati, OH"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "84.51\u00b0",
        "title": "Agile Delivery Co-op Program",
        "season": "Fall",
        "source": "vanshb03",
        "id": "2c77f433-8750-437c-8f42-e168fe402f9d",
        "date_posted": 1749840316,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750945522,
        "url": "https://job-boards.greenhouse.io/8451university/jobs/8028856002",
        "locations": [
            "Cincinnati, OH"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "84.51\u00b0",
        "title": "Software Engineer Co-op Program",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4f277890-2c7a-403c-9baf-86107ec5fef3",
        "date_posted": 1749840335,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392818,
        "url": "https://jobs.smartrecruiters.com/ATPCO1/744000064390815",
        "locations": [
            "Herndon, VA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "ATPCO",
        "title": "Platform Capability Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "cd575ed2-1346-405c-be65-9b6a517a524a",
        "date_posted": 1749840383,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750126581,
        "url": "https://www.tesla.com/careers/search/job/240889",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Fullstack Software Engineer Intern, Fleetnet",
        "season": "Fall",
        "source": "georgetsai2028",
        "id": "c35a2bc9-9716-4050-9184-5936200ccc96",
        "date_posted": 1750126581,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750127499,
        "url": "http://group.bnpparibas/en/careers/job-offer/2026-summer-analyst-internship-technology",
        "locations": [
            "Jersey CIty, NJ"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": true,
        "company_name": "BNP Paribas",
        "title": "Technology Analyst Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "b366e768-f6d7-40d6-b649-db2c0dc5a17c",
        "date_posted": 1750127499,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750127563,
        "url": "https://careers.bankofamerica.com/en-us/students/job-detail/12929/global-quantitative-data-analytics-summer-2026-analyst-global-risk-management-multiple-locations",
        "locations": [
            "Atlanta, GA",
            "Charlotte, NC",
            "Chicago, IL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Bank of America",
        "title": "Quantitative Data Analytics Summer Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "0d066245-d318-4b70-ac87-98fdde208093",
        "date_posted": 1750127563,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750127582,
        "url": "https://careers.bankofamerica.com/en-us/students/job-detail/12944/global-technology-summer-analyst-2026-cybersecurity-analyst-multiple-locations",
        "locations": [
            "Charlotte, NC",
            "Chicago, IL",
            "Denver, CO",
            "Washington, DC"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Bank of America",
        "title": "Cybersecurity Intern",
        "season": "Summer",
        "source": "gracejinsotrue",
        "id": "16c32b0f-71dc-47d6-98a8-4a6b4f97d9a5",
        "date_posted": 1750127582,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750128277,
        "url": "https://careers.bankofamerica.com/en-us/students/job-detail/12942/global-technology-summer-analyst-2026-software-engineer-multiple-locations",
        "locations": [
            "Charlotte, NC",
            "Chicago, IL",
            "Dallas, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Bank of America",
        "title": "Software Engineer Summer Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "28436037-2337-4abb-99b7-73150f69aad9",
        "date_posted": 1750128277,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750128407,
        "url": "https://www.citadelsecurities.com/careers/details/campus-26-trading-fundamental-analyst-intern-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Trading Fundamental Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "b4ab7381-a892-473c-a0e4-b1cc70d3b115",
        "date_posted": 1750128407,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750134605,
        "url": "https://lifeattiktok.com/search/7514157460153895175?spread=XKM9ZXE",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TikTok",
        "title": "Software Engineer Intern, TikTok-Social-Product Innovation",
        "season": "Fall",
        "source": "vanshb03",
        "id": "ffc6f0eb-faac-4c58-b24a-0befb50f7174",
        "date_posted": 1750134605,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392845,
        "url": "https://www.lockheedmartinjobs.com/job/annapolis-junction/software-engineer-intern/694/82672796176",
        "locations": [
            "Annapolis Junction, MD"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Lockheed Martin",
        "title": "Software Engineer - Intern",
        "season": "Summer",
        "source": "Its-mehul",
        "id": "6950b4f6-6074-40c9-a455-f3cfe6b59b06",
        "date_posted": 1750796306,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750796432,
        "url": "https://www.deshaw.com/careers/software-developer-intern-new-york-summer-2026-5521",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "D. E. Shaw",
        "title": "Software Developer Intern",
        "season": "Summer",
        "source": "ianhoangdev",
        "id": "c05b677e-a8ce-433e-beba-cadf835cdb8c",
        "date_posted": 1750796432,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1750796485,
        "url": "https://morganstanley.tal.net/vx/candidate/apply/19159",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": true,
        "company_name": "Morgan Stanley",
        "title": "SWE Intern, Data Analyst Intern",
        "season": "Summer",
        "source": "pablomoreno10",
        "id": "562ba18e-c705-47c5-8989-3cff73b10839",
        "date_posted": 1750796485,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751926321,
        "url": "https://www.lockheedmartinjobs.com/job/littleton/software-engineering-intern/694/82475330752",
        "locations": [
            "Littleton, Colorado"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Lockheed Martin",
        "title": "Software Engineering Intern",
        "season": "Summer",
        "source": "Its-mehul",
        "id": "e11662df-e60f-43b6-8f9a-4745a2f21d4c",
        "date_posted": 1750945664,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437279,
        "url": "https://msd.wd5.myworkdayjobs.com/SearchJobs/job/USA---New-Jersey---Rahway/XMLNAME-2026-University-Recruiting---IT-Emerging-Talent-Summer-Intern-Program--Hybrid-_R355518-1",
        "locations": [
            "Rahway, NJ",
            "West Point, PA",
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Merck",
        "title": "IT Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "bf84da0c-9a6a-46f8-aff0-5b902ef342f7",
        "date_posted": 1750945726,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437259,
        "url": "https://job-boards.greenhouse.io/parachutehealth/jobs/4772847007",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Parachute Health",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "835247a6-2eee-4a4e-a824-ca60ab5dbfbc",
        "date_posted": 1750946211,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437281,
        "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/System-Software-Engineering-Intern--CUDA-Driver---Fall-2025_JR1989344",
        "locations": [
            "Santa Clara, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "System Software Engineering Intern, CUDA Driver",
        "season": "Fall",
        "source": "vanshb03",
        "id": "9f1cd278-afa2-446f-864f-b2ea9f627754",
        "date_posted": 1750946339,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392846,
        "url": "https://jobs.siemens.com/careers/job/563156125662755?microsite=siemens.com&hl=en",
        "locations": [
            "Huntsville, AL",
            "Marlborough, MA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Siemens",
        "title": "Software Development Intern",
        "season": "Fall",
        "source": "karthik961",
        "id": "cdca2680-46e9-4a55-a080-318aedb1e9c6",
        "date_posted": 1750976034,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1768075183,
        "url": "https://boards.greenhouse.io/embed/job_app?token=7842108002",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Radix Trading",
        "title": "Quantitative Technologist Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "b9c12121-0051-4e0e-b1e6-69ad43c79c81",
        "date_posted": 1750976744,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751246845,
        "url": "https://scale.com/careers/4553274005",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Scale AI",
        "title": "Technical Advisor Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "a7e45de9-cebf-469d-884d-11617f5acc29",
        "date_posted": 1751246845,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751246874,
        "url": "https://www.skydio.com/jobs/6220445003?gh_jid=6220445003",
        "locations": [
            "San Mateo, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Skydio",
        "title": "Middleware Software Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "6cc9c9fd-84ff-47f8-8699-3639bf665214",
        "date_posted": 1751246874,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751246898,
        "url": "https://www.tesla.com/careers/search/job/245029",
        "locations": [
            "Draper, UT"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Operational Automation Engineer Intern, Residential Energy",
        "season": "Fall",
        "source": "vanshb03",
        "id": "c40de3ed-c2eb-47f3-96bf-8f913c385829",
        "date_posted": 1751246898,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751247028,
        "url": "https://careers.leonardodrs.com/job/Beavercreek-Fall-2025-Software-Engineering-Intern-OH-45431/1295356000",
        "locations": [
            "Beavercreek, OH"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Leonardo DRS",
        "title": "Software Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4dbd52ce-2194-4b7c-8308-48ae40a91c0d",
        "date_posted": 1751247028,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753043043,
        "url": "https://ag.wd3.myworkdayjobs.com/airbus/job/Bingen-WA/Internship---Software-Engineering_JR10338562",
        "locations": [
            "Bingen, WA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Airbus",
        "title": "Software Engineering Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "aa287d6d-7919-4dad-b247-e37a085d4760",
        "date_posted": 1751252617,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751252711,
        "url": "https://www.google.com/about/careers/applications/jobs/results/124737151496528582-student-researcher",
        "locations": [
            "Mountain View, CA",
            "Ann Arbor, MI",
            "Atlanta, GA",
            "Austin, TX",
            "Cambridge, MA",
            "Chicago, IL",
            "Irvine, CA",
            "Kirkland, WA",
            "Los Angeles, CA",
            "Madison, WI",
            "New York, NY",
            "Palo Alto, CA",
            "Princeton, NJ",
            "Pittsburgh, PA",
            "San Bruno, CA",
            "Seattle, WA",
            "San Francisco, CA",
            "Sunnyvale, CA",
            "Washington D.C., DC"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Google",
        "title": "Student Researcher",
        "season": "Fall",
        "source": "vanshb03",
        "id": "d0193614-3226-4dbe-9c4e-d07bcec9127b",
        "date_posted": 1751252711,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1755896809,
        "url": "https://jobs.lever.co/hermeus/db80c020-a26f-491f-8915-d6a28d44933e",
        "locations": [
            "Atlanta, GA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Hermeus",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "b9cc96e5-4b02-48dd-942f-e867d304cce4",
        "date_posted": 1751252823,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437259,
        "url": "https://job-boards.greenhouse.io/ada18/jobs/4746106007",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Ada18",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "4c73218f-6512-4e2c-ac8b-46b24626e1b3",
        "date_posted": 1751252839,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752437287,
        "url": "https://bah.wd1.myworkdayjobs.com/en-US/BAH_Jobs/job/Fayetteville-NC/University--Systems-Engineer-Intern_R0221551",
        "locations": [
            "Fayetteville, NC"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Booz Allen Hamilton",
        "title": "Systems Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "0b776873-d912-4387-bedc-76a0a738c328",
        "date_posted": 1751252883,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754209247,
        "url": "https://job-boards.greenhouse.io/walleyecapital-external-internships/jobs/4565278006",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Walleye Capital",
        "title": "Technology Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "4eaf0acb-2253-4be6-9e25-7f74d89036fb",
        "date_posted": 1751253777,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754209246,
        "url": "https://job-boards.greenhouse.io/walleyecapital-external-internships/jobs/4565276006",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Walleye Capital",
        "title": "Risk Quant Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "e31f41fa-2647-446b-a3a7-9979a01cb17d",
        "date_posted": 1751253794,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1760646988,
        "url": "https://job-boards.greenhouse.io/walleyecapital-external-internships/jobs/4565293006",
        "locations": [
            "Boston, MA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Walleye Capital",
        "title": "Quantitative Researcher Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "9e3646cf-f070-49bb-b541-0c6ec1a86b1c",
        "date_posted": 1751253816,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1755698921,
        "url": "https://job-boards.greenhouse.io/walleyecapital-external-internships/jobs/4565291006",
        "locations": [
            "Boston, MA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Walleye Capital",
        "title": "Quantitative Developer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "d6bc587b-cf65-4302-9847-6edf47ed033f",
        "date_posted": 1751253827,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754209246,
        "url": "https://job-boards.greenhouse.io/walleyecapital-external-internships/jobs/4572985006",
        "locations": [
            "Miami, FL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Walleye Capital",
        "title": "Equity Volatility Quant Researcher Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "c77dbfa5-2170-4026-bbab-eabb71bbf194",
        "date_posted": 1751253848,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751386762,
        "url": "https://www.imc.com/us/careers/jobs/4580810101/",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "IMC",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "ouckah",
        "id": "3cfcd6cd-4618-4ce6-9d7c-77214ec85fc9",
        "date_posted": 1751386762,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752991212,
        "url": "https://careers.salesforce.com/en/jobs/jr301789/summer-2026-intern-associate-product-manager-apm/",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Salesforce",
        "title": "Associate Product Manager Intern",
        "season": "Summer",
        "source": "mouchatt6",
        "id": "6a1383dc-82eb-440c-bee0-b6d2bdb9bd07",
        "date_posted": 1751387656,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751390040,
        "url": "https://stemgateway.nasa.gov/s/course-offering/a0BSJ000003P6DN2A0/ai-internship-developing-experimenting-with-ai-tools",
        "locations": [
            "Washington, District of Columbia (D.C.)"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Nasa",
        "title": "AI Internship: Developing & Experimenting with AI Tools",
        "season": "Fall",
        "source": "jcodes101",
        "id": "fd9229b1-173f-448f-91ed-383cfb1e4a78",
        "date_posted": 1751390040,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751390235,
        "url": "https://www.imc.com/us/careers/jobs/4580808101",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "IMC",
        "title": "Quantitative Research Intern, Trading",
        "season": "Summer",
        "source": "vanshb03",
        "id": "f7d0df2c-5120-4477-bd46-91c2f10cda30",
        "date_posted": 1751390235,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751390250,
        "url": "https://www.imc.com/us/careers/jobs/4580757101",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "IMC",
        "title": "Quantitative Trader Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "7af02008-8445-4e27-81ed-4288a257b85d",
        "date_posted": 1751390250,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753369132,
        "url": "https://job-boards.greenhouse.io/genevatrading/jobs/4767553007",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Geneva Trading",
        "title": "Quantitative Trader Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "4ae7a6f6-0376-4acb-9766-1c7d5879fb01",
        "date_posted": 1751390309,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391303,
        "url": "https://jobs.lever.co/palantir/373367a9-3160-49d8-b7af-2efec062fad1",
        "locations": [
            "Seattle, WA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Production Infrastructure",
        "season": "Summer",
        "source": "vanshb03",
        "id": "e3f6912b-e056-4a03-a003-b2de74aa4ed4",
        "date_posted": 1751391303,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391333,
        "url": "https://jobs.lever.co/palantir/37964982-9b4c-471e-a1d8-fb8f45d7f116",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Production Infrastructure",
        "season": "Summer",
        "source": "vanshb03",
        "id": "d948a247-926d-4949-b8f7-7e7c12041501",
        "date_posted": 1751391333,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391357,
        "url": "https://jobs.lever.co/palantir/f17e98d0-046a-4e6e-9d65-ed0b12dd0ff7",
        "locations": [
            "Washington, D.C."
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Defense Tech",
        "season": "Summer",
        "source": "vanshb03",
        "id": "570f2225-9a43-4681-b028-2f24886df7aa",
        "date_posted": 1751391357,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391386,
        "url": "https://jobs.lever.co/palantir/a483f41b-0da9-42ea-8ed6-cbf6eb93cc6d",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Defense Tech",
        "season": "Summer",
        "source": "vanshb03",
        "id": "377aa55a-ba25-4b4a-b2bc-eabd7e87a1d4",
        "date_posted": 1751391386,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391404,
        "url": "https://jobs.lever.co/palantir/8bcf4f33-0a79-4248-bbfd-49ac4be9dd8e",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Defense Tech",
        "season": "Summer",
        "source": "vanshb03",
        "id": "8f2f251b-2c39-43d5-a4e2-d802ec71357c",
        "date_posted": 1751391404,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391426,
        "url": "https://jobs.lever.co/palantir/bdcfb29f-4f27-42de-933f-7f83a359b9f0",
        "locations": [
            "Washington D.C, DC"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "ae574ec6-cde4-4969-b776-c3514a315dff",
        "date_posted": 1751391426,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391438,
        "url": "https://jobs.lever.co/palantir/2fb19022-bb65-4af8-b6fa-31beb345c140",
        "locations": [
            "Seattle, WA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "89f61024-3858-4e86-80eb-0281659f8885",
        "date_posted": 1751391438,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391461,
        "url": "https://jobs.lever.co/palantir/7d69cf8a-06fd-4f05-bd84-27149db29c4d",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "6c8c1bae-a4a1-44ef-adb2-305fa96a13fe",
        "date_posted": 1751391461,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1761489912,
        "url": "https://jobs.lever.co/palantir/e6ff8bf2-135e-474d-ad37-24f490ae1dd2",
        "locations": [
            "Washington, DC"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Palantir",
        "title": "Forward Deployed Software Engineer Intern, US Government",
        "season": "Summer",
        "source": "vanshb03",
        "id": "9fe4e3a4-4d8e-4ffa-9155-afdb0b7766bc",
        "date_posted": 1751391676,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1760031937,
        "url": "https://jobs.lever.co/palantir/4d29249a-d7e8-4c39-880d-3b35d7b2f6f6",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Palantir",
        "title": "Forward Deployed Software Engineer Intern, Commercial",
        "season": "Summer",
        "source": "vanshb03",
        "id": "cfde799f-f542-4b3d-8869-4731ba510457",
        "date_posted": 1751391711,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1761489912,
        "url": "https://jobs.lever.co/palantir/cccfe1bd-f15b-4fe5-b044-c793e7961c1b",
        "locations": [
            "Washington, D.C."
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Palantir",
        "title": "Forward Deployed Software Engineer Intern, US Government",
        "season": "Summer",
        "source": "vanshb03",
        "id": "93d6c3a4-f4bb-4d10-8c76-a552f3e2ed7e",
        "date_posted": 1751391756,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751391811,
        "url": "https://jobs.lever.co/palantir/373eb939-6f57-4836-8479-be79a5e07249",
        "locations": [
            "Denver, CO"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "75363ef5-1670-4c96-96ec-267702d8b776",
        "date_posted": 1751391811,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1760784532,
        "url": "https://jobs.lever.co/palantir/e0010393-c300-446f-bf67-fa2ef067f16f",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Palantir",
        "title": "Forward Deployed Software Engineer Intern, US Government",
        "season": "Summer",
        "source": "vanshb03",
        "id": "a6b2e00c-6d4e-4b72-b092-ecde3ac7a9fb",
        "date_posted": 1751391947,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751392325,
        "url": "https://jobs.lever.co/palantir/e27af7ab-41fc-40c9-b31d-02c6cb1c505c",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "e40901cc-64f0-46d9-873f-4b6505755c62",
        "date_posted": 1751392325,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751392364,
        "url": "https://jobs.lever.co/palantir/b229baac-494b-4a0d-9a13-2e38806e06f3",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Palantir",
        "title": "Software Engineer Intern, Infrastructure",
        "season": "Summer",
        "source": "vanshb03",
        "id": "e617c3a8-0819-4e30-854a-805b448e18c5",
        "date_posted": 1751392364,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751392407,
        "url": "https://careers.caterpillar.com/en/jobs/r0000312109/2026-summer-corporate-intern-engineering/?source=pookie",
        "locations": [
            "Tucson, AZ",
            "Griffin, GA",
            "Decatur",
            "Mossville",
            "Mossville",
            "Washington",
            "Pontiac, IL",
            "Lafayette, IN",
            "Brooklyn Park, MN",
            "Clayton, NC",
            "Fort Worth",
            "Houston, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Caterpillar",
        "title": "Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "73305ff4-33fe-45b9-9b2b-87d84d2d0d6c",
        "date_posted": 1751392407,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392864,
        "url": "https://careers.tranetechnologies.com/global/en/job/TRTEGLOBAL2502597EXTERNALENGLOBAL/2026-Engineering-Intern-Computer-Engineering-Software-Engineering-Computer-Science",
        "locations": [
            "Minneapolis, MN",
            "Bloomington, MN",
            "Noblesville, IN",
            "St Paul, MN"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Trane Technologies",
        "title": "Engineering Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "1387e9a9-6372-4eca-8029-1d44dc0f9d4f",
        "date_posted": 1751392535,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751424789,
        "url": "https://epic.avature.net/Careers/FolderDetail/Software-Developer-Intern---Summer-2026/27259",
        "locations": [
            "Madison, WI"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Epic",
        "title": "Software Development Intern",
        "season": "Summer",
        "source": "jcodes101",
        "id": "884ab66b-d3eb-4033-8812-78a4ce151534",
        "date_posted": 1751424789,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751424845,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/7973725002/?gh_src=9fb491cd2",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": true,
        "company_name": "Optiver",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "jcodes101",
        "id": "54b9b112-5db4-4a7b-99c8-f317477fd8c5",
        "date_posted": 1751424845,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454598,
        "url": "https://www.citadelsecurities.com/careers/details/software-engineer-intern-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "81f5fccc-3e16-4b69-a854-d8f7d14e8332",
        "date_posted": 1751454598,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454618,
        "url": "https://www.citadelsecurities.com/careers/details/quantitative-trading-intern-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Quantitative Trading Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "02ae0204-5105-48e9-8c42-9c8e11b22a42",
        "date_posted": 1751454618,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454635,
        "url": "https://www.citadelsecurities.com/careers/details/fpga-engineer-intern-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "FPGA Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "2afba971-5170-4246-b694-e832658ee0ee",
        "date_posted": 1751454635,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454650,
        "url": "https://www.citadelsecurities.com/careers/details/quantitative-research-analyst-intern-bs-ms-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Quantitative Research Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "50c57c61-e782-41ab-b801-a7f2336d65a3",
        "date_posted": 1751454650,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454666,
        "url": "https://www.citadelsecurities.com/careers/details/launch-intern-us/",
        "locations": [
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Launch Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "46ea0135-a5d7-4772-ae40-4f00457e4525",
        "date_posted": 1751454666,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454704,
        "url": "https://www.citadelsecurities.com/careers/details/designated-market-maker-dmm-trading-intern-us/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel Securities",
        "title": "Designated Market Maker (DMM) Trading Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "38f05d35-538f-4601-9715-fca0c4a12842",
        "date_posted": 1751454704,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454820,
        "url": "https://www.citadel.com/careers/details/software-engineer-intern-us/",
        "locations": [
            "Chicago, IL",
            "Miami, FL",
            "New York, NY",
            "Houston, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "3e43bbc9-4dda-49fe-bc78-9b010eae5822",
        "date_posted": 1751454820,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454891,
        "url": "https://www.citadel.com/careers/details/quantitative-research-analyst-intern-bs-ms-us/",
        "locations": [
            "Greenwich, CT",
            "Miami, FL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Citadel",
        "title": "Quantitative Research Analyst Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "a378447b-544a-4684-9111-bb9ebf1ebaca",
        "date_posted": 1751454891,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751454918,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/7973726002/?gh_src=9fb491cd2",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "namanmodi260",
        "id": "a4b13ece-017d-4128-b71c-1968561208b7",
        "date_posted": 1751454918,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751455067,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/8033071002/",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "Quantitative Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "bfbda897-56c3-4ace-8b4c-5dfc76ab58c6",
        "date_posted": 1751455067,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751455110,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/7832160002/",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "Quantitative Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "46d4aab9-7214-4a5d-9664-08661b9be395",
        "date_posted": 1751455110,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751455133,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/7967593002/",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "Quantitative Research Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "599435a1-da66-45ee-95cc-c12a88fe7ef4",
        "date_posted": 1751455133,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751455233,
        "url": "https://careers.sig.com/job/9532/Quantitative-Strategy-Developer-Internship-Summer-2026",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Quantitative Strategy Developer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "5c1b44f8-932e-4e5a-be2d-2ba1403cd470",
        "date_posted": 1751455233,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753834381,
        "url": "https://wabtec.wd1.myworkdayjobs.com/en-US/wabtec_careers/job/Summer-2026-LEAD-Information-Technology-Intern_R0099765",
        "locations": [
            "Pittsburgh, PA",
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Wabtec",
        "title": "Summer 2026 LEAD Information Technology Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "e6c3cd46-2f04-4b7c-8a15-95681c4c515a",
        "date_posted": 1751484185,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392866,
        "url": "https://careers.t-mobile.com/fall-2025-product-manager-intern/job/99F63B25A0C19559715D8EC4C351D427",
        "locations": [
            "Bellevue, WA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "T-Mobile",
        "title": "Product Manager Intern",
        "season": "Fall",
        "source": "nchalla3",
        "id": "0d19d30a-69cd-43ea-84ca-f07a4ceb6232",
        "date_posted": 1751484214,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753043048,
        "url": "https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/US-MO-St-Louis/Performance-Engineer-Intern--Gaming---Winter-Spring-2026_JR1999627?workerSubType=0c40f6bd1d8f10adf6dae42e46d44a17&workerSubType=ab40a98049581037a3ada55b087049b7",
        "locations": [
            "US, MO, St. Louis"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "NVIDIA",
        "title": "Performance Engineer Intern, Gaming",
        "season": "Spring",
        "source": "Prabhjot-khera",
        "id": "221bd487-189d-406a-8f95-07b9dea37774",
        "date_posted": 1751519705,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751584655,
        "url": "https://app.ripplematch.com/v2/public/job/968aeefe",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Notion",
        "title": "Software Engineer, AI Intern",
        "season": "Fall",
        "source": "nchalla3",
        "id": "673aa357-b569-48c1-8ceb-de12a936f03d",
        "date_posted": 1751584655,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1765306324,
        "url": "https://boards.greenhouse.io/embed/job_app?token=5562040004",
        "locations": [
            "Remote",
            "US"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Whatnot",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "vanshb03",
        "id": "1c0ccf80-72dc-492b-9f8c-5671a2438af5",
        "date_posted": 1751584862,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751907780,
        "url": "https://www.amazon.jobs/en/jobs/2878134/software-development-engineer-intern",
        "locations": [
            "Boston, MA",
            "Seattle, WA"
        ],
        "sponsorship": "Offers Sponsorship",
        "active": false,
        "company_name": "Amazon",
        "title": "Software Development Intern",
        "season": "Summer",
        "source": "jcas12",
        "id": "2a8885fd-b48c-4e23-a0a9-37e7822095d5",
        "date_posted": 1751650291,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751650317,
        "url": "https://careers.tsmc.com/en_US/careers/JobDetail/Summer-2026-TSMC-AZ-Internship-Opportunities-Engineering-Roles/16376",
        "locations": [
            "Phoenix, AZ"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TSMC",
        "title": "Computer Integrated Manufacturing (CIM) Engineer Intern",
        "season": "Summer",
        "source": "dlln9001",
        "id": "d4d2ec95-c02d-4152-b8a7-2b496ed9eadf",
        "date_posted": 1751650317,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751748785,
        "url": "https://jobs.bytedance.com/en/position/7522742153819670792/detail?spread=A3T3U6W",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": true,
        "company_name": "ByteDance",
        "title": "Backend Software Engineer Intern, Product RD and Infrastructure",
        "season": "Fall",
        "source": "vanshb03",
        "id": "6e54bde8-8c18-4b79-b0ce-9c7a9cd6ce59",
        "date_posted": 1751748785,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1751791189,
        "url": "https://www.peaknano.com/careers/software-engineer-intern-spring-26",
        "locations": [
            "Macedonia, OH"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Peak Nano",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "d2a61ff5-c64a-4a6d-81ee-b25ac232e11c",
        "date_posted": 1751791189,
        "company_url": "",
        "is_visible": true,
        "season": "Spring"
    },
    {
        "date_updated": 1753392874,
        "url": "https://careers.hitachi.com/jobs/16376125-ai-slash-ml-engineering-intern",
        "locations": [
            "Remote"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Hitachi Energy USA Inc",
        "title": "AI/ML Engineering Intern",
        "source": "vanshb03",
        "id": "c2577653-3dcd-4ced-87c5-cc97fb403e27",
        "date_posted": 1751795210,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1761583597,
        "url": "https://www.ycombinator.com/companies/vly-ai-2/jobs/5xe004o-full-stack-applied-ai-software-engineering-intern",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "vly.ai",
        "title": "Full-Stack + Applied AI Software Engineering Intern",
        "source": "vanshb03",
        "id": "996de9d2-d161-4567-a63a-6906bb1a4076",
        "date_posted": 1751851167,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1752195481,
        "url": "https://www.capitalonecareers.com/job/mclean/product-development-internship-program-summer-2026/31238/83485599760",
        "locations": [
            "McLean, VA",
            "Plano, TX"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Capital One",
        "title": "Product Development Intern",
        "season": "Summer",
        "source": "SebRodDev",
        "id": "791b5821-3230-4bb7-903c-076f208cc281",
        "date_posted": 1751907760,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1755266098,
        "url": "https://jobs.lever.co/MBRDNA/e987dc81-f177-4b4a-b605-670d8b68d00e?gh_src=Handshake&iisn=Handshake&iis=Handshake&src=Handshake&source=Handshake&ref=Handshake&utm_medium=Handshake&referral=Handshake",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Mercedes-Benz",
        "title": "Software Developer - AIX Intern",
        "season": "Fall",
        "source": "nchalla3",
        "id": "043889c9-1d4c-4553-884e-2ed39da26541",
        "date_posted": 1751907807,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1769525781,
        "url": "https://job-boards.greenhouse.io/drweng/jobs/6926715",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "DRW",
        "title": "Software Developer Intern",
        "season": "Summer",
        "source": "mkhosla11",
        "id": "b65bb765-244c-4d48-bcc4-67ffdb591856",
        "date_posted": 1751915338,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757786048,
        "url": "https://jobs.jobvite.com/careers/splunk-careers/job/ocD8vfwc",
        "locations": [
            "Remote"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Splunk",
        "title": "Product Manager Intern",
        "season": "Fall",
        "source": "Vitamoon",
        "id": "7d67ea27-a191-4f6e-82d5-eaefa781be9f",
        "date_posted": 1752164328,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753043051,
        "url": "https://mosaic.wd5.myworkdayjobs.com/mosaic/job/US---Tampa-FL-Lithia-area/Data-Analyst-Co-op-Intern---Spring-2026_59735",
        "locations": [
            "Tampa, FL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "The Mosaic Company",
        "title": "Data Analyst Intern, Co-op",
        "source": "vanshb03",
        "id": "118a9c4b-6ab2-4e0d-8b39-d260c8bc5219",
        "date_posted": 1752164507,
        "company_url": "",
        "is_visible": true,
        "season": "Spring"
    },
    {
        "date_updated": 1757785867,
        "url": "https://jobs.jobvite.com/careers/splunk-careers/job/oFhewfwq",
        "locations": [
            "Remote"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Splunk",
        "title": "Site Reliability Engineer Intern",
        "season": "Fall",
        "source": "Vitamoon",
        "id": "49442d16-208a-4fa6-b0ea-d4f9d8519a06",
        "date_posted": 1752164767,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752194941,
        "url": "https://www.tesla.com/careers/search/job/245486",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tesla",
        "title": "Machine Learning Engineer Intern, Energy Engineering",
        "season": "Summer",
        "source": "vanshb03",
        "id": "d0c33331-ab8d-4635-8f52-1b65d22ca94b",
        "date_posted": 1752164825,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752195232,
        "url": "https://www.tesla.com/en_IE/careers/search/job/internship-software-machine-learning-engineer-reliability-energy-engineering-fall-2025-242665",
        "locations": [
            "Palo Alto, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tesla",
        "title": "Software Machine Learning Engineer, Reliability Energy Engineering",
        "season": "Fall",
        "source": "ouckah",
        "id": "ac3ce946-fab6-4bd7-8155-a5d387c077fd",
        "date_posted": 1752195232,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752205158,
        "url": "https://www.janestreet.com/join-jane-street/position/8047137002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Quantitative Trader Intern",
        "source": "vanshb03",
        "id": "4ade7014-a431-40c8-87e6-cc341efc52e7",
        "date_posted": 1752205158,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205220,
        "url": "https://www.janestreet.com/join-jane-street/position/7979031002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Quantitative Researcher Intern",
        "source": "vanshb03",
        "id": "fe1f368d-d201-4b81-82c4-8e74622f55a1",
        "date_posted": 1752205220,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205238,
        "url": "https://www.janestreet.com/join-jane-street/position/8048874002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Machine Learning Engineer Intern",
        "source": "vanshb03",
        "id": "25818331-7618-4d7a-9bf2-6a7a473355ba",
        "date_posted": 1752205238,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205244,
        "url": "https://www.janestreet.com/join-jane-street/position/8060848002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Machine Learning Researcher Intern",
        "source": "vanshb03",
        "id": "363d5ca3-1e33-4473-ac9b-e6ab8e82b234",
        "date_posted": 1752205244,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205250,
        "url": "https://www.janestreet.com/join-jane-street/position/8062455002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "FPGA Engineer Intern",
        "source": "vanshb03",
        "id": "58bdc9b4-36fc-4529-bb1a-548fb6cc4f89",
        "date_posted": 1752205250,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205254,
        "url": "https://www.janestreet.com/join-jane-street/position/8040547002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "f88cecc1-d3c1-48d2-861c-64aecfc6f85a",
        "date_posted": 1752205254,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205259,
        "url": "https://www.janestreet.com/join-jane-street/position/8062907002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Linux Engineer Intern, IT and Systems Engineering",
        "source": "vanshb03",
        "id": "aac80f3b-8330-480b-8eae-9e479db0c994",
        "date_posted": 1752205259,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205263,
        "url": "https://www.janestreet.com/join-jane-street/position/8065576002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Network Engineer Intern",
        "source": "vanshb03",
        "id": "7a0c3479-646f-4651-8115-bfabf012b55f",
        "date_posted": 1752205263,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205267,
        "url": "https://www.janestreet.com/join-jane-street/position/7828490002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Strategy and Product Intern",
        "source": "vanshb03",
        "id": "9661fd90-6a86-400f-bcd2-075159e07a0e",
        "date_posted": 1752205267,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205274,
        "url": "https://www.janestreet.com/join-jane-street/position/5869205002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Tools and Compilers Research and Development Intern",
        "source": "vanshb03",
        "id": "88949f9e-4f2c-4838-803c-82fb3396a280",
        "date_posted": 1752205274,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205280,
        "url": "https://www.janestreet.com/join-jane-street/position/8070509002/",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Jane Street",
        "title": "Trading Desk Operations Engineer Intern, Trading Desk Operations",
        "source": "vanshb03",
        "id": "c51f79b1-ede7-4aff-8bbe-a8fa2cb094a0",
        "date_posted": 1752205280,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752205627,
        "url": "https://careers.twosigma.com/careers/JobDetail/New-York-New-York-United-States-Quantitative-Researcher-Internship-2026-Summer/13257",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Two Sigma",
        "title": "Quantitative Researcher Intern",
        "source": "vanshb03",
        "id": "9cceb3b4-85b6-47b2-b77c-c389fdad0482",
        "date_posted": 1752205627,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752254084,
        "url": "https://bankcampuscareers.tal.net/vx/brand-0/candidate/so/pm/1/pl/1/opp/12932-Global-Quantitative-Data-Analytics-Summer-2026-Analyst-Analytics-Modeling-and-Insights-AMI/en-GB",
        "locations": [
            "Charlotte, NC"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": true,
        "company_name": "Bank of America",
        "title": "Analytics, Modeling and Insights (AMI) Analyst Intern",
        "season": "Summer",
        "source": "marcosdiazvazquez",
        "id": "709daef4-2166-441b-8451-30c4661a8d34",
        "date_posted": 1752254084,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753392879,
        "url": "https://www.pinterestcareers.com/jobs/6868494/software-engineering-intern-2025-toronto/?gh_jid=6868494",
        "locations": [
            "Toronto, Canada"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Pinterest",
        "title": "Software Engineering Intern",
        "source": "vanshb03",
        "id": "a4802cc2-ecaa-48f4-ad27-f601f8653660",
        "date_posted": 1752296073,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1752391405,
        "url": "https://tower-research.com/open-positions/?gh_jid=6790327",
        "locations": [
            "New York"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tower Research Capital",
        "title": "Software Developer Intern",
        "season": "Summer",
        "source": "hfeng20",
        "id": "57153d94-4655-499d-b978-46331c173698",
        "date_posted": 1752391405,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752391629,
        "url": "https://tower-research.com/open-positions/?gh_jid=7062358",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Tower Research Capital",
        "title": "Quantitative Trader Intern",
        "season": "Summer",
        "source": "varunmathur2005",
        "id": "69fe1ed5-d18f-434c-8de9-79f8bca99f37",
        "date_posted": 1752391629,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752523527,
        "url": "https://careers.sig.com/job/SUSQA004Y9571?mode=apply",
        "locations": [
            "Bala Cynwyd, PA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Susquehanna",
        "title": "Software Engineering Intern",
        "season": "Summer",
        "source": "hfeng20",
        "id": "0154c697-b4f0-4da2-aecd-7fcafa588e62",
        "date_posted": 1752523527,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753973908,
        "url": "https://careers.caterpillar.com/en/jobs/r0000313300/2026-summer-corporate-intern-digital-and-analytics",
        "locations": [
            "Chicago, IL",
            "Peoria, IL",
            "Irving, TX"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Caterpillar",
        "title": "Digital and Analytics Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "61e291fb-5b9b-4915-a41e-b27dc47db136",
        "date_posted": 1752523598,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752524226,
        "url": "https://akunacapital.com/job-details?gh_jid=7055793",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Akuna Capital",
        "title": "Quantitative Research Intern",
        "source": "vanshb03",
        "id": "9d1d4706-da39-4861-b31f-b19d69674b15",
        "date_posted": 1752524226,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752524234,
        "url": "https://akunacapital.com/job-details?gh_jid=7055471",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Akuna Capital",
        "title": "Software Engineer Intern, Python",
        "source": "vanshb03",
        "id": "49add84b-f0ee-4c2c-bc29-7892622c61c6",
        "date_posted": 1752524234,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752524240,
        "url": "https://akunacapital.com/job-details?gh_jid=6996427",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Akuna Capital",
        "title": "Software Engineer Intern, C++",
        "source": "vanshb03",
        "id": "1136c7af-7eca-4dc9-bb7d-ee5ad127ecf0",
        "date_posted": 1752524240,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1757658515,
        "url": "https://jobs.lever.co/belvederetrading/5e07daf3-a6bb-40d4-8125-b56d2ea20d81",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Belvedere Trading",
        "title": "Quantitative Trading Intern",
        "source": "vanshb03",
        "id": "cfb9420c-289e-4b59-822d-a687edbdac21",
        "date_posted": 1752524369,
        "company_url": "",
        "is_visible": true,
        "season": "Winter"
    },
    {
        "date_updated": 1752526536,
        "url": "https://grnh.se/p32j1zwl5us",
        "locations": [
            "Chicago, IL",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Chicago Trading Company",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "9465616f-b882-4a6b-ad84-14b011ede204",
        "date_posted": 1752526536,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752526651,
        "url": "https://grnh.se/rw14eooo5us",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Chicago Trading Company",
        "title": "Quant Trading Intern",
        "source": "vanshb03",
        "id": "331e247c-58b7-4bb0-b517-1ad2bfc08282",
        "date_posted": 1752526651,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1757962946,
        "url": "https://boards.greenhouse.io/embed/job_app?token=5588094004",
        "locations": [
            "San Jose, CA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Bill",
        "title": "Software Engineer Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "878aef16-bb7b-40a5-a53e-6e1beae0d670",
        "date_posted": 1752603567,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752606122,
        "url": "https://www.bill.com/job?5588103004&gh_jid=5588103004",
        "locations": [
            "San Jose, CA",
            "Draper, UT"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Bill",
        "title": "Machine Learning Engineer Intern",
        "season": "Summer",
        "source": "vanshb03",
        "id": "39b5cb33-bf64-48fb-805d-da30f4c499a2",
        "date_posted": 1752606122,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752605746,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/8033372002/",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "FPGA Engineer Intern",
        "source": "vanshb03",
        "id": "6840442b-8894-4cd3-8460-bb827fce3fb3",
        "date_posted": 1752605746,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752605757,
        "url": "https://optiver.com/working-at-optiver/career-opportunities/8033390002/",
        "locations": [
            "Austin, TX"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Optiver",
        "title": "FPGA Engineer Intern",
        "source": "vanshb03",
        "id": "27411cda-23fd-4274-b41c-60224c5c13e2",
        "date_posted": 1752605757,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752646165,
        "url": "https://careers.honeywell.com/en/sites/Honeywell/job/109972/?utm_medium=jobshare",
        "locations": [
            "Mason, OH"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Honeywell",
        "title": "Co-Op - Bachelors Software Eng",
        "season": "Fall",
        "source": "karthik961",
        "id": "20230dc0-f1d0-45f4-a1ec-244e05d3e3bc",
        "date_posted": 1752646165,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752991222,
        "url": "https://www.capitalonecareers.com/job/mclean/data-analyst-intern-summer-2026/31238/83803176160",
        "locations": [
            "McLean, VA",
            "Rishmond, VA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Capital One",
        "title": "Data Analyst Intern",
        "season": "Summer",
        "source": "nityalily",
        "id": "99548ed8-9ec0-4116-ab79-882bc9957313",
        "date_posted": 1752646317,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1774442904,
        "url": "https://job-boards.greenhouse.io/fiveringsllc/jobs/4806713008",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Five Rings",
        "title": "Software Developer Intern",
        "source": "vanshb03",
        "id": "2bcda7b6-e4fc-45f0-9cb8-3e3a818cba29",
        "date_posted": 1752691346,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1774442904,
        "url": "https://job-boards.greenhouse.io/fiveringsllc/jobs/4613451008",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "Five Rings",
        "title": "Quantitative Trader Intern",
        "source": "vanshb03",
        "id": "c87b28e0-dff5-43bc-a275-23fd0dd66a01",
        "date_posted": 1752691352,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1752691356,
        "url": "https://job-boards.greenhouse.io/fiveringsllc/jobs/4563183008",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Five Rings",
        "title": "Quantitative Researcher Intern",
        "source": "vanshb03",
        "id": "b3b8ddba-30ce-48f0-a64c-834d121c5c62",
        "date_posted": 1752691356,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1762978011,
        "url": "https://job-boards.greenhouse.io/fiveringsllc/jobs/4634686008",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Five Rings",
        "title": "Software Developer Intern",
        "source": "vanshb03",
        "id": "c87bf68b-ddca-4032-876e-fb494c2ef406",
        "date_posted": 1752691362,
        "company_url": "",
        "is_visible": true,
        "season": "Winter"
    },
    {
        "date_updated": 1752732671,
        "url": "https://jobs.ashbyhq.com/whatnot/d401d83d-e22f-4cfa-be83-19102767d89d",
        "locations": [
            "Remote"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Whatnot",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "nchalla3",
        "id": "3ebe4cb5-12f1-4e85-b03a-1ca53498ca4d",
        "date_posted": 1752732671,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752732725,
        "url": "https://job-boards.greenhouse.io/neuralink/jobs/6648992003",
        "locations": [
            "Fremont, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Neuralink",
        "title": "Firmware Engineer Intern",
        "season": "Summer",
        "source": "DutrieuxLU",
        "id": "f089385d-617a-4d41-b212-d0534dec7aeb",
        "date_posted": 1752732725,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1752991251,
        "url": "https://kohler.csod.com/ux/ats/careersite/16/home/requisition/67738?c=kohler&source=LinkedIn",
        "locations": [
            "Kohler, WI"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": true,
        "company_name": "Kohler",
        "title": "Digital Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "ed6da867-bf42-496b-aa24-3c8cfc49273e",
        "date_posted": 1752991251,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757786034,
        "url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/jobsearch/job/302269",
        "locations": [
            "Remote"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Oracle Health",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "nchalla3",
        "id": "e5922cdc-9454-43e7-9774-e393cccc8569",
        "date_posted": 1752995288,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753035112,
        "url": "https://jobs.ashbyhq.com/method/f86acf81-857c-454d-a508-8289163ad6eb",
        "locations": [
            "Austin, TX",
            "New York City, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Method Financial",
        "title": "Software Engineer Intern",
        "season": "Fall",
        "source": "Junebuglovesyou",
        "id": "18c26fbf-052e-48d7-bc00-868c55404449",
        "date_posted": 1753035112,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753044041,
        "url": "https://www.governmentjobs.com/careers/mbta/jobs/5008638/software-engineer-intern-undergrad-students",
        "locations": [
            "Boston, MA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Massachusetts Bay Transportation Authority",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "1e0fc1c9-c1e3-402b-9725-13d91156cd0b",
        "date_posted": 1753044041,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753044056,
        "url": "https://careers.leonardodrs.com/job/Melbourne-Fall-2025-Software-Engineering-Intern-%28MLB%2C-FL%29-FL-32935/1308605900/?jobPipeline=Indeed",
        "locations": [
            "Melbourne, FL"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Leonardo DRS",
        "title": "Software Engineering Intern",
        "source": "vanshb03",
        "id": "e80d558c-5e75-4437-883e-f9a240117c0d",
        "date_posted": 1753044056,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753044063,
        "url": "https://careers.mta.org/jobs/16438894-software-analyst-slash-developer-fleet-technologies-group-emerging-talent-intern?tm_job=12316&tm_event=view&tm_company=47560&HRS_SUBSOURCE_ID=1341",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "MTA",
        "title": "Software Development Intern",
        "source": "vanshb03",
        "id": "66d324fb-65ef-45e5-8614-0ac24d6091fb",
        "date_posted": 1753044063,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753044069,
        "url": "https://lifeattiktok.com/search/7525635858708646152?spread=XKM9ZXE",
        "locations": [
            "Seattle, WA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "TikTok",
        "title": "Machine Learning Engineer Intern, TikTok-Recommendation",
        "source": "vanshb03",
        "id": "8a9a0ca7-760f-424a-be56-35a5c34077d3",
        "date_posted": 1753044069,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753106763,
        "url": "https://careers.gevernova.com/global/en/job/GVXGVWGLOBALR5005281EXTERNALENGLOBAL/GE-Vernova-Digital-Technology-Internship-Summer-2026",
        "locations": [
            "Greenville",
            "South Carolina",
            "Schenectady",
            "New York",
            "Atlanta",
            "Georgia",
            "other GE Vernova locations"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "GE Vernova",
        "title": "Digital Technology Intern",
        "season": "Summer",
        "source": "caoye310",
        "id": "a965b6b4-52ea-4e64-907b-6865e32ae6ce",
        "date_posted": 1753079044,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753369146,
        "url": "https://blueorigin.wd5.myworkdayjobs.com/blueorigin/job/Seattle-WA/Spring-2026-Avionics-Software-Engineering-Intern---Undergraduate_R52403",
        "locations": [
            "Seattle, WA",
            "Denver, CO",
            "Los Angeles, CA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Blue Origin",
        "title": "Avionics Software Engineering Intern",
        "season": "Spring",
        "source": "karthik961",
        "id": "48cc9ef8-3977-4401-bbad-ffdb3952604f",
        "date_posted": 1753106510,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1767283060,
        "url": "https://www.ycombinator.com/companies/nowadays/jobs/iRSGsmg-product-engineer-intern",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": false,
        "company_name": "Nowadays",
        "title": "Product Engineer Intern",
        "source": "vanshb03",
        "id": "828946fc-f633-4351-a1ed-dcf8388deb0e",
        "date_posted": 1753108243,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1757559741,
        "url": "https://liveramp.wd5.myworkdayjobs.com/LiveRampCareers/job/San-Francisco/Software-Engineer-Co-Op_JR011692",
        "locations": [
            "San Francisco, CA",
            "New York, NY",
            "Little Rock, AR"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "LiveRamp",
        "title": "Software Engineer Co-Op",
        "source": "vanshb03",
        "id": "f0d69a8d-9724-40ec-abf4-dc8eebd7366d",
        "date_posted": 1753108255,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753108345,
        "url": "https://www.sonypicturesjobs.com/job/-/-/22978/83913376064",
        "locations": [
            "Culver City, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Sony Pictures",
        "title": "Information Systems Intern, Financial Source-to-Pay",
        "source": "vanshb03",
        "id": "7304b31a-8b85-4b9b-ba47-8d0eec9ba8c7",
        "date_posted": 1753108345,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753108358,
        "url": "https://www.sonypicturesjobs.com/job/-/-/22978/83913376960",
        "locations": [
            "Culver City, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Sony Pictures",
        "title": "Security Technology AI Intern, Facilities/S3",
        "source": "vanshb03",
        "id": "d51200e8-bd23-4602-bed0-59d9ba87cecb",
        "date_posted": 1753108358,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753113017,
        "url": "https://www.wellsfargojobs.com/en/jobs/r-474982/2026-technology-summer-internship-early-careers-software-engineer/",
        "locations": [
            "Charlotte, NC",
            "Chandler, AZ",
            "Irving, TX",
            "Iselin, NJ",
            "St. Louis, MO"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Wells Fargo",
        "title": "2026 Technology Summer Internship",
        "season": "Summer",
        "source": "TalHaynws06",
        "id": "30e2c59f-a90a-44fd-850b-1f5895d0f5f0",
        "date_posted": 1753113017,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1754209247,
        "url": "https://boards.greenhouse.io/embed/job_app?token=4501189007",
        "locations": [
            "Austin, TX",
            "Santa Clara, CA",
            "Toronto, ON"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Tenstorrent",
        "title": "Software Intern - AI Compilers",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "aad5a9cb-07a9-4f3d-aa67-afa083f279c4",
        "date_posted": 1753214983,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753215216,
        "url": "https://mtb.wd5.myworkdayjobs.com/en-US/Campus/job/Buffalo-NY/XMLNAME-2026-Technology-Internship-Program_R72035?jobFamily=8cc34509fd6910020c408e4228020000",
        "locations": [
            "Buffalo, NY"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": true,
        "company_name": "M&T Bank",
        "title": "2026 Technology Internship Program",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "26e07bed-6f5d-46d7-bf75-bf2499e0f0e5",
        "date_posted": 1753215216,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1762351783,
        "url": "https://mtb.wd5.myworkdayjobs.com/en-US/Campus/job/XMLNAME-2026-Technology-Development-Program---Software-Engineering_R72033",
        "locations": [
            "Buffalo, NY"
        ],
        "sponsorship": "Does Not Offer Sponsorship",
        "active": false,
        "company_name": "M&T Bank",
        "title": "Software Engineering Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "6b62fb9f-e5b2-4642-aa97-6f8de860f23e",
        "date_posted": 1753215256,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753215340,
        "url": "https://careers.kearneyco.com/jobs/4822",
        "locations": [
            "Alexandria, VA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Kearney&Company",
        "title": "Technology Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "b68ff75a-a996-48bb-818e-7a735268c931",
        "date_posted": 1753215340,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1759551496,
        "url": "https://gnw.wd1.myworkdayjobs.com/en-US/GNW/job/Richmond%2C-Virginia/Genworth-IT-Development-Program-Intern---Summer-2026_REQ-250327?workerSubType=7fa6841689a6106a8c0af76995631b08",
        "locations": [
            "Richmond, VA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Genworth",
        "title": "IT Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "36eb59d2-d51a-42ad-a5b9-2cfdc0455726",
        "date_posted": 1753215378,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1757962969,
        "url": "https://osv-cci.wd1.myworkdayjobs.com/en-US/CCICareers/job/Stamford-CT/Front-Office-Software-Engineer-Internship--Summer-2026-_R1106",
        "locations": [
            "Stamford, CT"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Castleton Commodities International",
        "title": "Front Office Software Engineer Intern",
        "season": "Summer",
        "source": "Junebuglovesyou",
        "id": "efd1a91e-a10a-445f-94f4-d89d071c9545",
        "date_posted": 1753215408,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1762301438,
        "url": "https://job-boards.greenhouse.io/thetradedesk/jobs/4787577007",
        "locations": [
            "Boulder, CO",
            "Denver, CO",
            "Irvine, CA",
            "Bellevue, WA",
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "The Trade Desk",
        "title": "Software Engineering Intern",
        "season": "Summer",
        "source": "hfeng20",
        "id": "172ba6fc-b1dc-42c4-925d-60b502bbc0b3",
        "date_posted": 1753215757,
        "company_url": "",
        "is_visible": true
    },
    {
        "date_updated": 1753227763,
        "url": "https://impulsespace.pinpointhq.com/en/postings/5df86c9c-8f1a-4ba4-81a7-5de09800cb4f",
        "locations": [
            "Redondo Beach, CA"
        ],
        "sponsorship": "U.S. Citizenship is Required",
        "active": true,
        "company_name": "Impulse Space",
        "title": "Flight/Embedded Software Engineer Intern",
        "source": "vanshb03",
        "id": "cb415a97-84c4-4766-bf26-025d57ef146a",
        "date_posted": 1753227763,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1754209269,
        "url": "https://selinc.wd1.myworkdayjobs.com/en-US/SEL/job/Washington---Pullman/Software-Application-Engineer-Intern_2025-17664",
        "locations": [
            "Pullman, WA"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "Schweitzer Engineering Laboratories (SEL)",
        "title": "Software Application Engineer Intern",
        "source": "vanshb03",
        "id": "e0aa96ed-a311-4993-89a6-4b9f59e44508",
        "date_posted": 1753227780,
        "company_url": "",
        "is_visible": true,
        "season": "Fall"
    },
    {
        "date_updated": 1753369164,
        "url": "https://cccis.wd1.myworkdayjobs.com/en-US/broadbean_external/job/Chicago-Green-St-IL/AI-Enablement-Intern_0014089",
        "locations": [
            "Chicago, IL"
        ],
        "sponsorship": "Other",
        "active": false,
        "company_name": "CCC Intelligent Solutions Inc.",
        "title": "AI Enablement Intern",
        "source": "vanshb03",
        "id": "b2905314-d1cf-457c-92cd-6e730ba1c8c6",
        "date_posted": 1753228381,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753228444,
        "url": "https://careers.aqr.com/jobs/open-positions/greenwich-ct/2026-research-summer-analyst/7014521?gh_jid=7014521#/",
        "locations": [
            "Greenwich, CT"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "AQR Capital Management",
        "title": "Research Summer Analyst",
        "source": "vanshb03",
        "id": "c56aae90-e784-41d1-9222-e39fb2f2347d",
        "date_posted": 1753228444,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753228474,
        "url": "https://careers.aqr.com/jobs/open-positions/greenwich-ct/2026-portfolio-solutions-group-summer-analyst/7055103?gh_jid=7055103#/",
        "locations": [
            "Greenwich, CT"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "AQR Capital Management",
        "title": "Summer Analyst, Portfolio Solutions Group",
        "source": "vanshb03",
        "id": "2b2c8796-0640-475d-89e1-13aaa51bdc8a",
        "date_posted": 1753228474,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753228484,
        "url": "https://careers.aqr.com/jobs/open-positions/greenwich-ct/2026-portfolio-implementation-trading-and-portfolio-finance-summer-analyst/7022101?gh_jid=7022101#/",
        "locations": [
            "Greenwich, CT"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "AQR Capital Management",
        "title": "Summer Analyst, Portfolio Implementation, Trading and Portfolio Finance",
        "source": "vanshb03",
        "id": "9a0b259a-f45c-4976-bd92-bc8ee4198d2c",
        "date_posted": 1753228484,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753228765,
        "url": "https://www.squarepoint-capital.com/open-opportunities?id=243853",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Squarepoint",
        "title": "Quant Researcher Intern",
        "source": "vanshb03",
        "id": "34cb4faa-9bc2-41f0-9dc1-f09c28bf588e",
        "date_posted": 1753228765,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753234465,
        "url": "https://asana.com/jobs/apply/7078082?gh_jid=7078082",
        "locations": [
            "New York, NY"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Asana",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "cfd0a26e-9286-4643-8af9-01a7fe29ff8f",
        "date_posted": 1753234465,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753234471,
        "url": "https://asana.com/jobs/apply/7078079?gh_jid=7078079",
        "locations": [
            "San Francisco, CA"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Asana",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "389cadcf-de5b-4dbf-8109-12aa070416af",
        "date_posted": 1753234471,
        "company_url": "",
        "is_visible": true,
        "season": "Summer"
    },
    {
        "date_updated": 1753234475,
        "url": "https://asana.com/jobs/apply/7078075?gh_jid=7078075",
        "locations": [
            "Vancouver, Canada"
        ],
        "sponsorship": "Other",
        "active": true,
        "company_name": "Asana",
        "title": "Software Engineer Intern",
        "source": "vanshb03",
        "id": "8c6cfa33-f
Download .txt
gitextract_oj9nzx47/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── close_internship.yaml
│   │   ├── new_internship.yaml
│   │   └── other.yaml
│   ├── scripts/
│   │   ├── contribution_approved.py
│   │   ├── listings.json
│   │   ├── update_readmes.py
│   │   └── util.py
│   └── workflows/
│       ├── contribution_approved.yml
│       └── update_readmes.yml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE.txt
├── OFFSEASON_README.md
├── README.md
└── archived/
    └── 2025/
        ├── OFFSEASON_README.md
        ├── README.md
        └── archived.json
Download .txt
SYMBOL INDEX (14 symbols across 3 files)

FILE: .github/scripts/contribution_approved.py
  function add_https_to_url (line 34) | def add_https_to_url(url):
  function getData (line 40) | def getData(body, is_edit, is_close, username):
  function main (line 102) | def main():

FILE: .github/scripts/update_readmes.py
  function main (line 5) | def main():

FILE: .github/scripts/util.py
  function setOutput (line 15) | def setOutput(key, value):
  function fail (line 22) | def fail(why):
  function getLocations (line 26) | def getLocations(listing):
  function getSponsorship (line 34) | def getSponsorship(listing):
  function getLink (line 42) | def getLink(listing):
  function create_md_table (line 56) | def create_md_table(listings):
  function getListingsFromJSON (line 93) | def getListingsFromJSON(filename=".github/scripts/listings.json"):
  function embedTable (line 100) | def embedTable(listings, filepath):
  function sortListings (line 120) | def sortListings(listings):
  function checkSchema (line 148) | def checkSchema(listings):
Condensed preview — 17 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5,437K chars).
[
  {
    "path": ".github/ISSUE_TEMPLATE/close_internship.yaml",
    "chars": 1764,
    "preview": "name: Close Internship\ndescription: Request to close/archive an internship listing\ntitle: \"Close Internship\"\nlabels: [\"c"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/new_internship.yaml",
    "chars": 3264,
    "preview": "name: New Internship\ndescription: Contribute an internship to our list\ntitle: \"New Internship\"\nlabels: [\"new_internship\""
  },
  {
    "path": ".github/ISSUE_TEMPLATE/other.yaml",
    "chars": 970,
    "preview": "name: Other\ndescription: Use this issue for any questions/suggestions or closed internships.\ntitle: \"Issue: \"\nlabels: [\""
  },
  {
    "path": ".github/scripts/contribution_approved.py",
    "chars": 7856,
    "preview": "import json\nimport sys\nimport uuid\nfrom datetime import datetime\nimport util\nimport re\n\n# TODO: fix this object display "
  },
  {
    "path": ".github/scripts/listings.json",
    "chars": 1244326,
    "preview": "[\n    {\n        \"date_updated\": 1757786110,\n        \"url\": \"https://www.tesla.com/careers/search/job/241053\",\n        \"l"
  },
  {
    "path": ".github/scripts/update_readmes.py",
    "chars": 927,
    "preview": "from datetime import datetime\nimport util\n\n\ndef main():\n\n    listings = util.getListingsFromJSON()\n\n    # split up listi"
  },
  {
    "path": ".github/scripts/util.py",
    "chars": 5562,
    "preview": "import json\nimport os\nfrom datetime import datetime\nfrom collections import defaultdict\nimport time\n\n# Set the TZ enviro"
  },
  {
    "path": ".github/workflows/contribution_approved.yml",
    "chars": 1952,
    "preview": "name: Contribution Approved\n\non:\n  issues:\n    types: [\"labeled\"]\n\nconcurrency: add_internships\n\njobs:\n  run-python-scri"
  },
  {
    "path": ".github/workflows/update_readmes.yml",
    "chars": 1179,
    "preview": "name: Update READMEs\n\non:\n  push:\n    paths:\n      - '.github/scripts/listings.json'\n  workflow_dispatch:\n\n\njobs:\n  run-"
  },
  {
    "path": ".gitignore",
    "chars": 8,
    "preview": "testing/"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 1910,
    "preview": "# Contributing to the Internship List\nThank you for your interest in contributing to the Ouckah & CSCareers Internship L"
  },
  {
    "path": "LICENSE.txt",
    "chars": 1082,
    "preview": "\nThe MIT License (MIT)\n\nCopyright (c) 2025 Vansh Bataviya\n\nPermission is hereby granted, free of charge, to any person o"
  },
  {
    "path": "OFFSEASON_README.md",
    "chars": 69210,
    "preview": "# Spring & Fall 2026 Tech Internships by Ouckah & Vansh\n\nThe torch has been passed. Use this repo to share and keep trac"
  },
  {
    "path": "README.md",
    "chars": 373611,
    "preview": "# Summer 2026 Tech Internships by Vansh & Ouckah\n\nThe torch has been passed. Use this repo to share and keep track of so"
  },
  {
    "path": "archived/2025/OFFSEASON_README.md",
    "chars": 58511,
    "preview": "# Spring & Fall 2025 Tech Internships by Ouckah & Vansh\n\nThe torch has been passed. Use this repo to share and keep trac"
  },
  {
    "path": "archived/2025/README.md",
    "chars": 822906,
    "preview": "# Summer 2025 Tech Internships by Vansh & Ouckah\n\nThe torch has been passed. Use this repo to share and keep track of so"
  },
  {
    "path": "archived/2025/archived.json",
    "chars": 2397018,
    "preview": "[\n    {\n        \"date_updated\": 1714588234,\n        \"url\": \"https://careers.sig.com/job/8218/Software-Engineering-Intern"
  }
]

About this extraction

This page contains the full source code of the ouckah/Summer2025-Internships GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 17 files (4.8 MB), approximately 1.2M tokens, and a symbol index with 14 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!