Wednesday, November 4th, 2009
In about:plugins, what's the filename of the Java plugin?
Is it libjavaplugin_oji.so? If so, you should update to the new Java plugin. Run:
sudo update-alternatives --config xulrunner-1.9-javaplugin.so
Now select libnpjp2.so instead and restart Firefox.
Source: Out of date java 6 plugin installed.
Posted in Ubuntu | 3 Comments »
Wednesday, September 16th, 2009
Maybe some of you have heard me ranting about this already?
I'm not productive enough in C++ and I feel too limited by Java
A large chunk of Java frameworks seem to serve no other purpose than to workaround limitations in Java
I believe (and hope!) that Java will cease to be the ...
Posted in Software Development | 2 Comments »
Tuesday, May 12th, 2009
When you hear me speaking about C++, you probably notice the passion. I might expose a similar passion when I pinpoint some of Java's weaknesses. Maybe I do sound like "Dick" in the article Java is Slow! at The Daily WTF?
From GW-BASIC on my first computer I went through QBasic, ...
Posted in Software Development | 1 Comment »
Tuesday, October 28th, 2008
I was going to write a really grand blog entry about how to instantiate a Java object of the type specified as parameter to a generic class but I figured that someone must have done that already. The blog article Java Generics: Instantiating Objects Of Type Parameter Without Passing ...
Posted in Uncategorized | No Comments »
Monday, October 13th, 2008
The details are nicely laid out in DateFormat objects and thread-safety and a number of other blog posts...
Posted in Uncategorized | No Comments »
Wednesday, September 24th, 2008
Is this possibly the latest Java community buzz? SpringSource Announces Enterprise Maintenance Policy.
Mats Henricson asks What is SpringSource doing with its license? and while the SpringSource Enterprise Maintenance Policy FAQ states that there is no license change, the SpringSource Enterprise Maintenance Policy sure is a change. They summarize it quite ...
Posted in Uncategorized | No Comments »
Thursday, August 21st, 2008
I'm currently getting acquainted with JBoss, SpringSource Application Platform, JBoss Seam and Spring Framework.
One thing that amazes me is the amount of code required for some simple O/R mapping, or I am missing something? I hope to be wrong about this, but it seems like an EJB3 "entity bean" requires, ...
Posted in Uncategorized | No Comments »
Friday, March 28th, 2008
Andi Gutmans (of PHP fame) has written a very interesting blog post about Java's future on the web. The article is called Java is losing the battle for the modern Web. Can the JVM save the vendors? He gives some good arguments for using a LAMP stack for web ...
Posted in Uncategorized | No Comments »
Friday, January 25th, 2008
In an XSLT script I didn't use <xsl:text> inside of <xsl:message>. It worked fine in xsltproc, but the Java XSLT implementation we use complained. What was wrong then? The text in an <xsl:message> was not inside an <xsl:text> element.
Bad code:
<xsl:message>Don't do like this</xsl:message>
Good code:
<xsl:message><xsl:text>Do like this</xsl:text></xsl:message>
To avoid making the same ...
Posted in Uncategorized | No Comments »
Tuesday, December 18th, 2007
This is probably a well-known fact for everyone who has used Ant on Unix for a while, but an annoying discovery for me who have been hiding under a C++ rock. The five year old bug report File Permissions not preserved in replace task pretty much says it all: Java ...
Posted in Uncategorized | 1 Comment »