• dbx12
      link
      492 months ago

      So many people interpret “best before” as “poisonous as hell after”. Look at it, smell it, taste (a little bit of) it. If it passes all three, still perfect to eat.

      • Possibly linux
        link
        fedilink
        English
        82 months ago

        Until its not

        Be mindful of perishables left out of the fridge for a long time. Most of the time it is fine but in some cases it can cause illness.

        • dbx12
          link
          22 months ago

          Well, I store my food as recommended and treat the best before as written above. If stored in suboptimal conditions for extended time, most bets regarding the best before are off anyways.

  • teft
    link
    fedilink
    432 months ago

    That is only what the Canadians release to the outside world. They have a strategic maple syrup reserve.

  • @[email protected]
    link
    fedilink
    262 months ago

    I wrote a program to figure out what day of the week this landed on (assuming it is in fact October 2nd, 151441).

    It’s a Saturday.

    Real downer on the start of the weekend.

      • Ephera
        link
        fedilink
        62 months ago

        Yep, my immediate thought was, how the hell would you know it works?

        • @[email protected]
          link
          fedilink
          32 months ago

          Bro probably to account for leap Thursday’s. We have one every ~28k years to keep in alignment with the true solar week.

          • dch82
            link
            fedilink
            12 months ago

            Took me longer than it should have to realise this was a joke.

        • @odium
          link
          32 months ago

          That program better be using an existing date library, because otherwise it’s most definitely wrong.

          • @asyncrosaurus
            link
            3
            edit-2
            2 months ago

            public string GetDayOfWeek(DateTime date) => "saturday";

            I also calculated it, his result checks out.

            • @[email protected]
              link
              fedilink
              42 months ago

              Don’t be ridiculous, that would never pass QA.

              But this one will. Joy for years to come:

              public string GetDayOfWeek(DateTime date) {
                  return ((date - new DateTime(1970, 1, 1)).Milliseconds / 86400000) % 7 switch {
                      0 => "Thursday",
                      1 => "Friday",
                      2 => "Saturday",
                      3 => "Sunday",
                      4 => "Monday"
                  };
              }
              
  • @[email protected]
    link
    fedilink
    English
    72 months ago

    1441 is most likely the time stamp sorry guys…

    (Not sure if Canada follows US or internal date format)