Subscribe

Archive for the 'friends' Category

Pipe Directories Over SSH

My good friend Jayk showed me this nifty trick years ago for moving directories over ssh:

From a local directory to a remote directory:

tar -zcf - . | ssh name@host “tar -zvxf - -C <destination directory>”

From a remote directory to a local directory:

ssh name@host “tar -zcf - -C <source directory> .” | tar -zvxf -

This […]

Just before the thanksgiving weekend I was talking to my friend/fellow coder/work associate Massimo and he tells me that he wants to write this ’simple’ RPG and having it running before Sunday. Sounds impossible but I told him I want to play whatever he has done. The next day I’m getting a bit frustrated because […]

Mass and I had some good lunch game design conversation today. Made a stop by gamestop and bought ‘Trauma Center: Under the Knife’ for Nintendo DS. It’s one of those titles you don’t see that often although the counter guy said they got a restock of 2 copies so that may indicate that Atlus is […]