Some middle-aged guy on the Internet. Seen a lot of it, occasionally regurgitates it, trying to be amusing and informative.

Lurked Digg until v4. Commented on Reddit (same username) until it went full Musk.

Is on kbin.social but created this profile on kbin.run during a week-long outage.

Other Adjectives: Neurodivergent; Nerd; Broken; British; Ally; Leftish

  • 0 Posts
  • 13 Comments
Joined 1 month ago
cake
Cake day: June 4th, 2024

help-circle



  • palordrolap@kbin.runtolinuxmemes@lemmy.worldbin or bin??
    link
    fedilink
    arrow-up
    40
    arrow-down
    1
    ·
    13 days ago

    I don’t know about that. Non-binary files have been put into bin directories for decades at this point. (Feel free to marvel at the analogy.)

    Delete the contents and it’s not just binaries going to the bit-bucket.

    The joke here is more “Tony Lazuto said to execute these files.”




  • Kind of redundant. Both .zip and .rar store an index of files within the archive and are a bit ‘inside-out’ when it comes what we get from tar.gz.

    That is, ZIP is pretty close to what you’d get if you first gzipped all your files and then put them into a .tar.

    RAR does a little more (if I remember correctly), such as generating a dictionary of common redundancies between files and then uses that knowledge to compress the files individually, but better. Something akin to a .tar file is still the result though.






  • [I have told this story elsewhere before]

    I thought I was so clever once. I taught a word filter about “th” thinking that would solve the problem, but it still got stuck on Scunthorpe. mfw.

    Had to step through what it was doing. It had hit a rule that treated ‘oo’ the same as ‘u’ which, at least sound-wise, is valid for some words in some dialects. e.g. Consider “book”, which is identical to “buck” for many people. You can imagine why that might want to be caught.

    To save you the head scratching, it had spotted the ‘c’ then a double-‘o’ then the ‘n’ and threw it out as containing a known racial slur.

    The filter was for a random string generator so that it wouldn’t generate strings with bad words in them. Seemed like a good idea at the time.

    Since it was unlikely that it was going to generate “Scunthorpe” anyway, the problem remained unfixed.