1404
Tests are code too (lemmy.world)
you are viewing a single comment's thread
view the rest of the comments
[-] Duralf@lemmy.world 5 points 9 months ago

API from a call that accepted integer values between 0 and 32767 (minimum and maximum wheel speeds) to one that accepted float values between 0.0 and 1.0.

This would cause alarm bells to ring in my head for sure. If I did something like that I would make a new type that was definitely not implicitly castable to or from the old type. Definitely not a raw integer or float type.

[-] marcos@lemmy.world 4 points 9 months ago

That kind of code usually is written on a restricted dialect of C.

C is not a language that allows for that kind of safety practice even on the fully-featured version.

[-] Duralf@lemmy.world 3 points 9 months ago

Even in C this is possible. Just wrap the float or whatever in a struct and all implicit conversions will be gone.

[-] jbrains@sh.itjust.works 1 points 9 months ago

Indeed, this is a time for naming conventions that communicate the details that the type system can't clarify. This leads to the long names that senior programmers make fun of. Don't listen to them; let them laugh then make this kind of mistake.

[-] marcos@lemmy.world 1 points 9 months ago

This leads to the long names that senior programmers make fun of.

Hum... The notation that I've seen people making fun of is one where the long names encode the exact same information that C types can handle for you and nothing else. But YMMV.

Anyway, I don't think any naming convention can save you after somebody goes over your entire codebase converting things without care for the semantics. If you are lucky, it's one of the lazy people that do that, and you will "only" have to revise tens of thousands of lines to fix it. If you are unlucky, the same person will helpfully adjust the names for you too.

[-] jbrains@sh.itjust.works 1 points 9 months ago

Yes, any programmer who doesn't care will do damage, but when I see durationInMilliseconds, I think more about what the int means than when I see merely "duration". I don't know how to help the people who read that and ignore it.

The story of the 125 mph knuckleball might help.

this post was submitted on 02 Nov 2023
1404 points (98.5% liked)

Programmer Humor

31700 readers
584 users here now

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

Rules:

founded 5 years ago
MODERATORS