• Jo Miran
    link
    fedilink
    English
    33
    edit-2
    1 year ago

    Here’s a horror story from literally yesterday. We have been fighting a system for a client for weeks and it has been a nightmare. Our clients just told us that they outsourced some of their work to an Indian outfit but that outfit is unfamiliar with Linux and doesn’t know how to edit text files so they have been downloading the files to their Windows machines, editing them in Windows, then uploading the contaminated text files back into Linux. None of them, not our client nor the outfit they hired, understood why this was a problem. We have no idea what files are affected and we won’t know until they fail because they obviously did not keep track of what they touched.

    EDIT: I’m being intentionally vague.

    • PorkSoda
      link
      fedilink
      English
      161 year ago

      Haha this is up there with having to explain why opening a csv in Excel and then saving means that I don’t want the file.

      • @ramblinguy@sh.itjust.works
        link
        fedilink
        English
        81 year ago

        I will never forgive excel for automatically converting all of my dates to some weird ass format, or stripping single quotes randomly, or something other BS that they do for no reason

        • ddh
          link
          fedilink
          English
          31 year ago

          My absolute favourite is stripping leading zeroes from any text that looks like a number, then displaying it in scientific notation. But we get Copilot, so it balances out, right?

      • @Astaroth@lemm.ee
        link
        fedilink
        English
        3
        edit-2
        1 year ago

        Does windows add an extra character at the end that gets converted to new line on linux? Because the other day I were copying a script and after pasting it an extra line was added after every single line, even the empty lines.

        how it looked when I copied it:

        bla
        bla
        
        bla
        

        what it turned into:

        bla
        
        bla
        
        
        
        bla
         
        
        • @candybrie@lemmy.world
          link
          fedilink
          English
          111 year ago

          Windows uses CR LF (carriage return, line feed), whereas Unix just uses LF. For added fun, macs use CR.

          • noughtnaut
            link
            fedilink
            English
            51 year ago

            For added fun, macs use CR.

            This used to be true, for sure, but I thought this changed with OS X (which is essentially PrettyBSD) ?

            • @candybrie@lemmy.world
              link
              fedilink
              English
              41 year ago

              You’re right. Notepad++ still lists macs as using CR for their EOL conversion tool, so I didn’t realize.

    • @elscallr@lemmy.world
      link
      fedilink
      English
      71 year ago

      You can just grep for carriage returns followed by newlines, grep -Pirn '\r\n$' /path/to/whatever. It’ll identify all your problematic files.