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

Upgrading to Rust's Actix Web 2.0
rust2019-11-25
Dustin SpeckhalsDustin Speckhals

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

Adding a little feature to the headless_chrome crate in Rust
rust2019-11-25
Alistair RocheAlistair Roche

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

Creative Coding in Rust with Nannou
rust2019-11-16
Ben LovyBen Lovy

Creative Coding in Rust with Nannou

Oxidize Your Life With One Weird Trick We're going to build a small demo with the nannou c...

Easy functional programming techniques in Rust for everyone
rust2019-11-14
Deepu K SasidharanDeepu K Sasidharan

Easy functional programming techniques in Rust for everyone

Functional programming concepts in Rust for beginners.

Day9:Read CSV File - 100DayOfRust
rust2019-11-20
BCBC

Day9:Read CSV File - 100DayOfRust

Today we are going to create a CLI to read a csv file that contains student score, then calculate the...

rav1e 0.1.0 - Made in Tokyo
rav1e2019-11-20
Luca BarbatoLuca Barbato

rav1e 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

Day8:Common Collections - 100DayOfRust
rust2019-11-19
BCBC

Day8:Common Collections - 100DayOfRust

Common Collections Heard some people complained that after learning the basics of Rust, th...

Introduction to PHP FFI
php2019-11-18
Otto RaskOtto Rask

Introduction to PHP FFI

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

Criando seu blog com Zola e hospedando de graça na Netlify
rust2019-11-18
Bruno RochaBruno Rocha

Criando seu blog com Zola e hospedando de graça na Netlify

Crie um Blog usando Github, Netlify e Zola

Day7:String and &str - 100DayOfRust
rust2019-11-17
BCBC

Day7:String and &str - 100DayOfRust

String and &str String is Rust's String type, where strings are saved in heap. &s...

A Programming Language that Encourages You to Be a Programmer
rust2019-11-16
Pan ChasingaPan Chasinga

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

FizzBuzz in Rust
rust2019-11-16
BCBC

FizzBuzz in Rust

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

Day6:Closure - 100DayOfRust
rust2019-11-16
BCBC

Day6:Closure - 100DayOfRust

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

Day4:From & Display & FromStr traits - 100DayOfRust
rust2019-11-15
BCBC

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

Day3:structs,enum - 100DayOfRust
rust2019-11-13
BCBC

Day3:structs,enum - 100DayOfRust

Struct Use struct to build structure, and you can destructure the struct using a let bindi...

Day2:Tuple,Array - 100DayOfRust
rust2019-11-13
BCBC

Day2:Tuple,Array - 100DayOfRust

Tuple, Array and Slice use std::mem; fn calculate(a: i32, b:i32) -> (i32, i32) {...