Search for stuff
Tagged stuff
- abortion
- android
- audacity
- bible
- children
- code
- crime
- debian
- everything
- fraud
- gospel
- grammar
- hacks
- history
- IPv6
- justice
- kids
- KJV
- law
- lawyers
- linux
- mariadb
- marriage
- morality
- mysql
- netgear
- networking
- pedantry
- php
- plan of salvation
- politics
- radius
- rants
- salvation
- security
- songs
- speculation
- Stuff
- stupid
- stupidity
- traffic
- truth
- ubuntu
- vendor blacklist
-
Recent stuff
- uceprotect lists subnets that never sent mail
- KJV vs ESV: Jude
- Hymn review: “I asked the Lord that I might grow”, John Newton
- FRR says “Finite State Machine Error” for IPv6 BGP on Linux
- IPv4 port routing for scaleable no-CGNAT NAT
- mysql_upgrade fails: Unknown collation: ‘utf8_general_ci’
- Old Apostolic Church and New Apostolic Church
- Rebellion of the lesser magistrate
- Jacobs Krohnung coffee allergic reaction: probably egg white
- Serial and display console
- Publishing photos of criminal suspects
- Votes for cash: poll tax
- Find my device or anything that saw it recently and has travelled 15km or so
- Hannah’s three bullocks: yes, three.
- Lies: Dekra report presented by WeBuyCars does not match condition of car
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