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

A Weekly Rust🦀 Pill #4
rust2023-08-11
Antonio PerroneAntonio Perrone

A Weekly Rust🦀 Pill #4

A Weekly Rust🦀 Pill is a post series where on a weekly base, I share some implementations of the most...

Writing an Equation Solver
math2023-08-06
GabiGabi

Writing an Equation Solver

Writing an Equation Solver Writing an Equation Solver is a process that is made of:...

Building a CLI tool in Rust
rust2023-08-07
Hamza JadidHamza Jadid

Building a CLI tool in Rust

Build a CLI tool in Rust

Easy Encryption In Rust
rust2023-08-07
Thomas PeglerThomas Pegler

Easy Encryption In Rust

Let's keep this short I had a whole section planned here for explaining XChaCha and why...

Why I changed my mind about rust
rust2023-08-07
LenaLena

Why I changed my mind about rust

The language improved, but most importantly, I changed

Beginner's guide to Rust references
rust2023-08-05
wrongbytewrongbyte

Beginner's guide to Rust references

You probably know that this code does not compile fn main() { let my_vec = vec![1, 2, 3]; ...

How to Create a Static Site Generator using Rust in less than 100 LOC
rust2023-08-05
Njuguna MureithiNjuguna Mureithi

How to Create a Static Site Generator using Rust in less than 100 LOC

In this tutorial, we will learn how to create a static site generator using Rust. We will use the...

Tauri mobile for iOS
tutorial2023-08-05
Adimac93Adimac93

Tauri mobile for iOS

I've been recently experimenting with Tauri alpha to try out mobile app development. By following the...

Learning Rust 🦀: 08 - Ownership: Functions and References
learning2023-08-05
Fady GA 😎Fady GA 😎

Learning Rust 🦀: 08 - Ownership: Functions and References

Now we will see how Rust's Ownership affects Functions behavior. Let's dig in! Please check the...

HOW TO USE CONTROL FLOW IN THE RUST PROGRAMMING LANGUAGE
rust2023-07-06
Rasheed OlaleyeRasheed Olaleye

HOW TO USE CONTROL FLOW IN THE RUST PROGRAMMING LANGUAGE

Easy steps to implement control flow for beginners Just as decisions are crucial for individuals, in...

The Best UI Libraries for Cross-Platform Apps with Tauri
tauri2023-08-04
CrabNebulaCrabNebula

The Best UI Libraries for Cross-Platform Apps with Tauri

Developing native cross-platform experiences requires choosing the right user interface (UI) library,...

[sqlx-ts] compile-time checked queries without DSL in Typescript
typescript2023-07-24
Jason ShinJason Shin

[sqlx-ts] compile-time checked queries without DSL in Typescript

Summary [Github | Demo] This story is about sqlx-ts. It is a CLI tool that...

TypeScript with Go/Rust errors? No try/catch? Heresy.
typescript2023-07-23
Mateusz PiórowskiMateusz Piórowski

TypeScript with Go/Rust errors? No try/catch? Heresy.

So, let's start with a little backstory about me. I am a software developer with around 10 years of...

ESP32 Standard Library Embedded Rust: Timers
rust2023-08-03
Omar HiariOmar Hiari

ESP32 Standard Library Embedded Rust: Timers

This blog post is the fourth of a multi-part series of posts where I explore various peripherals in...

How to leverage the state-of-the-art NLP models in Rust
ai2023-08-01
MedclMedcl

How to leverage the state-of-the-art NLP models in Rust

In this tutorial we will show you how to use rust-bert library to utilize the state-of-the-art...

String vs str in Rust: Understanding the Fundamental Differences for Efficient Programming
rust2023-07-31
Dsysd DevDsysd Dev

String vs str in Rust: Understanding the Fundamental Differences for Efficient Programming

Instead, the string data type in Rust is represented by the "String" type (with an uppercase 'S')....