DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Jordan LastStop bundling - use Zwitterion
TLDR Zwitterion is a web dev server that lets you import anything, if by anything you mean...

Maxim MolchanovVonmo Trade Experiment. Part 3: Order book. Processing and storing trade info
In the previous article of the series we got familiar with order types. Today we’ll take a closer look at an order book, processing orders, and dealing with issues of trade information storage.

Shogo OtakeIntroducing MonsterEngine! A high-performance web server written in Rust.
MonsterEngine is a web server which is designed for Plamo apps and can be used from various programmi...

Francois Falala-SechetAnnouncing CSML, a new open-source language dedicated to building powerful, enterprise-ready and interoperable chatbots
Chatbots are a powerful tool as a universal UX to solving automation issues at scale. Like the web be...

Sendil KumarWebAssembly Module - Sections
WebAssembly Module The simplest WebAssembly Module is The first four bytes 00 61 73 6d...

BCDay32:macro_rules! - 100DayOfRust
We can use macro_rules to match a pattern and generate code. macro_rules! say_hello { () =>...

Abhishek GuptaRust: Ownership and Borrowing
I am learning Rust and made some notes about Ownership and Borrowing concepts note that I am still...

Matan MatesContainerized builds for Rust on the ESP32
What is the ESP32? The ESP32 "is a series of low-cost, low-power system on a chip microcon...

BCDay31:Generic: trait - 100DayOfRust
Trait is like virtual-class in C++, or interface in lots of other languages. trait Animal { fn...

Sachin Sharma6 Programming Trend Predictions for 2020
Software development is one of the few businesses where one needs to be continually involved in learn...

Adam Crockett 🌀The moment you write a macro. 💡
It's my second dip into Rust, the first time I got mad and rage quit a project because Rust is so dam...

Tore PettersenRust Web Development Tutorial: REST API
Originaly posted on cloudmaker.dev In this tutorial, we are going to create a REST API in Rust with...

Sendil KumarMemory Model in WebAssembly
For JavaScript to execute, the JavaScript engine should download the resources. The JavaScript engine...

Maxim MolchanovVonmo Trade Experiment. Part 2: Orders. Types and processing features
This article deals with order types, the way they are executed at an exchange, and limitations imposed by trading system. If you are curious to know what all those DAY, GTC, FOK, IOC, GTD, GAT, MOO, MOC, LOO, LOC, MIT, OCO, OSO, PEG mean, you are welcome.

Bruno OliveiraLearning Rust - Introduction to Cargo and project structure
Introduction So far, all the Rust code we have written is self-contained and small enough to fit in...

Luca BarbatoOptimizing your code
This is the second post about optimization, in the first one I tried to give you the big picture of m...