KISS makes you a better software developer?
Yes. you heard it right.
KISS makes you a better programmer?
If you have been in the IT industry for a couple of years, you would have come through a lot of dirty code that lacks clarity, documentation. Some programmers always wanted to write their code complex. This happens because of two reasons. Either they want themselves to be seen as genius are they are not well versed with the entire features of the programming language. In any of these cases, it would be hard for another programmer to understand, debug, or enhance this code.
Here are some logics or tricks for you to write clean code
Kiss - keep it simple and stupid
It is always a good idea to keep it simple and stupid. This helps you and others to deal with code during code maintenance and enhancements.
Dry - don’t repeat yourself
It is always a good idea to create reusable code
YAGNI - You ain’t gonna need it