Apache POI is a powerful Java library to work with different Microsoft Office file formats such as Excel, Power point, Visio, MS Word etc. The name POI was originally an acronym for Poor Obf... Read more
System.out and System.err stream objects are mapped to “standard” output and error stream respectively. By default, Java display standard output/error on display console. Thus, when we print... Read more
1. Optimize performance of complex selectors Query a subset of the DOM when using complex selectors drastically improves performance: var subset = $(""); $("input[value^='']", subset); 2. Se... Read more
The WordPress Simple Paypal Shopping Cart is a very easy to use and lightweight WordPress plugin that allows you to sell products or services online in one click from your WordPress blog. Pl... Read more
background You should always specify the encoding used for an HTML or XML page. If you don’t, you risk that characters in your content are incorrectly interpreted. This is not just an... Read more
1. Dan Brown “The Da Vinci Code” Dan brown’s website meets you with the Mona Lisa painting, a reflection of the genre of his books. Navigating through the site is an experience by itself as... Read more
Customize the Theme in Two Ways While it could be easy to achieve what we want by editing the theme directly, it is also true that everytime the theme will be updated we’ll have to do all th... Read more
I have run into this error after an upgrade to magento 1.4.1.1 toggleMenu not defined. This is a Javascript error and is to my suprise why it’s there in the first place! Anyway, here is a te... Read more
If you are a developer and want a way to ensure your clients/site users have the same window popup experience regardless on whether browser tabs are on or not, here is a snipt Javascript fun... Read more
For fast database backup, use command line tool. Here are basic scripts for backing up and restoring a mysql database from the command line Backup mysqldump -u user -p database_name > dum... Read more