I have been made aware (thanks) of some interesting web client-server developments recently, so I will group them all together in this post!
There are a lot of exciting developments there!
Tags: Chrome, HSTS, HTTP, SPDY
Comments Off on Web Client-Server Developments
Interesting article about an Irish software developer leading the development of the online version of Call of Duty: Black Ops: Irishman’s ‘Black Ops’.
Perhaps there should be greater awareness and exploitation of the potential of the software games industry here in Ireland!
Comments Off on Irishman’s ‘Black Ops’
One of my ongoing hobbies is trying to understand if RESTful APIs really are better than SOAP APIs, or are they just the latest fad :)
So I found this imaginary dialogue very humorous: The S stands for Simple!
Enjoy ;)
Comments Off on SOAP Versus REST
Somebody passed a comment today on a piece of CamelCase in some code that we were looking at today.
I never heard of that name before, even though I use CamelCase a lot!
Comments Off on CamelCase
I spent hours today trying to determine why a system was not logging certain critical application events! It was very frustrating!
Ultimately, it transpired that the system was logging the events, and that I was looking in the wrong log! This mistake was not really my fault, so at least I did not feel like an idiot :)
A colleague noted that this was a typical example of Occam’s Razor. At least I learned something from this experience!
I heard about the Law of Demeter today! Actually, somebody told me about when he saw a piece of code that I had written!
Comments Off on Law of Demeter
I just heard that Google has released a new programming language called Go! More information is available at The Go Programming Language.
My initial reaction is that I do not see the advantage of this new programming language.
Tags: Google
Comments Off on New Unit of Reviewed Code Quality
I used this Java Service Wrapper this morning to load a Java Application (in the form of a JAR) as a Windows XP service!
The process was very straightforward, and it worked perfectly first time!
Tags: Java, Windows XP
Comments Off on Java Service Wrapper
I have been doing some work with Quartz this week to develop an application that needs to schedule tasks. Quartz provides a very nice way of doing this that is independent of the operating system.
Unfortunately, I had some difficulty getting the example applications to run because I kept getting some general exceptions (that I cannot remember now).
The problem was that I had not included either commons-collections-3.2.jar
or commons-logging-1.1.jar
in my classpath!
It took me quite a while to discover that :(
Tags: Java, Quartz