Cast
-
tilstream: init a TIL site and publish my first post
End-to-end tilstream usage: init, new, edit, build, serve, publish. About 20 seconds of elapsed time.
-
A quick tour through a project's justfile
Walking through the recipes in a typical Rust project's justfile: check, test, cover, the usual suspects.
-
httptap: attach to a running service
Pointing httptap at a flaky payments-api and watching a backoff loop reveal itself in real time.
-
fzf --preview as a whole-project find-TODO tool
Piping ripgrep into fzf with bat as a preview, narrowing interactively, and jumping straight into the editor at the right line.
-
strace on a running production process, carefully
Attaching strace to a live process with -f -p, filtering syscalls, and spotting a fd leak pattern.
-
Debugging a crashloop pod the way I always do it
The kubectl commands I run, in order, when a pod is in CrashLoopBackOff — from describe to previous logs to fix.
-
An interactive rebase that actually does something
Squashing typo commits, fixing up a test fix, and rewording a WIP message, all in a single `git rebase -i`.
-
bpftrace: which process is eating the retransmits?
A one-line bpftrace probe that ranks processes by the number of TCP retransmits they're causing.
-
pgbench: my first run against a new postgres
The complete pgbench init-and-run flow on a fresh postgres, with enough context to not look up the flags next time.
-
ripgrab: live-tailing nginx with a group-by
Tailing nginx access logs with ripgrab, filtering to 5xx, grouping by host, then narrowing with an interactive filter.