1. Deploying Dotnet Core on AWS Linux

    In this post, I will be sharing in detail my experience of hosting Asp.Net Core Web Api on AWS EC2 Linux instance. Some of the steps are detailed and you might want to skip those steps. …


  2. Angular 4 with Ngrx

    I have utilized this template as a starting point for several projects. It consists solely of a front-end interface using Angular and Redux. …


  3. Observables Learnings

    Async Type Comparsions Callbacks Promises Observables Number of results 0 to Infinite 0 or 1 0 to Infinite States Depends on arguments resolved with optional value rejected with error next() with value error() with error completed() Can be cancelled No Not yet* Yes When is work (e.g. network request) done? As soon as callback is registered (“eager”) As soon as promise is created (“eager”) Only once subscribed to (“lazy”) for cold observables. Composable? Not at all Somewhat Very! …


  4. Git Learning

    This post is to keep my git knowledge at one place. It consists of the commands used frequently and will evolve as I discover more about git. Concepts Working Areas It’s useful to visualize the workspace and the best diagram for this is Oliver Steel Git Data Transport Commands. …