• OPENDEV HUB V1.0• API STATUS: 100% OPERATIONAL• CLIENT ENGINE: LOADED & CACHED• TRENDING TECH: TAILWIND V4, NEXT.JS 16, RUST, GO• ZERO AUTH REQUIRED
OPENDEVHUB

Command Palette

Search for a command to run...

DEVELOPER RELEASES

DEVELOPER NEWS STREAM

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

My Mistakes Making a Canvas Based Game with Rust and WebAssembly
rust2020-10-09
Alex FallenstedtAlex Fallenstedt

My 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.

trap of fold
rust2020-10-09
Peter VivoPeter Vivo

trap of fold

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

Doctave: a batteries-included documentation site generator
showdev2020-10-09
Nik BegleyNik Begley

Doctave: a batteries-included documentation site generator

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

Intro to Rust Modules
rust2020-10-07
Steve PrydeSteve Pryde

Intro to Rust Modules

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

Rust 2021
rust2020-10-08
Christoph GraboChristoph Grabo

Rust 2021

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

Rust: String vs str
rust2020-10-08
SivakumarSivakumar

Rust: String vs str

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

Top 4 Coding Languages To Learn For Beginners (2020)
go2020-10-07
Lane WagnerLane Wagner

Top 4 Coding Languages To Learn For Beginners (2020)

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

How to turn any React web app into a native desktop app(Windows, macOS, Linux) with Tauri.
react2020-10-07
geekjrgeekjr

How 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...

Hack the Rainbow 🌈 - ETH<>NEAR Bridge Hackathon - $50K+ prizes 🔥
blockchain2020-09-07
NiMA 🤖🧠⛓️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...

That's so Rusty!: Smart pointers
rust2020-10-03
ImaculateImaculate

That's so Rusty!: Smart pointers

If you've been following this series, the post about Ownership probably gave you the impression that...

You're Allowed To Write Slow Rust Code
rust2020-10-01
Jon StødleJon Stødle

You'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...

I Built the Most Mediocre Rust App Ever
rust2020-09-29
rachelle palmerrachelle palmer

I 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...

Overview de algunos modernos lenguajes de programación
rust2020-09-29
Matías Hernández ArellanoMatías Hernández Arellano

Overview 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.

Bevy #2: Space Shooter - The Player
rust2020-09-26
Ethan TangEthan Tang

Bevy #2: Space Shooter - The Player

NOTE: Since this has been written, Bevy has received many awesome, but sadly, breaking updates. The...

Rust: expression vs statement
rust2020-09-26
Nicky MeulemanNicky Meuleman

Rust: expression vs statement

TL;DR: Expressions evaluate to a value, they return that value. Statements do not. Statements are...

Rust: let vs const
rust2020-09-24
Nicky MeulemanNicky Meuleman

Rust: let vs const

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