We just published an interview about our work on skischulverwaltung.de and some personal thoughts. Skischulverwaltung.de is our SaaS solution for skischools. If you speek german you can read it here.
Autobahn81 – design in the fast lane 1
Posted by Jens
on July 05, 2011
We startet a new project some months ago. A small design company called Autobahn81. The companies focus is on print, web and some product design.
The company is a platform to learn new things and work on fresh ideas.
Update of jensjaegerconsulting.com to HTML5
Posted by Jens
on June 28, 2011
I just updated my german company page: jensjaegerconsulting.com to HTML5. I used the HTML5 builderplate as a starting point cleared up the visual design of the page. Here is a before and after comparison:
How to use the HTML5 elements
Posted by Jens
on June 01, 2011
These are the important new HTML5 elements:
You can also download the diagram as OmniGraffle file.
JUnit test exception handling fail 2
Posted by Jens
on May 09, 2011
I just found this peace of code in a big java project i’m working on:
-
public void testSomething() throws IOException
-
{
-
…
-
-
catch (Exception e)
-
{
-
StringWriter sw = new StringWriter();
-
e.printStackTrace(new PrintWriter(sw));
-
fail(sw.toString());
-
}
-
}
Wtf? I changed it to:
-
public void testSomething() throws IOException
-
{
-
…
-
-
catch (Exception e)
-
{
-
fail(e.getMessage());
-
}
-
}




