2012

Java: Type safe character set

If you are working on strings and want to make sure that they conform to a certain character set and are encoded with a certain encoding scheme you will come across the standard Java class Charset that outlines various character sets that should be available in every implementation of the JVM. Instead of scattering magic strings like “UTF-8” all over your code and catching UnsupportedEncodingException I came up with an enum that encapsulates all this.

Wicket: Internationalization for enums

There are various nice tutorials available on how you would add internationalization to enum values. Some of them seem outdated because using a class called EnumChoiceRenderer – which is packaged with Wicket now – makes it very easy to, e.g., display the translated values of enums with a drop down box.

Java: Type safe MessageDigest

The standard Java class MessageDigest can be used to return instances for various message digest algorithms. Implementing a simple factory helps you to return these instances in a type safe way without magic strings and preventing catch blocks with NoSuchAlgorithmException in your code.

Google search easter eggs: recursion and the answer to life

An interesting piece worth sharing are two apparent easter eggs that can be found in the Google search: type in recursion or answer to life the universe and everything and see what happens. Apparently, there are more like these but I like them the most.