• 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 + Tauri + Svelte Tutorial
rust2021-07-14
Jakub BarszczewskiJakub Barszczewski

Rust + Tauri + Svelte Tutorial

Rust Tauri Intro As Rust is getting more traction and more people want to learn...

The programming languages I like and why I like them
java2021-07-09
Deepu K SasidharanDeepu K Sasidharan

The programming languages I like and why I like them

Being a polyglot developer, there would be some language you like over others and here are mine.

Let's create a basic crud api with Rust using Tide
rust2021-07-11
Javier ViolaJavier Viola

Let's create a basic crud api with Rust using Tide

Some time ago I started to learn about rust-lang and after read and watch some stuffs I decided to...

Synchronizing Rust Types with Typescript
rust2021-07-12
Daniel ImfeldDaniel Imfeld

Synchronizing Rust Types with Typescript

For Ergo I’m writing the server in Rust with a front-end in Svelte and Typescript. Since Rust is a...

A Rust controller for Kubernetes
beginners2021-07-11
Nicolas FränkelNicolas Fränkel

A Rust controller for Kubernetes

To teach myself Kubernetes in general and controllers in particular, I previously developed one in...

Basic CRUD with rust using tide - refactoring
rust2021-07-11
Javier ViolaJavier Viola

Basic CRUD with rust using tide - refactoring

In the last post I started a basic crud using tide and we end up with a simple api that allow us to...

How to set up Tailwind CSS with Yew and Trunk
rust2021-07-10
arctic_hen7arctic_hen7

How to set up Tailwind CSS with Yew and Trunk

Yew is a fantastic tool for building web apps with Rust using WASM, though it has very little support...

Rust #4: Options and Results (Part 2)
rust2021-07-10
Matt DaviesMatt Davies

Rust #4: Options and Results (Part 2)

Last week I wrote about basic use of Option, Result and creating and using errors derived from...

Typeclasses in Python
python2021-07-08
Nikita SobolevNikita Sobolev

Typeclasses in Python

Typeclasses is a new (but familiar) idea of how you can organize behavior around your types

Rust Concept Clarification: Deref vs AsRef vs Borrow vs Cow
rust2021-07-06
AlexAlex

Rust Concept Clarification: Deref vs AsRef vs Borrow vs Cow

By HanDong Zhang Understanding by Module In fact, the classification by standard...

Getting started with GitHub Actions for Rust
beginners2021-07-07
Roger Torres (he/him/ele)Roger Torres (he/him/ele)

Getting started with GitHub Actions for Rust

TL;DR: Create an Action on GitHub so your code gets built and tested after every push, and do all...

REST API Wrapper with Rust
rust2021-07-05
Roger Torres (he/him/ele)Roger Torres (he/him/ele)

REST API Wrapper with Rust

TL;DR: This is a post for beginners where I show: How I structured the files in the project for...

JavaScript Dev Does Rust: Statements, expressions, and return values
rust2021-07-07
Austin CrimAustin Crim

JavaScript Dev Does Rust: Statements, expressions, and return values

In Rust, a statement is a piece of code that does not return a value and always ends with a...

Rust on the front-end
rust2021-07-04
Nicolas FränkelNicolas Fränkel

Rust on the front-end

Up until now, JavaScript has been the only ubiquitous language available in browsers. It has made...

Thread safety and Learning in Rust
rust2021-07-02
onesignaldevsonesignaldevs

Thread safety and Learning in Rust

Programming interviews can be a great learning experience for interviewers as well as interviewees....

Rust #3: Options, Results and Errors (Part 1)
rust2021-07-03
Matt DaviesMatt Davies

Rust #3: Options, Results and Errors (Part 1)

Options and Results The Option and Result types in Rust will be two of the most used types...