A review by pmargreff
Clean Code: A Handbook of Agile Software Craftsmanship by Robert C. Martin

5.0

Awesome book, it enlightened some practices we should follow to make some readable code.

It endorse a lot of practices beyond object oriented simple rules, the most touching part of book for me was about, only group method call with the same abstract level, of you have multiple complexity leveled mixed on a function, it's probably wrong. Getting this to daily code review point a lot of gaps on my code style as well my team.

All chapters ended showing up something new to me, since name convention, comments (the ones which shouldn't exist) and how to test race conditions...

I wish I had read this one the time a was about to start on programming, and I'll probably go back to the book in some future time.