Skip to content

Instantly share code, notes, and snippets.

@why404
why404 / gist:62452
Created February 12, 2009 02:26
compile and install ruby1.9 on Ubuntu
cd ~/downloads
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.bz2
tar -xvfj ruby-1.9.1-p0.tar.bz2
cd ruby-1.9.1-p0
./configure --prefix=$HOME/programs/ruby-1.9.1-p0 --program-suffix=19 --enable-shared
make && make test
make install
rm -rf ~/downloads/ruby-1.9.1-p0
@why404
why404 / gist:62446
Created February 12, 2009 02:12
~/.autotest
require 'dbus'
def send_message(title, message)
begin
bus = DBus::SessionBus.instance
mumbles_service = bus.service("org.mumblesproject.Mumbles")
mumbles = mumbles_service.object("/org/mumblesproject/Mumbles")
mumbles.introspect
mumbles_iface = mumbles["org.mumblesproject.Mumbles"]
sig = mumbles_iface.signals["Notify"]