Often times I had to change something in our infra code workflow and needed a quick way to test a specific bicep file. In the terminal, make sure you are in the folder which has the bicep file. And then use the deployment command as shown below and it will deploy it to the resource …
Author Archives: Bobby Jose
Configure SQL Server in docker for Mac
I work predominantly in C# and ASP.Net and I am more comfortable working with Microsoft SQL server in all projects. My personal laptop being a Mac its always a struggle to get it working especially with M1 and ARM. Docker always comes to the rescue in these situations and I am just listing down the …
Implementing Parallel Execution in C#
It is quite common to have usecases where we need to parallel execution to have over items in a list and wait for the whole process to be complete. C# allows tasks to achieve this result. But there are many ways to do the same and here I am just exploring some of the ways, …