Intro In this post of the concurrency series we will provide insights on asynchronous programming. So what is asynchrony? Succinctly, is about not blocking the thread that initiates an operation. The key difference between synchronous and asynchronous is that the latter can start a new operation before the first one completes. For example, a user clicks on a button to fetch…
Publish Angular 2 App from Visual Studio to Azure
In this post i will share my experience on how to deploy an Angular 2 app from Visual Studio to Azure. This is one way that worked for me, if you know a simpler way please share it. I am pretty sure most of us when started learning Angular 2 have came across the 5 MIN QUICKSTART. So…