Skip to main content

posts

On Writing and Failure
·309 words·2 mins
failure writing
“Businessmen are only amateurs at failure, just getting used to the notion. Writers are the real professionals.”
No Inhibitions
·91 words·1 min
creativity music
“Learn your instrument. Practice, practice, practice. Then forget all that and just wail.”
Enabling Private Vulnerability Reporting
·356 words·2 mins
security GitHub
A small gh one-liner that turns on private vulnerability reporting for every public, non-archived, non-fork repo you own — or every repo in an org you administer — so security researchers have a sanctioned channel to report issues before they go public.
The Great Perl Toolchain Summit CLI Throwdown 2026
·1203 words·6 mins
cli dotfiles
A second year of CLI picks from the Perl Toolchain Summit — terminals, JSON tools, version control, agent sandboxes, and a shell trick worth knowing. Each pick comes with a short description and a link.
AI Shoulder Surf V2
·1150 words·6 mins
AI automation
A friendly group of developers, no recording, no posturing — just shared screens and honest notes from the second AI Shoulder Surf session. The recurring theme: people are tightening up where their agents can reach, and getting choosier about which models they trust with the work.
On Cooldowns and Dependabot Tuning
·614 words·3 mins
LLM automation Dependabot security supply chain
Dependabot’s defaults can make it look like an agent of chaos. Here’s how cooldowns, dependency groups, and a Claude skill turn down the churn — fewer rebases, boring CI, and a few extra days for the world to flag the bad actors.
AI Shoulder Surf V1
·1236 words·6 mins
AI automation
Notes from an informal Zoom session where developers shared AI tools, automation techniques, and projects. Topics included using Claude in headless mode to manage version bumps across 20+ packages, an overnight bot that processes GitHub issues and responds to PR comments, the “Talk About Us” copy-auditing skill, and a lively debate about whether the future of development is writing specs rather than code.
Can Others Explain My Work Without Me?
·1740 words·9 mins
AI writing
It’s easy to fall into a trap of using jargon when discussing what you’re working on. Sometimes we need help expressing our thoughts in interesting and meaningful ways—using our own voices, in a way that’s memorable and repeatable. A blog post by Anil Dash helped me rethink my writing. I’ve turned those principles into an AI skill, so you can try it too.
Oops! I just broke git-bisect
·908 words·5 mins
git
I rarely use git-bisect, but thinking about it has changed how I structure my commits. The principle is simple: don’t break git-bisect. If a change breaks something, the fix should belong in that same change. This mental model helps avoid common anti-patterns like splitting a bug fix into two commits—one with a failing test, one with the fix. Even if you never run bisect, thinking “would this commit work in isolation?” creates a provably linear set of working changes rather than an aspirational attempt at correctness.