Comment on The perfect date
chickenf622@sh.itjust.works 2 weeks ago
ISO 8601 (yyyy-mm-dd) for storing dates in software. Any format that that goes in the order of day, month, and year for conversational/presentational purposes, preferable the format is dynamic depending on the user’s locale (even for those that want the month first). There now everyone is happy.
dan@upvote.au 2 weeks ago
RFC3339 is better than ISO8601 since it doesn’t allow some of the esoteric formats, and allows some useful formats that ISO8601 doesn’t (like separating date and time by a space instead of by
T)ijmacd.github.io/rfc3339-iso8601/
chickenf622@sh.itjust.works 2 weeks ago
Damn it I forgot about the duration part of ISO 8601 (which is also super useful and I love it). I’ll amend it to RFC 3339 to be more exact in what I mean (even though the specified format should prevent the more esoteric formats).