Mar 25 · 5 min read · One weekend in my hostel room, I found myself spiraling into a question that felt both obvious and oddly underexplored: if data is everything, and memory is the channel through which intelligence flow
Join discussion
Feb 9 · 16 min read · What is modulo : Modulo arithmetic is a mathematical operation that deals with remainders. When dividing one integer by another, we typically get a quotient and a remainder. This concept is formalized with the notation n%m, where n is the dividend an...
Join discussion
Jan 26 · 4 min read · Introduction LLVM is an open-source, modular compiler infrastructure, and Clang is its C++ front-end. In this project, I use LLVM to build a custom Clang compiler that introduces a new C++ builtin -counting the number of fields in a C++ struct / clas...
Join discussionJan 23 · 6 min read · Let’s see the defination of all of them and after that we will see them in detail. C Definition: A low-level, statically typed, procedural programming language. C is often called the "Mother of all Languages." It provides minimal abstraction, givi...
Join discussion
Jan 15 · 1 min read · This week was a bit mixed, but overall I’m happy with the progress I made in my Machine Learning journey. I completed almost all of my basic Python topics. I covered file handling and error handling properly, and to build more confidence, I also read...
Join discussion
Jan 13 · 3 min read · The most basic command-line argument program is #include <iostream> using namespace std; int main(int argc, char *argv[]) { return 0; } To run this program, we can follow the usual steps for running a C++ program. What does this program do? It si...
Join discussionJan 8 · 2 min read · 🗓️ Date: January 9, 2026📌 Challenge:🧩 Problem: Intersection of Two Linked Lists – LeetCode #160 (Easy)💻 Topic: Two Pointer, Linked List ✅ Problem Statement (Summary): Goal: Given the heads of two singly linked lists headA and headB, return the n...
Join discussion
Jan 7 · 2 min read · 🗓️ Date: January 8, 2026📌 Challenge:🧩 Problem 1: Linked List Cycle – LeetCode #141 (Easy)🧩 Problem 2: Middle of the Linked List – LeetCode #876 (Easy)💻 Topic: Two Pointer, Linked List, Fast & Slow Pointer ✅ Problem Statement (Summary): 🔹 Probl...
Join discussion