https://lwn.net/Articles/1049831/ #RustInKernel #KernelDevelopment #TechNews #ProgrammingCommunity #HackerNews #ngated
En el #podcast de hoy hablaremos del salseo en el núcleo de #Linux por el lenguaje #Rust y #RustForLinux
https://creators.spotify.com/pod/show/geek-d-mente/episodes/Salseo-en-el-ncleo-de-Linux-e2vnlt9
oohhhh it is going to be a good morning catching up!
https://lore.kernel.org/rust-for-linux/CAHk-=wgLbz1Bm8QhmJ4dJGSmTuV5w_R0Gwvg5kHrYr4Ko9dUHQ@mail.gmail.com/
#rustforlinux #rfl #linux #lkml #dramah #shadenfreude #popcorn
Hey, im aktuellen Newsletter #OpenSourceSpotlight berichten wir über die Konflikte rund um #Rust im #Linux #Kernel. Im Spotlight steht #Shortwave 5.0, einen Radioplayer für den #LinuxDesktop, wofür wir mit dessen Entwickler @haeckerfelix gesprochen haben. Fun fact: Shortwave ist in Rust programmiert.
Wenn ihr den Newsletter abonniert, bekommt ihr die aktuelle Ausgabe zu #RustForLinux und Shortwave noch nachgeschickt. :)
Are you preparing for the weekend? Do you wish to learn more about Rust for Linux, and even look at some driver code? You're in luck, my FOSDEM presentation video is now available:
Rust for Linux: an overview https://fosdem.org/2025/schedule/event/fosdem-2025-5875-rust-for-linux-an-overview/
Something is wrong when the #rustforlinux mailing list gets more NAKs than the #mesa repo.
(Because the nvidia Rust compiler is called... I'll show myself out)
Come see my talk in 100 mins in the FOSDEM Kernel devroom (UD2.208):
Rust for Linux: an overview
You can also tune online to watch the talk : https://fosdem.org/2025/schedule/event/fosdem-2025-5875-rust-for-linux-an-overview/
Oh look, there's a stabilization PR for `Arbitrary Self Types V2` over at #RustLang
🎉
https://github.com/rust-lang/rust/pull/135881
It allows you to do stuff like this (taken from the PR):
struct MySmartPtr<T>(T);
impl<T> core::ops::Receiver for MySmartPtr<T> {
type Target = T;
}
struct Content;
impl Content {
fn method(self: MySmartPtr<Self>) { // note self type
}
}
The #RustForLinux project heavily relies on this feature.