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!
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
functionnvim--description"Open Neovim within the same instance, if one is running"iftest-n"$NVIM" command nvim --server"$NVIM"--remote $argv
else command nvim $argv
endend
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.
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!
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
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 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.
After exhaustive research and countless hours over nights and weekends, I’ve compiled the authoritative demographic info on the audience for each vi derivative.
Neovim: devs wanting a hackable IDE
Vim: sysadmins who work primarily over remote terminals
Vi: FreeBSD devs
Ed: The criminally insane
I’m very excited that I’ll be giving my first session at Flordia DrupalCamp 2025: Grokking Git. Hope to see you there! #drupal #git #lullabot
As a dude and a senior software developer, let me say unequivocally that I have no natural talent. Like, zero. Any skill I have is through effort, and I’m not unique in that way.