• @UFODivebomb
    link
    237 months ago

    ISO-8601 only

    UTF-8 only

    UTC only

    Oh and more self hosting. Clouds are expensive and unnecessary for some stuff.

    • Xanx
      link
      fedilink
      English
      4
      edit-2
      7 months ago

      Maybe we could just reduce it to 4 time zones, and no DST

    • @hascat
      link
      English
      47 months ago

      What do you mean by UTC only?

            • Pyro
              cake
              link
              fedilink
              English
              57 months ago

              I think what they meant is requiring that only UTC time should be in the database. This prevents ambiguity when pulling dates/times out as with many poorly designed systems it’s not possible to know whether a date represents UTC time or local time.

              At my work we store local time in our database and I hate it. We only serve customers in our country, which only has one time zone, so that’s fine for now. But we’ve definitely made it harder for ourselves to expand if we ever wanted to.

              • @[email protected]
                link
                fedilink
                27 months ago

                Better yet, why are you not using a Date type? That’s very precisely defined, more scalable, and plenty of functionality for doing math or converting among time zones. You don’t have to care what time zone you’re in, and can give people the answer in any time zone

                • Pyro
                  cake
                  link
                  fedilink
                  English
                  27 months ago

                  I get the advantage, and if I could change our schema with a click of my fingers I would, but it’s not that easy. We do use the native date type in our schema, but the dates we store in there are in local time. It’s bad, I know. It was originally written by a couple of people about 15 years ago, so software standards were a lot more lax back then.

                  We already have many customers with lots of data that are currently using this product, so it’s unfortunately non-trivial to fix all of their data with the current systems we have in place.

                  We developers often want to fix so many things but we’re often told what to do based on what the business cares more about, rather than what we actually want to fix. That’s why we always end up building shit on top of shit, because the business doesn’t want to pay us to rewrite 15-20 years worth of legacy code despite in doing so it would make the product an order of magnitude better in every conceivable way.

        • @UFODivebomb
          link
          47 months ago

          That is a somewhat tongue in cheek comment. I think time zones are silly and people could easily account for the differences of what a particular time point means for them at their location. More realistically, UTC should be the only way a time stamp is stored.