Reading notes on A Philosophy of Software Design by John Ousterhout

<!–

[social4i size=”small” align=”align-left”]

–>

[This article was first published on Maëlle’s R blog on Maëlle Salmon’s personal website, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)


Want to share your content on R-bloggers? click here if you have a blog, or here if you don’t.

When I see a book recommendation somewhere, be it for work or leisure, I often either order the book or set an alert in my favorite online second-hand bookstore. By the time I am notified the book is available, I sometimes don’t remember why I listed it! That’s what happened for the book A Philosophy of Software Design by John Ousterhout. I decided to trust my past self and buy it. Unfortunately I got the first not the second edition.

For a change I wrote some reading notes, reflecting what resonated more with me at this stage in my software development journey.

First and later impressions

I found the title of the book misleading: the word “philosophy” made it sound unapproachable, but it was approachable, and also rather short (about 169 pages, including examples no one will know you skipped1).

I got a copy that was annotated. Sadly the notes didn’t provide any novel insight, but the handwriting is good and the notes repeat what’s important, perfect for future skimming.

I appreciated the tone of the book which wasn’t too dogmatic compared to other sources out there.

Complexity in software

The most important concept is the book is complexity, what it is and how to avoid it. The author defined three manifestations of complexity:

Priority to the interface

A point made at least twice in the book is that you should give priority to simplifying the interface of things not their implementation.

“When developing a module, look for opportunities to take a little bit of extra suffering upon yourself to reduce the suffering of your users”.

This is also present in the author’s idea of “Define errors out of existence”.

This made me think about retries in HTTP requests. When writing a function interfacing an API I could simply return the error, forcing the user to handle the error themselves, or I could add retries, that would potentially make all errors disappear. It’s not a perfect example since retries aren’t hard to add with say httr2 or httr, but that was what I was thinking of.

Another point about the interface is that you only split two things if it simplifies the interface. That’s a better way to think about it than just thinking in number of lines.

Tactical vs strategic programming

The author compares two approaches to programming:

  • Tactical programming is where you squash bugs and add features while racking up tech debt, not thinking about software design.

  • Strategic programming is where you take more time to implement things so that the software design remains good or even becomes better over time.

Unsurprisingly the author defends the second approach, explaining how it pays off. The author does acknowledge it might be hard to use the second approach depending on, for instance, deadlines.

Strategic programming, and the author’s insistent advice to “stay strategic” reminded me of a paragraph in the Tidyverse code review guide:

“On the other hand, it is the duty of the reviewer to make sure that each PR is of such a quality that the overall code health of the package is not decreasing as time goes on. This can be tricky, because codebases often degrade through small decreases in code health over time. This isn’t necessarily anyone’s fault. It is a natural process resulting from the accumulation of technical debt over time, which must continually be fought against.”

Comments

“Good comments can make a big difference in the overall quality of a system.”

I appreciated seeing a few chapters about comments. I wrote a post on comments myself earlier this year.

The author write that comments belong in the code, not the commit log, which is true but with the fledge package you can transform commit messages into changelog content. Furthermore, I feel that Git blame can be useful no matter how good your comments are.

The book mentions that if a piece of code is hard to comment maybe you should refactor it. I like how it’s similar to another idea in the book: if a variable is hard to name maybe it indicates some weakness of the code design.

Variable names

Apart from the idea I’ve just mentioned, one piece of advice that is reported in the book resonated with me. It’s a comment by Andrew Gerrand: “The greater the distance between a name’s declaration and its uses, the longer the name should be”.

Consistency

The author underlines the importance of consistency (in names, coding style, design patterns…), that makes your codebase easier to grasp and contribute to. To ensure consistency you should document it which made me think of contributing guides, and/or use automatic tools, which made me think of the lintr package.

Conclusion

I am glad I ordered this book past me had bookmarked! I found it was very readable, with some good advice and ways to express it. I am pretty sure I’ll skim it in the future. My first recommendation of resources about good code would remain The Art of Readable Code by Dustin Boswell and Trevor Foucher, The Programmer’s Brain by Felienne Hermans, Jenny Bryan’s talk “Code Smells and Feels” and Hadley Wickham’s Tidy Design newsletter that goes with a book-in-progress.

If you read the book, what were your take-aways? What is your favorite resource to learn how to program better?

Other reviews of / notes on the book


  1. Unless you blog about it. ↩

To leave a comment for the author, please follow the link and comment on their blog: Maëlle’s R blog on Maëlle Salmon’s personal website.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you’re looking to post or find an R/data-science job.


Want to share your content on R-bloggers? click here if you have a blog, or here if you don’t.

Continue reading: Reading notes on A Philosophy of Software Design by John Ousterhout