You're viewing a comment by Kent Fredric and its responses.
You're viewing a comment by Kent Fredric and its responses.
I am being sponsored by Syntress since 2007! They bought me an amazing dedicated server to run catonmat on. If you're looking web services in Chicago area, I highly recommend the Syntress guys!
I love to read science books. They make my day and I get ideas for awesome blog posts, such as Busy Beaver, On Functors, Recursive Regular Expressions and many others.
Take a look at my
Amazon wish list, if you're curious about what I have planned reading next, and want to surprise me. :)


Theres a handy trick with SSH. If you are inside a network with an anally retentive firewall, but you need *inbound* ssh support from a given box ( for something like git+ssh ), you can do a bit of magic by forwarding your ssh port to the remote box.
ssh -R 32123:127.0.0.1:22 $remotebox
$remotebox:> git clone foo@127.0.0.1:32123/path/on/your/machine.
its essentially, forwarding an ssh server over ssh, and then sshing back the other way.
Reply To This Comment