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

What Does C++ Do That Rust Doesn't?
healthydebate2019-12-21
Ben LovyBen Lovy

What Does C++ Do That Rust Doesn't?

I want to preface this by saying these are my two primary languages. I have a healthy respect for bo...

Day29:an echo server with tokio - 100DayOfRust
rust2019-12-31
BCBC

Day29:an echo server with tokio - 100DayOfRust

Tokio provides asynchronous runtime which you can spawn tasks into runtime, the runtime will schedule...

Debugging Rust Cortex-M with VS Code: Take 2
rust2019-12-31
Christopher McClellanChristopher McClellan

Debugging Rust Cortex-M with VS Code: Take 2

How to setup VS Code to debug Rust Cortex-M programs with cargo-generate and cortex-m-quickstart.

Why Should You Care About Loose Coupling?
webdev2019-12-31
Tore PettersenTore Pettersen

Why Should You Care About Loose Coupling?

Originaly posted on cloudmaker.dev Have you ever been in a situation where a change in your applicat...

Day28:convert markdown to html - 100DayOfRust
rust2019-12-30
BCBC

Day28:convert markdown to html - 100DayOfRust

We can use comrak crate to convert Markdown to HTML code: In Cargo.toml: [dependencies] comrak = "...

Node worker threads with shared array buffers and Rust WebAssembly
node2019-12-20
Brian Neville-O'NeillBrian Neville-O'Neill

Node worker threads with shared array buffers and Rust WebAssembly

Written by Tigran Bayburtsyan✏️ WebAssembly enables Rust to run as part of a JavaScript code, which...

Day27:surf: async HTTP client - 100DayOfRust
rust2019-12-30
BCBC

Day27:surf: async HTTP client - 100DayOfRust

In previous post I wrote on how to call web API with the reqwest crate, we can do the same thing with...

Day26:regex - 100DayOfRust
rust2019-12-29
BCBC

Day26:regex - 100DayOfRust

You can do regular expression in Rust with 3rd-party crate Regex. In Cargo.toml: [dependencies] re...

Learning Rust - Understanding vectors
rust2019-12-27
Bruno OliveiraBruno Oliveira

Learning Rust - Understanding vectors

Introduction Mutating data structures is a core activity of any non-trivial program, and understandi...

Learning Rust via the Advent Of Code - Part 1
rust2019-12-24
Bruno OliveiraBruno Oliveira

Learning Rust via the Advent Of Code - Part 1

Motivation I've decided to learn Rust over the course of next year, and I'll start by working on the...

Learning Rust via the Advent Of Code - Part 2
rust2019-12-25
Bruno OliveiraBruno Oliveira

Learning Rust via the Advent Of Code - Part 2

Introduction Following on my previous post, I'll work on the second part of the first problem of AoC...

Mutable Arrays in Rust
rust2019-12-24
Anil Kumar KhandeiAnil Kumar Khandei

Mutable Arrays in Rust

I want to discuss briefly about mutable arrays in rust and how i learnt it the hard way. I come from...

No More Tears, No More Knots: Arena-Allocated Trees in Rust
rust2019-12-19
Ben LovyBen Lovy

No More Tears, No More Knots: Arena-Allocated Trees in Rust

An overview of region-based memory management for constructing trees and graphs in Rust

Managing your projects
project2019-12-23
KonstantinKonstantin

Managing your projects

`gko/project` allows you to create `npm`, `cargo`, `gem` or `pip` projects as well as `github` repositories for them

9 best open-source findings, November 2019
python2019-12-18
Nikita SobolevNikita Sobolev

9 best open-source findings, November 2019

Hello, everyone! Let me introduce a list of the best open-source findings for November 2019. If you...

Rust and Wasm Side-by-Side
webassembly2018-10-26
Scott JohnsonScott Johnson

Rust and Wasm Side-by-Side

Background At my work, we're considering using WebAssembly (hereafter abbreviated as WAS...