35
RFC 3339 vs ISO 8601
(ijmacd.github.io)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
TIL that, at least according to the linked page,
YYYY-MM-DD hh:mm:ss(or%Y-%M-%D %h:%m:%sinstrftimeformat) isn't valid in either system.ISO8601 apparently disallows spaces altogether, so that space should be a
Tfor it to qualify there; RFC3399 allows the space, but insists there should be a UTC offset of some kind at the end.Unrelatedly, the page's use of
%Zand%zdoesn't match withstrftimeformatting at all, so there's at least one other standards problem lurking here.