-
Tag-Teaming Claude Code with an AI Agent via Tmux
Jan 22, 2026
Claude Code is an impressive CLI that brings sophisticated AI-assisted coding directly into the terminal. Its TUI (Text User Interface) provides rich feedback through interactive menus, progress bars, and side-by-side diffs. However, long-running tasks present a challenge: if you need to step away from your computer, the session momentum is often lost. To solve this, I’ve developed a workflow using Tmux as a shared terminal state. This allows me to hand off a live session to my Clawdbot agent and, conversely, take over a session that the agent started. It also provides a mechanism to optionally switch between different account tokens (such as a work account) on the fly. …more
AI AutomationProgrammingClaude CodeTmuxClawdbotWorkflowAutomation
-
Setting up Keras Tensorflow2 on M1 Mac
Oct 21, 2022
I am currently reading Deep Learning with TensorFlow and Keras to get started with Machine Learning/Deep Learning. Here is how I setup a local Keras/Tensorflow 2.0 environment on my M1 Max MacBook Pro running macOS 12.6. …more
How TosProgrammingMachine LearningArtificial IntelligenceMachine LearningDeep LearningTensorFlowKeras
-
Cross Compiling on macOS via Docker
Dec 23, 2020
I needed to compile an arm64 binary to run on the UniFi Dream Machine Pro. This is how I used docker to setup cross compilation tools and compile the binary on macOS. …more
-
Dagger 2 Beginner Tutorial
May 22, 2020
While reviewing an Android project I discovered it was using Dagger 2 framework. Dagger 2 is a dependency injection framework for Android that is developed by Google. I wanted a quick overview of frameworks major features. …more
