arnavverma.hashnode.devKubernetes Pods1. Understanding Pods as the Smallest Deployable Unit What Exactly Is a Pod? A Pod is Kubernetes' atomic unit of deployment. You cannot deploy anything smaller than a Pod. While you might think of containers as the fundamental building block (since t...Feb 18·28 min read
arnavverma.hashnode.devAdvanced Graph TheoryPART 1: ADVANCED STRONGLY CONNECTED COMPONENTS ALGORITHMS Tarjan's Algorithm for Strongly Connected Components (Full Detail) Tarjan's algorithm finds all strongly connected components in a directed graph in a single depth-first search pass. It's more...Dec 20, 2025·32 min read
arnavverma.hashnode.devGraph Theory ExplainedTable of Contents Introduction to Graph Theory Basic Definitions and Terminology Types of Graphs Graph Representation Graph Traversal Algorithms Shortest Path Algorithms Minimum Spanning Trees Network Flow Graph Coloring Matching Theory Planarity Co...Dec 20, 2025·42 min read
arnavverma.hashnode.devLanguage Model DistillationKnowledge distillation is a technique for training smaller neural networks to perform like larger ones. The basic idea is simple: train a small "student" model to copy the behavior of a large "teacher" model. This lets you compress years of training ...Oct 23, 2025·13 min read
arnavverma.hashnode.devAdvanced Database Topics: Complete Guide1. Distributed Databases What is a Distributed Database? A distributed database is a database stored across multiple physical locations, either on different machines in the same location or scattered across a network. The system appears as a single l...Oct 6, 2025·32 min read