Explore >> Select a destination


You are here

blog.ploeh.dk
| | jmmv.dev
4.9 parsecs away

Travel
| | Dependency injection is one of my favorite design patterns to develop highly-testable and modular code. Unfortunately, applying this pattern by taking Rust traits as arguments to public functions has unintended consequences on the visibility of private symbols. If you are not careful, most of your crate-internal APIs might need to become public just because you needed to parameterize a function with a trait. Let's look at why this happens and what we can do about it.
| | www.eventstore.com
4.1 parsecs away

Travel
| | A top-level introduction to the core principles for developers and software architects looking to build event-sourced systems.
| | herbertograca.com
4.9 parsecs away

Travel
| | This is a listing of articles about concepts I find essential for any developer to know. This is organized in order of most base structural concepts to most high level concepts and includes good practices, principles, and lists of articles, conference talks and books on software development. This page is in constant enhancement. Good Practices...
| | seasidetesting.com
21.7 parsecs away

Travel
| While I was recently working on some test automation task, I had the feeling that the automating of the tests seemed to be more important, than the actual automated tests (or checks) I created. It seemed to me that this is very similar to the saying that the planning in agile projects (and likely in...