This is (almost*) the entire contents of the site, presented in blog-like form. This is all articles and blog posts from newest to oldest
- You can see just the articles: on the Articles category page (not to be confused with the /Latest news page, which is more conversational than a list of posts and may include personal news about me in addition to site news)
- Just the blog posts: on the dedicated Blog or nearly-identicalyBlog Posts category page.
*Individual movie reviews won't get posted on this page. I write too many of them, it would drown everything else out.
- Dictate text - listens for spoken input. Make sure set to '''stop listening after pause'''.
- Split
Dictated TextbyCustomand- splits the text into a list with "and" as the delimiter - Repeat with each item in
Split Text- begins the loop that adds…
Gmail Pushing My Emails Out Of The Way To Tell Me What My Emails Say
Well, this is a new one. Today my gmail has started moving my emails out of the way to prioritize giving space to "AI Overviews" telling me what the email says. The summaries are longer than the actual email.

Imagine I started this three-sentence post with a "summary" that spent four sentences telling you what the post says. That's about how this strikes me.
Thoughts following “The Colonization of Confidence”
This is a draf. Almost done. Check back in a few days.
I just read the piece "The Colonization of Confidence", a short story by Robert Kingett about the homogenizing effect of relying on technology for "cheap, fast, and easy" artistic expression, and it reminded me of a few things. What's interesting is that there is a strong parallel here to things that have happened before.
The most immediate thing that leapt to mind is the 13-page '80s Alan Moore comic book story "In Pictopia", which you can happily read in full at Forgotten Awesome, a response to that era's commercialization of comics, in which the residents of a seedy comic Metropolis full of superheroes and cartoon animals are one-by-one either removed or replaced by slicker versions of themselves, as an ominous, dark industrial mass closes in on the horizon.
The second is the work…
Hide comments from blocked users on Reddit with uBlock Origin
Reddit collapses comments from blocked users so you have to click to read them, but does not hide them.
Add this custom rule to uBlock origin to completely hide comments from blocked users.
! https://www.reddit.com - hide blocked user
www.reddit.com##shreddit-comment.relative:has(.text-neutral-content-weak:has-text(Blocked User))
Things That Don’t Get Firefox To Start Loading Pages Again When It Decides It Doesn’t Want To
Firefox as of v 148 (actually a bit earlier than that, but that's what I'm on right now) frequently decides not to load pages anymore. You enter a URL or click on a link and get the status message "Waiting for [URL]..." and you can wait as long as you care to.
When this begins, your only choice is to restart Firefox.
Here is a list of "solutions" to the problem from around the web, which I have tried and found do not fix the problem:
• Turning off DNS-over-HTTPS in Firefox Settings
• Flushing MacOS's DNS cache.
• Going to about:networking and clearing Firefox's DNS cache
• Going into about:config and changing network.dns.disableIPv6 from false to true
• Opening in "troubleshooting mode" or disabling all extensions
• Turning VPN off
• Turning VPN on
Playlist shortcodes not working in Chrome because Lightspeed cache is set to defer jquery
Long story short, I got a message from a user that audio playlists were working in Firefox but not Chrome. The Chrome console had an error that "jQuery" wasn't defined, but typing jQuery into console did show a function definition. Turns out, in Lightspeed Cache's JS Delayed Includes, I had entered the word jquery by itself on a line, with a note to myself that something was causing a browser flash if I didn't do that. But removing this made the playlist shortcodes work on Chrome again. Ergo: don't defer jQuery.
iOS Shortcut to dictate your shopping list into Reminders.app
I uses this shortcut to dictate my shopping list into the iOS Reminders "Shopping" list. It breaks spoken lists on the word "and" to create separate shopping list items.
So I might run the shortcut, say the phrase "pickles and hot dogs and mustard", and it will add "pickles", "hot dogs", and "mustard" as separate checkbox items to the Shopping list in Reminders. It's handy for rattling off my shopping list as I'm staring into my fridge.
Obviously you need a list called "Shopping" set up in your Reminders app.
This shortcut executes the following steps:
Firefox process manager keyboard shortcut
Shift+esc is the keystroke that will open Firefox's process manager tab.
SSH into local mac, error “WARNING- REMOTE HOST IDENTIFICATION HAS CHANGED!”
SSHing into a local MacOS machine at address "macbook.local", I suddenly got this:
[code]@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the ED25519 key sent by the remote host is SHA256:oKCEu3pDdq7xBhSPZwOzR2q0eWTvfphtvn3D4Bjz8v4. Please contact your system administrator. Add correct host key in /Users/username/.ssh/known_hosts to get rid of this message. Offending ECDSA key in /Users/username/.ssh/known_hosts:147 Host key for macbook.local has changed and you have requested strict checking. Host key verification failed.[/code]
The solution was to run ssh-keygen -R macbook.local then try the ssh again. Then it asked me whether or not to accept the key, instead of rejecting it:
[code]$ ssh username@macbook.local The authenticity of host 'macbook.local (fe80::1890:fd32:c304:69cd%en0)' can't be established. ED25519 key fingerprint is SHA256:oKCEu3pDdq7xBhSPZwOzR2q0eWTvfphtvn3D4Bjz8v4.…
Xbar/BitBar gives “Couldn’t Posix Spawn” for script.
Apple's quarantine system can cause this. Try
[code]chmod +x com.apple.quarantine /path/to/script.sh xattr -d com.apple.quarantine /path/to/script.sh[/code]
In my experience only the xattr is needed but the chmod might help and couldn't hurt.
If CSS animations cause a layout shift during rendering, even if they’re on compositable attributes
If CSS animations cause a layout shift even if they're on compositable ettributes, look for clip paths, overflow:hidden, or css filters on them or their ancestors.


