• Wren
    link
    fedilink
    22 months ago

    Ahhh. So you have automated processes that will handle it as well. Just plug in the ranges and it does its thing.

    • knightly the Sneptaur
      link
      fedilink
      12 months ago

      Indeed! That kind of scale-sensitive value-based sort requires the data to be invariant in other ways, though. For example, “Episode Three” has 13 charachters, so it would come after “Episode Four” which only has 12 and therefore must be smaller.

      Turns out that sorting things is way more complicated than it seems. The wikipedia page on sorting algorithms in computer science lists 37 different ways to sort numbers and it is far from an exhaustive list.

      • Wren
        link
        fedilink
        32 months ago

        Seems like programming isn’t too dissimilar to giving a child instructions.

        • knightly the Sneptaur
          link
          fedilink
          3
          edit-2
          2 months ago

          It definitely feels like that!

          Have a classic joke on the subject:

          A software tester walks into a bar.

          Runs into a bar.

          Crawls into a bar.

          Dances into a bar.

          Flies into a bar.

          Jumps into a bar.

          And orders a beer.

          2 beers.

          0 beers.

          99999999 beers.

          a lizard in a beer glass.

          -1 beer.

          “qwertyuiop” beers.

          Testing complete.

          A real customer walks into the bar and asks where the bathroom is.

          The bar goes up in flames.

          • Wren
            link
            fedilink
            22 months ago

            I really wish I knew what the joke was. 🥺

            • knightly the Sneptaur
              link
              fedilink
              2
              edit-2
              2 months ago

              Most software errors are edge cases, like when a program receives an input from a user that the programmer didn’t account for.

              The software tester is “fuzzing” the input function of the bar by throwing a bunch of weird inputs at it, like jumping through the door rather than walking or ordering absurd, negative, or non-numerical quantities of beer. This is a common way of testing software to make sure it won’t crash and burn if unexpected things happen.

              Satisfied that the inputs for entering the bar and ordering beer are working properly, the bar opens, and the very first customer still manages to crash it by asking something entirely unrelated to ordering beer.

              • Wren
                link
                fedilink
                32 months ago

                Ahhh! I get it. Okay, yeah. That’s funny. 😄