Hello,
I have often wondered if code really "shines" after it has been cleaned? Sometimes I find myself repeating some solution several times in the same piece of code. I think it over, simplify, and them rewrite it so it doesn't repeat. I guess you just have to think ahead of writing, not hurry and trust your logic. Sometimes it works, other times it becomes forgotten. Why is it so?
In an IBM article I read that dirty code can come from one of the several reasons.
Time pressure
Lack of training
Motivation
Having this in mind, what makes code clean? What best describes the quantity of it's cleanness? I have often heard that clean code can be read as a poem or a good book. What makes it so readable? Is it the quanitity - less functions, less loops, simpler logic and problem solution or the mere fact that it is just clean because it's simple in it's own unique way? What best fits the description of clean code?
Thank you!
