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

Alex FallenstedtMy Mistakes Making a Canvas Based Game with Rust and WebAssembly
I learned a lot building Gobblet using Rust and WebAssembly. I probably won't use Rust and WebAssembly for this ever again.

Peter Vivotrap of fold
image by Stefano Valicchia /unsplash I would like to learn rust, but with my javascript background t...

Nik BegleyDoctave: a batteries-included documentation site generator
I am very happy to announce Doctave, a batteries-included documentation site generator. With built-in...

Steve PrydeIntro to Rust Modules
The Rust module system can be very confusing and difficult to understand when you are just starting o...

Christoph GraboRust 2021
Over at my home blog I wrote about what I want and wish from Rust in the next year and beyond. Also...

SivakumarRust: String vs str
In this blog post, let's explore key differences between String and str and when to use what. String...

Lane WagnerTop 4 Coding Languages To Learn For Beginners (2020)
The post Top 4 Coding Languages To Learn For Beginners (2020) first appeared on Qvault. Coding...

geekjrHow to turn any React web app into a native desktop app(Windows, macOS, Linux) with Tauri.
Text based Tutorial: https://geekjr.github.io/reactTauri.html Do you have any React web app? Wou...

NiMA 🤖🧠⛓️Hack the Rainbow 🌈 - ETH<>NEAR Bridge Hackathon - $50K+ prizes 🔥
Hello hackers and builders! Today we are super excited to soft launch Hack the Rainbow in collabora...

ImaculateThat's so Rusty!: Smart pointers
If you've been following this series, the post about Ownership probably gave you the impression that...

Jon StødleYou're Allowed To Write Slow Rust Code
There's a thing that comes up from time to time in the Rust community: people wanting to optimize...

rachelle palmerI Built the Most Mediocre Rust App Ever
And it was awesome. Amazing, even. A few months ago I decided that I would attempt to learn Rust. I h...

Matías Hernández ArellanoOverview de algunos modernos lenguajes de programación
Existen diversos lenguajes de programación pero podemos llamar a algunos de ellos pueden ser considerados modernos, este es un overview de al menos 4 de ellos que se han popularizado y con buenas razones.

Ethan TangBevy #2: Space Shooter - The Player
NOTE: Since this has been written, Bevy has received many awesome, but sadly, breaking updates. The...

Nicky MeulemanRust: expression vs statement
TL;DR: Expressions evaluate to a value, they return that value. Statements do not. Statements are...

Nicky MeulemanRust: let vs const
To declare a variable in Rust, use the let keyword. let num = 5; By default, variables are immu...