InDev GeniusbyAbhijeet Rai·Jun 30, 2024Reversing Numbers in 32-Bit Intel Ubuntu Assembly: A Step-by-Step GuideThe x86 family of processors has evolved significantly over time, starting from the 8086, progressing through the 80286 and 80386, and…
InDev GeniusbyAbhijeet Rai·Jan 27, 2024Cracking Dijkstra’s Algorithm without tears (Even your Grandma will understand!)Alright alright, we all have shed tears while trying to crack “THE DIJKSTRA’S SHORTEST PATH ALGORITHM”.
InDev GeniusbyAbhijeet Rai·Dec 11, 2023How to delete a node from BST by Thomas H. CormenDeleting a node from the Binary Search Tree is a slightly tedious task. Not only do we have to delete the node. But also, we have to make…
InDev GeniusbyAbhijeet Rai·Aug 6, 2023The Problem and Solution of the Race Condition in ComputingRace conditions or hazards usually occur in multi-threaded or distributed environments when threads or processes share a state or states…
InDev GeniusbyAbhijeet Rai·Jul 11, 2023Prime Number Code in AssemblyLet’s try to find out if a given number is prime or composite in 32 bit Ubuntu — Intel assembly.A response icon1A response icon1
InILLUMINATIONbyAbhijeet Rai·Sep 8, 2022The British Monarchs and Queen Elizabeth IIHer Highness Queen Elizabeth II is the longest-ruling British monarch. Her Highness’ consort Prince Philip was the longest-serving consort…
Abhijeet Rai·Aug 13, 2022Why the definition of a subgraph is the way it is?A graph is a pair of (V, E) where V is a set of vertices and E is a set of edges.
InBetter ProgrammingbyAbhijeet Rai·Jun 10, 2022The Big Car Showroom and the Strategy Design PatternLet’s say we secured the positions of software developer interns at a supermarket. Our task is to develop an application for the market…
InDev GeniusbyAbhijeet Rai·Mar 28, 2022My parents, OTT and the adapter design patternThe adapter design pattern takes an interface and makes it compatible with another interface.
InDev GeniusbyAbhijeet Rai·Jan 31, 2022Oversimplified: Computing TerminologiesFile system: It is a module of the operating system whose job is to help users store and fetch data. The file system keeps track of free…