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

【译】从 Rust 到不只是 Rust:PHP 语言领域
rust2019-08-21
Samuel SuSamuel Su

【译】从 Rust 到不只是 Rust:PHP 语言领域

From Rust to beyond: The PHP galaxy 译文 原文地址:https://mnt.io/2018/10/29/from-rust-to-beyond-the-php-...

Learning Rust my way
rust2019-08-19
NúriaNúria

Learning Rust my way

Originally published at Codegram's blog A couple of years ago, back when I was doing my first steps...

Genetic Algorithm in the browser with WebAssembly
rust2019-07-30
Daniel BuddenDaniel Budden

Genetic Algorithm in the browser with WebAssembly

This is the second post in my series on Rust and WebAssembly with Genetic Algorithms. In this post I'...

Rust for Machine Learning: SIMD, BLAS, and Lapack
machinelearning2019-03-16
Erik PartridgeErik Partridge

Rust for Machine Learning: SIMD, BLAS, and Lapack

I love Rust. But, working in machine learning, it’s still hard to use Rust on a daily basis. 90% of m...

Rust existential type
rust2019-07-19
x1957x1957

Rust existential type

Rust existential type

WebAssembly — Is it as scary as it sounds?
rust2019-07-16
Jacky EfendiJacky Efendi

WebAssembly — Is it as scary as it sounds?

WebAssembly — Is it as scary as it sounds? 😱 WebAssembly (Wasm) has ...

Rust async await (1)
rust2019-07-15
x1957x1957

Rust async await (1)

Rust async await

【译】使用 Rust 和 WebAssembly 构建离线画图页面
rust2019-07-06
Samuel SuSamuel Su

【译】使用 Rust 和 WebAssembly 构建离线画图页面

【译】使用 Rust 和 WebAssembly 构建离线画图页面 原文地址:https://dev.to/sendilkumarn/create-dev-s-offline-...

Turning GitHub Into Your Own Registry
rust2019-06-11
Michael GattozziMichael Gattozzi

Turning GitHub Into Your Own Registry

Occasionally I have ideas. They're not necessarily good ideas and occasionally I make the mistake o...

Rust's `slice::windows` is really cool
rust2019-06-17
Austin TindleAustin Tindle

Rust's `slice::windows` is really cool

Cover photo by Gordon Williams on Unsplash This post is one of several that outline my perspective...

Rust future(stream) timeout
rust2019-06-12
x1957x1957

Rust future(stream) timeout

timeout in rust

Starting with Rust - Cargo
rust2019-06-05
Vijesh SalianVijesh Salian

Starting with Rust - Cargo

What is Cargo?

Starting with Rust
rust2019-06-04
Vijesh SalianVijesh Salian

Starting with Rust

Learning new ways to program

Rust's Bindgen + Fuse in 2019
rust2019-05-23
Sean PolicarpioSean Policarpio

Rust's Bindgen + Fuse in 2019

I will quickly show how I got bindgen (https://rust-lang.github.io/rust-bindgen) to generate the bind...

Creating a 'paged' Vec in Rust
rust2019-05-24
Sean PolicarpioSean Policarpio

Creating a 'paged' Vec in Rust

In this post I'll show you some code I wrote for paginating over a Vec collection in Rust. I needed t...

How to use more than one Trait implementation while avoiding conflicts
rust2019-05-21
Sean PolicarpioSean Policarpio

How to use more than one Trait implementation while avoiding conflicts

Problem Say you initially have code like this: struct DeserializeError(String); trait De...