• Scala Play on Windows Git Bash fix error “Could not find configuration file ‘…/framework/sbt/sbt.boot.properties’

    by  • May 18, 2013

    If you try to run Scala play on Windows Git Bash (using msysgit) then you may get the following error Could not find configuration file ../framework/sbt/sbt.boot.properties In order to fix this, edit the file $PLAY_HOME/framework/build where $PLAY_HOME is the directoy where you have installed Play and change the last line… from java ${DEBUG_PARAM} -Xms512M...

    Read more →

    Creating a javascript module in node.js

    by  • September 4, 2012

    Just started messing with node.js for creating server side JavaScript applications. The code can get a bit messy so here’s how to create a module which allows you to break your code up into manageable files. The server module (server.js) just writes out “hello there” with the url appended. save following snippet in file...

    Read more →

    Fix uTorrent server 3 (utserver) libssl.so.0.9.8 ‘cannot open shared object file’ error on CentOS 6.2 64-bit Linux

    by  • June 22, 2012

    If you are installing uTorrent Server alpha 3.0 on Centos 6.2 64-bit Linux, you may get the following errors when starting the server using utserver command. utserver: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory and utserver: error while loading shared libraries: libcrypto.so.0.9.8: cannot open shared...

    Read more →

    Install Oracle Java JDK 7 on Centos 6.2

    by  • April 10, 2012

    By default Centos installs the OpenJDK Java JDK. Here’s a link to a quick summary of how to install Oracle (SUN) Java JDK on a Centos machine and set the JAVA_HOMEenvironment variable etc. http://www.if-not-true-then-false.com/2010/install-sun-oracle-java-jdk-jre-7-on-fedora-centos-red-hat-rhel/

    Read more →

    Fix Squeezebox server on Centos 6.2 Linux “following failed to load: Time::HiRes” error

    by  • January 7, 2012

    If you get the following error Starting Squeezebox Server: The following modules failed to load: Time::HiRes when starting the Squeezebox server on Centos 6.2 Linux then you can fix it by installing the perl Time:HiRes module. Run the following commands as root yum install perl-CPAN cpan -i Time::HiRes Then start squeezebox server /etc/init.d/squeezebox-server start...

    Read more →