Howm reminds me of TiddlyWiki
Howm and TiddlyWiki share some features that I like
Howm and TiddlyWiki share some features that I like
In the spirit of /Now and /Uses and /Hello pages, I’ve created a /Nope page. It’s for keeping track of things I don’t like or want to do. It’s a work in progress, but it’ll probably see more updates than my now page 😄
Software doomsday scenarios take the fun out of everything
Reducing complexity is never accomplished by adding complexity.
I like this calculator better than the one it replaces
Look what I found in the garage: Apple Extended Keyboard II It’s my old Apple Extended Keyboard II from 1990 or 91. I last used this one in 2015. The AEKII uses an ADB port, so I had to dig out my ADB->USB-A adapter (save everything!). I’m typing this post on the keyboard right now. The Alps switches are as great as I remember, and might be my all-time favorite switches. ...
I switched from using Lightroom Classic (LrC) to Capture One Pro (C1) “for good” back in 2021. It wasn’t because of Adobe’s subscription model, or because I had some vague aversion to Adobe, the company. It was because I felt like I was getting better images, faster, with C1. I kept a few notes on Lightroom Classic vs Capture One but haven’t updated it in a while, so here are a few notes about why I have moved back to Lightroom Classic. ...
I know, I know, the reMarkable 2 tablet is designed as a digital replacement for writing on paper. It’s not necessarily meant as a document reader. But that’s what I’ve been using it for. Reading PDF on reMarkable 2 For years now I’ve saved web articles as Markdown files, converted them to PDF, and printed them for reading later. See My read-later service is made of paper. I wanted to see how reading PDFs felt on the reMarkable, so I copied a few of my saved article PDFs to it. It turns out that I liked it very much. Highlighting text with the stylus works great, and I can even choose the color of the highlights, which don’t display on the device, but they do on the actual PDF. ...
howm is an Emacs package for taking notes. It was recommended to me recently, so I thought I’d take a look. The project page says “howm: Write fragmentarily and read collectively.” Worth a shot, right? I haven’t seen too many people talking about howm. The best introductions I’ve found are from Leah Neukirchen and Andrei Sukhovskii. I installed it via use-package with the following ;; howm package config (use-package howm :ensure t :config (setq howm-directory "~/Documents/howm/") (setq howm-home-directory "~/Documents/howm/") (setq howm-keyword-file (expand-file-name ".howm-keys" howm-home-directory)) (setq howm-history-file (expand-file-name ".howm-history" howm-home-directory)) (setq howm-view-use-grep t)) ;; (setq howm-view-grep-command "/opt/homebrew/bin/rg")) ;; Fix for help bindings (define-key howm-menu-mode-map "\C-h" nil) (define-key riffle-summary-mode-map "\C-h" nil) (define-key howm-view-contents-mode-map "\C-h" nil) ;; Sensible buffer names (add-hook 'howm-mode-hook 'howm-mode-set-buffer-name) (add-hook 'after-save-hook 'howm-mode-set-buffer-name) I couldn’t get the rg settings to work, so I’m still using grep. It’s fast enough for this test. ...
I bought a miniStack STX to go with the new M2 Mac Mini
Things would be easier if I stopped worrying about all sorts of meaningless computer things
As much as I would love a new X100VI, I don’t actually need one.
I don’t like the way Glass shows images in a desktop browser when the browser window is wider than around 1,000 pixels. I prefer the layout in narrower windows, but I never have mine that narrow. This means whenever I’m browsing Glass, I have to shrink the window. Left: What I want. Right: What I get The Arc browser has “Boosts” that let me easily adjust the CSS of any website, so I created one for Arc. This is it: ...
This morning it took over 30 minutes to copy a 70MB file from my MBP to the Synology over WiFi. The wait resurfaced my thoughts about having an always-on computer on my desk with some fast, attached storage. I just ordered an M2 Mac Mini (Pro) with 16GB RAM and a 512GB internal drive. Since 2021, I’ve had an over-spec’ed MacBook Pro (M1 Max) with a 2TB internal drive and 32GB of RAM. I don’t do much that requires all of that oomph, but I figured it was nice to have anyway. With the Mini, I went with the Pro version mostly for the additional ports. A smaller, 512GB internal drive should be fine, since I’ll have a number of fast SSDs always attached. I’m not worried about not having enough room for my stuff. The thing I’m most worried about is “only” 16GB RAM. I’ve had 32GB for so long that I don’t remember what it was like working with less. I’m almost certain that 16GB will be plenty for my purposes, but it still makes me a little twitchy. Plus, $1,299 still feels like relatively cheap compared to the $3k+ I spent on the MBP. ...
More like Perfect Movie_
A tactical, localized reset of my system(s)
I used to use Evernote as a junk drawer. Now what should I use?
I’ve been tinkering with keeping offline copies of websites (mostly mine), and have always used either wget or httrack. I wasn’t aware of the WARC format until recently, so I thought I’d try creating a few WARC archives. wget, as it happens, has WARC support built in via the –warc-file option. I added that to my usual set of switches and put it all in a shell script, like so. #!/bin/sh # warc-archive.sh https://example.com warc-file-name wget \ --mirror \ --warc-file=$2 \ --warc-cdx \ --page-requisites \ --html-extension \ --execute robots=off \ --directory-prefix=. \ --wait=1 \ --random-wait \ $1 This creates a compressed, self-contained WARC file along with a mirrored set of files comprising the entire site. ...
Derek Sivers posted about how he handles backups and it got me thinking about how I handle backups. I feel like I’m mostly covered. I use Backblaze on my MacBook Pro for continuous, off-site backups of both the internal SSD and the attached “Media” drive containing my photos, videos, etc. I clone “Media” to a separate external drive once a week. iCloud syncs my ~/Documents and ~/Desktop folders, so that should be covered. The headless Mac Mini is also using Backblaze. The Synology is synced nightly to Backblaze B2 storage. ...
For many years I’ve put every new folder full of anything into a new Git repo. I never questioned it, I just did it because that’s what you do. I’m thinking about no longer doing this. This morning I was daydreaming while waiting for a folder to finish rsyncing to a server and I was mesmerized by page after page of lines like “.git/objects/fb/70e546350cc4106caf1225706b44c85087ed27” scrolling by. I checked a few of my projects and was surprised by how much space all those .git/ directories use. ...