Entradas

What are the performance impacts of ‘functional’ Rust?

«The important thing to note is that the algorithm matters. How that algorithm is expressed (procedural, imperative, object-oriented, functional, declarative) generally doesn’t matter.»

https://stackoverflow.com/questions/55675093/what-are-the-performance-impacts-of-functional-rust

Learning Rust

https://learning-rust.github.io/index.HTML

CodeChain-io/codechain: Programmable multi-asset chain

Más repositorios tengo! CodeChain es una tecnología de blockchain de código abierto, óptima para desarrollar y personalizar sistemas de gestión de activos.

https://github.com/CodeChain-io/codechain

godot-rust, interfaz de alto nivel entre Rust y el motor de juegos Godot

GDNative proporciona un interfaz para permitir la interacción entre programas Rust y el motor de juegos Godot.

GitHub...: https://github.com/GodotNativeTools/godot-rust
crates.io: https://crates.io/crates/gdnative
docs.rs..: https://docs.rs/gdnative/latest/gdnative

Rust Actix Web + Magic link authentication

Magic links” are a different approach. Instead of a single, long-lived password, the web app generates a new, unique secret code every time you want to login. The web app then sends you an email or an SMS with a link to login. This link contains this unique secret code: your short-lived shared secret.

https://blog.approveapi.com/tutorials/rust-actix-web-approveapi-magic-login-link/

CityBound, an open source city simulation game in Rust

Además de la presentación del juego es muy interesante la discusión y los comentarios sobre la distinción Actors != Agents.

CityBound – an open source city simulation game in Rust (and using actors) from programming

Si programas en Rust …

Si programas en Rust con Visual Studio Code ya sabrás que se ha liberado la version 0.4.2 de la extensión crates corrigiendo algunos errores. https://t.co/OPXngLdegK

A basic web application with Rust and Actix-web

The actix framework handles requests asynchronously, but in this case the handlers themselves are not implemented asynchronously, for example using futures. I decided to keep it simple at first.

A Basic Web Application with Rust and Actix-web from rust