Interesting blog post over at This Days Portion: You do not need βanalyticsβ for your blog because you are neither a military surveillance unit nor a commodity trading company. My thoughts werenβt that articulate, but I removed analytics from my blog years ago for similar reasons. π½
tech category
Neovim Smart Lists
Lists. They can be smart. These lists are not going to win a Nobel or anything, but #Neovim can be configured to grow some efficiencies from other editors. Smart. Let’s say you’ve created β¦ Read more
If you’re looking for incredible #FED talent, go hire Aubrey Sambor yesterday.
I have 19+ years of experience working with small agencies and Fortune 500 companies and focus on writing clean, accessible HTML, CSS, and JavaScript.
π½
Itβs Julia Evans new zine day. ππ½
404 Media wrote about a Queer Online Zine Can Only Be Read Via an Ancient Internet Protocol. Great read, and the zine, New Session, is fantastic. You can access it via the web (linked above), or my preference, via the aforementioned “ancient internet protocol”, telnet.
telnet issue3.anewsession.com
Quick Neovim tip: in a terminal buffer, you can use [[
and ]]
to navigate between shell prompts. Really useful for navigating long command outputs. π½
Anytime Julia Evans comes out with a new zine, it’s an instant-buy for me. The Secret Rules of the Terminal? Don’t mind if I do. π½
My being a Neovim user is a lot like being a kind vegan; yeah, I have thoughts, but I’m not a dick about it. π½π΄ββ οΈ
Iβm convinced the primary motivation for the widespread AI push is for bosses to suppress wages and eliminate jobs. π½
I feel like every web browser is “good enough”. There’s nothing I’m excited to use, and I keep switching defaults after one annoys me enough. π½
I made some tweaks to my blog’s navigation styles so they’re less cramped on mobile. I’ve modified a pre-existing theme, even though my day job is writing custom themes. There’s lots I’d like to tweak, and one day I’ll carve out the time. π½
I’m a certified Twig Designer. Please, one at a time!
 is recognized by the Symfony certification program as a certified Twig 3 Designer TWIG. Certified Designer. 3 Falien Potencier. Fabien Potencier, Symfony CEO](https://cdn.uploads.micro.blog/111874/2025/cleanshot-2025-05-22-at-16.18.492x.png)
Stop all the news: I updated my Uses page.
Ever in a #Neovim :terminal
, and want to open a file without having to back out to normal mode, or have a nested Neovim instance? There’s several ways to do this, but here’s a simple one.
Add a shell function that tests $NVIM
, which is set to the server pipe when inside a Neovim instance. If Neovim is running, replace the nvim
command with an alias that passes the --server
and --remote
options.
Here’s a complete example for the Fish shell, but it should be easily adapted to others.
#!/usr/bin/env fish
function nvim --description "Open Neovim within the same instance, if one is running"
if test -n "$NVIM"
command nvim --server "$NVIM" --remote $argv
else
command nvim $argv
end
end
I switched to the Hack programming font in my terminal and IDE, and really enjoying it. Functional, readable, and nice to look at.
Why does every macOS app ask for permission to access my local network?
When trying to type event.target.closest()
, I instead wrote event.target.closet()
. It took me too long to debug.
Currently, this is an embarrassing mistake. However, if we bug the ECMAScript standards committee, all event targets can have their own closet.
Brian Kardell and Eric Mayer have a good discussion on the Mozilla privacy policy changes over at Igalia.
Restore those cool hidden macOS calendars
Years ago I wrote about interesting hidden calendars in macOS. I hadn’t tested this in a long while, until I happened to think of it the other day. In that time Apple had removed the calendars, β¦ Read more
I gave a whimsical talk introducing #git at Florida #Drupal Camp, and published it as a blog post. I’m very proud of it. Open to any feedback!
Grokking Git: A Fantasy Story
This post was originally done as a presentation at Florida Drupal Camp. You can watch the video on YouTube. Git is a big part of a lot of tech workerβs every day lives, but it can be confusing to use. β¦ Read more
Grokking Git: A Fantasy Story
Git is a big part of a lot of tech workerβs every day lives, but it can be confusing to use. Thereβs good news and bad news. The bad news is, Git is complex; thereβs a lot of confusing commands. The β¦ Read more
I’m on the Lullabot Podcast talking about Single Directory Components! #Drupal #SDC
Jason Koebler nailing the sentiment in OpenAI Furious DeepSeek Might Have Stolen All the Data OpenAI Stole From Us
I will explain what this means in a moment, but first: Hahahahahahahahahahahahahahahahahahahhahahahahahahahahahahaha.
My CLI wrapped most used commands.
- 3732
git
- 1471
ls
- 1289
rg
- 856
ddev
- 745
nvim
- 546
mv
- 534
cd
- 510
rm
- 477
yarn
- 453
cat
Generated with history | awk '{print $1}' | sort | uniq --count | sort --numeric-sort --reverse | head -10
.