home.social

#rustlanguage — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #rustlanguage, aggregated by home.social.

  1. "Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."

    thenewstack.io/rust-pythons-ne

    #rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python

  2. "Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."

    thenewstack.io/rust-pythons-ne

    #rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python

  3. "Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."

    thenewstack.io/rust-pythons-ne

    #rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python

  4. "Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."

    thenewstack.io/rust-pythons-ne

    #rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python

  5. "Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."

    thenewstack.io/rust-pythons-ne

    #rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python

  6. Oh joy, another seminar where Rust is crowned the savior of software development, because who doesn't love a language that's 30% syntax errors and 70% smugness? 🚀🤦‍♂️ Meanwhile, the rest of us are still waiting for the day when watching a video doesn't feel like signing a contract with Google. 📜✨
    youtube.com/watch?v=k_-6KI3m31M #RustLanguage #SoftwareDevelopment #SyntaxErrors #TechHumor #GoogleContract #HackerNews #ngated

  7. 🚂 All aboard the overthinking express! 🚂 This alleged "Rust-shaped hole" is really just someone desperately trying to justify a trendy language switch. 🤔 Meanwhile, #TypeScript remains unbothered, effortlessly slicing through existential coder crises. 🍞🔪
    mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated

  8. 🚂 All aboard the overthinking express! 🚂 This alleged "Rust-shaped hole" is really just someone desperately trying to justify a trendy language switch. 🤔 Meanwhile, #TypeScript remains unbothered, effortlessly slicing through existential coder crises. 🍞🔪
    mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated

  9. 🚂 All aboard the overthinking express! 🚂 This alleged "Rust-shaped hole" is really just someone desperately trying to justify a trendy language switch. 🤔 Meanwhile, #TypeScript remains unbothered, effortlessly slicing through existential coder crises. 🍞🔪
    mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated

  10. 🚂 All aboard the overthinking express! 🚂 This alleged "Rust-shaped hole" is really just someone desperately trying to justify a trendy language switch. 🤔 Meanwhile, #TypeScript remains unbothered, effortlessly slicing through existential coder crises. 🍞🔪
    mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated

  11. #RISC_OS I've put together a presentation page for #ProjectMerlin, which also includes a real-time progress update widget. This is to help answer questions I've received from various people. Please note: I am doign this for fun, I am NOT trying to save #riscos .

    riscoscommunity.org/projects/r

    #rust #RustLanguage #operatingSystem #programming

  12. Today's log for trying to get fiss (my Rust CLI for duplicating some of TaskWarrior's functionality using Forgejo issues) doing something useful. Tonight's goal is to get fiss list showing a list of issues to subscribe forge projects which no regards for filtering.

    It's a weekday and I need to figure out how to assemble a weight machine, so hopefully this won't take wrong.

    Narrator: Dylan was wrong, of course.

    The rest will be unlisted.

    #AmCoding #RustLanguage

  13. We've opened a rust position in Berlin Or Valencia, home-office possible: boards.greenhouse.io/commercet
    We're trying to support diversity when possible. Do not hesitate to postulate!
    #FediHire #RustLanguage

  14. Because I hate myself, I'm now working on rust bindings for the NXDK project. We'll see how much progress I can get done. Right now, I want to finish implementing the HAL.
    Thanks to antangelo for making a lot of the boilerplate code and a couple of the HAL functions in the original. I couldn't have started this without forking.
    github.com/the-pink-hacker/nxd
    #NXDK #Xbox #OriginalXbox #OGXbox #Rust #RustLang #RustLanguage #OpenSource

  15. Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz#linux #tech #rust

  16. Realized recently that you can get a decent approximation of lazy_static without any additional dependencies thanks to std's existing once stuff, something like this:

    fn DB() -> &Connection {
       static CON: OnceCell = OnceCell::new();
       CON.get_or_init(|| { ... })
    }
    It's a pretty clean pattern that's easy to read I think, and doesn't require adding a dependency for the one or two lazy variables most projects need. It will be nice when stable gets actual Lazy/LazyCell though.

    #rust #rustlanguage

  17. I took a look at Rust lately and I'm totally confused about the lifetime of variables.

    But I was able to write some small modules with some structures including some implementations. Maybe I will use it in the future for CLI applications if I want speed and security.

    Right now I use spectre.cli and dotnet for the task.

    #Rust #RustLanguage #Learning #DotNet #Spectre #Programming #Development

  18. In all the excitement, it would be easy to overlook this announcement relevant to #pythondev s building large/busy projects with #python :
    developers.home-assistant.io/b

    I'm encouraged by the synergy between the #RustLanguage and Python communities, with several collaborations increasing adoption and familiarity of #rustlang .

    Ok, I'm calling it a day.

  19. starting to read through burn.dev/book/ to learn about what they refer to as a "deep learning framework"... which I assume just means #RustLanguage library/libraries for #LLM work.

  20. Does anyone know if it is planned to be able to use a non-#LeaveGitHub forge to upload packages to crates.io?
    #rust #rustlang #RustLanguage

  21. One more rust challenge code snippet for today:

    Can you solve this rust code snippet without running it? - You are the compiler

    (No cheating 😉)

    What will be the output?

    #rustlang #rust #programming
    #rusttips #rustchallenge #rustlanguage

  22. Can you solve this rust code snippet and find output without "running"? - You are the compiler

    (No cheating 😉)
    #rustlang #rust #programming
    #rusttips #rustchallenge #rustlanguage

  23. new #miette release just dropped, lads: github.com/zkat/miette/release

    Technically a semver-minor but mostly just fixing a panic and some thorns on the side. Nothing too big.

    #rust #rustlanguage

  24. Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz#linux #tech #rust

  25. Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz#linux #tech #rust

  26. Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz#linux #tech #rust

  27. It is sometimes hard to type #rustaceans.

    What could be the alternative reference we can choose for rust developers?

    👉 Reboot to reach to get maximum votes from rustlang developers

    #rustlang #rust #rustlanguage #rustacean #rustdev