Notas sobre cómo configurar VSCode para depurar Rust
Debugging Rust under VSCode on MacOS?
https://www.reddit.com/r/rust/comments/bl4sit/debugging_rust_under_vscode_on_macos/
Esto me interesa, ¿plugins con Rust sin recompilar?
How would you go about creating an app architecture that supports plugins? I’m thinking about Java where you can just drop .jar files and have them being loaded into your app without the need to recompile the main app.
https://www.reddit.com/r/rust/comments/ble186/how_would_you_go_about_creating_an_app/
Integración Continua con GitLab para principiantes
Cada vez que un desarrollador cambia código y guarda los cambios con un commit y los envía a GitLab, quedará a disposición de otros desarrolladores para que puedan revisarlo.
Pero GitLab también puede iniciar otras operaciones si se ha configurado GitLab CI / CD. Este trabajo es ejecutado desde un servidor y ahí empieza la magia.
https://about.gitlab.com/2018/01/22/a-beginners-guide-to-continuous-integration/
Rust parallelism for non-C/C++ developers
First, we need to understand why parallelism is hard, and the reason is that the hardware, the OS, and the compilers are too complex. Since 1970 processor cores do not work with the memory directly and instead use a complex hierarchy of caches and write buffers.
https://medium.com/nearprotocol/rust-parallelism-for-non-c-c-developers-ec23f48b7e56
genpass for Rust
A simple yet robust commandline random password generator.
Multiplatform (Linux, Mac, Windows). Fast.
You can use it generate keys or passwords in scripts or use it as your primary desktop password generator.
Una hoja de ayuda para Rust
Me encanta esta hoja de referencia rápida a funciones de la librería std
agrupadas según tipos asociados: