Dyslexic Privacy & Foss advocate, and Linux user.

Ace 🖤🩶🤍💜

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

  • 1 Post
  • 26 Comments
Joined 2 years ago
cake
Cake day: June 14th, 2023

help-circle




  • Yeah, OP should probably add “Rust-based” or specific Epoch to avoid confusion.

    like 5 years or more

    They’re really good & extremely dedicated devs with lots of experience working on it, so I think that’s a little bit of an underestimation, I think it’s within the possibly of getting there within 5 years, maybe not exactly 1:1 ofc. However, they’ve really put in a lot of thought into base of the project, and in my experience having a strong well designed base can propell future development forward much faster than initial estimates. Even now, they’ve been smashing mile stones much faster than expected and if they keep their current trajectory at a steady rate I believe it’s possible the meet some level of parody within a 5 year goal. Ofc, anything can happen so only time will tell. Also, considering the fact that they’re not having to deal with the X11 tech debt…




  • He’s literally using sarcasm to mock the idea of fully switching from GNU/Linux to SystemD/Linux. The “/s” at the end indicates the statement is sarcastic, meaning he does not actually believe this switch will happen, but is sarcastically suggesting it will.

    Literally just say out loud to yourself with a sarcastic tone :

    So when are we going to fully switch from GNU/Linux to SystemD/Linux?

    He’s not literally asking when this switch will occur, but rather mocking the notion in a sarcastic tone. Sarcasm involves using words in a mocking or ironic way, often to criticize or make a humorous point, rather than stating the opposite of what one means in a literal sense as a rule of thumb, the sarcastic tone is the key. The implied meaning is the opposite of the implied statement within the sarcastic question, rather than stating the opposite directly. I believe you’re confused because he’s framing it as a question to obfuscate the meaning and make the sarcasm more subtle.




  • Rustmilian@lemmy.worldtoProgrammer Humor@lemmy.ml:3{:3|:3&};:3
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 year 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
    1 year 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.