• LarmyOfLone
    link
    fedilink
    arrow-up
    6
    arrow-down
    2
    ·
    10 days ago

    You’re basically arguing that a system shouldn’t support user friendly things because that would add significant burden to the programmer.

    The quintessential linux philosophy. Well done! I mean, what is language? Why have named code variables? This is just a random array of bytes!

    • MartianSands@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      10 days ago

      No, I’m arguing that the extra complexity is something to avoid because it creates new attack surfaces, new opportunities for bugs, and is very unlikely to accurately deal with all of the edge cases.

      Especially when you consider that the behaviour we have was established way before there even was a unicode standard which could have been applied, and when the alternative you want isn’t unambiguously better than what it does now.

      “What is language” is a far more insightful question than you clearly intended, because our collective best answer to that question right now is the unicode standard, and even that’s not perfect. Making the very core of the filesystem have to deal with that is a can of worms which a competent engineer wouldn’t open without very good reason, and at best I’m seeing a weak and subjective reason here.

      • dan@upvote.au
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        9 days ago

        because it creates new attack surfaces, new opportunities for bugs, and is very unlikely to accurately deal with all of the edge cases.

        Unicode case folding has been a solved problem for a long time. The Unicode standard has rules for which characters should be considered identical, and many libraries exist to handle it (you wouldn’t ever code this yourself).

      • LarmyOfLone
        link
        fedilink
        arrow-up
        2
        arrow-down
        4
        ·
        10 days ago

        Well you’re just asking an economic question, are the costs worth the benefits?

        I’d argue that linux will never be a good or user friendly operating system without case insensitive filenames.

        That isn’t an opinion but could be verified through scientific study of how confused people act. You don’t even need computers, just ask someone to get the “something SomeTHing” from a labeled box in a cupboard. Presumably science would show that case insensitive naming of things is always less confusing when humans actually use the system.

        The truth is that programmers enjoy writing code far more than reading code. And especially to open source developers “usability” is a dirty word. It’s not about the value of a thing, it’s about the beauty of how it is done.