Advent of code puzzles, see https://adventofcode.com
# software packages
brew install pyenv
brew install python
# virtual env
python3 -m venv .venv
source .venv/bin/activate # (VSCode does this for you in terminal, also could alias as "activate")
pip install -r requirements.txt
deactivate