Local Logins using ASP .NET Core and JWT

Introduction Some line of business (LOB) applications or internal systems have predefine set of users and corresponding login information. In situations like those using a database mechanism to store user information is an overhead. Combine this overhead with Microsoft’s heavy duty implementation of Identity framework with persisting roots in entity framework, you have a recipe … Read more

Dynamic C# Introduction

Introduction C# is generally considered as a statically typed language. However it also offer very useful dynamic capabilities which comes handy in certain situations. In this post I will give you a very basic introduction of dynamic C#. Why Dynamic C# There are many reasons why you would like to use dynamic C# capabilities. Few … Read more

Key Linux (Bash) Commands Table

Command Description whoami outputs the username hostname outputs the computer name ls -l  outputs the long list of directory man ls Show manual cat /etc/issue outputs the distribution and version (ubuntu) pwd print working directory cd / To navigate into the root directory cd or cd~ To navigate to your home directory cd – Navigate … Read more

Deploying .NET Core, Angular and Postgres Web Application on Ubuntu (nginx)

Introduction In this post, I will be deploying and running a .NET Core, Angular and Postgres application on an Ubuntu VM running in azure cloud. This involves different tasks in different technologies to be done and I’ve previously written few posts about these different topics. In this post, I will combine all those learning so … Read more