Friday, October 31, 2008

e-deprem.com is on air

You can see the latest earthquakes on Turkey by using this mashup site, which is frequently updated using the datas which are examined on Boğaziçi Üniversitesi Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü

http://e-deprem.com/

How to Limit Your Network Traffic on Ubuntu

First you should download wondershaper programme.

sudo apt-get install wondershaper


sudo wondershaper eth0 500 1000

Replace wlan0 with your interface, 500 with your downlink speed, and 1000 with your uplink speed. (Values are Kbps)

Check the status of wondershaper:

sudo wondershaper ifacename


Howto disable shaping on specified interface:

sudo wondershaper clear ifacename

Resource : http://www.ubuntu-unleashed.com/2008/05/howto-limit-uploaddownload-speeds-and.html

Tuesday, October 28, 2008

Congratulations Turkish Justice!

Blogger and Google Video is cencored on Turkey, I could't write posts for a while, may be I will carry posts to another domain I don't know. We are in 2008 but goverment and judges are in 1900 in Turkey.

Congratulations Men!!!!!

GenisSozluk is Renewed!

GenisSozluk is renewed. You can see it on

http://genissozluk.com

Thursday, October 23, 2008

What's Coming in Spring 3.0

Wednesday, October 22, 2008

10 Reasons Why You Should Have A Bigger Beard

http://www.biggerbetterbeards.org/

Such a nice site, click the links below the site to see other similar sites, they are nice too.

Monday, October 20, 2008

Javascript Replace Function

The code below will replace the first occurance of the string

str = str.replace(”find”,”replace”)

The code below will replace all occureance

str = str.replace(/find/g,”replace”)

Wednesday, October 15, 2008

Hug a Developer Today

Monday, October 13, 2008

How to Solve Eclipse Birt Database Driver problem

WHILE DEPLOYING
  • I had a problem while trying to deploy An eclipse BIRT report on tomcat. After deploying my servlet couldn't find the postgreSQL(my preferred database) JDBC driver. You should put the JDBC the driver to the path below
  • webapps/Your_Application_Path/WEB-INF/platform/plugins/org.eclipse.birt.report.data.oda.jdbc_Your_version_Number/drivers
  • Then it will work fine for all types of the database types.
directory.

WHILE WORK USING ECLIPSE
  • You should put the JDBC jar file to the same directory in your if you want to work in eclipse BIRT to use other database drivers.
  • Your_Eclipse_Installation_Directory/plugins/org.eclipse.birt.report.data.oda.jdbc_Your_Version_Number/drivers directory.

Thursday, October 09, 2008

How to get full page url using GWT

After writing the function below you can get the full page url by using the code getParamString();

public static native String getParamString() /*-{

return $wnd.location.toString();

}-*/;

Share