@OnlyXuanwo: Kubernetes developers simply don't understand how to deploy services. This kind of thing — separate process and configuration management — services should never run in a Pod. Just start each service in its own tmux session. When a restart is needed, write a while true loop; if it crashes, it automatically restarts. Performance...
Summary
A developer criticizes Kubernetes' deployment method as too complex, advocating for using tmux sessions and while true loops to simply manage service processes, believing this approach has sufficient performance and is easy to maintain.
Similar Articles
@LuBtc888: Seriously, I barely touch tmux for multi-terminal management anymore. With http://herdr.dev and http://muxy.app, these two tools kick tmux's cumbersome configuration out of the game. No need to memorize complex shortcuts, no need to fiddle with config files—ready to use out of the box, a blessing for the lazy. Productivity tools...
Introduces two terminal multi-window management tools, Herdr and Muxy. Herdr is a Rust-based native terminal proxy runtime that supports persistence, mouse operations, and proxy state management, serving as a tmux alternative.
@GitHub_Daily: Use tmux to manage terminal sessions, opening multiple windows in the terminal that can keep running in the background even after closing. But now, with multiple Agents running at the same time, automating terminal tasks with tmux requires writing a bunch of scripts, which is cumbersome. So a developer built rmux from scratch in Rust, designed specifically for Ag…
Introducing rmux, a modern terminal multiplexer written in Rust, designed for AI Agent and automation scenarios. It coordinates multiple Agents running simultaneously, is compatible with over 90 tmux commands, and offers a Python SDK and browser-based session sharing.
@alexgiantwhale: https://x.com/alexgiantwhale/status/2079342482593309022
A detailed technical article on how to build a Dev Container from scratch, including writing Dockerfile, devcontainer.json, configuring security options, and lifecycle commands to solidify the Go development environment and restrict container permissions.
@dingyi: 我现在都懒得用 tmux 了,直接用 https://herdr.dev 或 https://muxy.app 更方便,适合懒人。
Herdr is a terminal-based agent multiplexer offering persistent sessions, agent awareness, and a mouse-native TUI, positioned as a convenient alternative to tmux. The tweet recommends it alongside muxy.app for users seeking simpler terminal session management.
@nash_su: Last night I was chatting with @i5ting about how a sandbox is an indispensable part of any agent, and today Tencent open-sourced Cube Sandbox: 1. Blazing-fast boot (<60 ms) thanks to snapshot cloning and warm resource pools 2. Hardware-grade security via KVM micro-VMs + eBPF network isolation, battle-tested on Tencent Cloud 3. Ultra-high density—runs in <5 MB RAM, thousands per node 4. E2B-compatible
Tencent open-sources Cube Sandbox, a KVM-based micro-VM for agents that boots in <60 ms, runs in <5 MB RAM, and is E2B-compatible.