Category Archives: Java

All things Java related.

toronto democamp

monday night i attended toronto democamp 12. i was at democamp 2, a year ago but couldn’t never make the others since they were on tuesday and i had conflicts with other activities. this one was on a monday so … Continue reading

Posted in Entrepreneur, Java, Software, Tech | Leave a comment

ps3 shopping is dangerous business

buy a shirt – $18 with all the dangerous stories [video] of people trying to buy playstation 3 machines, be sure to show your friends you were brave enough to line up and face the crowds. buy a shirt to … Continue reading

Posted in General, Java, Software | Leave a comment

A useful Hungarian Notation

I just finished reading Joel On Software’s latest essay on Making Wrong Code Look Wrong and it actually presents a good case for using Hungarian Notation.

Posted in Java | Leave a comment

Free Sun Java Developer Days in Toronto

I wonder if I could go to this instead of being at the office: Code Maneuvers 05, is a series of Developer Days, hosted by Sun Microsystems, that combine tactical developer insights with practical programming execution, to provide vision, direction … Continue reading

Posted in Java | Leave a comment

Which Java MVC Framework to use?

I’ve got an idea for a web application I want to prototype and I was originally going to try to whip it up in Ruby on Rails (oh no! another convert!) but then I remembered I don’t know RoR yet … Continue reading

Posted in Java | 9 Comments

Informa API Summary

I’ve been looking through the Informa API recently for RSS work in Java and making some rough notes in hopes of understanding the classes (some are interfaces, but I list them in general as implementations). I haven’t listed all classes, … Continue reading

Posted in Java | 2 Comments

Don’t use null or -1 in your unwritten methods

Doesn’t feel quite this bad. Tim Bray’s error in unit testing gives a great suggestion on a better way to test, rather than putting return null; and return -1; in your empty uncompleted methods. Instead, throw an exception: throw new … Continue reading

Posted in Java | 2 Comments

Debugging Resin in Idea 4.5

Working on a webapp at work, I decided to check if anyone has successfully figured out how to debug Resin apps within Idea 4.5. In the past, I’ve tried the Resin plugin from Intellij.org, but it’s very old and beta … Continue reading

Posted in Java | 1 Comment