this post was submitted on 05 Aug 2023
687 points (97.9% liked)

Programmer Humor

32061 readers
989 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] ryathal@sh.itjust.works 72 points 1 year ago (2 children)

Works great when you know what your doing before you start. That never actually happens in real life though.

[–] Zalack@startrek.website 22 points 1 year ago* (last edited 1 year ago)

And often if you box yourself into an API before you start implementing, it comes out worse.

I always learn a lot about the problem space once I start coding, and use that knowledge to refine the API of my system as I work.

[–] takeda@szmer.info 9 points 1 year ago

Exactly, from my experience, most of the time (primarily when I need to do something new) I start writing code, when it starts working then I am starting to refractor it so it doesn't look like crap.

Perhaps TDD would make sense, when before any actual work starts, we would have POC phase to understand what needs to be done.