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

So you want to write an embedded driver in Rust
rust2019-12-07
FilipFilip

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

Day21:Compute md5, sha256 and hmac - 100DayOfRust
rust2019-12-06
BCBC

Day21:Compute md5, sha256 and hmac - 100DayOfRust

Cargo.toml [dependencies] rust-crypto = "^0.2" hex = "^0.4" main.rs use...

Lumberyard EBus from Rust
lumberyard2019-12-06
jeikabujeikabu

Lumberyard EBus from Rust

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

Day20:Compute MD5 of String - 100DayOfRust
rust2019-12-06
BCBC

Day20:Compute MD5 of String - 100DayOfRust

Cargo.toml [dependencies] md5 = "0.7.0" Code use std::fs; fn main() {...

Type Aliases in Rust
rust2019-12-05
Ryan PaloRyan Palo

Type Aliases in Rust

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

Day18:File Operation - 100DayOfRust
rust2019-12-04
BCBC

Day18:File Operation - 100DayOfRust

File operation: read, write and append. Code use std::fs; use std::io::prelude::*; fn...

Procedural Melody Generation in Rust
beginners2019-12-02
Ben LovyBen Lovy

Procedural Melody Generation in Rust

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

Creating Your First Substrate Chain
substrate2019-12-03
@codingsh@codingsh

Creating Your First Substrate Chain

Introduction In this tutorial, you will learn to create a custom "Proof Of Existence" bloc...

Day16:String methods - 100DayOfRust
rust2019-12-02
BCBC

Day16:String methods - 100DayOfRust

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

Day15:Load and Dump JSON - 100DayOfRust
rust2019-12-01
BCBC

Day15: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...

Day13:Sort Vector - 100DayOfRust
rust2019-12-01
BCBC

Day13:Sort Vector - 100DayOfRust

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

Debugging Rust ARM CortexM Programs with Visual Studio Code
rust2019-11-29
Christopher McClellanChristopher McClellan

Debugging Rust ARM CortexM Programs with Visual Studio Code

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

Day12:Write web app with actix-web - 100DayOfRust
rust2019-11-30
BCBC

Day12: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...

Day11:How to implement "Template Method" design pattern - 100DayOfRust
rust2019-11-29
BCBC

Day11:How to implement "Template Method" design pattern - 100DayOfRust

The implementation of "template method" design pattern usually utilizes a base class and a derived cl...

My first impressions of Rust
rust2019-11-07
Deepu K SasidharanDeepu K Sasidharan

My first impressions of Rust

This is what I thought about Rust while learning it. From a pragmatic perspective.

bb: a simple process viewer
rust2019-11-27
Robert ReesRobert Rees

bb: a simple process viewer

A featureful but simple process viewer written in Rust