Apr 20 · 3 min read · Originally published at recca0120.github.io You SSH'd in and started a job that will run for hours. No tmux. No nohup. Now you need to leave, and closing the window kills the process. reptyr moves it into tmux so you can disconnect safely. What repty...
Join discussionApr 16 · 5 min read · The spark My brother sends me a linkedin post from Yang Z. — 482 Reactions, 35 comments, 25 reposts. The post is about making my own hud for Claude Code in the spirit of jarrodwatts's claude-hud, a plugin that gives real-time heads-up display right i...
Join discussion
Apr 16 · 4 min read · Originally published at recca0120.github.io Running a full-stack Rails project locally means at least four services: Rails server, Sidekiq, frontend build, and CSS watch. The old approach was four terminal tabs or foreman to bundle them together. Aft...
Join discussionApr 12 · 8 min read · You ask Claude Code to refactor a module. It says "this will take a few minutes." You close your laptop and head out for coffee. You come back, open the lid, and your SSH session is dead, your termina
Join discussion
Apr 5 · 5 min read · The first thing every developer does when they start running multiple AI coding agents is write a bash script. I know because I did it too. #!/bin/bash tmux new-session -d -s agents tmux send-keys -t agents "claude-code" Enter This works. One agent,...
Join discussionMar 3 · 6 min read · tmux vs Zellij: Terminal Multiplexers Compared Terminal multiplexers let you split your terminal into panes, manage multiple sessions, and keep processes running after you disconnect. For decades, tmux was the only serious option (sorry, GNU Screen)....
Join discussionJan 25 · 3 min read · Tmux is a terminal multiplexer, which means it lets you run and manage multiple terminal environments inside a single terminal window. tmux is structured like this: Session → Windows → Panes Session: your full workspace Windows: like tabs inside a ...
Join discussion
Jan 20 · 9 min read · Tmux is central to how I work. It looks good and gets things done. Here is my complete setup with configuration files, custom scripts, and why I made each choice. Why Tmux? Here is what tmux gives you: Persistent sessions. Your work survives termina...
Join discussion