├── .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 /.github/ISSUE_TEMPLATE/close_internship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/ISSUE_TEMPLATE/close_internship.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_internship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/ISSUE_TEMPLATE/new_internship.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/ISSUE_TEMPLATE/other.yaml -------------------------------------------------------------------------------- /.github/scripts/contribution_approved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/scripts/contribution_approved.py -------------------------------------------------------------------------------- /.github/scripts/listings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/scripts/listings.json -------------------------------------------------------------------------------- /.github/scripts/update_readmes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/scripts/update_readmes.py -------------------------------------------------------------------------------- /.github/scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/scripts/util.py -------------------------------------------------------------------------------- /.github/workflows/contribution_approved.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/workflows/contribution_approved.yml -------------------------------------------------------------------------------- /.github/workflows/update_readmes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/.github/workflows/update_readmes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | testing/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OFFSEASON_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/OFFSEASON_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/README.md -------------------------------------------------------------------------------- /archived/2025/OFFSEASON_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/archived/2025/OFFSEASON_README.md -------------------------------------------------------------------------------- /archived/2025/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/archived/2025/README.md -------------------------------------------------------------------------------- /archived/2025/archived.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanshb03/Summer2026-Internships/HEAD/archived/2025/archived.json --------------------------------------------------------------------------------