Posted on January 8th, 2009 by HuHe
I just found a really funny game for golf funs. It is a kind of flash game online. The role of the game is a Tiger(Not Tiger Wuzz though). The operation is pretty simle. I only need to use my mouse to adjust the direction and the force to hit the ball. The very fisrt [...]
No Comments »
Filed under: Entertainment
Posted on January 7th, 2009 by HuHe
Yesterday, I spent whole night on looking for the best plugin for Google adsense ads. I had downloaded 5 plugins named: Adsense-integrator, Adsense-manager, All-in-one-adsense-and-ypn etc. Thanks WordPress for easy installation of plugin, I can try them all easily. After installed and tried them one by one, I found Adsense-integrator is the best one for me. [...]
No Comments »
Filed under: advertisement, Web Technology
Posted on January 2nd, 2009 by HuHe
The internet is just like a knowledge “sea”. I spend at least 4 hours online every day. Many new things come up in front of me. Today, I just saw an article introducing how to read free famous magazines online. If you like to read the following magazines online: PC Magazine, MIT Technology Review, Popular [...]
No Comments »
Filed under: Entertainment
Posted on January 1st, 2009 by admin
If you like to program in Java language, it is good to know there are a number of ways to get all keys/values out of a Hashtable. Hashtable ht = new Hashtable(); ht.put(“one”,new Integer(1)); ht.put(“two”,new Integer(2)); Enumeration en = ht.elements(); while(en.hasMoreElements()){ System.out.println((Integer)en.nextElement()); } or Hashtable ht = new Hashtable(); ht.put(“one”,new Integer(1)); ht.put(“two”,new Integer(2)); Iterator it=hr.keySet().Iterator(); [...]
No Comments »
Filed under: Java
Posted on January 1st, 2009 by HuHe
I have build two websites with CMS package. One is Mambo, the other is WordPress. They all are good systems but with different features. 1: WordPress can only be used on blog website. Mambo can be used on some other website. 2: It is very easy to install WordPress. It only took me 5 minutes [...]
No Comments »
Filed under: Web Technology