Bookmarks and note to users

Bookmarks and note to users A note for the users of this blog Most visited pages Sem 6 lab expts 馃槶馃槄 Docker MERN Lab expts 馃槶馃槄 Computer networks Note to users Find any issues? Want to suggest changes? Feel free to do so by creating a GitHub pull request the button below.

April 17, 2024 路 1 min 路 52 words 路 Aum Pauskar

Web Protocols

Web Protocols HTTP Hypertext Transfer Protocol (HTTP) is an application-layer protocol for transmitting hypermedia documents, like HTML, across the internet. It operates on a client-server model, where a client (e.g., a web browser) sends a request to a server, and the server returns a response. HTTP is the foundation of data exchange on the World Wide Web. HTTP Request-Response Model HTTP is a stateless protocol, which means each request from a client is treated as an independent transaction; the server doesn鈥檛 remember previous requests. This can be overcome with technologies like cookies. The communication is initiated by the client and follows a specific structure for both the request and the response. ...

August 29, 2025 路 4 min 路 667 words 路 Aum Pauskar

Terraform

Terraform Terraform is an open-source Infrastructure as Code (IaC) tool developed by HashiCorp. It allows you to define and manage your infrastructure resources鈥攕uch as virtual machines, networks, and databases鈥攊n human-readable configuration files. Instead of manually provisioning resources through a cloud provider鈥檚 web console, you can use Terraform to automate the process, making it repeatable and less prone to error. Basic commands The basics of Terraform revolve around a few core concepts and commands that form the standard workflow. You鈥檒l use these to initialize a project, plan changes, and apply them. ...

August 29, 2025 路 5 min 路 895 words 路 Aum Pauskar

Kubernetes

Kubernetes Kubernetes, often abbreviated as K8s, is an open-source project that originated at Google. Version one of Kubernetes was released in July 2015. It was the third generation of container schedulers from Google, following previous projects like Borg and Omega. Google later donated Kubernetes to the Cloud Native Computing Foundation (CNCF), which now supervises its development. Its primary purpose is to serve as the leading container orchestration tool. It is designed as a loosely coupled collection of components for deploying, managing, and scaling containers. Kubernetes is vendor-neutral, meaning it is not tied to a single company and can run on all cloud providers. There is also a significant community ecosystem surrounding it. ...

August 28, 2025 路 9 min 路 1906 words 路 Aum Pauskar

ASP.NET

ASP.NET Basics of the code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 var builder = WebApplication.CreateBuilder(args); builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); if (app.Environment.IsDevelopment()) { app.UseSwagger(); app.UseSwaggerUI(); } app.UseHttpsRedirection(); app.Run(); Explaination Certainly! Let鈥檚 break down the provided code snippet line by line. This code is typically found in the Program.cs file of an ASP.NET Core application and is part of the setup for a minimal API or web application. ...

July 22, 2025 路 5 min 路 941 words 路 Aum Pauskar