A blog about everything, by Jack Baty
Amateur photographer, blogger, and curious nerd.
I got up today and discovered my Mac Mini server backups (via Backblaze) havenāt been running in more than a week. Claimed that there were permissions issues, but there shouldnāt have been. Nothing has changed, but it stopped working. This is the kind of thing that makes me want to remove every dependency I can find. It makes me want to stop using things that have any reasonable chance of just not working one morning. Itās exhausting, because that list includes nearly everything. Now, all it took to fix it was reinstalling the Backblaze client, but an easy solution doesnāt make it more fun having to worry about the problem to begin with. ...
My blog turns 25 years old today
I am off social media for a bit. Whenever I feel myself doing nothing but scrolling or looking for likes or thinking of something ālike-ableā to say, I know itās time for a break. Iām not cross-posting to Mastodon at all anymore, either. So now, whenever thereās a lull in the action of my life, I feel lost. Thatās the feeling I want to get rid of. I spent time this morning working (with Claude Code) on displaying full content on the current daily post, but it ended up fighting what the theme wants, so I decided it wasnāt worth it. Just for grins, Iām now theme shopping. ...
Switching between the MacBook Air keyboard and the HHKB keyboard can be off-putting. I have loved using the HHKB for years, but Iāve lost patience for the function layer and missing arrow keys. My pinky hurts too often. Iāve been using an Apple Magic Keyboard and Logitech MX Master 3, and, while I love the mouse, the keyboard was boring, but fine, except the spacebar would intermittently fail to register. Thatās annoying. ...
I asked Claude to summarize my recent blog posts. Claude knows me.
I take a lot of screenshots using the built-in screen capture tool on macOS. By default, these are saved as PNG files, which are unnecessarily ginormous for my purposes, so I always convert them to .jpg files. Today I learned that the default format can be changed: defaults write com.apple.screencapture type jpg killall SystemUIServer Better.
Iām realizing that my enthusiasm for Hugo reflects my current mood about Emacs. When Iām all-in with Emacs, Hugo is my favorite way to manage a blog. When Iām āoffā Emacs, I find other ways to blog because my whole Hugo workflow is built using Emacs. The problem right now is that Iām oscillating rapidly between Emacs and not-Emacs, so I post in multiple places. Itās fun having options, but I dislike making decisions. šµāš« ...
I continue to overthink everything related to my blog(s). I want specific things for specific posts, depending on my mood that day. Itās exhausting. The dream of course is to have One Blog. I have 4 active sites right now. Thatās more than one, for those who are counting. The new baty.photo blog that Iāve set up just for posts about photography feels like the right move. That one stays. I like using Ghost for that. ...
Iām not even supposed to be here today.
Iāve been doing this for 25 years. Iām just not feelling it lately, ya know?
Iām a little tired of all of this. Blogging, I mean. Iāve been writing about the same things on repeat for 25 years. Arenāt we all sick of hearing about blogging tools and software and tech and bla bla bla? I am. Maybe Iāll open a barber shop, like my great grandfather did.
I donāt feel much like writing full-on blog posts, so I keep spouting off little bits and bobs over on Mastodon instead. Itās not ideal. I mean, I just added the /notes feature here, so why not use that? I honestly donāt know. Thereās something about it I donāt like. I made the font here a bit smaller and a bit less black. It looked chunky and amateurish to me, somehow. Anyway, itās different now, which might be all I wanted. ...
Iāve rejiggered the Ghost blog I was using for this site into a dedicated photography blog. Thereās a lot of cruft scattered about, and Iām using the default theme for now, but itās a start. The idea is that it will help me focus on photography, which is something I want to do, but havenāt been doing. Sometimes I need a nudge, so baty.photo is a nudge. See Why do I need a separate site for photography? for a bit more detail. ...
Ongoing issues with choosing to journal using fountain pens.
Why bother blogging when even I donāt feel like reading my posts? I guess I donāt understand why blurring my ācontentā behind semi-transparent UI controls is any better than hiding it behind easily-distinguished UI controls. The content itself is unusable either way, so why not make the controls easier to see/use? What do we think about about the whole /notes implementation here? I donāt think I like it. I donāt feel like creating a whole thing every time I want to share whatever useless thought pops into my head. OTOH, I donāt much like putting everything into these daily posts, either. Not on this blog, in this format, anyway. On the other hand, why not just do it here? Problem is already solved, right? ...
Can you imagine much easier things would be if I⦠Used (only one) digital camera Put my photos in one big Lightroom Classic catalog Or maybe just used my iPhone with Apple Photos I saw a post where someone complained that the timeline for some community was āā¦a sanitized version of reality.ā My question is, must every ācommunityā always, no matter what, include content from every possible awful corner of the universe? If I wanted ārealityā, Iād go read about it, or visit just about every other timeline on the internet. I know shit is terrible, thatās why Iām hanging out in this nice space for a spellā¦as a respite. Is it not OK to want to be mildly entertained and amused for a little while? I mean, we donāt bitch about, say, The Disney Channel existing, do we? I donāt believe people have the right to demand that every space conform to every situation. ...
Too hot for chores, today, so Iām in my air-conditioned office, futzing with AI tools, server options, and my Emacs capture templates. For some reason, I canāt get a markdown-mode-hook to fire and call olivetti-mode when I open a Markdown file in an Emacs buffer. Iām using the exact method that works with org-mode files. Itās a small annoyance, but this is why I sometimes want to quit.
Posted: Roll 037 Ozzy died today. For a long time, I expected this to happen any minute. He didnāt exactly live a healthy lifestyle. After a certain point, though, it seemed like he might live forever. His āBlizzard of Ozzā tour in 1981 was one of the of the first concerts I saw. I remember leaning my head into a speaker cone, because LOUDER!
The other day, I converted my entire TiddlyWiki into an Obsidian vault, just to see if I could. Since I still spend most of my time in Emacs, I thought it would be nice to search the vault from there. The post, From Obsidian to Emacs, by Mike Hostetler, mentioned using the Xeft package, so I thought Iād try it. Hereās my config: (use-package xeft :ensure t :defer t :config (setq xeft-recursive t) (setq xeft-database "~/.deft.db") (setq xeft-directory "/Users/jbaty/Documents/Notes/Vault/") (setq xeft-ignore-extension '("png" "jpg" "jpeg")) (setq xeft-extensions '("md")) (setq xeft-title-function #'file-name-nondirectory)) Xeft relies on Xapian for searches, so a module needs to be downloaded or built locally. I didnāt have any luck with the downloaded version, so I deleted the package, started over, and had it compile locally. The trick there was entering the prefix ā/opt/homebrewā during installation, since Iād already installed Xapian using Homebrew. ...
With any luck, Iāll spend time today far away from the computer and very close to the lake.