RSSAmplifier

Blog

Richard Clayton

Stumbling my way through the great wastelands of enterprise software development.

rclayton.silvrback.comRSS feed ↗3 posts

Latest posts

Writing Better Apps: Dependency Injection

Dependency Injection (DI) is a pattern where the "things" a component (function, class) depend on are passed into the component instead of the component trying to instantiate (or resolve it) itself. This practice tends to make code a lot more robust by reducing a component's scope. The DI pattern also simplifies the testing process by allowing developers to replace standard implementations of…

Algorithm: Winner in Tic-Tac-Toe

In Rust!

Unified Observability

Thinking about the future of logging, metrics, and tracing in applications.