2026-09-26 02:21 I've done a lot of self-probing with Duck.ai. I will use some of what I've learned to hopefully do more on the site.
2026-09-26 13:49 A post on Wired led me to a browser extension called Tuck that lets you suspend tabs for set amounts of time, essentially 'snoozing' them. I left a tab with a news site I mean to read more stowed until tomorrow morning.
2026-09-26 14:39 I learned how to use sed to add and delete lines from a text file. For addition: `sed -i "1i[text to add]" [file]`. For deletion: `sed -i "1d" [file]`. I found this through StackOverflow.
2026-09-26 16:37 The way to handle input for a function in Fish is to just make a function with funced and use $argv; i.e., sed -i "1i$argv" [file]. I found this in the Fish documentation under an entry I can't remember. Might have been one of the function entries.