view the rest of the comments
Ask Lemmy
A Fediverse community for open-ended, thought provoking questions
Rules: (interactive)
1) Be nice and; have fun
Doxxing, trolling, sealioning, racism, toxicity and dog-whistling are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them
2) All posts must end with a '?'
This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?
3) No spam
Please do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.
4) NSFW is okay, within reason
Just remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com.
NSFW comments should be restricted to posts tagged [NSFW].
5) This is not a support community.
It is not a place for 'how do I?', type questions.
If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.
6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !uspolitics@lemmy.world
7) No Hit-and-Run questions.
Please don't delete your post for no apparent reason. If you plan on deleting a question later, say so in the post, or if you feel that you have a good reason to remove it, message a mod beforehand. It's not fair to the ones who took their time to answer, and it's not in the spirit of the community.
8) No Bots.
Posts or comments from bots, LLM's, AIs, Neural Networks, Transformers, or Marvin the Paranoid Android are not welcome in AskLemmy. Real humans only please.
Reminder: The terms of service apply here too.
Partnered Communities:
Logo design credit goes to: tubbadu
That doesn't sort well. If you read left to right, you can't assume year so you have to read it in full, working backwards, to get the full meaning.
Year first means you get more specific while reading. Natural logic and hierarchy in reading direction.
I'm not sure if I can see your point. Is this a programming thing? I've seen this sentiment a couple of times on Lemmy and I don't get it. For me it's more logical to state a date the way you speak (I'm no English native speaker, though).
It's a prominent concern in programming, but not only relevant there.
In my native language German, we do dd.mm.yyyy, which is the order you seem to use as well.
Other languages speak it as month, day, year. A different commenter suggested using that.
If you read left to right, is putting the date first purely because you're used to it, or is there a different reason you can give for it?
Someone mentioned "relevance", but where do you draw the line? You can only skip month and year if you know they're the current month and year. But you can only know that after reading them.
When we read 123, we read it as one hundred twenty three, not three twenty one hundred. It's the same hierarchical structure, from bigger increments and scope to smaller, higher specificity. If you care only about 10k vs 20k, you can skip the rest of the numbers.
The same goes for dates. It makes sense to go from broad to specific, in the reading direction. When reading left to right, that's YYYY-MM-DD. I'm familiar with the current year and month, and so I can categorize at a glance. For dates further away, I can read as deep as the specificity is relevant to me - in reading order.
This, for me, is the logical hierarchical argument.
As for the sorting, simple alphabetical sorting sorts YYYY-MM-DD into time order, but not DD.MM.YYYY.
This applies not just to programming, but to all forms of text or date formatting.
If you're sorting by date in DD.MM.YYYY, you're reading and parsing it right to left. If it's a date within text or pre-text, you switch the reading direction for a part of the text/title/whatever it is.
Not just programming. e.g. if you create a bunch of files or folders on your computer and they're sorted by name, then if you do d/m/y they'll all be out of order. y/m/d will be in order.
But yeah, for human contexts usually day is more important.
Does human context include record-keeping? Quickly sorting and searching (not just with a computer) is very important for that