Model View Controller Explained
Model view controller (MVC) is a very useful and popular design pattern. If you're writing software, you should know it. Unfortunately it's also one of the hardest to truly understand. In this article...
View ArticleSOLID Class Design: The Single Responsibility Principle
This is part one of a five part series about SOLID class design principles by Robert C. Martin. The SOLID principles focus on achieving code that is maintainable, robust, and reusable. In this post, I...
View ArticleSOLID Class Design: The Open Closed Principle
This is part two of a five part series about SOLID class design principles by Robert C. Martin. The SOLID principles focus on achieving code that is maintainable, robust, and reusable. In this post, I...
View ArticleSOLID Class Design: The Liskov Substitution Principle
This is part three of a five part series about SOLID class design principles by Robert C. Martin. The SOLID principles focus on achieving code that is maintainable, robust, and reusable. In this post,...
View ArticleSOLID Class Design: The Dependency Inversion Principle
This is part four of a five part series about SOLID class design principles by Robert C. Martin. The SOLID principles focus on achieving code that is maintainable, robust, and reusable. In this post, I...
View ArticleSOLID Class Design: The Interface Segregation Principle
This is that last part of a five part series about SOLID class design principles by Robert C. Martin. The SOLID principles focus on achieving code that is maintainable, robust, and reusable. In this...
View ArticleResource Acquisition is Initialisation (RAII) Explained
In the competition to make the worst acronym, RAII probably comes second after HATEOS. Nevertheless, it is an important concept because it allows you to write safer code in C++ — a harsh, unforgiving...
View ArticleWhy NSOrderedSet Doesn't Inherit From NSSet - A Real‑life Example of the...
There was an interesting question on StackOverflow this morning: Why doesn't NSOrderedSet inherit from NSSet? It's interesting because the reason is so easy to miss. I thought it would make a good blog...
View ArticleFizzBuzz In Too Much Detail
I know. FizzBuzz has been done to death. But I want to use it as a familiar base upon which we can explore some of the common tradeoffs involved in writing and maintaining software. In this article,...
View ArticleWhat Is The Purpose Of Private?
Why use private at all? What is the benefit of trying to stop other people from using code that works perfectly well? It’s to reduce future maintenance costs by discouraging coupling to unstable...
View ArticleConsistent Hammer Man
This is a short parable I came up while discussing linters, in response to someone asking if I think it’s good to be inconsistent.
View ArticleThoughts On Schema Library Design
It’s that time of year again. It seems like about once a year I get interested designing a schema library. This post is a collection of my latest ideas and design goals, mostly based on what I’ve...
View Article