Saturday, March 13, 2010

Java Exceptions Clases

This could be handy for people who are looking to throw exception, but do not want to create a custom exception class:

Thursday, March 11, 2010

Wordpress for corporate website?

A definite No!

Wordpress is more for hobbyist or blogger.
There are so many limitation in the modified version of tinymce editor in wp which doesnt allow you to have full control over what you wish to publish.
Example: line break, video, googlemap.

Yes, some plugin allow people to insert these things, but its so trouble some, and even most of the plugin does not work properly. Its a huge bummer.

Alternative?
Try out modx ;)
Features wise, we highly recommends it.
The interface is quite user-friendly, but more complex than wordpress.
But its fit to most corporate CMS requirement.

But if you want more Control and Flexibilities? Use Drupal :)

Thursday, March 4, 2010


All biz should create harmony balances in terms of resources, suppliers n customers. Any in-balance in the biz is like a in-balance in one body, which lead to long term problem, etc example: an upset tummy. 1 upset tummy is enough to spoilt the entire system performance and productivity.

Do you want a harmony biz which creates a proven comfortable biz which last for decades? or are you always disregards balances, and looking for short / fast profit?

And dont forget that talented, loyal n dedicated staffs are difficult to find. Big corporations like google, and m$ goes to university to search for talent. Keeping talent is as important as finding a new one. then again? will an upset tummy keeps a healthy biz?

Tuesday, March 2, 2010

Centering position: absolute div

Here is the trick :)

.myclass {
position: absolute;
left: 25%;
top: 0;
}

if you need the center based on the parent starting position, makesure the parent have:
position: relative;