

NixOS user here; please do not recommend NixOS.


NixOS user here; please do not recommend NixOS.
Don’t hurt me, no more


Final update, trust
Every time someone refers to mobile data as “wifi” I die a little inside. I understand that the difference is unnoticeable for most people, but it pains me.
!! is pure textual substitution, so it’d be sudo rm a.txt && rm b.txt. You could do something like sudo sh -c "!!" though.
is certainly Uiua, File Read as String


Your Steam Deck is a PC, by the way. Your existing methods should work.
(Kotlin does support that, with the same fun do_thing(arg: Int = 2) syntax.)


Perhaps it would be useful to list some alternatives?


IIRC notifications can only be delivered reliably via Firebase — anything else gets paused if the phone is in Doze etc.


Sending a dump of entire system memory seems incredibly unsafe, to say the least.


Don’t run sha256sum -c on your suspect file — it expects to be passed a file containing hashes and other filenames. sha256sum the iso itself instead and check by eye, or make such a hash file.


¢-aur — I’m not sure why I pronounce it that way; it’s just how I’ve always pronounced it.
What network topology do you have? My method only assumes server→laptop connectivity (laptop→server and laptop→repo are implied). If server→laptop is unavailable, but you can install Git in general on the server, you could forward the repo through SSH. If Git cannot be installed server-side at all, this is more difficult, and rsync would be the best method I know of.
Detach the laptop’s head, then git clone from it over SSH on your build server. When you’re done, git push will update your laptop’s branches, then you can git push origin the relevant branches on your laptop.


peddlin’, probably. Autocorrect is that ‘friend’ that acts all sweet until your back is turned.


Do you have any addons that enable contenteditable/designMode?


(?=) for positive lookahead and (?!) for negative lookahead. Stick a < in the middle for lookbehind.
nix run nixpkgs#virtualenv ~/.venv . ~/.venv/bin/activate pip install foo # ...