Code Quote by Brian Kernighan
“Trivia rarely affect efficiency. Are all the machinations worth it, when their primary effect is to make the code less readable?”
About This Quote
Source Interview: The Art of Unix Programming, 2000
Complex code reduces performance and maintainability, outweighing any minor speed gains.
In simple terms: Complicated code hurts efficiency and readability.
Simplify code for speed and clarity.
Themes
Mood
Type
When to use this quote
- debugging
- code reviews
- team programming
- performance tuning
Key Concepts
Questions to Reflect On
- Is the speed gain worth the maintenance cost?
- How does readability affect long‑term project health?
Simpler code may be slower in edge cases.