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/

Top 10 Drupal Website in the World

Some of the world’s most influential businesses and organizations run their websites using Drupal: General Electric, eBay, The Economist, etc.

A good number of groups using the CMS might come as a surprise, however, and they prove its reliability for creating powerful and noteworthy sites. We checked the web to bring you our list of the top Drupal websites. For a list of Drupal’s 10 best sites, read on.

https://www.vardot.com/en/blog/top-10-drupal-websites-world-updated

Jornadas para los delegados de protección de datos en Sevilla

Disponibles para descargar las presentaciones de los ponentes de la jornada destinada a la formación de los delegados de protección de datos (DPD) de las administraciones autonómica y local de Andalucía.

http://www.ctpdandalucia.es/es/content/la-proteccion-de-datos-debate-en-sevilla

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

Drupal 8 successes and failures by Jeff Geerling

Y no es una opinión de cualquiera: Thoughts about Drupal 8, Drupal 7, Backdrop, the Drupal Community, DrupalCon’s meteoric price increases, DrupalCamps, and the future of the framework/CMS/enterprise experience engine that is Drupal have been bubbling up in the back of my mind for, well, years now. https://www.jeffgeerling.com/blog/2019/drupal-8-successes-and-failures

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

Explained: How does async work in Rust?

Asynchronous programming is a concept which allows not blocking the program workflow when waiting for the results of certain actions. So you can open a large file or query a database, but your program will continue processing each line afterwards.

Explained: How does async work in Rust? from rust