Mindful Codes Blog

Switch expression in C# 12 0

Switch expression in C# 12

The switch expression is a concise way to write a switch statement that returns a value. It is similar to the ternary operator, but it can handle multiple cases and patterns. For example, suppose...

What’s RabbiMQ and Why Erlang? 0

What’s RabbiMQ and Why Erlang?

RabbitMQ is an open-source message broker software that implements the Advanced Message Queuing Protocol (AMQP). It is designed to enable communication between distributed applications by allowing them to exchange messages through queues. RabbitMQ is...

How to Efficiently Read AWS Secrets in .NET Core 0

How to Efficiently Read AWS Secrets in .NET Core

you know that securing sensitive data in applications is critical. AWS Secrets Manager helps you protect access to your applications, services, and IT resources without the upfront investment and on-going maintenance costs of operating...

Docker for ASP.Net Core SPA projects 0

Docker for ASP.Net Core SPA projects

This time we look into how to create Docker for ASP.Net Core SPA projects. Create SPA Project When you create a netcore SPA project, either using VS or using dotnet new and some SPA templates as...

HSTS policy with ASP.Net Core 2.1 0

HSTS policy with ASP.Net Core 2.1

One of the novelties of ASP.NET Core 2.1 is that it automatically redirects all traffic from HTTP to https and, in addition, forces the use of HSTS. I am sure you know HTTPS well...

Container Runtimes 0

Container Runtimes

One of the most frequent questions that they ask me about containers is to what extent they penalize performance. It is a very logical question because, in the end, the containers offer a certain...