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

FilipSo you want to write an embedded driver in Rust
This is the fourth post along my journey to creating a biometric password manager. For an overview of...

BCDay21:Compute md5, sha256 and hmac - 100DayOfRust
Cargo.toml [dependencies] rust-crypto = "^0.2" hex = "^0.4" main.rs use...

jeikabuLumberyard EBus from Rust
One of the architectural changes Amazon made to CryEngine is the introduction of the EBus (Event...

BCDay20:Compute MD5 of String - 100DayOfRust
Cargo.toml [dependencies] md5 = "0.7.0" Code use std::fs; fn main() {...

Ryan PaloType Aliases in Rust
Naming your complex types that stand for distinct concepts is a great way to simplify your Rust code.

BCDay18:File Operation - 100DayOfRust
File operation: read, write and append. Code use std::fs; use std::io::prelude::*; fn...

Ben LovyProcedural Melody Generation in Rust
Procedurally generate melodies by synthesizing your own sound waves in Rust using test-driven development.

@codingshCreating Your First Substrate Chain
Introduction In this tutorial, you will learn to create a custom "Proof Of Existence" bloc...

BCDay16:String methods - 100DayOfRust
This article will cover some common methods of String. Code: fn main() { // integer to string...

BCDay15:Load and Dump JSON - 100DayOfRust
We will use serde and serde_json crate to parse string to object and dump object to json string. Thi...

BCDay13:Sort Vector - 100DayOfRust
Sort vector: use sort and sort_by method #[derive(Debug, Eq, Ord, PartialEq, PartialOrd)] struct Pe...

Christopher McClellanDebugging Rust ARM CortexM Programs with Visual Studio Code
Debugging Rust ARM CortexM Programs with Visual Studio Code I've been toying with embedded...

BCDay12:Write web app with actix-web - 100DayOfRust
The reason I chose actix-web over rocket is 1) it doesn't rely on the nightly version 2) it support w...

BCDay11:How to implement "Template Method" design pattern - 100DayOfRust
The implementation of "template method" design pattern usually utilizes a base class and a derived cl...

Deepu K SasidharanMy first impressions of Rust
This is what I thought about Rust while learning it. From a pragmatic perspective.

Robert Reesbb: a simple process viewer
A featureful but simple process viewer written in Rust