Explore >> Select a destination


You are here

blog.mrhaki.com
| | honza.pokorny.ca
11.5 parsecs away

Travel
| | Thoughts of an open source developer with a theology degree. Honza Pokorný is a web developer and an armchair theologian in Halifax, Canada
| | www.kencochrane.com
20.8 parsecs away

Travel
| |
| | dougseven.com
16.8 parsecs away

Travel
| | Today I am at re:Invent 2022 in Las Vegas, NV. I am spending my days talking to AWS customers about Amazon CodeWhisperer - a new developer productivity service that will accelerate application development by providing automatic code recommendations based on the code and comments in your IDE. For developers, Amazon CodeWhisperer is an IDE extension...
| | jmmv.dev
99.7 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.