RAILS && JSP/SERVLETS/JSF && GRAILS

HTML && DHTML && CSS && XML && AJAX

TOMCAT && APACHE && MONGREL

JAVA && C++ && GROOVY

RUBY && PERL && SQL

LINUX && WINDOWS

NETWORKING

GENERAL IT
RSS My Tech Blog
  • Netbeans SVN over SSHFS December 3, 2009
    Over the past couple of days, I have been struggling with trying to get the Netbeans Subversion Plugin to work over sshfs. Simply put, the working directory is on a remote system. I mount the working directory using SSHFS and open the project in Netbeans. The plugin works fine until you wrote to the repository via an update/revert/commit command. The error r […]
  • Annoying "Call Forwarding Active" popup message on GSM phone! November 4, 2009
    I recently found a way to get rid of that annoying message that pops up when you place an outgoing call on a GSM mobile phone. The message that appears is "Call Forwarding Active", which serves no purpose whatsoever!To remove it, simply dial the following GSM code:##002#Wallah! No more annoying popup!
  • Array Shuffle in Rails November 2, 2009
    Here is a nice snippet of code which you can put into a file called Array.rb in the config/initializers directory of your rails apps. It adds a function to the array class to randomly shuffle the array elements.class Array # Shuffle the array def shuffle! n = length for i in 0...n r = Kernel.rand(n-i)+i self[r], self[i] = self[i], self[r] […]