Monday, January 7, 2008

Google Web History

Recently I had found about Google web history, which enable us to store our searches in Google repositories. You can logged to web history from following link using your Gmail account.

http://www.google.com/history/

Store your web history in Google repositories and flush your local web history then enjoy searching in Google without any doubt :).

Monday, November 26, 2007

Remove unwanted CVS Repositories from Eclipse

Recently I wanted to remove unwanted CVS Repositories which is located in Eclipse. The removing method is as followed.

  1. First go to "Window"->"Custom Perspectives"->press "CVS checkbox"->then Press "Ok"

  2. Then go to "Window"->"Open Perspective" and press "Other option"-> select "CVS Repository Exploring" and press "Ok"

  3. Finally right click on Unwanted Repository and Discard that Location

Note: First you have to unlink projects that is linked to this particular repository which are located in your workspace otherwise you can't remove particular repository from Eclipse.

Wednesday, November 21, 2007

Google Summer of Code (GSoC) 2007


Google Summer of Code (GSoC) 2007 is over and I'm one of the proud GSoC 2007 recipient, I had develop a project for most renowned web based disaster management system which is "Sahana" (http://www.sahana.lk) . This image is GSoC 2007 official logo and I received GSoC T-Shirt and my Certificate from Google last Saturday. T-Shirt contain this logo and sometimes I feel this logo is suitable for Gals because it contain bunch of flowers. Finally I would like to thank for Google and Sahana for offering me GSoC 2007.

Tuesday, November 13, 2007

How to install Java in Firefox on Linux platform

First of all you have to install Java Runtime Envirnmonet to your Linux Platform from following link.

http://www.java.com/en/download

I'm installing java in /usr/java/ folder please install it in your preffered path. Then do following three steps.

  1. Open Terminal

  2. Change to your Firefox plugins directory (For me path is : /usr/lib/firefox/plugins)

  3. Issue the following command: sudo ln -s /usr/java/jre1.6.0_03/plugin/i386/ns7-gcc29/libjavaplugin_oji.so



Above installation path can be differ from your installation and jre version also can be differ.

Finally restart your Firefox browser

Monday, October 29, 2007

Sri Lanka win Hong Kong Sixes

Sri Lanka Cricket team beat ALL STAR team at the "Hong Kong Sixes" cricket tournament and became champions

Congratulations Sri Lanka Six-Side Cricket Team

http://content-www.cricinfo.com/other/content/current/story/317470.html

Sunday, October 7, 2007

How to create public_html in Debian

First of all check whether enable-modules under your apache server
for that
goto /etc/apache2/mods-enabled/ folder and check userdir.conf, userdir.load modules are enabled by simply typing ls command

if not then goto /etc/apache2/mods-enabled and create symbolic link as follow

sudo ln -s ../mods-available/userdir.load
sudo ln -s ../mods-available/userdir.conf

Finally create public_html folder under your home directory an give full access permission to it
then Please restart your apache server (sudo /etc/init.d/apache2 restart)

then access it through following link

http://localhost/~[your_home_directory_name]/ (for me it's http://localhost/~prabath/)

For Ubuntu also if public_html doesn't work do above instruction to enable it.