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

BCDay3:structs,enum - 100DayOfRust
Struct Use struct to build structure, and you can destructure the struct using a let bindi...

BCDay2:Tuple,Array - 100DayOfRust
Tuple, Array and Slice use std::mem; fn calculate(a: i32, b:i32) -> (i32, i32) {...

BCDay1:Print - 100DayOfRust
1, Print fn main() { println!("hello world"); println!("{} and {}", "Alice", "Bo...

Eduardo PinhoRust 2020: Tropes and Jargon
Dear Rust community, I am writing this to announce a lame, but hopefully fruitful confession through...

FilipStrange parts: fingerprint reader testing
This is the third post along my journey to creating a biometric password manager. For an overview of...

Harikrishnan MenonFiguring Out How Linux Commands Work: uptime
What is uptime ? Linux has a few nifty little commands like cat, top, ls. One particular c...

Tim McNamaraDeadbeef? Just say no. Let's learn to build a small Rust app to find out what words can you spell with the letters A-F
A Rust tutorial for creating a small command-line utility

Roberto HuertasRust once and share it with Android, iOS and Flutter
What if I told you that you could use the same very performant code in Android, iOS or even in...

Crystal DurhamLossless Syntax Trees
So you want to parse a programming language. You want to turn some text into a semantic data structur...

jeikabuAsync Rust Beta- Quick Peek
As announced on the Rust Blog a few weeks ago, the long awaited async-await syntax hit beta and is...

Pradeep ChhetriExtending Python with Rust
Introduction: Python is a great programming language but sometimes it can be a bit of sl...

David Morcillo🦀 Rust for JS developers
Originally published at Codegram's blog The first time I read about Rust 🦀 it didn't pique my intere...

Brian Neville-O'NeillRust for front-end developers
Written by Obinna Ekwuno✏️ The world of front-end development is fast-paced and can be pretty...

Brian Neville-O'NeillThe best Rust frameworks to check out in 2019
Written by Obinna Ekwuno✏️ Rust is used to build fast, highly scale-able, memory-efficient software....

Titus Joyson PGo Vs Rust what to choose next for web API development
I have been using python and Node for developing APIs, and feel like dropping node for backend and pl...

Crystal DurhamWhat is a Lexer, Anyway?
The first task when implementing any language (that is already specified) is to turn the source code...