<aside> 🐞

Links & Self-Guided Review

But First, A Blast from the Past

Carryovers from DataSci-217

XKCD: Git

Reference: DS-217 carryovers

Topic What to reuse
Python basics Functions, imports, venv activation
Git hygiene Small commits, meaningful messages
Markdown Headings, fenced code blocks, links

Code Snippet: Warmup commands

python3 -m venv .venv && source .venv/bin/activate
git status && git commit -am "chore: warm up"

Command line quick hits