In Washington, it seems there are parks around every corner. A park for a walk. A park for sitting on a bench and relaxing. A park for you and your dog - and then a dog park inside that park as well. There’s even a spot for gnomes.

Fun times. 📷

Auto-generated description: A wooden garden sign leans against a fence in front of a red building, with several pumpkins scattered on the ground. Auto-generated description: A wooden bench is nestled among lush greenery and trees beside a leaf-strewn path. Auto-generated description: A small gnome figurine is nestled in a mossy nook of a tree trunk amidst a lush forest.

I don’t know Bob yet, but this place smells nice 🥯and it is much cheaper than flying to NYC, for sure ☺️

A sign for Blazing Bagels lists humorous reasons to visit, such as liking Bob, enjoying caramel-fudge brownies, and the guarantee of getting a hole in every visit.

I’m up. Way too early for Seattle, but normal for New York. I’m ready to make coffee and ready to work, jump on my emails, fill up my schedule, drop down to pushups.

I don’t understand this time off. I’m not sure I like it just yet. What is happening?

Extra money for priority boarding. Buy lunch on the plane if you want more than crackers and juice. Pay up if you want space so your knees don’t touch the seats in front of you. Faster WiFi that allows you to work is premium.

And ads. Ads everywhere. On the walls of the jetway, on the terminal top walls, when you have to see them as you slowly zigzag in line to the security check. Before movies. After movies. On brochures.

Services are crappy in advance, so you have to pay your way out of the imposed sub-minimum. Sad.

We arrived. Krickland feels colder than New York, probably because of the humidity next to Washington Lake. It’s a chill kind of evening here, with no obligations. My stomach is full, and I’m ready to go to bed, but it’s too early for me in this time zone.

We’re headed to Seattle tomorrow to meet friends. I’m excited to have a camera with me in a place I don’t know again, and I could use some time off.

Today, I broke down and wrote in my Emacs journal instead of my written one for the first time in over a year. There was just too much to write, and there were too many places I wanted to mention and link to, something I can do easily with Emacs OSM package, as I mentioned before. There was resistance at first since I was writing something personal since Emacs is not as intimate as my notebook, but the words came flowing soon enough. I’m glad I did it this way. We’ll see if I switch back or not; I’m not sure at this point.

On the other hand, I almost finished my pocket notebook and I’m ready to start a new one. It’s been good. I like that I can open it and look through my various reminders and notes and start working on things I need whenever.

On a walk around west village, we saw this little guy looking at us through the window. 📷🐶

A dog peers through an opening below a window shade, letting in soft light and showing books in the background.

Everyone's an expert

Jason Becker]] writes that that the situation in Israel is not simple for him, and it frustrates him when people pretend it is:

how angry I felt toward Americans who overnight felt like they were experts on this conflict. What little I could say is “a whole lot of people seem to think that this is all very simple and clear – simple and clear what the United States should do and what Israel should do– and anyone who has ever spent any time understanding the Middle East would not be so sure.”

As an American-Israeli with most of his family still in Israel, I feel the same way. In fact, these days, I automatically block/ignore anyone new who has some sort of “free Palestine” or its equivalent emoji on their blog or a pin on themselves. The notion that you can reduce what’s going on to a mere pin on a bag or an emoji is infuriating.

I hate car horns so much sometimes. Someone was blocked in the street, and they leaned into their horn for half a minute (after that, I put on my noise-canceling headset).

What’s the dea,l you think they’ll move from the soundwaves? Do you have to make it my problem too at 07:30 AM?

Emacs-plus PATH in macOS Sequoia

Important: this is for emacs-plus for macOS via Homebrew.


After the upgrade to macOS Sequoia, Emacs’ Dired didn’t find gls, which made it impossible to navigate to folders and open files this way. When a program can’t find another program, it’s usually a sign something is wrong with the path environment.

On Mastodon, Jumile directed me toward a discussion about a similar error on Github. Seems to be a path issue indeed, from what I can tell. Something with PATH injection in Emacs (I don’t know what this is yet, but from the name, I get a vague idea. This seems to be an interesting read)

Two solutions and a workaround.

The workaround is to launch Emacs from the terminal, which loads the environment correctly.

Something more permanent is manually doing what emacs-plus does automatically: copy and apply the PATH in the init file, as explained in the GitHub above. To do that, you want to go into Info.plist inside the Emacs package: /opt/homebrew/Cellar/emacs-plus@[your version number here]/[version number]/Emacs.app/Contents and locate the PATH string (search for “PATH”). On my system, it looks like this:

<string>/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin</string>

And copy it into the init file, telling it to set the environment like so:

(setenv "PATH" "/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin")
(setq exec-path (split-string (getenv "PATH") path-separator))

Something even better came from David Hagerty: exec-path-from-shell. This package is “copying important environment variables from the user’s shell: it works by asking your shell to print out the variables of interest, then copying them into the Emacs environment.”

I tested it out, and it works as advertised. This is a more reliable solution than copying the path manually each time, though it’s important to understand what’s going on and what it does.


On Reddit, slashkehrin added the actual path issue on Github.