this post was submitted on 09 Aug 2023
1923 points (93.2% liked)

Memes

45988 readers
2333 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
1923
2023-08-09.jpg (lemmy.ml)
submitted 1 year ago* (last edited 1 year ago) by Samsy@lemmy.ml to c/memes@lemmy.ml
 
you are viewing a single comment's thread
view the rest of the comments
[–] gravitas_deficiency@sh.itjust.works 70 points 1 year ago (1 children)

Nah man. Use 8601 for everything. They’re intrinsically chronologically sortable.

[–] AtHeartEngineer@lemmy.world 4 points 1 year ago (2 children)
[–] gravitas_deficiency@sh.itjust.works 15 points 1 year ago (1 children)

In a programmatic context? Sure.

In an “I want to be able to comprehend this by glancing at it” context: absolutely not.

2023-08-10 15:45:33-04:00 is WAY more human legible than 1691696733.

[–] orangeboats@lemmy.world 8 points 1 year ago (1 children)

What, you don't remember your time in Unix timestamps? Filthy casuls.

[–] borstis@lemm.ee 2 points 1 year ago

It’s super easy arithmetic too, just remember ”Pi seconds is a nanocentury.”

[–] railsdev@programming.dev 1 points 1 year ago (2 children)

Whenever I’m passing a date from a website backend to frontend I’ll usually send it inside something like <span> then have JavaScript convert it to a string based on the browser’s localization settings.

So many websites I see for error reporting, etc always throw everything out as UTC and it drives me crazy. It would be nice to just have an HTML tag for ISO-8601 (or even UNIX as done here).

[–] Feathercrown@lemmy.world 3 points 1 year ago* (last edited 1 year ago) (1 children)
[–] railsdev@programming.dev 1 points 1 year ago

That looks like it’s only useful for machine-readable dates so it wouldn’t be useful for killing off the JavaScript portion of my “hack.” I cry at night for this

[–] railsdev@programming.dev 1 points 1 year ago

Looks like my code example glitched here. Basically a an HTML span tag with some CSS class for JavaScript to process.