• 52 Posts
  • 548 Comments
Joined 1 year ago
cake
Cake day: December 28th, 2023

help-circle



  • Huh, TIL

    ~ $ /bin/true --help
    Usage: /bin/true [ignored command line arguments]
      or:  /bin/true OPTION
    Exit with a status code indicating success.
    
          --help        display this help and exit
          --version     output version information and exit
    
    NOTE: your shell may have its own version of true, which usually supersedes
    the version described here.  Please refer to your shell's documentation
    for details about the options it supports.
    
    GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
    Full documentation <https://www.gnu.org/software/coreutils/true>
    or available locally via: info '(coreutils) true invocation'
    

    I honestly don’t know what I prefer more, the overengineered GNU true, or the true that shipped with some older system that was literally just an empty file with the executable bit set.



  • renzev@lemmy.worldtoLemmy Shitpost@lemmy.worldNo means no
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    4 hours ago

    Strange. I use windows 11 occasionally, and it’s never even as much as mentioned onedrive to me. Could it be that it’s a cracked install? Or that I never connected the local account to a microsoft account? Or that I’m in the EU?

    Edit: Downvote? Really? Are you really that jealous that my windows experience is slightly less painful than yours!?



  • I remember a while back, years before this surfaced, there was a thread on /g/ with a group photo of Balena’s employees and a caption like “why does it take so many people to develop an electron wrapper around dd”. Obviously it was low effort engagement bait (balena does much more than etcher), but the comments were full of people calling the company a glowie honeypot and the like. Moral of the story: Trust the schizos, they sense spyware form lightyears away.


  • I don’t want to waste time and memorize idiotic noodles of commands to do trivial shit.

    Also it’s not “unfamiliar” GUI. It’s called practical deduction.

    Can you not see how the two arguments you’re making are completely contradictory and self-defeating? Nobody is asking you to memorize “noodles of commands”. What, do you think we all have little books full of shell one-liners for every task imaginable? You just have to know a few basics: The pipe redirects data, cut splits lines of text, xargs builds up arguments raw text, etc. Put them together in whatever way you wish to accomplish the task at hand. It’s – exactly as you say – practical deduction.





  • renzev@lemmy.worldtoLemmy Shitpost@lemmy.worldHorse goals
    link
    fedilink
    English
    arrow-up
    1
    ·
    7 days ago

    I don’t mean “redditor” as in a literal reddit user, but as a general insult. The type of person that has nothing better to do than to convince elementary schoolers that apple cores are poisonous… which they are, but not enough to be dangerous. And being pedantic about that sort of technicality is what makes someone a “redditor” to me.







  • This is such a stupid take. Gui obscures the thing that you want to do behind endless buttons and menus and some bullshit that some self-proclaimed “user experience engineer” thought would be “intuitive”. With cli it’s like you’re talking directly to the computer. Want to stop the networking service? service networking stop. Couldn’t be simpler!

    Also fun fact, Linux has a “wireless devices” tool, command line one and it uses device ID to apply it and the fucking ID changes every time for the device so you can’t make a permanent setting.

    Are you talking about rfkill? Strange, for me the ID’s don’t change. But even if they do for you, what’s stopping you from getting the ID just by grepping for the device name? Something like rfkill list | grep YOUR_DEVICE_NAME | cut -d ':' -f 1 | xargs rfkill block.