DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Roger Torres (he/him/ele)First steps with Rust declarative macros!
Macros are one of the ways to extend Rust syntax. As The Book calls it, “a way of writing code that...

Tim McNamara9 advantages of programming in Rust
Here are a few of the reasons that I like the language so much that I wrote a book about it

Gerard KlijsConfluent Schema Registry and Rust
Intro This blog will be about the Rust library I wrote and maintain,...

Nicolas Fränkeldiceroller, a sample Rust project
For me, the best learning process is regularly switching between learning and doing, theory and...

Matt DaviesRust #6: Exploring crates
I often install tools via cargo and use crates for my code that have many dependencies. If you're...

Max DörnerEmulating abstract base classes in Rust
When coming from a mainstream oop language like C# to Rust, like me, the lack of implementation...

felixfaisalImplementing Merge Sort in Rust
Merge sort is arguably the most popular divide and conquer algorithm, It is one of the first...

YJDoc2Completely Oxidizing My Terminal Setup
Hello! I recently oxidized my terminal setup, by converting all of my terminal programs to rust based...

Matt AngelosantoDitching try...catch and null checks with Rust
Written by Ben Holmes ✏️ This post is written by a JavaScript developer just entering the world of...

Roger Torres (he/him/ele)Smart Pointers in Rust: What, why and how?
TL;DR: I will cover some of Rust's smart pointers: Box, Cell, RefCell, Rc, Arc, RwLock and...

Roger Torres (he/him/ele)First steps with Docker + Rust
TL;DR: We are going to install Docker and create five different containers for a Rust program, each...

Nicolas FränkelRust and the JVM
So far, we have learned the basics of Rust syntax, developed a custom Kubernetes controller, and...

DaveII. Implementing ICMP in Rust
Coding ICMP in Rust with TUN/TAP Device

DaveI. Implementing ICMP in Rust
Implementing ICMP in Rust

Matt DaviesRust #5: Naming conventions
This week, I wanted to clarify in my head what the naming conventions are in the standard library if...

Kelvin KirimaGenerating the nth Fibonacci in Rust.
What’s a Fibonacci sequence? Fibonacci numbers are numbers that form a sequence, called...