Skip to content

Book Notes | A Philosophy of Software Design (APOSD)

Published: at 03:49 AMSuggest Changes

This is a living document of the notes I got from the book A Philosophy of Software Design (APOSD), by the famous Computer Scientist John Ousterhout. I came across this book when checking out his discussion on Software Engineering Principles with Clean Code’s author Robert “Uncle Bob” Martin. I will mentally remind myself to read that discussion (which is a Markdown file with thousands of words on Github) after finishing APOSD. This blog mainly contains a summary of the words, as well as some interspersed thoughts from my limited experience in programming. This blog will be updated as I progress.

Introduction

Nature of Complexity

Defining Complexity

Symptoms of Complexity

Three symptoms of complexity

  1. Change amplification: a simple change requires code modifications in many places
  2. Cognitive load: how much a developer needs to know to complete a task
  3. Unknown unknowns: not obvious what to modify or what info required to make the change

Causes of Complexity


Next Post
Reading Notes | Computer Architecture