@Freyrs_stories
would it be a huge inconvenience to ask that dates be displayed y/m/d?
The date I see for your post is 14/09/2021, 12:19:20, dd/mm/yyyy, not m/d/y.
Most dates on the site are displayed in your system-set format by Javascript, e.g. the date of your post has code:
< script>tstamp = new Date(1631618360000);document.write(tstamp.toLocaleString());14/09/2021, 12:19:20< noscript>2021-09-14 7:09:20am
which you can see by selecting it and r.click-'View Selection Source' or similar. So, for the majority of dates on the site, you have control, you'll just have to look up how to change the format (which will probably change the date format for many thing in your computer). This mechanism is defeated if you have javascript disabled in your browser; then, the alternative date format '14/09/2021, 12:19:20' [*] is not overwritten by your local format, so try enabling javascript on the site (it's needed for voting for stories as well).
[*] This is the value after overwrite; to see what the non-overwritten value is, try disabling Javascript, reloading and then examining it, or downloading the page with wget/curl or a download manager. Note that the displayed value with Javascript disabled is the site time, EST/EDT, in a format similar to ISO 8601, but with 12h times and am/pm, that is, yyyy-mm-dd.
There are a couple of dates without timestamps which cannot be handled by the toLocaleString() javascript function; one is the chapter post/update date in the columns of the [More Info] pages (only premier users get to see that link), but I'm sure Lazeez would use a similar mechanism for that if there were a date-only function (or maybe not; his page layout would be wrecked by a user date format of 'Tuesday of week 37, the 14th of September, 2021 AD'. Note that the date-only displays are in EST/EDT and not necessarily the same date as your local time would show, but most postings/updates happen early enough in the day for Europe and western Asia to be the same date. These are displayed as yyyy-mm-dd anyway.