$GEM_HOME makes ruby programming even better

Ruby is by far one of my favourite programming languages. It combines the power of Perl with the flexibility of Lisp while remaining far more readable than either. The downside of this though is that a great deal of Ruby development is done in conjunction with the Gem package manager. At best you are asked… Continue reading $GEM_HOME makes ruby programming even better

My Minecraft Launchers

I’ve got two custom launchers for Minecraft on Linux. One is a wrapper script written for zsh and the other is a *.desktop file so I can conveniently launch it from my desktop. First the script ~/local/bin/minecraft: #!/usr/bin/zsh function minecraft () { case $1 { “”) java -jar $HOME/minecraft/MagicLauncher_1.3.1.jar;; “-def”) java -jar $HOME/minecraft/Minecraft.jar;; “-tech”) java… Continue reading My Minecraft Launchers