/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

qafoo.com
| | solnic.dev
5.5 parsecs away

Travel
| | I was wondering what do we, rubyists, think about dependency injection these days as I remember some discussions about it which were mostly lots of post-java-trauma type of criticism. I had this blog post in the back of my head for a long time but knowing that this subject was sort of...explored...
| | brandonsavage.net
6.0 parsecs away

Travel
| | PHP more or less has two kinds of dependency injection available: constructor injection, and setter injection. Constructor injection is the process of injecting dependencies through the constructor arguments, like so: The dependencies are injected via the constructor, on object creation, and the object has them from the very beginning. Setter injection is different; instead of [...]
| | conductofcode.io
5.0 parsecs away

Travel
| | I had reason to revisit the automocked base class from a previous blog post. I am working with another code base and have new opportunities for automocking. We have a lot of internal classes. Approximately 30% of the classes are marked as internal. The old approach did not work anymore.
| | initialcommit.com
35.6 parsecs away

Travel
| Diving into the world of Hash Tables and understanding the underlying mechanics is extremely interesting, and very rewarding. So let's get into it and get started from the beginning. They are used commonly in algorithm design.