this post was submitted on 14 Dec 2023
219 points (95.8% liked)

Programmer Humor

32396 readers
646 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
[–] [email protected] 3 points 11 months ago (2 children)

.net has a timespan data type specifically for this sort of thing.

[–] [email protected] 3 points 10 months ago

After using it, coming to python and not having a super easy way to work with dates is a pain.

But DateTime in dotNet have horrible timezone support. It's essentially either local timezone, not timezone or utc. And the utc part is somewhat rough. There's some datetimeoffset and the like, but they too just don't let working with timezones be easy.

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago)

I'm guessing it's not alone. Every time format should come with a distance function and order function, or equivalent. If you have a life, that could mean something like subtraction.

Unfortunately, "should" isn't always enough. Optimally there's also type structure to the return of the function so you can't mix up seconds and days, or calendar and (one of the) standard length days.