The new Ubuntu 11.10 is out as of yesterday, and naturally it is time for another upgrade. Because of the many tweaks [1], [2] I decided for a fresh install, this time directly on the notebook harddisk instead of a flash card. The live ISO worked nicely from the USB stick except for the WLAN, … Continue reading HP Probook 4720s on Ubuntu 11.10 64bit Oneiric Ocelot
Author: George Georgovassilis
Updating the Galaxy Mini to Android 2.3.3 under Linux
The Samsung Galaxy Mini S5570 comes with Android 2.2 and can easily be updated to Android 2.3 if you are running Windows on your computer and if you get Samsung's fragile Kies application to run. If you have been following this blog you know that any Windows installations reside safely banned inside Virtualboxes so my … Continue reading Updating the Galaxy Mini to Android 2.3.3 under Linux
Non-blocking JDBC with the Asynchonous Mysql connector
Event driven application architecture If you've been following Hackernews or my favorite, the Highscalability blog, you can't have missed the trend towards event driven server applications which are inherently different from the request-per-thread based design of traditional web applications. Event driven applications evolve around asynchronous, non-blocking APIs and use few threads, typically around the number … Continue reading Non-blocking JDBC with the Asynchonous Mysql connector
Annotations, Java compiler and missing debugging information
So I play with my favorite ant build script and a day later nearly every annotation is broken: java.lang.IllegalStateException: No parameter name specified for argument of type [java.lang.String], and no parameter name information found in class file either. as far as the eye goes. What actually happened is that the new deployment skips debugging information … Continue reading Annotations, Java compiler and missing debugging information
Ant terminating immediately in Eclipse without any errors
Recently all ant builds started failing when started from within Eclipse without an apparent reason. When the ant target is invoked, the console briefly opens and closes again, without any message or error. /workspace/.metadata/.log finally reveals the cause: java.lang.NoClassDefFoundError: org/apache/tools/ant/BuildException Some Ant classes seem to be missing, strange. A look at Window -> Preferences -> … Continue reading Ant terminating immediately in Eclipse without any errors