8bytes - Roadmap & Backlog
What's cooking in Season 1 and what's in my mind for next seasons.
THE ROADMAP
Season 1: Foundations: The Memory Kitchen
Topic - Memory Management & Runtime Integrity
Episodes:
[DONE] s01e01: Lasagna Ricorsiva! Layers to the Limit
Subtitle - “Recursion & the Stack: A deep dive into memory limits and how one recursive mistake triggered a massive Stack Overflow in The Software Restaurant.”
Deep Dive Topic - The Call Stack & Stack Frames. Explaining vertical memory allocation and why every function call consumes space until it hits a hard physical limit. Difference between stack and heap memory.
[DONE] e01e02: Last In, First Served - When a Single LIFO Queue Starved the VIP User
Subtitle - “Execution Contexts: Navigating the LIFO logic behind your code.”
Deep Dive Topic - The LIFO (Last-In, First-Out) principle. Understanding how the CPU jumps between tasks and why the most recent execution context must finish before the previous one can resume. When FIFO queues works better.
[TODO] e01e03: The Meatless Miss
Subtitle - “State Integrity: The high cost of Caching and Stale Data.”
Deep Dive Topic - Cache Invalidation. The architectural nightmare of keeping cached data in sync with reality and the performance “penalty” of a Cache Miss. Heap & Garbage Collector.
[TODO] e01e04: The Pineapple Glitch
Subtitle - “The Fragmentation Trap: Dealing with Large Object Heaps (LOH).”
Deep Dive Topic - The Heap, Memory Fragmentation & Garbage Collector. How large objects break up free space in the Heap and why “free memory” doesn’t always mean “usable memory.
[TODO] e01eE05: Stop the World
Subtitle - “System Latency: Understanding the Garbage Collection Pause.”
Deep Dive Topic - Garbage Collection (GC) Pauses. The mechanism of automatic memory reclamation and why high-performance systems occasionally “freeze” to clear out dead objects.
[TODO] e01eE06: The Ghost Tables
Subtitle - “Resource Lifecycle: The silent danger of Memory Leaks.”
Deep Dive Topic - Memory Leaks. How objects that are no longer needed stay “alive” in memory because a forgotten reference prevents them from being cleaned up. Memory Streams and other Disposable types.
[TODO] e01eE07 - The Double-Booked Steak
Subtitle - “Concurrency Conflicts: Data integrity in Shared-Memory environments.”
Deep Dive Topic - Race Conditions. What happens when two threads attempt to write to the same memory address simultaneously and how data becomes corrupted without proper synchronization.
[TODO] e01eE08: The Deadlock Diner
Subtitle - “Mutual Exclusion: When rigid locking policies freeze the system.”
Deep Dive Topic - Deadlocks. The danger of rigid “Locking” policies and how circular dependencies can bring a multi-threaded system to a permanent halt.
Disclaimer: I am still refining the order of episodes, the detailed comic plot and deep dive topics, so changes in the eposiodes list, episode names, topics, etc are still possible. I am also opened for ideas from you to enrich the season with any Memory Management topic I’ve missed. Stay tuned!
THE BACKLOG
Candidates for next seasons
Foundations: The Network Dinner - HTTP, Latency, TLS, Load Balancing, Retries, etc.
Foundations: The Database Cellar - Indexing, Locking, ACID, Consistency, RDBMS vs NoSQL, etc.
Foundations: The Health Inspector - Encryption, Authentication, OWASP, etc.
…
Scaling Up: The Catering Scale-up Story - decomposing the monolith to microservices.
Scaling Up: The Buzzer & The Service Hatch - Event-driven Architecture, CQRS, Kafka.
Scaling Up: The Cloud Food Court - On-prem vs. Cloud, Docker, Kubernetes, etc.
…
Modern Kitchen: The Robot Chef Experiment - AI & LLMs.
Modern Kitchen: The Secret Recipe - Cryptography & Hashing.
Modern Kitchen: The Kitchen Observation Deck - Logging, Metrics, and Tracing.
Modern Kitchen: The Ghost Kitchen - Headless CMS, API-first, Micro-frontends; “Kitchen-as-a-service”.
Modern Kitchen: The Agile Kitchen - Iterative Development, Feedback Loops, CI/CD, Feature Toggles.
…
Disclamer: This is not an ordered set of seasons, just collecting ideas and giving you a preview on what’s to come on 8bytes!
Last update 07 Jan 2026
☕Or buy me coffee (one-time tip)
No tip today?! No worries, just sharing my story will be most appreciated. Thanks!
Illustration credits: Comic scenes conceptualized by 8bytes and rendered by Nano Banana.


