A tiger golf game online

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 [...]

A good wordpress plugin for google ads.

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. [...]

A way to read free famous magazines online.

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 [...]

How to get all keys/values out of a Hashtable.

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(); [...]

WordPress vs Mambo

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 [...]