First consideration for any Application Programming Interface (API) is how it will evolve in the future. This critical interface must stand the test of time, and should whenever possible be both upgrade and downgrade compatible. Continue reading
Category Archives: Coding
What is wrong with this code?
It is code review time, and I offer a sample of Java code for you to critique. Can you find the problems? Continue reading
Eliminate Useless Comments
Be careful what you ask for. I was reviewing some code that had absolutely no comments. I asked the developer to add some comment. So, indeed they did, however the comments added no value to the code at all. There is no point in adding comments for comments’ sake. In fact, useless comments make the code worse by adding lines without adding value. Let’s talk about what a valuable comment is. Continue reading
Let Me Save Incomplete Files
This is a usability problem that I have run into a number of times. A programmer writes a UI screen to receive a long list of inputs in order to create an object in system. Save is enabled only when all the inputs are filled in and verified valid. This is a big problem. Continue reading
The Magic of MemFile
In the Purple Utilities Library is a class called MemFile which you can efficiently stream into and out of. Learn to use it properly can increase the efficiency of your programs when reading and writing data. Continue reading
Return Null or Exception?
I am writing a getter function, and the requested object can not be found. Do I return null? Or do I throw an exception? The answer is “it depends.” Sometimes both options are needed, but how to decide? Continue reading
Variable Names & Key Values
Constructing JSON in Java can be a bother. The most standard JSON library requires objects to be created, and then called to put the members on there. So much easier in JavaScript, but it is not Java script. Still, one technique to improve the readability is to name the variable in java to match the key in JSON. Simple concept, easy to do, I sometimes wonder why it is not obvious to all. Continue reading
Keep Things the “Same”
This general design principle does not mean to never change anything, but to consciously create a paradigm where the same things have the same names and are accessed in the same way as much as possible. Continue reading
Ultimate Java Exception Class
This is the third in a series about translatable exceptions (see Translatable Error Messages). This post is about the class JSONException which contains the required features. Continue reading
Exception Receiving
When you make a web service call, you want to report the problem to the user save as you do for any other part of the program, and that is through an exception object. This post talks about converting the JSON received back into an exception object so that it can be reported properly. This is the fourth post in a series about translatable errors for REST web services. Continue reading