Learn Code

The mindset and habits that helped me learn to code and successfully change my career
I’d like to share the story of how I pivoted my life path towards coding. This post is written from my unique perspective with the vain hope that someone equally as ambitious but as helpless as I was, might leave this page having received some encouragement.

Dependency injection and configuration of an ASP.NET CORE 3.x console app
Dependency Injection is an increasingly popular and prominent design pattern in modern application development.
ASP.NET Core 3.x is platformed on top of the generic host. A versatile object that let's us encapsulates an app's resources at start up and configure dependency injection.
I'm going to share how I configured my generic host with a bare-bones approach you can adapt. It implements logging, autofac and is configurable with appsettings.json.

Logging in .NET CORE 3, a useful guide and walkthrough for C# beginners and experts alike
This beginner-oritented article explores the built-in logging framework introduced in ASP.NET Core. Microsoft have seriously improved its built-in logging functionality and there are plenty of new features to get your teeth into.