Explore >> Select a destination


You are here

rg3.name
| | www.softdevtube.com
5.3 parsecs away

Travel
| | Programming history is filled with bugs that turned out to be features and limitations that pushed developers to make even more interesting products. We'll journey through code that was so 'bad' it was actually good. Along the way we'll look at the important role failure plays in learning. Then we'll tame our inner perfectionists and
| | schmonz.com
5.2 parsecs away

Travel
| | [AI summary] The article explains Mob Programming, a collaborative software development approach where the entire team works together to solve problems, emphasizing its benefits and connection to Agile and Lean methodologies.
| | johannesbrodwall.com
4.4 parsecs away

Travel
| | [AI summary] The blog post discusses using Slack as an identity provider for small organizations through OAuth2 integration, highlighting its benefits for managing user access and authentication.
| | jmmv.dev
25.6 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.