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

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) {...

Day1:Print - 100DayOfRust
rust2019-11-13
BCBC

Day1:Print - 100DayOfRust

1, Print fn main() { println!("hello world"); println!("{} and {}", "Alice", "Bo...

Rust 2020: Tropes and Jargon
rust2019-11-12
Eduardo PinhoEduardo Pinho

Rust 2020: Tropes and Jargon

Dear Rust community, I am writing this to announce a lame, but hopefully fruitful confession through...

Strange parts: fingerprint reader testing
electronics2019-11-12
FilipFilip

Strange parts: fingerprint reader testing

This is the third post along my journey to creating a biometric password manager. For an overview of...

Figuring Out How Linux Commands Work: uptime
rust2019-11-09
Harikrishnan MenonHarikrishnan Menon

Figuring Out How Linux Commands Work: uptime

What is uptime ? Linux has a few nifty little commands like cat, top, ls. One particular c...

Deadbeef? Just say no. Let's learn to build a small Rust app to find out what words can you spell with the letters A-F
rust2019-11-07
Tim McNamaraTim McNamara

Deadbeef? Just say no. Let's learn to build a small Rust app to find out what words can you spell with the letters A-F

A Rust tutorial for creating a small command-line utility

Rust once and share it with Android, iOS and Flutter
android2019-10-26
Roberto HuertasRoberto Huertas

Rust once and share it with Android, iOS and Flutter

What if I told you that you could use the same very performant code in Android, iOS or even in...

Lossless Syntax Trees
rust2019-10-27
Crystal DurhamCrystal Durham

Lossless Syntax Trees

So you want to parse a programming language. You want to turn some text into a semantic data structur...

Async Rust Beta- Quick Peek
rust2019-10-28
jeikabujeikabu

Async Rust Beta- Quick Peek

As announced on the Rust Blog a few weeks ago, the long awaited async-await syntax hit beta and is...

Extending Python with Rust
performance2019-05-01
Pradeep ChhetriPradeep Chhetri

Extending Python with Rust

Introduction: Python is a great programming language but sometimes it can be a bit of sl...

🦀 Rust for JS developers
rust2019-10-15
David MorcilloDavid Morcillo

🦀 Rust for JS developers

Originally published at Codegram's blog The first time I read about Rust 🦀 it didn't pique my intere...

Rust for front-end developers
rust2019-10-17
Brian Neville-O'NeillBrian Neville-O'Neill

Rust for front-end developers

Written by Obinna Ekwuno✏️ The world of front-end development is fast-paced and can be pretty...

The best Rust frameworks to check out in 2019
rust2019-10-18
Brian Neville-O'NeillBrian Neville-O'Neill

The best Rust frameworks to check out in 2019

Written by Obinna Ekwuno✏️ Rust is used to build fast, highly scale-able, memory-efficient software....

Go Vs Rust what to choose next for web API development
go2019-10-19
Titus Joyson PTitus Joyson P

Go Vs Rust what to choose next for web API development

I have been using python and Node for developing APIs, and feel like dropping node for backend and pl...

What is a Lexer, Anyway?
rust2019-10-11
Crystal DurhamCrystal Durham

What is a Lexer, Anyway?

The first task when implementing any language (that is already specified) is to turn the source code...