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

Unlocking Possibilities: 4 Reasons Why ESP32 and Rust Make a Winning Combination
rust2023-06-29
Omar HiariOmar Hiari

Unlocking Possibilities: 4 Reasons Why ESP32 and Rust Make a Winning Combination

Rust has gained significant attention and popularity among developers due to its robustness, memory...

A small contribution is still very valuable
opensource2023-06-29
Gabor SzaboGabor Szabo

A small contribution is still very valuable

One can contribute to open source even without knowing the programming language of the project

Rust Cloudflare Workers: Turnstile Example
rust2023-06-27
Rodney LabRodney Lab

Rust Cloudflare Workers: Turnstile Example

Svelte real-time multiplayer game 👋🏽 see who is online by adding presence or awareness to improve multi-user game 🧑🏽 user experience.

RPCiege: Setup
programming2023-06-27
Tyler van der HoevenTyler van der Hoeven

RPCiege: Setup

Earn digital collectible playing cards in RPCiege, a smart contract coding game teaching the...

RPCiege: How to Complete Skirmish No.1
programming2023-06-27
Tyler van der HoevenTyler van der Hoeven

RPCiege: How to Complete Skirmish No.1

Earn digital collectible playing cards in RPCiege, a smart contract coding game teaching the...

Rust Notes on Temporary values (usage of Mutex) - 2
rust2023-06-16
Nirmalya SenguptaNirmalya Sengupta

Rust Notes on Temporary values (usage of Mutex) - 2

A collection of notes I have made, while learning Rust

Optimization of u128 to base62 encoding
rust2023-06-26
RomanRoman

Optimization of u128 to base62 encoding

While working on my note-taking application Heaplist, when I got to saving data to the database, I...

Improving the Prime Iterator in Rust
rust2023-06-26
David BerryDavid Berry

Improving the Prime Iterator in Rust

I wanted to improve the performance of the prime iterator I created back in 2021. The final code from...

Implementing Vec in Rust
rust2023-06-25
Kostiantyn ShyrolapovKostiantyn Shyrolapov

Implementing Vec in Rust

In Rust, Vec<T> or vector type is a dynamically-sized, growable array that allows you to store...

Even better GitHub Actions in Rust
rust2023-06-25
Dylan AnthonyDylan Anthony

Even better GitHub Actions in Rust

In a recent post, I introduced a method for creating GitHub Actions (the reusable code that can be...

The Complete(sh) Rust Cheat Sheet
rust2023-06-22
Moe KatibMoe Katib

The Complete(sh) Rust Cheat Sheet

This "Complete(sh) Rust Cheat Sheet" provides a comprehensive guide to the Rust programming language,...

30 Days of Rust - Day 28
rust2023-06-24
johnnylarnerjohnnylarner

30 Days of Rust - Day 28

Hi folks, I've been really struggling to keep up the blog recently. This was in part to a change of...

Rust中可变引用和不可变引用不能同时存在的问题
rust2023-06-24
drakedrake

Rust中可变引用和不可变引用不能同时存在的问题

这么设计的原因是为了防止数据竞争 但是下面的代码依然很难搞懂为何会编译报错: fn main() { let mut a = 1; let c = &mut a; ...

A Deep Dive Into Strings in Rust
rust2023-06-22
Moe KatibMoe Katib

A Deep Dive Into Strings in Rust

In many programming languages, manipulating strings is a crucial aspect of writing applications. The...

Learning Rust 🦀: 06 - Ownership: Intro
learning2023-06-23
Fady GA 😎Fady GA 😎

Learning Rust 🦀: 06 - Ownership: Intro

This is the first article in the series to discuss a Rust unique trait, Ownership. I'll split the...

Rust Notes on Temporary values (usage of Mutex) - 4
rust2023-06-22
Nirmalya SenguptaNirmalya Sengupta

Rust Notes on Temporary values (usage of Mutex) - 4

A collection of notes I have made, while learning Rust