- Fork this repo, so you can save changes across class sessions.
- In Google Colab, create a new notebook.
- Paste the following commands in a code chunk, and run it:
! git clone https://github.com/<your GitHub username>/scratchpad
%run ./scratchpad/get_data.pyThis will download and extract the course data for you.
- When you're done, use
Save a Copy in GitHubto save your notebook back to yourscratchpadrepo asnb_2026_mm_dd.ipynb.
- Fork this repo, so can clone and push easily
- Start a VS Code Server session on Rivanna
- Clone this repo:
git clone https://github.com/<your GitHub username>/scratchpad
- Open the
scratchpadfolder in your Code Server session - At the command line, run
bash build.sh
- This will build a virtual environment and download/extract your data
- To save your work locally,
git commit -am '<Describe your changes>' - To get your work back to Github, at the command line, run
git push origin main
- To get new changes to the repo, at the command line, run
git pull --rebase