Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 753 Bytes

File metadata and controls

23 lines (16 loc) · 753 Bytes
title code for readability
date 2016-04-14
captured 2016-04-14T10:05:33Z
tags
readability
code-quality
better-dev
source GitHub issue #207
aliases
status refined

Context

A famous quote from John F. Woods in a comp.lang.c++ Usenet post that captures the essence of why code readability matters.

Source: comp.lang.c++ post

The quote

"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. Code for readability."

The point is simple: code is read far more often than it is written. Optimizing for the reader, not the writer, is the right default.

Related