• H4mi@lemm.ee
      link
      fedilink
      arrow-up
      18
      ·
      1 year ago

      I don’t even use a file system on my storage drives. I just write the file contents raw and try to memorize where.

      • Ms. ArmoredThirteen
        link
        fedilink
        arrow-up
        10
        ·
        1 year ago

        Sounds tedious, I’ve just been keeping everything in memory so I don’t have to worry about where it is.

        • 257m
          link
          fedilink
          arrow-up
          3
          ·
          1 year ago

          Sounds inefficient. You can only store 8 gigs and goes away when you shut off your computer? I just put it on punch cards and feed it into my machine.

          • Björn Tantau@swg-empire.de
            link
            fedilink
            arrow-up
            2
            ·
            1 year ago

            So archaic. Real men just flap a butterfly’s wings so that they deflect in cosmic rays in such a way that they flip the desired bits in RAM.

            • 257m
              link
              fedilink
              arrow-up
              2
              ·
              1 year ago

              As yes good old M-x-Butterfly.

    • dan@upvote.au
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 year ago

      Linux mostly doesn’t use file extensions… It relies on “magic bytes” in the file.

      Same with the web in general - it relies purely on MIME type (e.g. text/html for HTML files) and doesn’t care about extensions at all.

      • fibojoly@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        “Magic bytes”? We just called them headers, back in my day (even if sometimes they are at the end of the file)

        • dan@upvote.au
          link
          fedilink
          arrow-up
          4
          ·
          1 year ago

          The library that handles it is literally called “libmagic”. I’d guess the phrase “magic bytes” comes from the programming concept of a magic number?

          • fibojoly@sh.itjust.works
            link
            fedilink
            arrow-up
            2
            ·
            1 year ago

            I did not know about that one! It makes sense though, because a lot of headers would start with, well yeah, “magic numbers”. Makes sense.