Kinds of Problems

Of all of the lessons I have learned doing software development, one of the most important was to recognize what kind of problem I’m trying to solve. This sounds pretty trivial, but I’m not talking about the categorization you are probably thinking of. As software professionals, we tend to look at all problems as solvable.… Read More »

Origin of The One, Right Place

Back in September, I talked a bit about The One, Right Place and what a useful concept it is. I’m now reading the second edition of Code Complete and ran across this concept once again. More importantly, McConnell references the book where I first read about the concept: Programming on Purpose: Essays on Software Design.… Read More »

Review of Hackers & Painters

Hackers & Painters Paul Graham O’Reilly, 2004 I was really looking forward to reading this book. I had read a few of Graham’s essays in the past and found his ideas to be thought-provoking. I expected some to find more of the same. Instead, this book ranged over a lot of topics, not all of… Read More »

Review of C++ Coding Standards

C++ Coding Standards Herb Sutter and Andrei Alexandrescu Addison-Wesley, 2005 For many programmers, the term coding standard generates a gut-level response. We all know that someone is going to be pushing the one, true brace style or the proper way to indent code. This subject is probably the best way to generate instantaneous rebellion among… Read More »

Review of CSS Cookbook

CSS Cookbook Christopher Schmitt O’Reilly, 2004 This has become my new favorite book on CSS. For quite some time, the only way to learn to use CSS in website design was search the web for references, keep CSS: The Definitive Guide by your side, and experiment. The problem is that the interactions with the different… Read More »

Domain Knowledge and Programming

Over the years I’ve been a programmer, there seem to be two distinct areas of knowledge for any project. The first relates to programming. The second relates to the domain of the project. Over the almost two decades I’ve been programming professionally, I have worked in many domains. Interestingly, I have never started working on… Read More »

The One, Right Place

Many years ago, I spent a lot of time training entry-level programmers. One of the problems that the more junior programmers had was duplicating code and information in the code. Some of our senior programmers at the time began talking about the concept of the one, right place. Later, I read the book The Programmatic… Read More »