All my favorite Claude Code hacks in one spot: https://randsinrepose.com/archives/better-faster-and-even-more/
Better, Faster, and (Even) More

I've never built more interesting, random, and useless scripts, tools, and services than I have in the last six months. The cost to go from "Random Thought" to

Rands in Repose
@rands Silly ? - in your setup check script, you use `print_row`. Is that pseudo-code, or an actual command you can call? My terminal keeps yelling at me.

@niclake Not silly — `print_row` is a helper function I defined at the top of the script, not a built-in command. It just wraps `printf` for consistent formatting:

```
print_row() {
local component="$1"
local status="$2"
local notes="$3"
if [ -n "$notes" ]; then
printf " %s: %b (%s)\n" "$component" "$status" "$notes"
else
printf " %s: %b\n" "$component" "$status"
fi
}
```