The Monsters Weekly - Episode 23 - 'Working With Sensitive Data - User Secrets'

If you’re working on a project where you’ll be sharing code with someone else, particularly if you’re keeping the source code in a public repository, you’re going to want to make sure that sensitive data is separate from your project. This includes things like API keys, tokens for services and perhaps passwords or other similar data.

The Monsters Weekly - Episode 23 - 'Working With Sensitive Data - User Secrets'

The Monsters Weekly - Episode 17 - 'Structured Logging with Serilog in ASP.NET Core'

In our previous episode we had a look at the built-in mechanisms which we are afforded by virtue of using ASP.NET Core. Now it’s time to take a deeper look at a fundamental concept to modern logging - structured log messages - and how to take advantage of it.

The Monsters Weekly - Episode 17 - 'Structured Logging with Serilog in ASP.NET Core'

The Monsters Weekly - Episode 16 - 'Logging Basics in ASP.NET Core'

So, you’re planning on sending your app out into the wild. Have you thought about what is going to happen when things go sideways? How will you recover when the excrement hits the oscillating device? Without having a reliable way to track down what went wrong, you’ll be in the weeds for sure, but logging will help set things right.

The Monsters Weekly - Episode 16 - 'Logging Basics in ASP.NET Core'

The Monsters Weekly - Episode 12 - 'Dependency Injection in ASP.NET Core'

What is dependency injection, and how can it be leveraged in your project? Monster James walks through the setup in an application as it is configured in the default project in ASP.NET Core and MVC Core in this episode of the Monsters Weekly.

The Monsters Weekly - Episode 10 'Loading Settings From a Database in ASP.NET Core'

While configuration has been greatly simplified in ASP.NET Core, it won’t provide an answer for all the situations all of the time. One such case is when you need to save and load configuration settings from a database so, here, we’ll show you how.

The Monsters Weekly - Episode 10 'Loading Settings From a Database in ASP.NET Core'

While configuration has been greatly simplified in ASP.NET Core, it won’t provide an answer for all the situations all of the time. One such case is when you need to save and load configuration settings from a database so, here, we’ll show you how.

The Monsters Weekly - Episode 8 'Tour of the Default ASP.NET MVC Project'

There is a lot of newness in the default project in MVC Core, so we wanted to break it down and help make it feel a little more familiar. This is episode #8, and we’re walking you through the “File -> New Project” experience.