Fasten your Data Layer with Dapper (A .NET Micro ORM)

Introduction Dapper is .NET based light-weight, fast and simple to use Micro ORM created by brilliant Stack Exchange team. The word ORM means Object Relation Mapper, means it facilitates mapping b/w .NET objects and database and that is its focus. One great thing about Dapper that it works with any database. So, its not just … Read more

Internet Information Services (IIS) – Quick Start

Introduction IIS is a well known software to deliver websites on Microsoft windows platform. You can use it to delivery static contents, ASP .NET Web applications or ASP .NET Core web applications. It have many other features e.g. it can limit the exposed public surface area of the apps that it hosts. Also, it can … Read more

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