Archive

Getting Started With Terraform (IAS)

1 minute read

Terraform is an open-source infrastructure as code software tool. Infrastructure as code (IaC) tools allow you to manage infrastructure with configuration fi...

Getting Started With Azure Pipelines

4 minute read

Continuous Integration (CI) is the practice used by development teams of automating merging and testing code. Continuous Delivery (CD) is a process by w...

ASP.NET CORE Cache

less than 1 minute read

Install Package Microsoft.Extensions.Caching.SqlServer

ASP.NET Core-WebApi with Swagger

2 minute read

OpenAPI Specification (formerly Swagger Specification) is an API description format for REST APIs. An OpenAPI file allows you to describe your entire API. AP...

.Net Heap and Stack

4 minute read

There are two places the .NET framework stores items in memory as your code executes : the Heap and the Stack.

Getting started MongoDB

1 minute read

A database stores one or more collections of documents. MongoDB stores documents in collections. A record in MongoDB is a document. MongoDB documents are sim...

Performance-Stdev

less than 1 minute read

Standard deviation (Stdev) could be a consistency proof in performance testing.

Algorithm-Dynamic Programming

less than 1 minute read

In a nutshell, it’s a method of solving a complex problem by breaking it down into a collection of smaller subproblems, solving them just once, and storing t...

Getting started Git

1 minute read

git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/username/username.github.io.git git push ...