A blog about everything, by Jack Baty
Amateur photographer, blogger, and curious nerd.
Thinking about including a status thingy at the bottom of my daily posts. Got the idea from Warren Ellis. Do I actually do enough to justify writing it down every day? Maybe. Gruber doesnāt get art: Matthew Inman of The Oatmeal: āA Cartoonistās Review of AI Artā STATUS: 6h 24m sleep. Weight is ā¬ļø. TODO: Organize computers/cables. Water change in fish tank. READING: The Tools by Phil Stutz and Barry Michels LISTENING: Painkiller, by Judas Priest
Iām still working on my photo workflow in Linux. Itās gotten to the point of being tolerable, but itās still not enjoyable. Darktable is powerful but there are too many ways of doing everything. I feel like Iām just throwing stuff at the wall, hoping it turns out. I suppose I will eventually find a process that works consistently, but right now Iām not even close to that. I really miss Capture One. ...
I mean, if youāre going to start using new computers running a new OS, you might as well get a new, unfamiliar NAS and an updated Orbi router kit while youāre at it. Thatās what I did. Chaos! I havenāt been mentioning Omarchy or the Framework laptop lately because I donāt feel like being scolded for āsupporting projects that promote facismā which is of course not what theyāre doing, but whatever. Iām not interested in arguing about it, and Iām not going to clear my throat before every mention. fwiw I like both products very much. Send me an actual apples-to-apples equivalent and I might switch. ...
Iām trying not to miss my Mac but I kind of miss my Mac. Not being able to develop a comfortable photography workflow might be a dealbreaker for Linux. Iām still trying, though.
Iām still finding things that Iād changed in my PaperMod fork that I kind of need now that Iāve switched to the stock version. The Reply-By-Email button, for one. My improvement to image rendering from yesterday doesnāt work in the RSS feed because it uses a relative URL for the image. I had fixed this in my fork, so I copied that over. I also tried adding the reply button there, also. ...
I finally got around to updating Hugoās image_render.html so that I can use normal Markdown for images rather than a Hugo shortcode. I used the version from Alecās blog and it seems to work great. Hereās an example: We'll miss beach season! Markdown-mode in Emacs can hide markup so things feel a bit more WYSIWYG, but Iāve turned that off by default. Donāt WYSIWYG Markdown editors sort of defeat one of the purposes of Markdown? Plus, I donāt get confused about what is actually in the post this way. I can see the URL for links without C-c C-l-ing all the time. ...
Aaaaand, weāre back. Sometimes I really like WordPress. It lasts a week or two. I cleaned a few things up around here. The big one is that Iām now using the stock PaperMod theme rather than the mess I made in my own fork. Iāll probably tweak, but I donāt want to maintain my own theme. I also removed /notes from the navigation. I donāt need them. I may find some other way to indicate/present shorter posts, but for now itās all either a post or a daily note. ...
Sometimes one really needs to go out of their way to borrow trouble.
Oh dear, a new daily post here? Are we doing that again? Seems so.
My family and friends have always told me, āOh, you definitely have ADHD.ā Iām not inclined to diagnosis shopping, so Iāve just assumed thatās what it was and ignored it. Recently, though, my disinterest in mostly everything and lack of focus has been worse, and itās affected my mood and my overall well-being. I decided to see if there was anything to be done about it. I spent four hours at an intake screening for ADHD. Two hours of interview and two hours of testing. The person running the tests said that the doctor wanted to āinclude a few additional tests, so it might take a little longer.ā Fine with me. ...
The appeal of cynicism is that it makes you sound smart without asking for a whole lot of independent thought. Itās easier to tear down than build up, to assume the worst than to evaluate evidence, to sneer than to engage, to smirk rather than smile. Source: Joan Westenberg, Why Cynicism is Just Moral Cowardice We could use less of it.
Iām trying. I really am. Iāve spent a while getting my head around Darktable and digiKam. Thatās no small feat, honestly. What weird software. Itās capable, but getting to where I was with Lightroom Classic, Photoshop, and sometimes Capture One has been elusive. There are manuals, blog posts, and Youtube videos to consume, but, given the nature of Darktable, everyone tells me to do things differently. There are a dozen ways to accomplish every task. Which oneās best? Who knows!? ...
Thatās not entirely fair. Wallaceās most famous book, Infinite Jestā1,079 pages and weighing 3.15 pounds (in the hardcover first edition)āis challenging. But Wallace wrote many other things, and some of them are quite accessible. Source: Ted Gioia, Where to Start in Reading David Foster Wallace I hope that reading and talking about DFW makes a comeback. For a while there, Book Social Media was (rightfully) aligned against sound-smart lit-bros who wouldnāt shut up about Infinite Jest. I may have been one of them, because I loved (and still love) that book, so shut up. ...
TL;DR Itās a love/hate thing, with love in the lead. Here are a few thoughts on how things are going so far. Iām still using Omarchy. I really like the tiling window setup with Hyprland. I sometimes paint myself into a corner, but mostly it makes window management fast and efficient. Workspaces on Linux are so nice. Everything on Omarchy can be done via keyboard. Once I got used to the bindings, this has made getting around, launching apps, moving windows, etc. convenient. Iām not against using a mouse, but Itās nice not toĀ haveĀ to. ...
Iāve carried one kind of paper notebook or another on my person for years. Moleskine, Field Notes, Travelers, you name it. The idea is to ācapture my ideas and thoughtsā while on the go. Iāll be honest with you, I donāt really have many thoughts or ideas, on the go or otherwise. I canāt remember the last time I was walking or at the store or whatever and thought, āOooh! Thatās a brilliant idea, Jack! Thank goodness I have this notebook with me!ā ...
tanrax/org-social: Org Social is a decentralized social network that runs on an Org Mode file over HTTP. You can create posts, interact with groups, make replies, mention other users, create polls, or personalize your profile. All this without registration, without databases⦠Just you and your Org Mode file. Itās a ton of fun for us emacs nerds. Follow mine here: https://jackbaty.com/social.org
Iām feeling like a break from all this SSG-ness. Iāll see you at my WordPress blog at baty.blog for now.
How Iām pulling my Fastmail calendar entries into Emacs diary entries.
So many options. So little patience.
ā ļø Note that this doesnāt work properly. Thereās a ānilā at the end. Howm has a handy menu for viewing tasks and notes. One thing I wanted to add was my Emacs diary entries for the current date. This took 3 things: First, I created a function for inserting the dayās entries from Emacs diary in the current buffer. (defun my/insert-diary-entries-for-today () "Insert diary entries for today at point." (interactive) (let ((diary-list-entries-hook nil) (diary-display-function 'ignore)) (let ((diary-entries (diary-list-entries (calendar-current-date) 1))) (if diary-entries (dolist (entry diary-entries) (insert (cadr entry) "\n")) (message "No diary entries for today"))))) (and by āIā I mean Claude, mostly) ...