Computer Science Podcast Summaries
Computer Science on Yedapo: 9 summarized podcast and YouTube episodes. Each includes key takeaways, core concepts and notable quotes with timestamps.

Why Auction Design Matters (ft. Nobel Economist Paul Milgrom)
a16z crypto
Jul 17, 2026
Nobel laureate Paul Milgrom argues that modern economic theory is often too abstract to solve real-world problems. By integrating computational constraints and algorithmic thinking, economists can design markets that are not just theoretically sound, but practically implementable and robust against complex, large-scale interference.
Key insight: The FCC incentive auction, which cleared 70 MHz of spectrum, succeeded because it treated a massive NP-hard graph coloring problem as a practical engineering challenge, ultimately saving the government billions while enabling modern 5G infrastructure.

The 20 Minute Masterpiece: Dijkstra's Algorithm
freeCodeCamp.org
Jul 10, 2026
Edsger W. Dijkstra developed one of the most influential algorithms in history—the shortest path algorithm—in just 20 minutes while drinking coffee. His work transformed how we navigate, route network traffic, and manage logistics by prioritizing mathematical simplicity over complex manual calculation.
Key insight: Dijkstra designed the entire algorithm in his head without using pencil or paper, arguing that this constraint forced him to avoid all avoidable complexity.

Before Blockchains, There Was State Machine Replication (ft. Barbara Liskov and Tim Roughgarden)
a16z crypto
Jun 19, 2026
Turing Award-winning computer scientist Barbara Liskov explains that modern blockchain protocols are essentially practical implementations of state machine replication, a concept she pioneered in the 1980s. She argues that as AI automates low-level coding, the future of computer science lies in high-level system design, modularity, and rigorous verification to ensure reliability.
Key insight: Liskov notes that her Viewstamped Replication protocol and Leslie Lamport’s Paxos were essentially the same discovery made independently in different places, illustrating how the right ideas often emerge simultaneously when the field is ready for them.

I read every major CS paper of the last 100 years...
Fireship
Jun 17, 2026
Modern AI is not a sudden miracle but the result of a century-long chain reaction of scientific breakthroughs. From Alan Turing’s definition of the algorithm to the massive scale of today’s Transformers, intelligence emerged when researchers combined the right mathematical foundations—backpropagation, information theory, and distributed computing—with unprecedented amounts of data and compute.
Key insight: Claude Shannon, the father of information theory, accidentally invented the spiritual ancestor to modern AI’s loss function when he used human guessing to measure the 'entropy' of English—the exact same principle used today to train large language models.

TCP a : Ensuring Your Data Gets There & in the Right Order! - Computerphile
Computerphile
Jun 13, 2026
The Transmission Control Protocol (TCP) functions as a stateful abstraction layer that transforms an unreliable, packet-dropping network into a dependable byte-stream. By utilizing a three-way handshake, sequence numbering, and acknowledgement mechanisms, TCP ensures data integrity and ordering, while managing inherent security vulnerabilities like SYN flood denial-of-service attacks.
Key insight: TCP sequence numbers do not start at one for security reasons; they begin with a random number to prevent attackers from predicting and hijacking connections.

ראש בראש מול גוגל ו-OpenAI: עם זאב פרבמן מלייטריקס
TrashTech (טראשטק)
May 17, 2026
זאב פארמן, מנכ"ל Lightricks, חושף כיצד החברה שלו מתחרה בענקיות ה-AI העולמיות עם תקציב נמוך פי עשרה. הפרק בוחן את השינוי בפרדיגמת התכנות בעולם ה-AI ומנתח האם מודלי שפה גדולים יחליפו את המתכנת האנושי או פשוט ישנו את מהותו.
Key insight: זאב פארמן טוען כי פריצות דרך אינטלקטואליות אמיתיות בתחום ה-AI לא יגיעו ממעבדות ענק של תאגידים, אלא מקהילת המחקר האקדמית שחוקרת בעיות יסוד מתמטיות.

Stanford's youngest instructor on InfoSec, AI, catching cheaters - Rachel Fernandez [Podcast #217]
freeCodeCamp.org
May 1, 2026
Rachel Fernandez shares how she navigated from a resource-starved high school to teaching at Stanford. She explores why C++ remains critical despite security concerns, the reality of burnout in elite institutions, and how to harness AI tools without losing fundamental technical competence.
Key insight: Admission officers at top universities literally create formal presentations to 'sell' their favorite applicants to the rest of the admissions committee—you need an internal champion, not just good grades.

CPU Kernel Mode - Computerphile
Computerphile
Jul 10, 2025
Modern CPUs employ a 'bouncer' mechanism to enforce privilege boundaries, ensuring user programs cannot inadvertently corrupt hardware or memory. By using restricted modes and controlled software interrupts, the system maintains stability even when running untrusted or poorly written code.
Key insight: The 'Blue Screen of Death' is often essentially the hardware bouncer catching the operating system itself attempting an illegal memory operation, proving that even core drivers have nowhere to hide from architectural security rules.

This Algorithm is 1,606,240% FASTER
ThePrimeagen
Jan 6, 2023
Optimizing a simple search problem requires moving beyond high-level data structures like HashSets toward low-level hardware-centric techniques. By leveraging bit manipulation, loop unrolling, and SIMD instructions, it is possible to achieve performance gains of up to 16,000 times compared to naive implementations.
Key insight: The final optimized solution processes 617 gigabytes per second, making the original O(N) solution appear virtually instantaneous by comparison.