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

In defence of (some) fragmentation
fragmentation2020-03-08
Steve PrydeSteve Pryde

In defence of (some) fragmentation

Any time a new project is announced, especially in a relatively young language such as Rust, there wi...

Using Types To Prevent Unit Conversion Errors
rust2020-03-09
Steve PrydeSteve Pryde

Using Types To Prevent Unit Conversion Errors

What if we could use static types to prevent passing a value in Centimetres to a function that expect...

Start playing with RUST + Cargo
rust2020-03-08
Johnny BoyJohnny Boy

Start playing with RUST + Cargo

Installation Let us start setting up our environment by following what is in the official...

Rust NIFs in Elixir
elixir2020-03-03
Byron HamblyByron Hambly

Rust NIFs in Elixir

Rustler - Native Implemented Functions (NIFs) in Rust from Elixir Elixir is a dynamic, strongly...

Rust: Enums and Pattern Matching
rust2020-02-29
Abhishek GuptaAbhishek Gupta

Rust: Enums and Pattern Matching

This blog covers concepts related to the following Rust topics: Enum Pattern matching the code i...

Day37:Post JSON to API with surf - 100DayOfRust
rust2020-02-29
BCBC

Day37:Post JSON to API with surf - 100DayOfRust

We can use Rust's surf crate to post application/json type data to API: Cargo.toml: [dependencies]...

How to convert Excel to HTML and JSON and vice versa
html2020-02-28
Pavel LazarevPavel Lazarev

How to convert Excel to HTML and JSON and vice versa

No doubt, Excel is the most popular tool for data processing starting from simple Excel tables with p...

Rust 为什么需要生命周期注解
rust2020-02-26
sdtttttsdttttt

Rust 为什么需要生命周期注解

fn main() { let b; { let a = 10; b = &a; } println!("{}",...

Vanity Rust - Implementing Fn on Rust Structs
rust2020-02-25
Nate ClarkNate Clark

Vanity Rust - Implementing Fn on Rust Structs

Learn how to use nightly rust features to treat your structs like functions.

Inside Rust at Embark 🦀
rust2019-12-06
Ari VAri V

Inside Rust at Embark 🦀

A peek inside our day-to-day work with Rust and open source game development Originally pu...

Deploy Elixir apps utilizing Rust NIFs on Render.com
elixir2020-02-19
Frank KumroFrank Kumro

Deploy Elixir apps utilizing Rust NIFs on Render.com

After a long week of dealing with servers at my day job I had no urge to do the same with my side p...

Oxidizing code
rust2020-02-24
Luca BarbatoLuca Barbato

Oxidizing code

Last week I presented to my local rust meetup a neat tool called c2rust. Next month, if everything re...

Deno dependencies, xstate
help2020-02-23
Adam Crockett 🌀Adam Crockett 🌀

Deno dependencies, xstate

I have been playing with deno again lately, seems like it's come quite far now. But what I am wonderi...

Learning Rust - Organizing our code with modules
rust2020-02-23
Bruno OliveiraBruno Oliveira

Learning Rust - Organizing our code with modules

Introduction In the previous post in this series, we looked at Cargo, and how the build system and p...

Day36:Calculate sha1 with crypto and sha1 crate - 100DayOfRust
rust2020-02-23
BCBC

Day36:Calculate sha1 with crypto and sha1 crate - 100DayOfRust

There are 2 crates you can use to calculate the sha1 value: crypto and sha1: Cargo.toml: [dependen...

Hyper Webapp Template
beginners2020-02-20
Ben LovyBen Lovy

Hyper Webapp Template

Like many of us, I'm quite lazy. When making a wep application, lots of the core functionality will...