RTK vs snip vs lean-ctx: Token Killers
RTK, snip, and lean-ctx filter your AI coding agent's output before it burns context tokens. I run RTK daily — here's the one I'd actually switch to.
All the articles with the tag "cli".
RTK, snip, and lean-ctx filter your AI coding agent's output before it burns context tokens. I run RTK daily — here's the one I'd actually switch to.
Claude Code puts an agentic AI assistant in your terminal for real homelab work — compose files, bash, Ansible, systemd. The honest take on cost and data.
fd has sane defaults, parallel walking, and respects .gitignore. find is gnarly but ships everywhere. Here's when each one wins.
Control Linux audio volume and mic boost from the terminal with ALSA's amixer — no GUI needed, no remembering cryptic card numbers.
The docker compose commands you actually use daily — up, down, logs, exec, pull, and the flags that make them way more useful.
Shell globbing breaks inside docker exec because of how args are parsed — here's how to pass wildcards and asterisks correctly.
Move Docker images between hosts without a registry using docker save and docker load — air-gapped deployments made simple.
Learn how lazydocker and dive make Docker manageable from your terminal. TUI dashboards, image layer analysis, CI integration, and optimization tips.
Bash tricks that save keystrokes — history expansion, brace expansion, process substitution, and the shortcuts your fingers will thank you for.
Find your Linux distro version, kernel version, and architecture with uname, lsb_release, /etc/os-release, and hostnamectl.
Fix 'Argument list too long' in bash when cp or rsync chokes on thousands of files — glob loops, find + xargs, and the ARG_MAX reason behind it.
By default bash history is lost across multiple terminal sessions. Fix it with HISTAPPEND and PROMPT_COMMAND so nothing gets overwritten.