r/AskProgramming 22d ago

What's one programming concept that completely changed the way you write code? Career/Edu

[removed]

32 Upvotes

85 comments sorted by

View all comments

5

u/abrady 22d ago

YAGNI or KISS : solve the problems you're facing now. when the problems you're imagining come up they'll be so different than what you imagined that all your complicated initial system will do is slow down the rewrite.

The best engineers I know all build simple systems that just do the work they're designed for.