Live data from Hacker News

Viewing profile — moltonel3x

moltonel3x

HN member
Joined
Tue, Nov 24, 2020, 9:51 PM UTC
HN karma
102
Public activity
40 items

About moltonel3x

No profile information was provided.

Recent public activity

  1. comment
    Comment #44634116

    According to SlashData "size of programming language communities, Q1 2025": 28.0M JS+TS ... 5.6M Swift 5.1M Rust 5.0M Go They have measured Rust growing faster than Go over the yea…

  2. comment
    Comment #40106961

    That's very subjective, I find the Google style barely usable compared to OSM carto. No experience with Apple.

  3. comment
    Comment #38270703

    Rust does support adding deps using git urls, alternate repositories, filesystem paths, and even multiple sources for one dep. https://doc.rust-lang.org/cargo/reference/specifying-…

  4. comment
    Comment #37864527

    D, Ada, and Modula don't have enough traction. Go's runtime can be a showstopper, especially for multi-language projects. C++ may be better than C, but many people feel that Rust i…

  5. comment
    Comment #37849674

    You'd need a few different ones, just like curl itself uses a lot of 3rd-party libraries to provide its full feature set. Some likely first choices would be hyper (http client/serv…

  6. comment
    Comment #37848588

    Why would you think that nobody has ever used Rust there ? Somebody has obviously put in the work to support that platform, rustc doesn't just blindly inherits the list of target t…

  7. comment
    Comment #37846577

    People often point this out, silently implying that Rust is not really supported/usable on the lower tiers and that therefore those platform should stick to C. But that's ignoring …

  8. comment
    Comment #37845001

    > Replacing parts of curl with Rust will not be possible. It's not just possible, it's been done. You can compile curl with rustls, you could for a time compile it with quiche, and…

  9. comment
    Comment #37844805

    You need to have someone, or a group of people, willing to write the code to implement support for modern tooling on their platform. Until then, old harder-to-secure codebases is w…

  10. comment
    Comment #35725310

    GPL doesn't force upstreaming, just making the sources available. Plenty of small vendors are not upstreaming their gcc patches. It's more a question of man-hours than of license.

  11. comment
    Comment #35725270

    Loongarch is at tier3 as well: https://doc.rust-lang.org/nightly/rustc/platform-support/loo...

  12. comment
    Comment #32729452

    A Go version wouldn't improve anything upon the Rust version either. At this scale, Go's simplicity would be a hindrance more than a help, development velocity would suffer compare…

  13. comment
    Comment #32725355

    So ? The fact that rustc compiler uses a component written in C++ doesn't mean that even pure Rust projects have a C++ dependency. Follow any language's bootstrap chain and you'll …

  14. comment
    Comment #32725184

    On single C file, 159 lines compared to 83000 lines of Rust. It's used to generate a cert for unittests, not sure why that's not done in Rust.

  15. comment
    Comment #32178168

    Having C or C++ somewhere in the lower levels of your stack doesn't make them the primary language for your domain. Other wise CPU microcode would be the primary language of every …

  16. comment
    Comment #32178093

    Yes, public github repos, stackoverflow survey respondents, devjobscanner offers, google searches, etc are all skewed in some way. It's very hard to qualify the effect of those bia…

  17. comment
    Comment #32166130

    Different metrics tell a different story. For example GitHub pull requests [1] are C++: 2.60%, Rust: 2.09%, C: 1.43%, with a clear trend showing Rust ahead of C++ next year. Or you…

  18. comment
    Comment #30078648

    SWC (by the same author as this tentative tsc port) is a part of more and more people's typescript toolchain, and is written in Rust. Having all your ecosystem in a single language…

  19. comment
    Comment #29686016

    > Afaict, none of them requires multiple mutable references to the same objects They ask to store objects ("turtles") into a single Vec. Two turtles from that Vec can breed to crea…

  20. comment
    Comment #29666994

    There are a lot of Rust GC approaches here, makes me wonder why the study author didn't use one (or more) of the existing sound GCs. Remove a glaring flaw of the study, and spend l…

  21. comment
    Comment #29000845

    Sorry, bad mischaracterisation on my part, annoyingly it's too late to edit my post. Looking at the Ada docs again, it considers manual deallocation an unsafe operation and suggest…

  22. comment
    Comment #28999660

    He (and other prominent kernel developers) has manifested his interest many times, but is taking a strict "wait and see" approach (as you would expect from any big project manager)…

  23. comment
    Comment #28999525

    The coreutils rewrite is essentially a hobby project, which nobody is going to switch to until it can boast 100% compatibility. So of course it's slow coming, it's not a fair compa…

  24. comment
    Comment #28999413

    Userland is worth fighting for too. https://imgs.xkcd.com/comics/authorization.png But as bawolff said, the main issue is moving towards safer tech. If Ada had good enough momentum…

  25. comment
    Comment #28999301

    A lot of those guarantees are only available in the alloc-free subset of Ada, which make them much less attractive. The devil is in the details, making Ada guarantees not always be…