The Emergent Task Planner
Letās try the paper-based Emergent Task Planner again
Letās try the paper-based Emergent Task Planner again
When creating a new project folder (group) in DEVONthink, I often make use of Templates. Templates are just files in a folder somewhere that get copied into the DEVONthink database. For example, I have a project āstarterā Tinderbox document named āBasic Project Template.tbxā. When inserting the template file into my DEVONthink project, it uses the same name as the original, which isnāt helpful. DEVONthink is very scriptable, so I wrote an AppleScript to rename the selected document the same as the enclosing group/folder. ...
I woke up from my trance and bailed on my disjointed bricolage of Fastmail->Gmail->Mimestream. Cobbling various pieces together just so I can use a single mail client on my Mac seemedā¦shortsighted. Mimestream is nice, but not that nice, you know? So Iām back in MailMate and/or Mu4e. Oh, and sometimes Apple Mail. But Iām thinking about switching back to notmuch from Mu4e. Now that I say it, Iām not sure this is any better :). At least Iām not relying on Gmail now, I guess. ...
I donāt get many emails these days. Nor do I send many. And yet, I spend an inordinate amount of time futzing with how I get and sent emails. Iām doing that thing again where I overthink my email process. The only hard requirement I have with email is that it uses my own domain name. Hence, jack@baty.net. Email is still the key to many things, so allowing someone like Google to control that key is a no-go for me. My wife still uses a Comcast address, can you imagine? I get hives just thinking about it. She gets a lot more email than I do, and never gives any of this a second thought. ĀÆ_(ć)_/ĀÆ. ...
For the few of you whoāve been following along, youāll have noticed that Iāve changed blogging engines several times recently, even more frequently than my usual pace. The most recent moves happened over just a few weeks. I went from WordPress to Blot to Hugo and back to WordPress. I wrote this about moving away from WordPress only two months ago: Mostly, I switched because I donāt enjoy using WordPress. WordPress is powerful and easy and everywhere, but the editor is unpleasant and everything just feels heavy and overwrought. I also tire of plugins nagging me to āUpgrade to Premium!ā all the time. I tell myself I can live with it, but in the end I never can. ...
Journal blog post format changes. Mimestream for email. Arq backup problems. Tweaking the PaperMod theme.
The other day I wrote this: Knowledge should reside in the notes, not in the software used to manage the notes. Iām feeling like software has been hindering me more than helping me. I spend too much of my time building overly complex workflows in Emacs or Tinderbox or Obsidian or whatever. These crazy workflows often introduce dependencies and push the actual knowledge up into the process/software. This seems like a bad idea. ...
I try to name all of my files using the fileās creation date as a prefix. For example: 20230504-MyNewFile.txt If I forget, itās a pain to rename them, so I created a short AppleScript to do it for me. -- Prepend Creation Date to selected files -- Install Location: ~/Library/Scripts/Applications/Finder -- Last Modified: 2023-05-04 tell application "Finder" set selectedItems to selection as list -- Loop through each selected item repeat with selectedItem in selectedItems set creationDate to creation date of selectedItem set fileName to name of selectedItem -- Prepend the creation date to the file name set newName to my stringFromDate(creationDate) & "-" & fileName -- Rename the file with the new name set name of selectedItem to newName end repeat end tell on stringFromDate(_date) -- yyyymmddhhmmss set _string to "" set _string to _string & my stringFromNumber(_date's year, 4) set _string to _string & my stringFromNumber(_date's month as integer, 2) set _string to _string & my stringFromNumber(_date's day, 2) return _string end stringFromDate on stringFromNumber(_number, _digitsToPad) return text -_digitsToPad through -1 of ("0000" & _number) end stringFromNumber I put the script into a Finder-specific folder, so itās made easily available when Finder is the frontmost app: ~/Library/Scripts/Applications/Finder. (I use FastScripts to make things, er, faster). ...
Since I use DEVONthink Pro (DTP) to index and store my notes and documents, I sometimes revisit the idea of using it to create notes. DTP includes a variety of built-in scripts for creating new content. These are mostly written in AppleScript. I was interested in the āDaily Journalā template. By default, running the Daily Journal template would create a new Markdown document containing a random quote and a list of the 4 latest headlines from the New York Times website. I was OK with the headlines, but I didnāt feel the quote was necessary, so I replaced it with the current weather. ...
Itās happening again. My love of powerful, complex software has overrun my ability to avoid tinkering. For example, Iāve spent several hours this week working on my Org-mode agenda display. Configuring org-super-agenda is tons of fun. It can make oneās Agenda absolutely sing and dance, which is not ideal for me because Iāve spent way too much time trying to teach it to sing and dance. I could have finished all of the tasks on my todo list in the time Iāve spent getting them to display just right. ...
Iāve tried so many āread-laterā services that I canāt remember half of them. Theyāre all basically the same: visit a website, click a button, and the article is saved to a list somewhere with all the other articles Iāve saved. Some newer services get fancy with recommendations, UI improvements, social integration, etc. but they all just gather a list of articles that I almost never end up reading. But, you know, just in case, right? ...
Ten years ago, Steven Johnson wroteĀ The Spark File, in which he describes his process for keeping track of hunches, ideas, etc. in a single text file. I, of course, thought this was a great idea and immediately started keeping my own spark file. It began in 2012 and I was reasonably consistent with it until 2016. After that, there was a lull, but it picked up again for a short time in 2021, after which I sort of forgot about it. ...
Iām tired of computers. I spent hours today rummaging around my notes and trying to figure out if I should write some new thing in Emacs or Obsidian or Tinderbox or what? Itās confusing and frustrating, and I need a break. Iām typing this on my iPad Pro using the Magic Keyboard. I wonāt lie, the iPad is too limiting for me under nearly all circumstances. But thatās exactly why I need it right now. Iāve gotta stop tweaking and startĀ doingĀ something instead. That something might just be watching Netflix, but at least thatās not going to make things worse. ...
I tried, I really did. The Wise Old Internet guided me into changing my film scanning process from a dedicated flatbed scanner to using aĀ mirrorless digital camera setup. I did everything right. I bought good equipment and the right software. I hated it. To scan using my flatbed, I load the negatives, hit āPrescanā, confirm that things look ok and press āScanā. I go do something else for a while and come back to a folder full of JPGs. I edit the files by adjusting contrast and cropping as needed in Lightroom or whatever and Iām done. ...
I use Notmuch in Emacs for managing my email. Itās fast, powerful, and (once used to it) easy to use. There are a few oddities Iāve learned to work around. The first is with deleting messages. The manual for Notmuch states: Notmuch does not support, nor ever will, the deleting of messages Notmuch manual Iām ok with this, since Notmuch provides a way to essentially bury deleted messages using tags. I donāt necessarily need to actually delete the message file. Any message tagged with +deleted is hidden from searches unless explicitly included. Ignored tags are set in ~/.notmuch-config like so: ...
I rage-quit Emacs this morning. By that, I donāt mean that I hit C-x C-c really hard, although I did do that. I mean I stopped using Emacs. ...
The last time I rewatched āThe West Wingā I was once again impressed by how good people were at their jobs. How productive everyone was. I wondered how I could be that productive. ...
Iāve gone through many photographic workflows. Each time, Iām certain that Iāve figured out what works best for me. Finally! Then a few months later I switch back or come up with something new. I wish I would stop doing this, but I probably never will. So, I have a new workflow ???? There is a part of me that really wants to let Adobe deal with everything. Wouldnāt it be great if I didnāt have to organize, store, back up, or otherwise manage tens of thousands of image files? I could just use Lightroom (desktop) and let the cloud take over the rest. Except I canāt. I have proven myself incapable of giving up control over the files. I have decades of images stored in nicely-organized, dated folders. I know where they are. I know how to back them up. It feels safe forever. ...
Scanning 35mm film with a flatbed scanner isnāt great, so I bought a PrimeFilm XAs scanner to see if that would help. It didnāt. The XAs creates large, sharp scansā¦when it works. I was excited by the prospect of scanning an entire roll of 35mm film in one go. Just feed the film into one end and it comes out the other, leaving behind up to 36 5000dpi scans. Unfortunately, it hasnāt turned out that way. I was only able to scan a full roll once without issues. Alignment just never worked and Iād end up with offset frames for 3/4 of the roll. I never did figure out why it worked sometimes but not others. ...
I put together a workbench in my basement office that was supposed to house all of the cool āmakerā projects I was planning. You know, little electronic builds, equipment repair, that sort of thing. Iāve come to realize that these projects are infrequent and the workbench space is mostly wasted. Iāve found myself occasionally standing at the bench to write in my notebook or read a magazine, just as a chance to stand up for a while. I havenāt had an adjustable-height desk since leaving Fusionary, and I enjoy standing. ...