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

Gcp

October 13, 2025 路 0 min 路 0 words 路 Me

AWS

AWS Basic setup and IAM configuration Creating an AWS account gives you access to the entire suite of Amazon Web Services. The first user you create is the AWS Account Root User. This user has unrestricted access to all resources in the account, including billing, and should NEVER be used for day-to-day tasks. Immediately after account creation, the absolute most critical security step is to set up a secondary, secure user for daily operations using AWS Identity and Access Management (IAM). ...

October 13, 2025 路 8 min 路 1607 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. Installing and verifying the installation Terraform can be installed by visiting the hashicorp officail website, it is available for all major operating systems like windows, mac and linux. Install | Terraform | HashiCorp Developer. ...

August 29, 2025 路 7 min 路 1446 words 路 Aum Pauskar