Motivational Quote by Peter Seibel
““I always wish people would comment more, though the thing that makes me cringe is when the comment is the name of the function rephrased. Function's called push_stack and the comment says, “This pushes to the stack.” Thank you.””
About This Quote
Source Book: Coders at Work, Peter Seibel, 2009
Clear, specific comments add value; generic comments that restate code intent are redundant and waste time.
In simple terms: Avoid redundant comments.
Write comments that explain why, not what.
Themes
Mood
Type
When to use this quote
- code reviews
- team programming
- open source contributions
- learning programming
Key Concepts
Questions to Reflect On
- When should a comment be added?
- How can you make comments more insightful?
Over‑commenting can clutter code and obscure logic.