Handy Links
The purpose of this page is to collect commonly used resources into one place that I can access from any device, and quickly share with others.
Electronics
Programming
Python
micro:bit
pxt Reference. Covers all the blocks and how to use them
Raspberry Pi
Linux
Handy Bash Scripts
Change the file extension for all of the files in a directory.
for f in *; do mv "$f" "$f.jpg"; done
Open an application on a remote screen, via SSH
export DISPLAY=:0.0
Then SSH in, and run the command as normal.