As developers we know configuration is extremely important and is used in most projects. Injecting in IConfiguration into dependencies and retrieving it by key like this: _configuration[“Section:Key”] is a common…
Organising Imports With Typescript Path Mapping.
I read about this cool feature a while back, as I didn’t like the way the import paths looked especially when it’s the first thing you tend to read when…
Arrow Functions – Using ‘this’ ES6.
When coding a react component in my spare time. It seems like when logging out this to the console it should have a value. JSFiddle: https://jsfiddle.net/davebeaumont/tujzar6c/1/ After a bit of…
Using Async Await in a Foreach Delegate.
When following the async await TAP pattern particularly when executing an async method inside a loop, such as a foreach delegate. Instead of writing a foreach loop you may want…
Clean Code with Angular Feature Modules
When creating an application from scratch it is easy to plan out and create the required components in order to achieve the MVP (Minimum Viable Product) that meets the requirement….
Debugging Helm Templates
When installing Helm charts, at some point you will need to test your code and ensure that the template is rendering as expected. It’s like a debug mode before you…
What are Docker Images and Containers?
When learning the fundamentals of Docker and understanding that Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. You are probably asking…