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

Dustin SpeckhalsUpgrading to Rust's Actix Web 2.0
For the past year or more, I've been passively watching the progress of the "async/await" implementat...

Alistair RocheAdding a little feature to the headless_chrome crate in Rust
This is a brief account of how I fulfilled a small feature request a user made against the headless_c...

Ben LovyCreative Coding in Rust with Nannou
Oxidize Your Life With One Weird Trick We're going to build a small demo with the nannou c...

Deepu K SasidharanEasy functional programming techniques in Rust for everyone
Functional programming concepts in Rust for beginners.

BCDay9:Read CSV File - 100DayOfRust
Today we are going to create a CLI to read a csv file that contains student score, then calculate the...

Luca Barbatorav1e 0.1.0 - Made in Tokyo
Last week we eventually managed to cut the first release of rav1e, while in Tokyo for the Video Dev Days 2019

BCDay8:Common Collections - 100DayOfRust
Common Collections Heard some people complained that after learning the basics of Rust, th...

Otto RaskIntroduction to PHP FFI
PHP 7.4 introduces a new core feature: FFI. Let's take a look and see how it works.

Bruno RochaCriando seu blog com Zola e hospedando de graça na Netlify
Crie um Blog usando Github, Netlify e Zola

BCDay7:String and &str - 100DayOfRust
String and &str String is Rust's String type, where strings are saved in heap. &s...

Pan ChasingaA Programming Language that Encourages You to Be a Programmer
According to Stack Overflow survey, it's apparent most coders prefer themselves to be a developer rat...

BCFizzBuzz in Rust
FizzBuzz For numbers from 1 to 30: print "FizzBuzz" if number is divisible by 3 and 5 pr...

BCDay6:Closure - 100DayOfRust
Closure This is the 6th day and I almost gave up because this "closure" thing is so compli...

BCDay4:From & Display & FromStr traits - 100DayOfRust
1, From trait After you defined the From trait, you can convert a type A to B by calling B...

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) {...