Monthly Archives: January 2014

Not-So-EasyChair Hints

There is a conference management system called EasyChair which many of the academic conferences use to manage the submission to the conference, the reviewing of the submissions, and the selection of the papers to be included.  It is tried and … Continue reading

Posted in practice | Tagged , , | 18 Comments

Storing Date Values in Files

XML and JSON files store and transport data.  What is the best way to store a Date-Time value? Always, always, always use the integer epoch format: the number of milliseconds since Jan 1, 1970 UTC. This post tells you why.

Posted in Coding | Tagged , , , | 1 Comment

Robust Web Application Initialization

When a web based application starts up, it should do so carefully to avoid a number of problems.  This post outlines the problems you might run into, and a list of coding preparations that can be made to avoid these … Continue reading

Posted in Coding | Tagged , , , , , | Leave a comment

Proper Stream Patterns

Java has streams for bytes, and streams for chars.  Learn to use them correctly.  It can be daunting at first, but if you just learn a few basic patterns, it all works well.

Posted in Coding, Example Code | Tagged , | Leave a comment