Category Archives: Software Engineering

John Backus, 82, Computer Sci Legend

March 21st, 2007

The New York Times has posted an obituary for John Backus. All recent computer science graduates have been exposed to John Backus’ work with BNFs, making him a legend like Djiskstra. John Backus makes up the Backus in the Backus-Naur duo. I admit that I did not remember Backus as the creator of Fortran, but […]

Eight Ball in the Side Pocket

March 15th, 2007

Poor scheduling has been the bane of several projects with which I have had involvement. Ever since the one-month estimate that I gave for my first independent software development project, a shopping cart, a statement by Fred Brooks resonates continually in my mind. In The Mythical Man-Month, Brooks states, “More software projects have gone awry […]

A Hint for Enhancing Software Dev Agility

January 16th, 2007

Just know that when it comes down to the wire, it’s just garbage in and garbage out. Reducing the implementation of software to the practice of accepting data from somewhere and preparing it to be used elsewhere has certainly helped me hit the ground running and get up to speed with existing projects.

Code Critique: Duplicate Code within If-Else Statements

December 20th, 2006

I’ve been reviewing and documenting other peoples’ code lately, and I found some vexing patterns that came up constantly. Seeing in an if-else statement that the first (or last) few lines evaluated when the conditional is true match the first (or last) few lines evaluated when the conditional is false was a little bothersome. It […]

Analyzing Requirements and Estimating Project Length

November 14th, 2006

Being commissioned for the development of a large software system caused me to reflect on the sources of past software production faults. Three elementary sources of problems were minimal or unacceptable project visibility, compressed schedule, and incomplete requirements analysis and design. These elementary problems resulted in secondary problems such as faulty software implementation, seemingly endless […]