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/
Friday, October 31, 2008
How to Limit Your Network Traffic on Ubuntu
First you should download wondershaper programme.
Replace wlan0 with your interface, 500 with your downlink speed, and 1000 with your uplink speed. (Values are Kbps)
Check the status of wondershaper:
Howto disable shaping on specified interface:
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 ifacenameHowto disable shaping on specified interface:
sudo wondershaper clear ifacename
Resource : http://www.ubuntu-unleashed.com/2008/05/howto-limit-uploaddownload-speeds-and.html
Tags:
ubuntu
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!!!!!
Congratulations Men!!!!!
Thursday, October 23, 2008
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.
Such a nice site, click the links below the site to see other similar sites, they are nice too.
Tags:
fun
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”)
str = str.replace(”find”,”replace”)
The code below will replace all occureance
str = str.replace(/find/g,”replace”)
Tags:
javascript
Wednesday, October 15, 2008
Monday, October 13, 2008
How to Solve Eclipse Birt Database Driver problem
WHILE DEPLOYING
WHILE WORK USING ECLIPSE
- 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.
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();
}-*/;
public static native String getParamString() /*-{
return $wnd.location.toString();
}-*/;
Tags:
GWT
Subscribe to:
Posts (Atom)