this post was submitted on 31 Mar 2025
551 points (96.3% liked)

linuxmemes

24248 readers
1804 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] limer@lemmy.dbzer0.com 27 points 4 days ago (4 children)

    Rust is both a nice programming language, and an obnoxious social movement made of a small minority of Rust programmers who are very loud

    [–] sunshine@lemmy.ml 57 points 4 days ago (1 children)

    oh I don't consider them obnoxious. I'm from Python-land, they've been saving our asses with good tooling lol. the quality of output from the rust ecosystem speaks for itself

    [–] rtxn@lemmy.world 26 points 4 days ago* (last edited 4 days ago) (1 children)

    who are very loud

    Most of the "should we or should we not" discourses/dramas I've read about were initiated or escalated by the anti-Rust crowd. They seem to be a lot more vocal (not to mention impolite) about their opinions than actual Rust developers.

    [–] zea_64@lemmy.blahaj.zone 8 points 4 days ago (3 children)

    Specifically in the Linux kernel, the 2 big reasons to use it are memory safety (huuuuggee benefit) and that a lot of younger devs like it and thus it will attract their contributions.

    The only reasons I can think of to not use it are that some people want their own toolchain and having multiple languages in the kernel adds complication. But tbh, none of that justifies banning Rust stuff that realistically wouldn't have been written at all if C were the only option.

    And then there's the people who show up in Phoronix, HN, Reddit, and YouTube comments saying Rust is over-hyped without showing why it's unfit for purpose and also trying to dictate what someone does with their own project. Perhaps it's something to do with the representation of queer people and other minorities in the Rust community, because otherwise I do not understand why people would be sooo passionate in hating the Rust community like the group I described above is.

    [–] rtxn@lemmy.world 5 points 4 days ago

    a lot of younger devs like it and thus it will attract their contributions.

    You get it! That is probably the biggest "soft" factor for why I want to see Rust proliferate. Nobody wants to learn C! It's an ancient, cumbersome language that is difficult to use in a secure way. I've been both a student and an employee at a university with many programming-related classes, and beyond the absolute basics of memory management, nobody does anything in C, or even C++. It's almost always C#, Java, Javascript, or Python. No Rust yet because most of our teachers are also geriatrics.

    Linux (and FOSS in general) has an age issue. Prolific older developers are leaving their projects or transitioning to less code-focused tasks, and the ranks are not being filled. Prospective young developers simply bounce off projects because of steep entry requirements, and the active resistance of anti-Rust evangelists (the likes of Christoph Hellwig for example) doesn't help either.

    [–] carotte@lemmy.blahaj.zone 4 points 4 days ago

    having multiple languages in the kernel adds complication.

    which is why we should simply rewrite the whole kernel in rust. boom problem fixed 😎 /j

    [–] lobut@lemmy.ca 17 points 4 days ago* (last edited 4 days ago)

    That's rather rude and untrue ..... the programming language isn't at all nice! /s

    ducks and runs away

    [–] dan@upvote.au 17 points 4 days ago (1 children)

    small minority of Rust programmers who are very loud

    They also list "written in Rust" as the primary feature of software they write, even though the majority of users don't care as long as it works properly.

    [–] zea_64@lemmy.blahaj.zone 5 points 4 days ago (1 children)

    It matters to potential contributors. It's also a floating signifier for a lot of things.

    [–] dan@upvote.au 7 points 4 days ago* (last edited 4 days ago) (1 children)

    The majority of users aren't contributors though. It's fine to mention it in contributor documentation but I find it weird to advertise it as an end-user feature given most apps written in other languages don't do this.

    It's also a floating signifier for a lot of things.

    Like what?

    [–] calcopiritus@lemmy.world 2 points 3 days ago (1 children)

    A program being written in rust itself doesn't guarantee anything, but it tells you what you'll probably find:

    • Utf-8 support
    • No shenanigans with installations, dynamic libraries and such. Just download and execute.
    • Multi-platform support
    • Low resource usage.
    • semver.
    • Compile with just 1 command if you want to.
    • MIT/apache2 license.
    • No memory leaks.
    • If it crashes, at least it will probably log out something more helpful than "SEGFAULT".

    Many of those are highly positive to the end consumer.

    [–] dan@upvote.au 1 points 3 days ago

    Most of those points are true for programs written in Go too, and C# (if you use Native AoT).