Skip to content

Instantly share code, notes, and snippets.

Run Python GUI in codespaces: https://www.freecodecamp.org/news/run-python-gui-in-github-codespaces/
Bashrc Customisations
```PS1="\u@\h @ \t > "
alias c="clear";
alias cc="clear; history -c"
alias p="python3 game.py"
alias getsize='echo -e "Codespace size: $(du -sh ~ | cut -f1) \nRepository Size: $(du -sh .git | cut -f1)"'
alias chelp='echo c, cc, p, getsize'