Musings about async await again and why I think virtual threads| Armin Ronacher's Thoughts and Writings
A follow-up to how I wish async would work.| Armin Ronacher's Thoughts and Writings
Async Rust is powerful. And it can be a pain to work with (and learn). Async Rust can be a pleasure to work with, though, if we can do it without `Send + Sync + 'static`.| Evan Schwartz
Logic, Computer Graphics, OCaml, Rust, etc.| blag.cedeela.fr
I wrote a blog post ten years ago. How do I feel about it now?| blog.carlana.net
For just about as long as I’ve been working on async Rust, the topic of scoped tasks has come up. These are async tasks that borrow from their environment, and they would come in handy in a lot of situations. Last year the standard library stabilized thread::scope which allows synchronous threads to do this. You could imagine a similar API, but with async: asyncfn fanout(data: &Vec){task::scope(|s|{// Spawn subtasks to run in parallel.| Tyler Mandry
Trio is a new async concurrency| vorpus.org
In February 2015, I joined| vorpus.org
The talk itself:| vorpus.org
Async Python is slower than "sync" Python under a realistic benchmark. A bigger worry is that async frameworks go a bit wobbly under load.| calpaterson.com
Alternative titles: Unit Tests are a Scam Test Features, Not Code Data Driven Integrated Tests| matklad.github.io
There are tons of articles online that discuss the articles/talks/books that you must consume to become a true programmer [https://en.wikipedia.org/wiki/No_true_Scotsman]. I dislike this framing; it’s gatekeeping, plus software development is such a varied discipline that one person’s essential reading| Dan Lew Codes