Search for stuff
Tagged stuff
- abortion
- audacity
- av1611
- bible
- children
- code
- crime
- debian
- driving
- everything
- fraud
- gospel
- grammar
- hacks
- history
- kids
- KJV
- law
- lawyers
- linux
- marriage
- morality
- mysql
- netgear
- networking
- pedantry
- php
- plan of salvation
- politics
- radius
- rants
- romans road
- salvation
- security
- songs
- speculation
- Stuff
- stupid
- stupidity
- textus receptus
- traffic
- truth
- ubuntu
- vendor blacklist
-
Recent stuff
- ZCC Exposed Archive
- Justice denied by creative remedies
- Python for bash users: 1 minute introduction
- The Holy City, Jerusalem – just not in Afrikaans, please
- Jeremiah 52 vs 2 Kings 25 compared
- Soteriology in flow charts
- 2023: ABRSM theory exams are impossible
- Last_IO_Errno: 1595 “Relay log write failure: could not queue event from master”
- EPSON ink tank printers are a ripoff
- Thanks, but no thanks, BibleProtector.com
- “Unable to negotiate SSH” after “upgrade”
- Licences are a lie
- A values-driven political party
- Pop goes the (LED) light bulb
- Lockdown demonstrates that the bill of rights is worthless
Tag Archives: programming
Python for bash users: 1 minute introduction
If you can do something interesting in bash, then here’s how you do it in python. Suppose you have this interesting bash thing… …and you want to do some crazy python thing on it. Here’s how you do it: And … Continue reading
Arrays
A programmer working on a large project noticed that every single variable was stored in a separately named instance: int c1, c2, c3, c4, c5, c6; This meant that there was a lot of code of this sort: c1++; c2++; … Continue reading