Terminal Log

Short raw notes. Commands, discoveries, one-liners that saved hours. Like a public TIL but with context.

fzf + zoxide is the combo
May 15, 2026 · @mschubert_dev
Both tools are well-known. Running them together is the thing I don't see written up often enough. zi is the command to remember.
git worktrees changed how I branch
May 08, 2026 · @mschubert_dev
Check out a second branch into a separate directory without cloning the repo. Eliminated every "let me just quickly stash this" situation.
ripgrep actually replaces grep
Apr 30, 2026 · @mschubert_dev
An alias that intercepts grep and routes to rg. Skips node_modules automatically. The alias has been clean for a month.
The alias that saved me
Apr 21, 2026 · @mschubert_dev
A git log wrapper that every engineer who sees it over my shoulder asks about. The canonical version I want to keep finding.
tldr pages over man pages
Mar 18, 2026 · @rkovacs_ml
Man pages are complete. tldr is what you need when you know what you want to do but can't remember the flags. Covers 70% of lookups.
ssh config I should have written sooner
Feb 14, 2026 · @mschubert_dev
ProxyJump, ServerAliveInterval, host aliases. Thirty seconds saved per session times a lot of sessions. Embarrassingly late.