Netbeans on n900

Posted by & filed under Uncategorized.

I meant to post some time ago about how great the n900 is for java development. Not only can one install OpenJDK, but Netbeans is even usable. It’s pretty easy to get running. Just install openjdk6 in the application manager. Then download and run the netbeans installer. It even runs at quite a reasonable speed… Read more »

Java Abuse: public static void main was not invented here.

Posted by & filed under Uncategorized.

Normally a command-line Java application will have an entry method that looks something like: public static void main(String… args) { /* Code that launches the application/deals with command line params here */ }public static void main(String… args) { /* Code that launches the application/deals with command line params here */ } This is far too… Read more »