I take my shitposts very seriously.

  • 4 Posts
  • 282 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle

  • That tells me you don’t understand what a “stable” release branch is. The Debian maintainers do a lot of work to ensure that the packages not only work, but work well together. They don’t introduce breaking changes during the lifecycle of a major branch. They add feature updates between point releases, and continuously release security updates.

    In the real world, that stability is a great value, especially in the server space. You’d be insane to use Arch as a production server, and I’m saying that as an Arch user.

    Something, something, sword of Damocles.



  • rtxn@lemmy.world
    shield
    Mtolinuxmemes@lemmy.worldIn response to the other thread
    link
    fedilink
    arrow-up
    39
    arrow-down
    9
    ·
    11 days ago

    Locking. The comment section is a perfect summary of why so many people don’t want to be associated with Linux users. I should’ve removed the post outright because it is inflammatory, reactionary, and invites toxicity – evidenced by the fact that the downvotes on dissenting comments are largely made by the same users. I wonder if a pattern might emerge.

    There is a discussion to be had about the topic… but it went to exchanging insults and downvoting out of disagreement.




  • It definitely depends on your home instance. You’re on LBZ, and Ada is a helicopter parent who blocks, bans, and purges anything and anyone that may be upsetting to her children. So yes, you’re probably not exposed to the full picture on Lemmy.

    Visit the comment threads on Phoronix and you’ll see WOKE and FASCIST and COMMUNIST and TANKIE and any number of insults thrown around like manure in a monkey cage. Or try to argue in favour of systemd in a high visibility thread and inevitably someone will say that it’s bloat, that it’s corporate trash, and recite “enshittiication” like it’s some Pavlovian reflex.


  • rtxn@lemmy.worldMtolinuxmemes@lemmy.worldIn response to the other thread
    link
    fedilink
    arrow-up
    7
    arrow-down
    4
    ·
    edit-2
    11 days ago

    It’s closer to present-day Lemmy. Certainly in terms of the concentration of crazy. A bunch of opinionated jackasses with delusions that their particular niche views are morally correct and should be the norm, and any deviation from that self-declared correct opinion gets shouted down. The wrong distribution, the wrong display server, the wrong init system, your app is not suckless enough, you’re the wrong kind of Libre, you’re wrong about something that a new user doesn’t even know exists… and that extends to maintainers and all the way up to the LKML too. If I saw the state of the discourse back in 2022, I would’ve thought twice about even trying to approach Linux.







  • I think I see where your confusion comes from. Either that or you are writing programs with willful and reckless disregard to the importance of standards.

    A process (or program) has multiple outputs. The return code is a one byte value that is set by the process when it ends, and often checked by the parent process (interactive shell, script, program) to make decisions regarding the flow of control. This value is severely restricted in its usefulness, to “provide data”. The type (unsigned byte) limits the range and precision, and you can’t write to it asynchronously or before you’re ready to gracefully end the process. The name is deceptive: this is not the same kind of “return” as the return instruction in programming languages. It simply describes the way a process ended, nothing more. It should never contain meaningful data, and always adhere to the POSIX conventions.

    Why? Because everybody does. More than that, everybody writes programs that expect a return code of zero to mean success, and a return code other than zero to mean failure. It was decided before I was even born. It’s an implicit agreement that we adhere to (except Powershell because they’re special). Deviation from this will only lead to compatibility issues and confusion.

    If you want to convey meaningful data, you should use an output stream. The POSIX standard states that programs should communicate using strings, and that the standard input and output streams should be used for this unless other methods are needed. If your program produces meaningful data and you want to convey it to the parent process or another program, you have to write it to stdout, and the other program has to accept it via stdin. This exchange is facilitated by the shell through the pipe and redirection operators. It frees up the return code to meaningfully indicate the exit state of the program without mixing it up with the data produced by it, and once again, it’s what everybody does, and what everybody expects.


  • To be pedantic: there is no such thing as a boolean value. It’s all just bytes and larger numbers behind an abstraction that allows a higher-level programming language to implement Boolean algebra by interpreting numbers a certain way. One such abstraction is the POSIX convention of treating a return code of zero as success and everything else as a failure. This consequently defines how Boolean algebra is implemented in POSIX-compliant shells:

    • The if statement tests the return code of the command specified in the header, then executes the then branch if the return code is zero, the else branch otherwise.
    • The while loop similarly tests the command in the head and executes the body if its return code is zero.
    • The boolean && and || operators treat zero return values as true and nonzero return values as false. Go try it out.
    • Even the true and false commands are just programs that immediately return 0 and 1 respectively.

    If you start treating nonzero return codes like a success value with meaning, the only thing you’ll achieve is that your scripts won’t be compatible with the shell. stdout exists. Use it.



  • rtxn@lemmy.world
    shield
    Mtolinuxmemes@lemmy.worldPriorities
    link
    fedilink
    arrow-up
    84
    arrow-down
    42
    ·
    edit-2
    28 days ago

    Please observe rule 3 point 3:

    No porn, no politics, no trolling or ragebaiting.

    It goes both ways. The situation is still developing, whatever information you have might become obsolete an hour from now. If you need to air your feelings, this isn’t the right place for it. It’s also worth keeping in mind that the interaction that led to this controversy was nothing more than an already opinionated post and a reply from a Framework employee who has no say in who gets sponsored. Even the person who made the original post decided to “let it rest”.

    Be intelligent, do not be led into a smear campaign on somebody’s leash.