Constraining Concurrent Threads in C#

We have a n number of task whic is running sequentially now. We want to convert this to a parallel concurrent task. There are multiple ways to acieve this. Lets see few of those here. Sequential task example To parallelize this, we could just turn every single download into a separate Task with Task.Run and wait for them all […]

VS Code Angular Debug Configuration

Angular is a great front-end framework for web apps. Visual Studio Code is a great source code editor. Their powers combined let you not only develop Angular app code but also debug it through the editor! VS Code debugging even works for TypeScript The Basic Guide Make sure to have Google Chrome installed in its default location Use NPM to install Angular CLI globallynpm […]

Deploy web app using kudu cURL ZipDeploy

There are different ways to deploy Azure web app in DevOps. The following steps to be followed for configuring DevOps release pipline to deploy azure web app using cURL kudu zipdeploy, Get the publish profile from azure web app In azure portal, navigate to the web app overview and click on Get publish profile. This […]