Rust para optimizar una plataforma con 11 millones de usuarios concurrentes

Interesante caso de uso: «We needed a data structure capable of holding hundreds of thousands of entries, sorted in a particular way that can accept and process tons of mutations, and can report back indices of where things are being added and removed

https://blog.discordapp.com/using-rust-to-scale-elixir-for-11-million-concurrent-users-c6f19fc029d3

Announcing diesel-factories 0.1.0

Inserting data into your database in unit/integration tests.

https://www.reddit.com/r/rust/comments/bq4ysv/announcing_dieselfactories_010/

HTTPie

A command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more.

https://httpie.org/

Goodbye AWS: Rolling your own servers with Kubernetes

Kubernetes allows users to realize many of the cloud benefits while running on bare metal servers.

https://gravitational.com/blog/aws_vs_colocation/

7 técnicas CSS que serán tendencia

http://www.instantshift.com/2019/05/01/new-CSS-techniques-2019/

Un servidor HTTP ¿estático? hecho en Rust

https://www.reddit.com/r/rust/comments/bneoy6/i_wrote_about_creating_a_static_http_server_with/

Machete para WordPress

Machete es una colección de herramientas ligeras y sencillas que solucionan molestias comunes de WordPress usando tan pocos recursos como sea posible. Machete no cubre todos los casos posibles de uso, pero hay una gran cantidad de sitios que necesitarían menos plugins si usaran Machete.

Rust vectors can contain …

Rust vectors can contain any number of elements (depending on memory) of the same type. Vectors are heap-allocated in Rust.

https://dev.to/dandyvica/lists-arrays-vectors-linear-containers-in-python-ruby-and-rust-part-3-19jc

Rust Patterns: Enums instead of Booleans

The code intention is much more readable, more self documenting, and easier to grok.

http://blakesmith.me/2019/05/07/rust-patterns-enums-instead-of-booleans.HTML