Java Utility for JDBC
Dec 20
Java Java Utility, JDBC No Comments
Code re-usability is one of the many benefits of object oriented programming.
Similarly with JDBC, every time you need to access database you have to do following steps: More
Effective programming and blogging tips by Zaheer Paracha
Dec 20
Java Java Utility, JDBC No Comments
Code re-usability is one of the many benefits of object oriented programming.
Similarly with JDBC, every time you need to access database you have to do following steps: More
Dec 19
Blogging Blogging goals 12 Comments
Inspired by a recent post at DailyBlogTips
Dec 13
Best Sites , keyboard guide, Keyboard ShortCut, shortcuts 1 Comment
Keyboard shortcuts are often more efficient than clicking mouse buttons. Of course the hard part is to learn and memorize the shortcuts. But once you start using keyboard you probably will not go back to mouse-clicking.Dec 08
CSS CSS, CSS best pratices, stylesheet design No Comments
Dec 06
Blogging blog competition, iBlogCup 1 Comment
I am very excited that my blog was nominated for 3rd International Blog Cup competition. The voting is open till December 7th. If you like my blog and can spare a minute I encourage you to cast your vote at iBlogCup.com
Thanks for all who have voted for me so far.
Dec 05
Javascript Array, Javascript, numeric array, Sort, Sort numbers, sort numeric arrays 4 Comments

Sorting an array in Javascript is a snap.
You create an array and then call sort() method on that array. The Javascript sort() method sorts an array in lexicographical order. This method is very useful in sorting alphanumeric values of an array. However, sort() will not work if the array consists of numeric values. Because the alphabetical order of numbers is different from their numeric order the sorted array may not be in the order you are expecting. For example, in a dictionary sort the number “11″ would come before number “5″. This may not be the result that you are looking for.
Here is an example
var ages = new Array (23,6,2,16,48,9,6);
ages.sort();
The array will become (16,2,23,48,6,6,9)
Fortunately, the work around for this problem is quite simple.
More