
Author: Hans2183


autocasting can be confusing
since java 1.5 there is a very easy autocasting for primitive datatypes to handle them as an object using the wrapper class. An example:List aList = new ArrayList();aList.add(1);aList.add(new Integer(2)); Now what when...

blogger statistics
A tutorial on how you can use google analytics to add statistics to your blog. http://www.infektia.net/how-to-track-your-blogger-statistics-with-google/

html, css, js resources
A list of great css only designs, all based on the same content:http://www.csszengarden.com A list of css resources:http://www.dezwozhere.com/links.html A graphical index of css layouts to forget all about tables and start using...

google cheat sheet
Zeer handig overzicht van de mogelijkheden van google (en/pdf):http://www.feedsforme.com/google/?cheatsheet


consumer producer java implementation
This is an example of a java implementation for consumer producer design pattern: The Producer public class Producer extends Thread { private final int MAX_QUEUE_SIZE = 10; private Queue queue = new...

mvn site:deploy on windows
I had to find a way to deploy javadoc towards a server. So I found out that the maven site has a reporting plugin for javadocs. To get all this working on...

scm using maven and subversion
You remember my first post on SCM? Well finally I had some time to get this running. Let me tell you how. First create a project using maven2 (maven in 5 minutes):...

about the java classloader
Some stuff you should know about classloading. The classloader makes 3rd party classes available to the jvm. So you can run your own code and use others libraries. The first important thing...