SSSumith S Raikarinsumithsraikar10.hashnode.dev·Jun 26, 2025 · 2 min read🚀 Day 13: EBS in AWS :create and attach your volumeFirst, What is EBS? EBS is like a virtual hard disk that you can attach to your EC2 instance. The best part? It keeps your data safe even if the instance stops or gets terminated — unless you delete it yourself. Here’s why people love EBS: It's pers...00
SSSumith S Raikarinsumithsraikar10.hashnode.dev·Jun 26, 2025 · 2 min read🚀 Day 12: Create an AMI in AWSWhat is an AMI in AWS? An Amazon Machine Image (AMI) is a snapshot of an EC2 instance that includes the operating system, application server, applications, and data. It allows you to launch new instances with the same configuration quickly. Why Crea...00
SSSumith S Raikarinsumithsraikar10.hashnode.dev·Jun 20, 2025 · 1 min read🚀 Day 11: Git MergeWhat is Git Merge? After working on a separate branch (like feature/login), you’ll want to bring your changes back to the main code. That’s where Git merge comes in. Git Merge combines two branches together, usually your feature branch into main or d...00
SSSumith S Raikarinsumithsraikar10.hashnode.dev·Jun 20, 2025 · 1 min read🚀 Day 10: Git BranchingWhat is Git Branching? Git branching lets you work on new features or fixes without affecting your main code. It’s like creating a copy of your project where you can experiment safely. Why Use Branches? Keep main stable Work on multiple features a...00
SSSumith S Raikarinsumithsraikar10.hashnode.dev·Jun 17, 2025 · 2 min read🚀 Day 09: Git-version control system types and stages in gitWhat is Git? Git is a free and open-source version control system (VCS) that helps developers manage changes in their codebase over time. It allows multiple developers to work on a project simultaneously without overwriting each other's work. Types o...00