this post was submitted on 30 Jun 2023
1 points (100.0% liked)

Standardization

454 readers
1 users here now

Professionals have standards! Community for all proponents, defenders and junkies of the Metric (International) system, the ISO standards (including ISO 8601) and other ways of standardization or regulation!

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 2 years ago (3 children)

If the date format is not YYYY-MM-DD it can fuck right off.

[–] [email protected] 1 points 2 years ago

Everything is right about it:

  • Lexographic sort
  • Unambiguous months and days
  • Acceptable on any document of record (lab, legal, medical, personal)
  • Readable by nearly any culture (even us Americans)
[–] [email protected] 0 points 2 years ago

for storing dates it's awesome, for displaying dates it's time to teach your programmer how to format shit for humans.

[–] [email protected] 0 points 2 years ago (1 children)

ISO 8601. Unironically the only ISO number I also remember.

[–] [email protected] 1 points 2 years ago

I also remember as PHP programming language still won't do it with this function: DateTimeInterface::ISO8601 DATE_ISO8601 https://www.php.net/manual/en/class.datetimeinterface.php#datetime.constants.iso8601

You need the DateTimeInterface::ISO8601_EXPANDED which can actually accept non compliant strings too.

PHP - wherever you see an intuitive solution it's wrong or has important caveats.