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

Cairo for Rust devs I (verifiable computation)
rust2024-07-30
Maksim RyndinMaksim Ryndin

Cairo for Rust devs I (verifiable computation)

This is a series of articles about Cairo usually mentioned in the context of web3 and Starknet smart...

7 Open Source Projects You Should Know - Rust Edition ✔️
opensource2024-07-29
Domenico TenaceDomenico Tenace

7 Open Source Projects You Should Know - Rust Edition ✔️

Overview Hi everyone 👋🏼​ In this article, I'm going to look at seven OSS repository that...

Web Development: Rust🦀 vs Go🦫 vs Python🐍
rust2024-07-28
SabbhaSabbha

Web Development: Rust🦀 vs Go🦫 vs Python🐍

Here's a comparison of Rust, Go, and Python for web development: Conclusion Rust:...

Tool: json table editor, a tool to view and edit json as table
tooling2024-07-29
NicolasNicolas

Tool: json table editor, a tool to view and edit json as table

Genesis While working on my side project which is an implementation of a famous mmo rpg...

Announcing Rust 1.80.0
news2024-07-25
Francesco CiullaFrancesco Ciulla

Announcing Rust 1.80.0

Announcing Rust 1.80.0 The Rust team just announced the release of Rust 1.80.0. This...

An Introduction to Leo: Crafting Privacy-Preserving Blockchain Applications
rust2024-07-29
Usman AsimUsman Asim

An Introduction to Leo: Crafting Privacy-Preserving Blockchain Applications

Table of Contents Privacy vs. Transparency in Blockchain Core Concepts of Leo...

Implement React v18 from Scratch Using WASM and Rust - [21] Performance Optimization for Context
react2024-07-29
ayouayou

Implement React v18 from Scratch Using WASM and Rust - [21] Performance Optimization for Context

Based on big-react,I am going to implement React v18 core features from scratch using WASM and...

Building Zerocalc, part V - Iced UI, subscriptions, and code release!
rust2024-07-28
Michal CiesielskiMichal Ciesielski

Building Zerocalc, part V - Iced UI, subscriptions, and code release!

The UI In the last part of the series, we will build a simple UI for Zerocalc. We will use...

Rusty Recipies: sqlx + Uuid
rust2024-07-28
Ellie SagerEllie Sager

Rusty Recipies: sqlx + Uuid

For the impatient  -  here the link to my code in GitHub.  For the rest  -  keep reading. ...

Rust vs Zig Error Handling
errors2024-07-22
Alice TurnerAlice Turner

Rust vs Zig Error Handling

Error handling approaches in Rust and Zig

How to Replace OOP in Rust?
rust2024-07-26
Igor YusupovIgor Yusupov

How to Replace OOP in Rust?

Introduction First, let's recall the main principles of...

Building a Rust Command-Line Utility - wc-rs
rust2024-07-26
Gaurav GahlotGaurav Gahlot

Building a Rust Command-Line Utility - wc-rs

Delving into Rust's capabilities, this post guides you through the process of crafting a command-line...

Implement React v18 from Scratch Using WASM and Rust - [20] Implement Context
react2024-07-26
ayouayou

Implement React v18 from Scratch Using WASM and Rust - [20] Implement Context

Based on big-react,I am going to implement React v18 core features from scratch using WASM and...

Error handling in Rust: A comprehensive tutorial
rust2024-07-25
Megan LeeMegan Lee

Error handling in Rust: A comprehensive tutorial

Written by Eze Sunday✏️ Errors are an inevitable part of every programming language, and Rust is no...

Why Use Rust?
rust2024-07-25
KremillyKremilly

Why Use Rust?

Creation of the Language Rust was created in 2006 by the Mozilla engineering team to...

[Rust]How to make string handing to frontend on tauri app
tauri2024-07-25
nk_Enukenk_Enuke

[Rust]How to make string handing to frontend on tauri app

#[tauri::command] pub fn simple_command()->String{ "String".to_string() } Enter...