• clif@lemmy.world
    link
    fedilink
    English
    arrow-up
    20
    ·
    1 day ago

    I’ve got 30+ years of fuck ups under my belt so I know to avoid those and create brand new, innovative, fuck ups… You can’t just teach that.

      • clif@lemmy.world
        link
        fedilink
        English
        arrow-up
        15
        ·
        18 hours ago

        I’m going to claim this one wasn’t entirely my fault and should have been coded better… But I ran it.

        I ran a script that expected to run from a bin directory, cd/chdir to a input file directory, then do a sed on every file to replace windows line endings to UNIX/Linux line endings. After that it would start loading and processing them.

        The problem was, if the directory it tried to change to didn’t exist, it silently continued and ran it on the current directory… You know, the bin directory… With all the compiled C binaries.

        So at about 16:30 on a Friday, 30 min before we started our huge weekend builds, I nuked about 70% of the binaries by randomly replacing all bytes that looked like crlf with lf. Turns out binaries didn’t like that.

        Good times.