-
Gemma 4: testing the hype locally
Google dropped Gemma 4 on April 2nd to a lot of noise. I loaded it in LM Studio and ran it against two other 4B-class edge models to see if the hype holds up. One thing upfront: this is not a test of Google’s headline benchmarks — those are for the 31B dense model. Everything here is the E4B edge variant, which is what fits on consumer hardware.
-
Agentic workflows for DevOps: what actually works and what will burn you
Everyone is talking about AI agents doing infrastructure work. Most of the discourse is either pure hype (“agents will replace DevOps engineers!”) or pure fear (“never let AI touch production!”). After six months of actually building agentic workflows — using Claude Code as my daily driver, wiring up automated issue resolution, building MCP tools to give agents access to real systems — I have a more boring and more useful take: agents are great at reading and terrible at writing. The boundary between those two is where you put your guardrails.
-
The four golden signals — what I actually monitor and why
Got asked about golden metrics in an interview recently. Named three out of four on the spot — latency, errors, saturation — and completely blanked on traffic. The one signal I look at every single day, and my brain just decided it wasn’t worth mentioning under pressure. So here’s the post I’m writing partly out of spite at my own memory. The four golden signals from Google’s SRE book are a solid framework, but how you implement them — and what you learn the hard way about each one — is where it gets interesting.
-
filmpick — a local movie recommendation engine, renamed
I’ve been running a project called
movies-organizerfor a while. Bad name. It sounds like a tool for renaming files. Today I renamed it tofilmpick— because what it actually does is help you pick your next film. -
Overhauling a Jekyll blog — dark mode, code blocks, and all the small things
This blog has been running on Jekyll since 2015. The content changed, the stack around it changed, but the blog itself? Same minima theme, same default code blocks, same flat archive page. It was time to fix that.
-
qubitcoin — a post-quantum Bitcoin rewrite, and why silent RPC failures matter
There’s a particular class of bug I hate more than crashes: the API that quietly returns nothing when you give it garbage input. No error, no
400, just an empty result that looks exactly like a valid-but-empty result. This surfaced while working onqubitcoin, a post-quantum Bitcoin rewrite I’ve been building — so let me introduce that first, then get to the bug. -
x402 - HTTP payments that actually work
HTTP
402 Payment Required. It’s been sitting in the spec since 1991 — literally the first version of HTTP that had status codes. “Reserved for future use.” For decades, every web developer has scrolled past it and thought “huh, wonder when that’ll be a thing.”Well, it’s a thing now.
x402is an open protocol that revives that dusty status code into actual payment infrastructure. Coinbase’s Developer Platform team built the initial implementation, but this isn’t just a Coinbase product — Cloudflare, Polygon, and Solana are backing it as part of a broader push for “agentic payments.” The idea is that any HTTP endpoint can become a digital vending machine: request a resource, get a price, pay on-chain, receive the goods. No accounts, no API keys, no invoicing.I wired it into one of my projects. The integration is absurdly simple.
-
mcp-http-tools - any HTTP API as an MCP tool, zero code
I’ve been using Grafana since around 2014 and added Prometheus and Loki to the stack not long after. Dashboards and alerts are great for knowing what happened — but when I want to actually poke at the data, it’s still
curlcommands in a terminal. I wanted Claude to be able to query my monitoring stack directly — but writing a custom MCP server for every API felt like too much work. So I builtmcp-http-tools: a generic MCP server where you define tools in YAML and it proxies requests to any HTTP API. -
macosx-audit - know what's running on your Mac
In the last post I teased this one — so here it is!
macosx-auditis a single-file bash script that audits your Mac’s security posture. No agents, no daemons, no root required for most checks. Just run it and see what’s there. -
bioenv - Touch ID for your environment variables
I haven’t been around here for quite some time. 6 years to be exact! Life got busy, work got busy, everything got busy. But I’m back and I have something cool to share. Let’s get to the point.