Published September 8, 2019
by Doug Klugh

Start with Simplicity

Build software that is flexible, reliable, and easy to understand.  In other words, build software that is simple.  Do not over-engineer the initial design (YAGNI).  Start with the simplest solution, then work towards complexity (only as warranted).  Ensure your code passes all of its tests, reveals its intent, contains no duplication, and is as small as possible.  Writing simple code can often be difficult.  It is not about writing code by the simplest means.  Simple != easy.