this post was submitted on 08 Jun 2024
720 points (97.1% liked)

Programmer Humor

31202 readers
1950 users here now

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

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 2 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

How do you know what's it supposed to do, if no one actually wrote that down, other than

As a person.
I would like it to work
So i can do the things.

To be fair, at least that's something...

Or maybe for testing the documentation is the code. The code does this, write a test that accepts it does this.

I like the concept of describing things in scenarios and having data objects embedded in the scenarios. I think gherkin if a bit too restrictive, the same way user stories are, but a more natural verbose scenario that was parameterised with variables tied to actual data makes it explicit what is supposed to happen and what data the system will consume, create or manipulate.

E: there is of course other types of documentation available

[โ€“] [email protected] 2 points 3 weeks ago

For those of us who read developer code better than PO/PM "english", indeed code is the documentation, or at least can be. Ofc when the code is thousands of lines long, split between multiple files, interacts with networked resources that you've never heard of, sending signals that do who knows what downstream, upstream, sidestream, flipstream, or whatever... yeah documentation can be important too:-). Also when the code is in some other language that you don't know quite as well.

By "testing" I should clarify that I did not necessarily mean things like user or unit testing - though that stuff has its place too - but rather even more foundational "verify that your code does what it is supposed to do" kind of testing:-). One could argue that that is just straight-up "writing code", but then too writing documentation could be folded into that as well, e.g. having things like human-readable variable names, Pre & Post conditionals for functions and the like, so it all gets a bit fuzzy here.

And if we are being pedantic, a "quick call?" could save a month or year's worth of time "writing code", to ensure that you know what needs / desires to be done. Likewise, updating Jira could save someone else SOO much time, or even yourself down the line when you wonder about something that was never mentioned. So I assume that OP was not taking this all that seriously, and just joking about "yeah, meetings are less fun than writing code", and we all ofc have to pile on with our further opinions about what's fun:-).