just a collection of links and commands
Code is for lazy people
Automation by xkcd
QA engineering
Automatic soap
When I was 4, my sister was 2. I am now 44. How old is my sister?
Drawbot
Processing
p5.js
Scripting in InDesign
Twitter API
Build a twitter bot with tweepy like the spezimen text and cellular automaton examples
Raspberry pi
say hello world let the computer talk
seq 1000 | say Count to 1000, to cancel the process hit: Ctrl + C
date Print the current date
cal print the current month
cal -y 2025 print the calendar for the year 2025
pwd print the working directory (folder)
ls list the files of the current directory
ls -a list all (also the hidden) files or the current directory
ls -l list the files with permissions and some information
ls *.png list only the png files
cd Desktop go to the Desktop folder (if it is included in the current directory)
mkdir samplefiles make a directory with the name 'samplefiles'
cd samplefiles go into the directory named samplefiles
> textfile.txt make an (empty) text file called textfile
open textfile.txt open the textfile.txt
head textfile.txt print the first 10 lines of the file
tail textfile.txt print the last 10 lines of the file
nano textfile.txt open the file in the nano editor
sort textfile.txt > sorted.txt sort the file alphabetically and save it into a new file called sorted.txt