|
|
|
|
|
by frigo_1337
3148 days ago
|
|
One thing from Clean Code that fundamentally changed the way I write code was the bit about how “Comments Lie”. I hadn’t really thought about it much before. But since then, I see lying comments absolutely everywhere. Many of which I have written myself. The author is right, comments are really hard to maintain. Nowadays I try my absolute hardest to avoid writing comments. 9 out of 10 times, it can be solved with some refactoring. |
|