Different Levels of Async in Rust
Often, developers today look at asynchronous I/O as a good thing, and as a binary choice. The reality is more nuanced. In this post, we'll explore the situation with a simple Rust example. (more…)
Read more »Having a CI system is very convenient to ensure that your project contains no
bugs. But running tests locally before pushing is also a great solution. By
running tests before every commit, we ensure that each of them is working
independently (as they shou… Read more