This is indeed a metaphor which should be more common in enterprise software.
Nice little post helping advocate for the use of Architectural Decision Records.
Of course, don't take everything at face value here. Still this gives good ideas on how to combine some design and architectural ideas together. The whole thing is not really Rust specific.
Both TDD and design docs complete each other well indeed. They just don't focus on the same activities in the project. That said, both later provide important insights on all the decisions taken to produce some code.
You can't be in the backseat when using those tools. Otherwise you might feel productive by cranking out code but it can't do the essential tasks for you (most notably actual problem solving or architecture thinking). The quality would clearly suffer.
Another way to approach Architecture Decision Records. A different format to try to foster a more collaborative approach.
Apparently this needs pointing out but there's more than async/await out there. Sometimes what you want is a simple event loop. Here illustrated in the Rust ecosystem.
Or how it's possible to expose an object-oriented like API for a data oriented framework without sacrificing on performances.
Didn't know this kind of architectural pattern had a name. Interesting. I wouldn't recommend it in any context though, but one more metaphor to reason with.
Definitely a handy catalog for designing distributed systems.
A bit of an unusual view about cohesion. The approach is interesting though.
Interesting food for thought. It's important to also approach domain models based on their workflows and events, not just their static relationship graphs.
A good post covering the feature flags concept and the different type of toggles you might have in a project.
Interesting architectural proposal for highly portable C++ based libraries.
Looks like a good set of tips of get more DDD practices in place without the badly understood vocabulary which usually comes with it.
A good reminder of why you often don't want to follow an architecture pattern to the letter. They should be considered like guidelines and depending on your technical context you should properly balance the costs. Here is an example with the Ports and Adapters pattern in the context of an ASP.NET application.
Nice post about pros and cons of ECS architectures.
Interesting piece... why talking about microservices generally leads nowhere. This is a too loosely defined term and we're often confusing means and ends.
Nice little paper I overlooked. I agree with it obviously. More tests are not a free pass to let complexity go wild. Architecture and design concerns are still very important even if you TDD properly.
I'm not a huge fan microservice based architectures. That said the parallel done there is interesting and a good reminder that the "write programs that do one thing and do it well" quote is incomplete.