mihail911/modern-software-dev-assignments
Assignments for CS146S: The Modern Software Dev (Stanford University Fall 2026/2025)
About mihail911/modern-software-dev-assignments
mihail911/modern-software-dev-assignments is an open-source project on GitHub, mainly written in Python. Assignments for CS146S: The Modern Software Dev (Stanford University Fall 2026/2025) It currently holds 4,438 stars and 1,006 forks with 31 open issues, and was last pushed on 2025-11-10 (repository created 2025-08-07).
Project Overview
Git Homed tracks it on the Today's Trending board, currently at rank #27 with 174 new stars today.
GitHub Repository Details
README
Assignments for CS146S: The Modern Software Developer
This is the home of the assignments for CS146S: The Modern Software Developer, taught at Stanford University fall 2025.
Repo Setup
These steps work with Python 3.12.1. Install Anaconda
- Download and install: Anaconda Individual Edition
- Open a new terminal so
condais on yourPATH.
conda create -n cs146s python=3.12 -y
conda activate cs146s
3. Install Poetry
curl -sSL https://install.python-poetry.org | python -
4. Install project dependencies with Poetry (inside the activated Conda env) From the repository root:
poetry install --no-interaction