SGSrihari Gobidesiinsriharigobidesi.hashnode.dev·Oct 10, 2025 · 3 min readGIT Useful CommandsHere’s a comprehensive list of essential Git commands, organized by purpose — from beginner basics to more advanced usage. 🧱 1. Git Setup git config --global user.name "Your Name" git config --global user.email "you@example.com" Set up your name a...00
SGSrihari Gobidesiinsriharigobidesi.hashnode.dev·Oct 10, 2025 · 3 min readAWS remote machine UI accesscomplete step-by-step guide to access a GUI desktop on an Ubuntu EC2 instance via Remote Desktop (RDP) — starting from launching the instance to connecting from your PC using Git Bash or Remote Desktop. ✅ STEP 1: Launch Ubuntu EC2 Instance Go to AW...00
SGSrihari Gobidesiinsriharigobidesi.hashnode.dev·Aug 19, 2025 · 1 min readOOP (Object-Oriented Programming) in PythonOOP in Python is a programming paradigm based on the concept of “objects”, which bundle data (attributes) and behavior (methods) together. 🚀 Core Concepts of OOP in Python: ConceptDescription ClassA blueprint for creating objects. ObjectAn i...00
SGSrihari Gobidesiinsriharigobidesi.hashnode.dev·Aug 19, 2025 · 1 min readShallow Copy vs Deep Copy🔁 Shallow Copy vs Deep Copy (Short Definition in Python): Shallow Copy: Copies the object structure, but nested objects are shared (same references). Deep Copy: Copies the entire object, including all nested objects (new references). Examples: #...00