Check this out: https://janky-jingle-crew.com/NorthPoleCircuit/
Someone made a much cooler, christmas themed version of my magnet race track, and it's great!
The world runs on bad code, some of its mine, likes to talk kernels and embedded systems over coffee. π LoRa's cool ig.
β€οΈ Open Source.
Check this out: https://janky-jingle-crew.com/NorthPoleCircuit/
Someone made a much cooler, christmas themed version of my magnet race track, and it's great!
In bash, writing ${var?} instead of just ${var} or $var means if var isn't defined then bash will throw an error and _not_ execute your command, instead of expanding it to "" and carrying on.
mv file1 file2 $subdir # oops, I overwrote file2
mv file1 file2 ${subdir?} # error message instead of disaster
My favourite use of this is for example commands in documentation, with placeholders for the user to fill in. Then it's OK if a user accidentally copy-pastes it _without_ filling them in!
Today we have @ReneRebe on the podcast to talk about a project he has been working on for a very very long time but hardly anyone even knows it exists, T2 SDE, one of the few remaining standalone distros #Linux #Podcast
Broke: Licensing personal projects as AGPL so mega-co's can't use them.
Woke; Writing personal projects in C, so mega-co's can't use them.