├── .env.template ├── .github └── workflows │ └── actions.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── imgs ├── a16z.png ├── accel-partners.png ├── bain-capital-ventures.png ├── battery-ventures.png ├── bessemer-venture-partners.png ├── blackrock.png ├── blackstone.png ├── carbos.png ├── coinbase-ventures.png ├── demo.png ├── founders-fund.png ├── goldman-sachs.png ├── google-ventures.png ├── greylock.png ├── iconiq.png ├── insight-partners.png ├── ipo.png ├── kkr.png ├── kleiner-perkins.png ├── linkedin-top-50-startups-2022.png ├── nvidia.png ├── salesforce-ventures.png ├── sequoia.png ├── thrive-capital.png ├── tiger-global.png ├── time-ventures.png └── yc.png ├── mypy.ini ├── pyproject.toml ├── requirements.txt └── updaters.py /.env.template: -------------------------------------------------------------------------------- 1 | README_GENERATOR_URL= -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/README.md -------------------------------------------------------------------------------- /imgs/a16z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/a16z.png -------------------------------------------------------------------------------- /imgs/accel-partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/accel-partners.png -------------------------------------------------------------------------------- /imgs/bain-capital-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/bain-capital-ventures.png -------------------------------------------------------------------------------- /imgs/battery-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/battery-ventures.png -------------------------------------------------------------------------------- /imgs/bessemer-venture-partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/bessemer-venture-partners.png -------------------------------------------------------------------------------- /imgs/blackrock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/blackrock.png -------------------------------------------------------------------------------- /imgs/blackstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/blackstone.png -------------------------------------------------------------------------------- /imgs/carbos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/carbos.png -------------------------------------------------------------------------------- /imgs/coinbase-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/coinbase-ventures.png -------------------------------------------------------------------------------- /imgs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/demo.png -------------------------------------------------------------------------------- /imgs/founders-fund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/founders-fund.png -------------------------------------------------------------------------------- /imgs/goldman-sachs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/goldman-sachs.png -------------------------------------------------------------------------------- /imgs/google-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/google-ventures.png -------------------------------------------------------------------------------- /imgs/greylock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/greylock.png -------------------------------------------------------------------------------- /imgs/iconiq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/iconiq.png -------------------------------------------------------------------------------- /imgs/insight-partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/insight-partners.png -------------------------------------------------------------------------------- /imgs/ipo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/ipo.png -------------------------------------------------------------------------------- /imgs/kkr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/kkr.png -------------------------------------------------------------------------------- /imgs/kleiner-perkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/kleiner-perkins.png -------------------------------------------------------------------------------- /imgs/linkedin-top-50-startups-2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/linkedin-top-50-startups-2022.png -------------------------------------------------------------------------------- /imgs/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/nvidia.png -------------------------------------------------------------------------------- /imgs/salesforce-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/salesforce-ventures.png -------------------------------------------------------------------------------- /imgs/sequoia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/sequoia.png -------------------------------------------------------------------------------- /imgs/thrive-capital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/thrive-capital.png -------------------------------------------------------------------------------- /imgs/tiger-global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/tiger-global.png -------------------------------------------------------------------------------- /imgs/time-ventures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/time-ventures.png -------------------------------------------------------------------------------- /imgs/yc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/imgs/yc.png -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 150 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/requirements.txt -------------------------------------------------------------------------------- /updaters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanChen4/Summer-2024-SWE-Internships/HEAD/updaters.py --------------------------------------------------------------------------------