Blog

Insights, tutorials, and ideas...

All Posts

Data Modelling
7 MIN READ

Data Modelling

Data ModellingData modeling is the process of creating a visual representation (diagram) of a data system that defines the structure, attributes, and relationsh

Ashutosh Kumar
Ashutosh KumarAuthor
#how a web browser works
3 MIN READ

#how a web browser works

🌐 How a Browser Works: A Beginner-Friendly Guide to Browser Internals:👉 What actually happens after I type a URL and press Enter?Most beginners think:“Browser

Abhijeet Singh Rajput Profile Photo
Abhijeet Singh RajputAuthor
#Git for Begineers
7 MIN READ

#Git for Begineers

Git for Beginners: Basics and Essential CommandsNow, let’s understand Git and VCS.When I started learning web development, managing my code felt chaotic.Files l

Abhishek Singh Rajput
Abhishek SinghAuthor
Tower of hanoi
1 MIN READ

Tower of hanoi

Tower of hanoi1. Problem ExplanationThe Tower of Hanoi is a classic recursive problem.You are given:Three pegs: A (source), B (auxiliary), C (destination)n disk

Divya Sachan
Divya SachanAuthor
Markov Decision Process (MDP)
5 MIN READ

Markov Decision Process (MDP)

Markov Decision Process (MDP)Date: 06 Oct 2025IntroductionA Markov Decision Process is a mathematical framework used for decision-making problems where outcomes

Ashutosh Kumar
Ashutosh KumarAuthor
NLP
3 MIN READ

NLP

Natural Language Processing (NLP)NLP and Text ProcessingNLP stands at the intersection of linguistics, computer science, and AI. It enables machines to understa

Abhishek Singh Rajput
Abhishek SinghAuthor
Merge Sort
2 MIN READ

Merge Sort

Merge SortMerge Sort is a Divide and Conquer algorithm.Given an array a[1…N], merge sort works as follows:Divide the array into two equal halves.Recursively app

Ashutosh Kumar
Ashutosh KumarAuthor
Quick Sort
3 MIN READ

Quick Sort

Quick SortIt is a popular sorting method based on the divide-and-conquer approach. Unlike merge sort, where the division is always in the middle, in quicksort t

Abhijeet Singh Rajput Profile Photo
Abhijeet Singh RajputAuthor
Decision Tree
6 MIN READ

Decision Tree

Decision TreeA decision tree is a tree-shaped diagram used to determine a course of action. Each branch of the tree represents a possible decision, occurrence,

Abhishek Singh Rajput
Abhishek SinghAuthor