Deep Dives
A curated route through the library on one topic, within one site. Where a Pathway deliberately crosses site boundaries, a Deep Dive goes deep on one topic instead — start to finish, without leaving the site you're already comfortable with.
▸Computer Science(4 series)
How Programs Actually Run
Essentials2 steps
Traces what actually happens between writing code and a CPU executing it, from the fetch-decode-execute cycle to how memory is laid out at runtime.
Languages & Parsing
Essentials → Efficiency5 steps
Explains the formal models and pipeline stages — regex syntax, state machines, regex engines, parsers, and compilers/interpreters — that turn raw text into executable meaning.
Operating Systems
Efficiency4 steps
Covers the kernel's core responsibilities — privilege boundaries, scheduling, process/thread management, and instruction-set differences — that every program depends on.
Web & APIs
Efficiency4 steps
Traces the full request/response lifecycle between client and server, from HTTP statelessness through request/response anatomy to auth.
▸Kubernetes(4 series)
Core Primitives
Essentials5 steps
Covers the foundational Kubernetes objects — Pods, Services, ConfigMaps/Secrets, Namespaces, and Labels/Selectors — that everything else in the cluster is built on.
Workloads
Essentials5 steps
Walks through the workload objects you actually deploy in production — Deployments, ReplicaSets, Jobs/CronJobs, resource requests/limits, and health probes.
Architecture
Essentials → Efficiency3 steps
The control plane and node model at the essentials level, then how kubelet talks to container runtimes via the CRI and how the scheduler decides which node a Pod lands on.
Networking
Essentials → Efficiency5 steps
How traffic enters and is secured in a cluster — LoadBalancer Services and Ingress at the essentials level, then Gateway API, automated TLS, and automated DNS as the platform matures.
▸Linux(5 series)
The Command Line
Essentials4 steps
Covers core shell fluency — command syntax and completion, the filesystem hierarchy, finding files, and finding help.
Text & Pipelines
Essentials2 steps
Covers building command pipelines with pipes/redirection and searching text with grep.
Users & Access
Essentials2 steps
Covers Linux file permissions (chmod/chown/umask) and user/group account management.
Bash Scripting
Essentials6 steps
Builds up Bash scripting skill from a first script through variables, arguments, conditionals, loops, and reusable functions.
System Isolation
Efficiency3 steps
Explains the kernel primitives — namespaces, cgroups, capabilities, and swap/OOM behavior — that isolate and constrain processes (and underlie every container).