/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

stenbrinke.nl
| | conradakunga.com
3.1 parsecs away

Travel
| | This is Part 1 of a series on Dependency Injection
| | bakedbean.org.uk
3.7 parsecs away

Travel
| | Technical blog covering all things .NET and goings on at Stack Overflow
| | damienbod.com
1.9 parsecs away

Travel
| | This article looks at setting up an ASP.NET Core application to use Azure Key Vault. When deployed to Azure, it works like in the Azure documentation but when working on development PCs, some changes are required for a smooth developer experience. Code: https://github.com/damienbod/UsingAzureKeyVaultInDevelopment I develop using Visual Studio and manage multiple accounts and test environments....
| | brandonsavage.net
31.1 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 [...]