Privacy & Foss advocate, and Linux user.
Ace 🖤🩶🤍💜

Anti Commercial-AI license (CC BY-NC-SA 4.0)

  • 0 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle
  • This is absolutely true, but not in the sense this is trying to portray. They censor me hard, and I’m not even that political, just anti-spyware. They censor anything they don’t like, so if you slight them for being a mass-data collection organization that shit all over their own old slogan, they put you on their shit list actively keeping you from being able to speak. Really, Google isn’t “woke” more so just a bunch of pandering opportunist capitalist predators in sheep’s wool. The word “woke” itself has devolved.


  • Rustmilian@lemmy.worldtoProgrammer Humor@lemmy.ml:3{:3|:3&};:3
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    5 months ago

    Sudo is for getting the necessary perms to write the data to the location after the > operator. Cat is just super fast, faster than dd infact as it’s not actually intended to write to disks, only to stout. We want as much speed as possible to do as much damage as possible by increasing our chances of trigging bugs.


  • Rustmilian@lemmy.worldtoProgrammer Humor@lemmy.ml:3{:3|:3&};:3
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    5 months ago

    /dev/urandom provides an unlimited stream of random data, the output is based on truly random data and doesn’t block regardless if the entropy pool is depleted.
    It’s not the same as /dev/random which only returns random numbers from the entropy pool at a limited rate and can block if the entropy pool is deplete.

    By using /dev/urandom and cat we’re blasting random data at much faster speeds then what /dev/random & dd are capable of which increases our chances of triggering a bug by quite a bit.