DirectoryPersonalBlog Details for "Computerized World"

Computerized World

Computerized World
Discussion on latest News and Events in my computerized world
Articles: 1, 2, 3, 4, 5, 6, 7

Articles

Set Cookies with GWT applications to expire after expected time period
2007-08-13 14:52:00
Google Web Toolkit (GWT) supports HTTP cookies similar to other web technologies. GWT provides methods for setting cookies for specified time duration, for specific domains and paths. Below is a listing on how to set a basic cookie for a duration of one day.Date now = new Date();long nowLong = now.getTime ();nowLong = nowLong + (1000 * 60 * 60 * 24 * 7);//seven daysnow.setTime(nowLong);Cookies.setCooki e("sampleCookieName", "sampleCookiValue", now);When retrieving the cookies, you have to specify only the name of the cookie, nothing related to duration. If the cookie is found in the browser for this domain (not expired); value you set will be returned.Cookies.getCookie("sampleCookieN ame");//only nameIn setting cookies, you must consider on what you actually plans to get done using a cookie. There are two features you can achieve; remember duration (i)from the day it's created, (ii) from the last day this particular user viewed your site. If your site always set cookies when ever a us...
More About: Google , Applications , Java , Tech
New Firefox release 2.0.0.6 - Security update
2007-07-31 05:44:00
A new version of Firefox , 2.0.0.6 has been released today. This is another security update. And they released the 2.0.0.5 version just 13 days ago. That's why I really love Firefox. When ever an issue is reported, they work on it and provide us with a new version so that we are on the safe side always. And this is not the case with some other browsers where people have to wait months and years for some fixes. So thanks guys for all your dedication on making a better product.Read the release note for more info.Try this: Portable Firefox on USB drive. Complete security and portability. Free Trial.
More About: News , Security , Update , Release
Scrollable table with GWT
2007-07-20 05:05:00
We came across a requirement to build a scrollable data table using Google Web Toolkit (GWT) because we had a limited space, but a growing table depending on the search criteria. As anyone can guess, having a scrollable table would be the best option. For that we used two components rather than one; com.google.gwt.user.client.ui.ScrollPanel and com.google.gwt.user.client.ui.FlexTable . The data table was added inside the Scrollable Panel.For clarification, we have added the code below.ScrollPanel scrollPanel = new ScrollPanel();FlexTable dataTable = new FlexTable();dataTable.setWidth("100%");sc rollPanel.add(dataTable);scrollPanel.setS ize("300", "200");//add data to table....For setting width and height; it's advised to use css rules, but for ease of understanding we have shown some hard coded values here.
More About: Java , Tech
Jar not loaded warning/error in Google Web Toolkit (GWT) deployment to tomc
2007-07-12 14:45:00
When a Google Web Toolkit (GWT) web application is deployed to Tomcat web server, you may encounter a warning message as follows.org.apache.catalina.loader.Webapp ClassLoader validateJarFileINFO: validateJarFile(WEB-INFlibgwt-user.jar) - jar not loaded.See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.classNo need to worry too much about this warning message. This raises just because WebappClassLoader has loaded the servlet.jar already. The gwt-user.jar already contain the content of the servlet.jar file. Even though this message can be ignored, this warning message can be avoided just by replacing the gwt-user.jar file with gwt-servlet.jar (which comes with Google Web Toolkit (GWT) download).Following image shows the content of the gwt-user.jar, and the content of the servlet.jar is highlighted. gwt-servlet.jar has been created by removing the content of the servlet.jar from the gwt-user.jar, so this change will not have any impact on your project.
More About: Java , Tech , Warning , Error
Call a javascript function inside body of a web page
2007-07-05 14:18:00
JavaScript is mainly used for actions on user events like onClick(), onMouseOver() etc. But what if you need to call a JavaScript function without any user events? Answer would be to use the onLoad() of the body tag. <body onLoad="javascript:myfunction()" ; >But what if you don't have access to change the onLoad()? Is there an answer for that as well?Yes, and it's easy. Just call the function inside your page as same as you would write JavaScript inside the body of a page.<script type="text/javascript" language="JavaScript"> doSomething('params');</script>In this example, doSomething() function is added to the web page inside the header of the page. And for ease of understanding the complete code is shown below.<html> <head> <script type="text/javascript" language="JavaScript"> function doSomething(params); //do something nice with params } </script&...
More About: Body , Tech , Page , Javascript , Inside
[Cricket] Sangakkara joins the "five double hundreds" club
2007-07-04 14:02:00
Today Kumara Sangakkara become the seventh cricketer to reach five double hundreds in Test. This is a real achievement and it shows Sangakkara's patiences as well as the talents. Sri Lanka is the only country to have more than one player in that list of seven players.Here are the seven players with five or more double hundreds.1. Donald Bradman (AUS)- 12 2. Brian Lara (WI) - 93. Wally Hammond (ENG) - 74. Marvan Atapattu (SL) - 65. Javed Miandad (PAK) - 66. Kumara Sangakkara (SL) - 57. Rahul Dravid (IND) - 5Well done Sanga.
More About: Cricket , News , Double , Club , Five
Why Software Projects Fail?
2007-06-29 13:36:00
Today I read a nice set of ideas on "Why Projects Fail" by Andrew Stellman and Jennifer Greene (ppt or pdf). They have analyzed and categorized the reasons for failures of projects. That led me to write this post.Ways a project can fail1. Things the boss does - Top level may not be communicating well with the rest of the members to pass the knowledge that they got on the requirements or they may not have gained required knowledge. Also some of them may be over confidence on what the team can actually achieve, so they make a guess and resulted in huge issues on development phase. 2. Things the software does - One major problem is receiving unclear incomplete requirements at the start, but has to continue on what is available. This is a huge problem as it would be too late when it's figured out that the the software does not match the expectations of the end user.3. Things the team should have done - Development team also should think wisely and accept the project dead lines. Usually...
More About: Software , Tech
Adsense rounded borders for ads formats
2007-06-28 15:15:00
Google Adsense has come up with a new feature for ad borders, that is "Corner style". This features improves the look and feel making an advantage for site developers. Now publishers can choose between 'slightly rounded' or 'highly rounded' corner (two sample are shown here). If your site has a rounded template this will help a lot.To apply this change for existing Adsense ads, you only have to add another line to set another value inside the script. Set the value of "google_ui_features" as follows.google_ui_features = "rc:6";google_ui_features = "rc:10";"rc:6" is for 'slightly rounded' while "rc:10" for 'highly rounded'.
More About: News , Google , Form , Mats
Jar utility can compress files?
2007-06-14 02:41:00
Java archive creator is the Jar tool. Is it just a packaging tool or does it compress and package (like zip utilities)? It can compress and package, also by default compression is on. So all the jar files that others have created so far may be compressed (since they did not turn off that). You can turn off the compression feature by using the 0 (zero) option of the jar command. The command would look like follows.jar cvf0 TicTacToe.jar *.classSo what's the big deal? It's always better to compress it!!! Many may think so?No, that's not the truth. There are reasons why you should turn off the compression. For a situation where a jar file is loaded to a browser, uncompressed jar will be suitable over a compressed jar. Uncompressed JAR files can generally be loaded more faster than compressed files because the need to decompression overhead is eliminated. However there's a trade-off, for an uncompressed jar download time over a network may be longer. So decision must be taken by c...
More About: Java , Tech , Utility , Files , Compress
Google Adsense gets nice look and feel with Google Account
2007-04-27 15:20:00
Seems Google has started integrating Google Adsense with Google Account. We believe this as a good step since it makes life easier, login to only one account but have many services working. Previously Google did this with Blogger as well. New login page is very nice and colorful. New login page looks as below.Currently the two old and new login pages can be accessed using two different URLs, but this will be changed very soon.Old login page: www.google.com/adsense/login3New login page: www.google.com/adsense/login/
More About: News , Google Adsense , Gets
Sri Lanka through to World cup finals playing against 11 or 13?
2007-04-25 18:42:00
Today is a special day for Sri Lanka ns as SL made their way to finals in World Cup 2007 after the semi final victory over New Zealand yesterday. That was a fantastic match even though it was hard to judge whether SL were playing against 13, not just 11 players. SL was playing against 11 friendly and claim NZ players (and 2 slightly unfair professional umpires).Interesting point was both the 2 umpires, RE Koertzen (South Africa) and SJA Taufel (Australia) made poor LBW decisions against SL. One LBW was given for a thick edge and the other for a ball going far away from the leg stump. When NZs were batting, umpire RE Koertzen warned Dilhara twice putting him under huge pressure. Another a tough LBW decision was given against Rose Tailer for a ball slightly missing the stumps. We can not guess why such experienced umpires give that much bad decisions in crucial matches like semi finals. Even with that type of a situation, SL team came up brilliantly in batting, balling as well as field...
More About: Cricket , News
World Cup Semi final on 24th: Sri Lanka vs New Zealands
2007-04-23 03:11:00
Tomorrow (2007-04-24) is going to be a big big day for both Sri Lanka and New Zealand. Two teams meet each other in a crucial match, semi finals. In recent past, SL have done well against New Zealand. They once met in the super eight matches and Sri Lanka won comprehensively by 6 wickets.According to news, the pitch at Sabina Park in Jamaica will have some bounce. This is said to be favoring NZs because SLs have much experiences on subcontinent wickets. But having the best balling department, SLs will be able to get the benefit of the bounce as well. A quick comparison over the two teams1. Captaincy:Stephen Fleming, the New Zealand captain has more experience and is a good leading captain. But Mahela Jayawardane is one of the best positive captains in the world who has shown much colors in a lesser number of matches. So I weight SL has a good captaincy.2. Balling attack:NZ comes with one of the best ballers in the world, Shane Bond. But SL goes with 4 high class ballers: Vaas, Mural...
More About: Cricket , News , World Cup , World
Open and read any file in a .war file of a web application with Java
2007-04-17 09:05:00
Question: How can I open and read a file inside a war file of a web application?Answer: InputStream can be used for this with a ClassLoader. A code snippet for opening a file from Java for reading a file inside a web application is listed below. Commented line (InputStream inputStream = new File InputStream(filePath);) shows the common approach used in non-web applications. Common approach is not usable with web applications (.war file) since it fails to find the files. Even though the correct relative path is provided, programs will face issues depending on the web server versions. For web applications, the InputStream will be created using a ClassLoader. Following code snippet can be used for this requirement. But this approach has one limitation. This can read only the files inside WEB-INF/classes folder.import java.io.InputStream;public class WebAppFileRead er { public static void main(String[] args) throws Exception { // full path: "C://projects//myWeb//WebRoot//WEB-INF//c lasses...
More About: Tech , Open
Cricket: Sri Lanka won by two runs over England in World Cup 2007
2007-04-06 14:21:00
Sri Lanka vs England super 8 match was on 2007-04-04. They played an amazing match, it was the best game so far in this World Cup . Even that was one of the greatest matches I ever had watched.Sri Lankans were all out for just 235 runs causing many discussions to calculate how many runs should have been added to make it a winnable score. Then England started batting, but they were 12/2 after 6 overs.Over 20: Englands were in a comfortable situation, 100/2 with a RRR(required run rate) of 5.4. But this was easily reachable as Pietersen was batting impressively putting Sri Lankans under pressure.Over 34: Pressure on Englands. They were 134/6, with a RRR of 6.4. And Sri Lankans needed only one wicket two celebrate the tail enders' fun. And England fans were dead silent.Over 46: But that required wicket didn't fell and England batsman were rotating the strike well and they were 217/6 with a RRR of 9.5. But this was easily reachable as both the batsman were well established. It was jus...
More About: Cricket , Sri Lanka
Yahoo! Mail provides unlimited storage
2007-03-29 03:25:00
Yahoo has made a big announcement. They are going to provide unlimited storage for Yahoo Mail !!! This huge feature will go live from May 2007. Can you believe it? Are they really going to achieve this or is this going to be an April Fool's Day Joke? Can't be. Today is 28th of March.In April 2004, Google launched GMail, with a 1GB which made all of us shocked, while Yahoo Mail providing 100MB storage. This caused the huge popularity of GMail. So many people switched to GMail from Yahoo and MSN (including me). In fact Google came up with a nice concept of expanding the user's storage limit every second and showing it in GMail home page. Currently it shows 2833.807851 on my machine.Yahoo Mail expanded in following fashion.1997: 4MB2004: 100MB2005: 1GB2007: Unlimited storageBut I really don't think that people love GMail just because it provides 2GM+ storage, but because of the features that it provides. So while providing huge capacities, Yahoo Mail will have to provide great and ...
More About: Yahoo , Storage , Rage
[JSTL] According to TLD or attribute directive in tag file, attribute items
2007-03-28 13:32:00
Error Message: According to TLD or attribute directive in tag file, attribute items does not accept any expressions. When working on a J2EE (Java Enterprise Edition) web application with JSTL (JSP Standard Tag Library), this is a pretty common error.Reason for this error is version incompatibility between JSP, Servlet and JSTL. Matching versions are listed below.JSP 1.2 , Servlet 2.3 , JSTL 1.0JSP 2.0 , Servlet 2.4 , JSTL 1.1Check the web.xml to see whether it uses the Servlet 2.3 DTD or Servlet 2.4 Schema. If it uses Servlet 2.3 DTD, it will have the following text.<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" ><web-app>.....</web-app>F or Servlet 2.4 Schema, it will look like below.<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSche ma-instance" xsi:schemaLocation="http://java.sun.com/x ml/ns/j2ee http://java.sun.com/xml/ns/j2ee/we...
More About: File , Item , Items , Bute
A child born, two years after his father's death
2007-03-21 10:25:00
According to your maths, above subject would not be correct. But that has happened in Texas. As CNN reports, the little boy's name is Benton Smith and his brave and courageous mom is Kathleen Smith while father was Brian.Brian, who was a solder in US army has gone for Iraq in 2004, and died there in July - 2004. But his wife has given birth to a boy in July, 2006. This has happened because Brian had donated his sperm so Kathleen could keep trying to have a baby while he was in Iraq.Congratulations Kathleen. You are a great mom and a great wife.Read more at CNN.com
More About: Death , Child , Years , Father , After
[Cricket] World record - Six sixes in one over
2007-03-19 13:12:00
Herschelle Gibbs, 34 yrs South African right hand batsman made a big record on 2007-03-16. He did this against a leg-spinner, Daan van Bunge of Netherlands in the 30th over. This is where those bullets went.29.1 : long on29.2 : long off29.3 : long on29.4 : deep midwicket29.5 : wide long off29.6 : deep midwicketGibbs got 72 off 40 balls with 7 sixes before Van Bunge caught him in the next over at long on.West Indies great Sir Garfield Sobers and India's Ravi Shastri had done this six sixes in one over during first-class matches. But this is the first time in an international match.Congratulations Gibbs. Related: World record test cricket partnership
More About: Cricket , World Record , Over , Record
Decipher the code to check your eyes
2007-03-16 11:34:00
Try to read the following code. Even though this image looks like an ordinary one, it has a hidden message. But you won't be able to read it if you have good eyes.Couldn't you read that? You can see the answer below but try it again if you could not. Don't directly go and see the answer. Don't show that you have bad eyes. Try again.To see the answer click here.Code is: BAD EYESNow try again to see it yourself. [I don't know who is the owner of this creation, but a nice work.]
More About: Eyes , Check , Cipher
Cartridge World operations automated using NetSuite - With my implementatio
2007-03-14 06:03:00
Today is a pretty happy day in my life as one of the projects implemented by me has received a good reputation with this article by Yahoo! Finance. Basically the requirement was to integrate two systems, so that Cartridge World can use the full blown features of NetSuite. This integration is implemented by me with the coordination and help of my CEO and other members at Celigo Technologies. I'm proved to be part of a success story.Cartridge World, is a world's fastest growing ink refilling retailer in printer cartridge industry. NetSuite, is a leader in on-demand business software suites. Cartridge World wanted to use NetSuite system to automate their e-commerce operations and it is implemented throw integrations with Java. The article shows how far the project succeeded.
More About: Ridge , Mate , Sing , Menta
Eclipse - cvc-elt.1: Cannot find the declaration of element error
2007-01-09 13:48:00
When working with XML files in Eclipse, a common error developers encounter is; cvc-elt.1: Cannot find the declaration of element "some-element-name". The error message gives a clue on which file the error exists by pointing to the element name, but does not give any information on why this error is shown or how it could be fixed. Given error is generated if parser could not find any specification on the given elements when Eclipse tries to parse the XML file using Xerces XML parser. To over come the error, XML file must be provided with a specification (a schema file or a DTD file).Examples of such files may look like below.<!DOCTYPE mule-configuration PUBLIC "-//Comp //DTD configuration XML V1.0//EN" "http://www.comp.com/dtds/proj/project-co nfiguration.dtd">or <element xmlns="http://www.comp.com/schema/element " xmlns:xsi="http://www.w3.org/2001/XMLSche ma-instance" xsi:schemaLocation="http://www.comp.com/s chema/element http://www.comp.com/schema/element/elemen ts-...
More About: Declaration , Tech , Find , Clips , Lips
Patent damages tripled in 2006
2007-01-04 05:32:00
Trend of Patent lawsuits are increasing drametically. According to sources, the total amount awarded in 2006 is $1 billion. Compared to $379 million which was awarded in 2005, this is almost a threefold increase.The top winner of the year was Rambus who won the case over Hynix Semiconductor with $307 million. Rambus has a ton of patents on their list.Even though there are pros/cons on having the patent concept, it seems companies are willing to goto courts to protect their technologies while few companies do it for the sake of grabbing some money from a company who misuses a technology or concept.
More About: News , Trip , Damages , Damage
Gmail hacked? All contacts and messages deleted in some accounts
2007-01-02 11:29:00
Recently some gmail users made complains saying all their mails and contacts were automatically deleted from their mail accounts. And this was first reported on 19-12-2006 saying "Lost Everything in My Account..email,contacts,sent mail..". It further explained the issue as; Found my account clean..nothing in Inbox, contacts ,sent mail..How can all these information residing in different folders disappear? ..How to write to gmail help team to restore the account..is it possible? ..Where to report this abuse?. This message received so many replies saying others also faced the issue. But one important point came up there was that they were using Firefox 2.0. Another user pointed out that the following message was left after deleting all the mails."This is not a mistake. All your emails and contacts have been deletedon purpose. This was a malicious attack and not an error. Have a niceday. =)" People who got attacked had kept the Gmail opened under Firefox 2.0. I was also used to keep my...
More About: News , Google , Tech , E-Mail
Blessings for a very happy new year 2007
2007-01-02 05:15:00
I wish you Health...So you may enjoy each day in comfort.I wish you the Love of friends and family...And Peace within your heart.I wish you the Beauty of nature...That you may enjoy the work of God.I wish you Wisdom to choose priorities...For those things that really matter in life.I wish you Generousity so you may share...All good things that come to you.I wish you Happiness and Joy...And Blessings for the New Year .I wish you the best of everything...That you so well deserve.Happy New Year!(Author unknown, if you do let me know).
More About: About , Happy New Year
The input line is too long - Windows command line error
2006-12-29 07:35:00
Today I wanted to run the bat file shown below to run a java program. This file is mainly used to set the classpath as you can see below.@echo offsetlocalset BROKER_HOME=C:/Documents and Settings/user/workspace/myProjectset CP=%BROKER_HOME%/out/lib/activation-1.0.2 .jar;%CP%set CP=%BROKER_HOME%/out/lib/activeio-2.1.jar ;%CP%set CP=%BROKER_HOME%/out/lib/axis.jar;%CP%set CP=%BROKER_HOME%/out/lib/axis.ns.jar;%CP% set CP=%BROKER_HOME%/out/lib/axis.org.jar;%CP %set CP=%BROKER_HOME%/out/lib/axis-ant.jar;%CP %set CP=%BROKER_HOME%/out/lib/connector.jar;%C P%set CP=%BROKER_HOME%/out/lib/csv.jar;%CP%set CP=%BROKER_HOME%/out/lib/csvman.jar;%CP%s et CP=%BROKER_HOME%/out/lib/jakarta-oro-2.0. 8.jar;%CP%set CP=%BROKER_HOME%/out/lib/jaxrpc.jar;%CP%s et CP=%BROKER_HOME%/out/lib/jmxri-1.2.jar;%C P%set CP=%BROKER_HOME%/out/lib/jmxtools-1.2.jar ;%CP%set CP=%BROKER_HOME%/out/lib/log4j-1.2.8.jar; %CP%set CP=%BROKER_HOME%/out/lib/mail.jar;%CP%set CP=%BROKER_HOME%/out/lib/mule/backport-ut il-concurrent-3.0.jar;%CP%set ...
More About: Windows , Tech , Long , Indo , Error
Margin Vs Padding - CSS Properties
2006-12-21 10:59:00
CSS provides two properties named margin and padding for keeping space between HTML Box type elements. But why do we have two properties for the same reason? Are they similar?No. They have a main difference.Padding - defines space between border and element content Margin - defines space between border and other outer elements(Look at the above diagram)So when elements needs space between them, better to use margins. When text or an inner element needs space between the parent box and itself go for paddings.Look at this example for visual clarification generated with this code.<div style="margin: 25px; background: #cccccc; border: #000000 2px dashed;">Text inside element</div><div style="padding: 25px; background: #cccccc; border: #000000 2px dashed;">Text inside element</div> Text inside elementText inside elementIn the first <div>, space is set between the border and outside elements but in the second one it is between the boder a...
More About: Tech , Properties , Prop
Setting Java classpath option with spaces and quotes under Windows®
2006-12-19 04:53:00
Java provides two methods for setting paths of the classes.1. Set the command line option classpath2. Set the CLASSPATH environment variableThe second option is easy, but has a draw back as a common CLASSPATH is shared within all the projects and classes, which makes it harder to test different projects with different classes.So the first option is the prefered way. It is used as;java -classpath first.jar;second.jar TestClientWhen the paths to the jar files have spaces, the command line classpath option causes errors. Under Windows installation like 2000/NT/XP, all the users get a folder with the user name under a folder named "Documents and Settings" (which has a space). And if the jar files are under the user folder, path would look like "C:/Documents and Settings/someUser/.." which would cause the above error.How to over come this issue1. Put quotes and group the whole class pathjava -classpath "C:/Documents and Settings/user/project/lib/axis.jar; C:/Documents and Settings/user/p...
More About: Java , Tech , Quotes , Class
Do not complain on what you haven't got
2006-12-18 04:39:00
As human beings we always tend to complain on what we haven't got. Many people forget to appreciate the things that they have received; even they forget that they have so much to appreciate on their living status than looking at the negative sides.For example think how you feel when your (expensive) meals are little less tasty than how it used to be. You get so annoyed, right? Have a look at the images as they tell a lot on the above topic.See how much you are fortunate to have this type of a life (even having a chance to have access to computers to do internet surfing while some people do not have a chance to get a drop of water.(I have no idea on who is the owner of these images, but thanks for the nice images).
More About: Haven
Change of "My day time world"
2006-12-13 14:36:00
Yes, I said "My day time world". The company I'm working always becomes my day time world, but there are sometimes I happend to make it "My full day world" when project deadlines are getting closer.Hey all, now I'm in a new company as I left the previous one after 2 1/2 years of experience there. It's about 1 1/2 months now in my new world. I could not do any blogging after I joined here, not because my new company do restrict it, since I had to do some home work and put extra time and effort to get to the speed on the new projects and all that.Now I'm planning to spend some time here as well. So don't forget to come back often.
More About: World , Change , Time , About , Chang
[JBoss] Logging JBoss CMP SQL
2006-10-09 07:25:00
In many occassions developers tend to get errors when calling the CMP finders. The best method to fix such issues is to view the generated SQL queries, as it's easy to understand the error in terms of general SQL rather than looking at the EJB-QLs.With the help of log4j, CMP generated SQLs can be logged into a file as follows.1. Goto the conf folder inside your server instance.2. Open the log4j.xml file and add the following two entries to it.<appender name="CMP" class="org.jboss.logging.appender.Rolling FileAppender"> <errorHandler class="org.jboss.logging.util.OnlyOnceErr orHandler"/> <param name="File" value="/log/cmpSQL.log"/> <param name="Append" value="false"/> <param name="MaxFileSize" value="800KB"/> <param name="MaxBackupIndex" value="1"/> <layout class="org.apache.log4j.xml.XMLLayout"/&g t; <layout class="org.apache.log4j.PatternLayout"> ; <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/> ...
More About: Boss
More articles from this author:
1, 2, 3, 4, 5, 6, 7
81826 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2009 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker