bitwise.mrvineetraj.liveWhy Version Control Exists: The Pendrive ProblemSo before Git and GitHub, what existed?Dinosaurs? Yes, technically.But after them, software developers entered a much darker age: the Plastic Era. This was the time when code was shared using a sacred object known as the Pen Drive. The Plastic Era of...Jan 3·4 min read
bitwise.mrvineetraj.liveSpinning Up Databases, Firewalls, and Backups — The Story of DataBridgeHow It All Started It all began with one random thought while I was procrastinating a deployment. I was sitting there wondering — is 512 MB of storage from Supabase or NeonDB’s free tier really enough for my project? Or should I host my own Postgres ...Nov 8, 2025·13 min read
bitwise.mrvineetraj.liveIntroduction to OOPsIntroduction Object-Oriented Programming (OOP) is a programming paradigm (a style of writing code) based on the concept of objects which can contain data and code. The data is represented as fields (often called attributes or properties), and the cod...Sep 5, 2025·5 min read
bitwise.mrvineetraj.liveLinked Lists in Data structure and AlgorithmsIntroduction LinkedList is one of the most important topic in DSA as it is used in almost every other important topic so it is really important to learn LinkedList from scratch with strong foundation Why LinkedLists ? first question that come in our ...Jul 19, 2025·7 min read
bitwise.mrvineetraj.liveArrays in Data structure and AlgorithmsArray is one of the most important topic in DSA as it is used in every other topic so it is the basic necessity for solving DSA problems Introduction What is DSA ? Nothing but a contagious way to store data of similar datatype ( eg: int, string , cha...Jul 4, 2025·10 min read