AAAditya Abhinavindevabhinav.hashnode.dev·Apr 18 · 4 min readBeyond the Basics: A Deep Dive into the TCP 3-Way HandshakeAt some point in networking, you must have come across the term TCP 3-way handshake. It may look simple at first, but it hides deeper concepts underneath. When learning this topic, you might have lear00
AAAditya Abhinavindevabhinav.hashnode.dev·Dec 16, 2025 · 5 min readWhy I Found DBMS Confusing Until I Understood AnomaliesAnomaly — have you heard this term in your DBMS class? I know you have surely heard about it, because this is the root of most of the mess created in DBMS. An anomaly is a problem that is likely to ha00
AAAditya Abhinavindevabhinav.hashnode.dev·Dec 13, 2025 · 5 min readSQL's Safety Secret: The Power of Transactions.Transactions ? What is that ? Sending money to your father’s account from your bank account , is it? Well the answer is yes, anything that get its state changed from one to another in a instance of time can be called transaction. But we are in world ...00
AAAditya Abhinavindevabhinav.hashnode.dev·Dec 12, 2025 · 3 min readThe Python Secret No One Tells You: Unmasking the Magic of 'self'Is self a keyword? The answer is no!! Then what is this? Well before answering this question I would like to share where we use self. Lets see a code snippet : class Student: def __init__(self, student_id, name): self.student_id = student...00
AAAditya Abhinavindevabhinav.hashnode.dev·Mar 14, 2025 · 2 min readCracking the Code: Why OOP MattersThree major innovations in programming have been devised to cope with the problem of complexity. They are: Object Oriented Programming The Unified Modeling Language Improved Software development processes Object Oriented Programming (OOP) In thi...00