GitHub - run-rx/rx: Remote execution made easy
Make debugging easier
There’s so many little tricks I’ve acquired over the years on making software easier to debug. If you don’t make any effort to make debugging easy, you’re going to spend unacceptable amounts of time debugging each issue, as your software gets more and more complex. You’ll be terrified to make changes because even a couple new... See more
There’s so many little tricks I’ve acquired over the years on making software easier to debug. If you don’t make any effort to make debugging easy, you’re going to spend unacceptable amounts of time debugging each issue, as your software gets more and more complex. You’ll be terrified to make changes because even a couple new... See more
Marcus • Marcus' Blog
How I run multiple Claude Code agents in parallel using git worktrees. Please comment if there are better ways :)
```
function wt() {
git worktree add ../worktrees/$1 main
cd ../worktrees/$1 && git checkout -b... See more
Kieran Klaassenx.com