25 Things every Programmer should know
If it's not tested, it doesn't work. Source control is your friend - make sure you use it. Just because you wrote it doesn't mean you own...
Performance Tip
When iterating through an array Don't set the condition to be less than array.length since that loads up the pressure on the program To...
Java Tips and Tricks for beginners
*Tips* Always add Comments around in your code to make it readable and maintainable. Don't name your variables with short names just to...