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

Resistor Calculator

Programming

Python

Python the hard way

String formats for time

micro:bit

Micro Python Read the Docs

pxt Reference. Covers all the blocks and how to use them

Raspberry Pi

Pi Camera Docs

GPIO Zero

GPIO Pins

Setup WiFi in the terminal

Linux

Crontab Generator

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.