#rustlanguage — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #rustlanguage, aggregated by home.social.
-
Brave Browser unable to block certain ads due to Rust language limitations
https://github.com/brave/brave-browser/issues/43098
#HackerNews #BraveBrowser #RustLanguage #AdBlocking #Limitations
-
"Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."
https://thenewstack.io/rust-pythons-new-performance-engine/
#rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python
-
"Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."
https://thenewstack.io/rust-pythons-new-performance-engine/
#rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python
-
"Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."
https://thenewstack.io/rust-pythons-new-performance-engine/
#rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python
-
"Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."
https://thenewstack.io/rust-pythons-new-performance-engine/
#rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python
-
"Rust usage for Python extensions surged 22% in one year as developers choose memory safety and C-level performance over traditional approaches."
https://thenewstack.io/rust-pythons-new-performance-engine/
#rustlanguage #rustlang #rust #pythonlanguage #pythonlang #python
-
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. 📜✨
https://www.youtube.com/watch?v=k_-6KI3m31M #RustLanguage #SoftwareDevelopment #SyntaxErrors #TechHumor #GoogleContract #HackerNews #ngated -
🚂 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. 🍞🔪
https://mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated -
🚂 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. 🍞🔪
https://mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated -
🚂 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. 🍞🔪
https://mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated -
🚂 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. 🍞🔪
https://mnvr.in/rust #overthinkingexpress #RustLanguage #codingtrends #developerhumor #HackerNews #ngated -
#ProjectMerlin work continues, and so do progresses:
More info/details on it's official page here:
https://riscoscommunity.org/projects/risc-os-merlin/#risc_os #riscos #kernel #rust #RustLanguage #OperatingSystem
-
#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 .
-
Redox OS gets X11 and GTK 3 support!
#Redox #RedoxOS #X11 #Xorg #GNOME #GTK3 #GTK #TechNews #TechUpdates #Computers #Laptops #Rust #RustLanguage #Programming
https://officialaptivi.wordpress.com/2025/06/05/redox-os-with-rust-gets-x11-support/
-
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 getfiss listshowing 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.
-
We've opened a rust position in Berlin Or Valencia, home-office possible: https://boards.greenhouse.io/commercetools/jobs/6238506003
We're trying to support diversity when possible. Do not hesitate to postulate!
#FediHire #RustLanguage -
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.
https://github.com/the-pink-hacker/nxdk-rs
#NXDK #Xbox #OriginalXbox #OGXbox #Rust #RustLang #RustLanguage #OpenSource -
Ok, so I'm trying something out…
#XEMU #Xbox #OriginalXbox #Rust #RustLang #RustLanguage #NXDK -
Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - https://arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz #linux #tech #rust
-
Realized recently that you can get a decent approximation of
lazy_staticwithout any additional dependencies thanks tostd's existingoncestuff, something like this:
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 actualfn DB() -> &Connection { static CON: OnceCell = OnceCell::new(); CON.get_or_init(|| { ... }) }Lazy/LazyCellthough.
#rust #rustlanguage -
How to execute `println!` only for debug builds in #rust
https://microblog.desipenguin.com/post/debug-assertions-rust/
-
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
-
In all the excitement, it would be easy to overlook this announcement relevant to #pythondev s building large/busy projects with #python :
https://developers.home-assistant.io/blog/2024/04/03/build-images-with-uv/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.
-
-
Cool job alert! Just noticed @NGIZero is looking for a Rust dev: https://nlnet.nl/foundation/jobs/developer-rust.html
-
starting to read through https://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.
-
SCREAMS_IN_SCREAMING_SNAKE_CASE
https://github.com/rust-lang/rfcs/blob/master/text/0430-finalizing-naming-conventions.md
-
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 -
Can you tell what will be output without running the code?
(Don't forget to mark your answer with spoiler flag)
#rustlang #rustacean #rustaceans #rustlanguage #rust #RustTips #RustTutorial
-
More small #RustChallenge will be coming... Stay tuned 🙂
-
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 -
Can you solve this rust code snippet and find output without "running"? - You are the compiler
(No cheating 😉)
#rustlang #rust #programming
#rusttips #rustchallenge #rustlanguage -
new #miette release just dropped, lads: https://github.com/zkat/miette/releases/tag/v5.5.0
Technically a semver-minor but mostly just fixing a panic and some thorns on the side. Nothing too big.
-
Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - https://arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz #linux #tech #rust
-
Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - https://arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz #linux #tech #rust
-
Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - https://arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz #linux #tech #rust
-
Rust in Linux lead retires rather than deal with more “nontechnical nonsense” - Enlarge / Rust never sleeps. But Rust, the programming language, can be... - https://arstechnica.com/?p=2046763 #wedsonalmeidafilho #kerneldevelopment #linustorvalds #rustlanguage #linuxkernel #asahilinux #asahilina #clanguage #biz #linux #tech #rust
-
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
-
Can you tell what will be output without running the code?
(Don't forget to mark your answer with spoiler flag)
#rustlang #rustacean #rustaceans #rustlanguage #rust #RustTips #RustTutorial
-
Can you tell what will be output without running the code?
(Don't forget to mark your answer with spoiler flag)
#rustlang #rustacean #rustaceans #rustlanguage #rust #RustTips #RustTutorial
-
Can you tell what will be output without running the code?
(Don't forget to mark your answer with spoiler flag)
#rustlang #rustacean #rustaceans #rustlanguage #rust #RustTips #RustTutorial
-
Can you tell what will be output without running the code?
(Don't forget to mark your answer with spoiler flag)
#rustlang #rustacean #rustaceans #rustlanguage #rust #RustTips #RustTutorial