
Insights from recent episode analysis
Audience Interest
Podcast Focus
Publishing Consistency
Platform Reach
Insights are generated by CastFox AI using publicly available data, episode content, and proprietary models.
Most discussed topics
Brands & references
Total monthly reach
Estimated from 1 chart position in 1 market.
By chart position
- 🇲🇾MY · Technology#138500 to 3K
- Per-Episode Audience
Est. listeners per new episode within ~30 days
250 to 1.5K🎙 Weekly cadence·25 episodes·Last published 6mo ago - Monthly Reach
Unique listeners across all episodes (30 days)
500 to 3K🇲🇾100% - Active Followers
Loyal subscribers who consistently listen
150 to 900
Market Insights
Platform Distribution
Reach across major podcast platforms, updated hourly
Total Followers
—
Total Plays
—
Total Reviews
—
* Data sourced directly from platform APIs and aggregated hourly across all major podcast directories.
On the show
Recent episodes
Episode 25 - Micro Frontends Patterns
Dec 20, 2025
24m 51s
Episode 24 - AI Agents
Dec 13, 2025
18m 38s
Episode 23 - Building a minimal reactive framework
Jan 17, 2025
17m 54s
Episode 22 - Signals
Jan 10, 2025
11m 19s
Episode 21 - Maps, Hash Maps, Tree Maps, and Hash Tables
Jul 1, 2020
16m 30s
Social Links & Contact
Official channels & resources
Official Website
Login
RSS Feed
Login
| Date | Episode | Topics | Guests | Brands | Places | Keywords | Sponsor | Length | |
|---|---|---|---|---|---|---|---|---|---|
| 12/20/25 | ![]() Episode 25 - Micro Frontends Patterns✨ | micro frontendsweb applications+1 | — | — | — | — | — | 24m 51s | |
| 12/13/25 | ![]() Episode 24 - AI Agents✨ | AI agentsagentic implementation patterns+1 | — | AI Agents | — | — | — | 18m 38s | |
| 1/17/25 | ![]() Episode 23 - Building a minimal reactive framework✨ | reactive frameworksignals+2 | — | — | — | reactivitycomponents+1 | — | 17m 54s | |
| 1/10/25 | ![]() Episode 22 - Signals✨ | SignalJavaScript+2 | — | SignalJavaScript | — | — | — | 11m 19s | |
| 7/1/20 | ![]() Episode 21 - Maps, Hash Maps, Tree Maps, and Hash Tables✨ | mapshash maps+2 | — | — | — | implementationarray+2 | — | 16m 30s | |
| 6/23/20 | ![]() Episode 20 - Static and Dynamic Systems✨ | static systemsdynamic systems+4 | — | — | — | — | — | 13m 29s | |
| 6/16/20 | ![]() Episode 19 - Type Systems and Type Checking✨ | type systemstype checking+4 | — | — | — | — | — | 6m 00s | |
| 5/25/20 | ![]() Episode 18 - How JavaScript Bundlers Work✨ | JavaScriptbundlers+5 | — | ECMAScriptJavaScript bundlers | — | — | — | 11m 12s | |
| 4/21/20 | ![]() Episode 17 - Dependency Injection✨ | dependency injectioninversion of control+2 | — | — | — | — | — | 10m 24s | |
| 4/14/20 | ![]() Episode 16 - Memoization✨ | memoizationcaching+2 | — | — | — | — | — | 10m 46s | |
Want analysis for the episodes below?Free for Pro Submit a request, we'll have your selected episodes analyzed within an hour. Free, at no cost to you, for Pro users. | |||||||||
| 4/7/20 | ![]() Episode 15 - Compilers, Linters, and Formatters | In this episode of the programming podcast, we'll discuss static analysis and code transformation. In particular, we'll look at the difference between compilers, linters, and formatters. By the end of the episode, you'll understand what tool you should use to improve your development experience and team processes. | — | ||||||
| 3/31/20 | ![]() Episode 14 - The Four Principles of OOP | In today's episode, you'll learn the four principles of object-oriented programming. We'll discuss abstraction, inheritance, encapsulation, and polymorphism. By the end of the show, you'll understand each one of them; you'll know how they relate to each other, and how to use them in practice. | — | ||||||
| 3/24/20 | ![]() Episode 13 - Binary Heaps | Today we're going to discuss the binary heap data structure. In this episode, you'll learn where to use heaps in practice, how they can come handy to you during a coding interview, and how to implement them! Along the way, we'll cover heap sort, priority queues, load balancing, and more! | — | ||||||
| 3/17/20 | ![]() Episode 12 - COVID-19. Epidemic modeling with SIR. | Instead of digging into algorithms and data structures, today, you'll learn about epidemic modeling. In 9 minutes in this episode, you'll get a mathematical intuition on the spread of COVID-19 and the essential variables we can control, which can help us fight the virus. | — | ||||||
| 3/10/20 | ![]() Episode 11 - Coupling and Cohesion | Today you'll learn how keeping your abstractions more cohesive and less coupled can improve the quality and maintainability of your software. | — | ||||||
| 3/3/20 | ![]() Episode 10 - Topological Sort | The chances are that the information from this episode will come in handy to you during a coding interview and likely in real life! In this episode, you'll learn the topological sort algorithm. Along the way, you'll understand what's a dependency graph and how topological sort operates on this data structure. We'll also discuss a few real-life examples where I had to implement topological sort myself! | — | ||||||
| 2/26/20 | ![]() Episode 9 - Sorting. Counting Sort. | Have you ever been frustrated during interviews thinking that your interviewer expects you to have memorized a bunch of sorting algorithms you'd never need in real life? In this episode of the podcast learn how to approach such situations. In performance critical systems you may have to implement an efficient sorting yourself. Learn how to beat the built-in algorithm in a few lines of code! | — | ||||||
| 2/18/20 | ![]() Episode 8 - Decorator Pattern | Today you'll learn how at runtime, you can enhance the behavior or existing objects using the decorator pattern. In this episode, we'll discuss the advantages of decorators over inheritance and look at two examples from real-life - implementing a network communication protocol and enriching user interface components. | — | ||||||
| 2/11/20 | ![]() Episode 7 - Tries | In the episode today, we'll talk about the trie data structure. You'll learn what tries are, how you can use them in practice, and how to implement them in your favorite programming language! | — | ||||||
| 2/4/20 | ![]() Episode 6 - Graphs and Graph Traversal | In this episode, we'll discuss graphs. You'll learn how this data structure looks like and what are its applications. Later on, we'll talk about algorithms for traversing graphs. You'll understand how breadth-first search and depth-first search work and when you should use one instead of the other. Topics we'll also touch on are chromatic graphs and finding the shortest path. | — | ||||||
| 1/26/20 | ![]() Episode 5 - Arrays and Linked Lists | In this episode, we'll discuss two fundamental data structures in computer science - arrays and linked lists. Their understanding is essential not only in your day to day job but also for performing well on your next coding interview. We'll discuss implementation details for both data structures, and we'll talk about when it's better to choose one instead of the other. Along the way, we'll touch on memory hierarchy, caching locality, and different interview problems. | — | ||||||
| 1/21/20 | ![]() Episode 4 - Quickselect | Today we're going to talk about quickselect. This algorithm helps us quickly find the n-th smallest element in unsorted arrays. It'll not only help you improve the performance of your applications, but it's also a very common white-board interview problem. | — | ||||||
| 1/14/20 | ![]() Episode 3 - Partial Application (not Currying) | Today we'll discuss partial application and currying. By the end of the episode, you'll understand what these two different concepts are how they are different from each other, and where you can apply them in practice. In between the episode, we'll also talk about the brilliant computer scientist Haskell Curry, and we'll mention the Curry-Howard isomorphism | — | ||||||
| 1/5/20 | ![]() Episode 2 - Binary Search | Today we'll discuss the binary search algorithm. We'll go through several examples when the algorithm makes sense and discuss in detail how it works. By the end of the episode, you'll know when to apply a binary search and know why it's more efficient than a linear search. | — | ||||||
| 1/5/20 | ![]() Episode 1 - How Compilers Work | In this episode, we discuss how compilers work. By the end of the show, you'll have a high-level understanding of the phases the source code you write goes though before executed! | — | ||||||
Showing 25 of 21
Pitch Fit is a Pro feature
See how bookable this show is for guests, which brands already advertise, the per-episode ad value, and the best-fit guest and sponsor profile. The numbers are blurred on the free plan.
How readily this show books outside guests like you.
How proven this show is for host-read sponsorships.
For Guests
ProFor Advertisers
ProUpgrade to Pro to unlock guest cadence, sponsor categories, fit scores, and per-episode ad value for this show.
Chart Positions
1 placement across 1 market.
Chart Positions
1 placement across 1 market.





















