5

Anyone hit the pitfall of not following K.I.S.S.? I have found that programs that are really simple, I make complicated.
And then that mindset goes to the complicated programs no problem. But I stare at the program for a while, because I just know it can't be that simple, but it is.

Comments
  • 1
    It is hard writing simple code. I mean really frigging super hard. What I have noticed is that "simple programs" are usually quite state less and where code tries to work on pure 'data objects' being passed in instead of states/member variables or other classes state.
  • 0
    Complicated is easier but simple is better for many reasons.
Add Comment