@Rubyfringe Prepost

So I’m on the backchannel at rubyfringe and Libin’s name comes up again:

<heycarsten> I think libin is on acid.
<wmoxam> lol
<heycarsten> thats my theory
<gmcinnes> yeah, he keeps staring at his hands :)
<wmoxam> where is he?
<gmcinnes> wmoxam: follow the flash.
<heycarsten> taking pictures of peoples faces

Libin is a very nice guy and is also a total fanboy. Its fun to live thorugh his wonder… but ya that whole acid thing… check out the photos

...
no comments

EC2 Bundle Script

I have been working with EC2 for a few months now and I have to say that bundling is a bit of a pain when you have to do it from the command line. So as any good coder would do I created a script that will bundle my running ec2 instance into an ami and upload it to a bucket of my choosing.

Its a small simple script (you will need to modify it to point to your pem’s before you can use it)

#!/bin/sh

stamp=$(date +%F)-$(date +%H)-$(date +%M)

ec2-bundle-vol -d /mnt -e /root/datasnap -c /mnt/cert-.pem -k /mnt/pk-.pem -u YOUR_ACCOUNT_NUMBER -r i386

...
no comments