Skip to content

Instantly share code, notes, and snippets.

View hmalphettes's full-sized avatar

Hugues Malphettes hmalphettes

  • Standard Chartered Bank
  • Singapore
  • 19:13 (UTC +08:00)
View GitHub Profile
@hmalphettes
hmalphettes / .bashrc
Created March 23, 2012 01:46
"my" ~/.bashrc: rvm and git prompt; ec2, esx, java mvn, tycho
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
#git show branch and other things in the console
#http://henrik.nyh.se/2008/12/git-dirty-prompt
RED="\[\033[0;31m\]"
YELLOW="\[\033[0;33m\]"
GREEN="\[\033[0;32m\]"
BLUE="\[\033[0;34m\]"
@hmalphettes
hmalphettes / ubuntu-12.04-gems.erb
Created March 14, 2012 04:27
Chef bootstrap With root-only rvm and ruby 1.9.2 on ubuntu 12.04
bash -c '
echo "boostrap chef on a ubuntu VM. Install ruby via rvm sandbox it for the root user: does not install rvm system wide."
echo "Example VM already booted: knife bootstrap 192.168.122.165 -x ubuntu -P ubuntu -d ubuntu-12.04-gems --node-name my_node --run-list role[intalio_micro_all] --environment intalio-CF --sudo"
echo "Example EC2 with knife-ec2: knife bootstrap ec2-122-248-197-139.ap-southeast-1.compute.amazonaws.com -i ~/.ec2/hmalphettes-ap.pem -x ubuntu -d ubuntu-12.04-gems i --run-list \"role[intalio_micro_all]\" --environment intalio-CF --no-host-key-verify --sudo"
echo "Example EC2 with knife-ec2: knife ec2 server create -I $UBUNTU_AMI -f m1.large -x ubuntu -d ubuntu-12.04-gems -i $EC2_KEYPAIR_PEM \"--run-list role[intalio_micro_all]\" -G http-https-ssh-smtp-vmreg -N ec2-ubuntu-new --region $EC2_REGION --availability-zone ap-southeast-1b --ebs-size $SIZE --no-host-key-verify --environment intalio-CF"
echo "Example HP Cloud with knife-hp: knife hp server create --flavor 103 --image 5579 --ssh-
@hmalphettes
hmalphettes / em_download_test.rb
Created October 29, 2011 06:06
Download a file with EventMachine
require 'rubygems'
require 'eventmachine'
require 'em-http'
# Learning EM: file download with progress.
# See http://rubylearning.com/blog/2010/10/01/an-introduction-to-eventmachine-and-how-to-avoid-callback-spaghetti/
# for a brilliant introduction to EM.
EM.run do
# just an innocent eclipse file of 2megs from a reasonably fast but not balzing fast server.