For some reason this seems confusing– but it isn’t! That said, I always forget the specifics. Here’s how you use ssh-agent to do key forwarding to remove machines.
On your local machine, execute:
eval `ssh-agent`
Note the back ticks around ssh-agent. you need to eval this, not run it!
Now you need to add the identities you want [...]
Lately I find myself writing a lot of python scripts that involves a ton of text flying by, and me inventing increasingly creative combinations of obscure symbols to delineate different portions of the output. Luckily, if you’re not using windows using a sensible operating system, then you probably have an underappreciated tool at your disposal– [...]
The development environment i’m using right now requires that we use a slightly older version of django than the current svn checkout I had installed on my machine. I went searching around for what people do when they have multiple versions of django they need to run, and came across a simple script written by [...]