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

Memes

46009 readers
3265 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
[–] 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.