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
Tag: programming
I’m currently reading an article that explains in detail how the Signal/Slot architecture of Qt actually works: https://woboq.com/blog/how-qt-signals-slots-work.html
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
I just read an article on this matter and feel that this message must be spread as far as possible
http://agateau.com/2015/qdir-separator-considered-harmful/