Episode 5: Data Structures — Putting Things Somewhere So You Can Find Them Again

If Episode 4 was about thinking smarter, Episode 5 is about storing smarter. Because at some point, every program turns into the same little panic: “Cool. I have data. Now where do I put it so Future Me can find it without screaming?” That is the entire point of data structures. They are the choices … Read more

C#: The Corporate Ninja That Also Plays Video Games

Some programming languages kick down the door wearing leather jackets. C# shows up on time, shakes everyones hand, asks if anyone has dietary restrictions, and then quietly builds an entire business platform before lunch. And after lunch? It makes a game. Or a mobile app. Or an API that runs half your life. Politely. If … Read more

NUnit — Testing in .NET Without Tears

If you’ve ever tried writing tests in .NET and thought, “Why does this feel like assembling IKEA furniture without the manual?” — meet NUnit. It’s the framework that decided testing should be simple, not a side quest in frustration. What is it? NUnit is an open-source testing framework for all things .NET. It started as a port of JUnit (yes, … Read more

Episode 5: Leonora Carrington and the Art of Weird, Wild Women

Let’s talk about a woman who painted like your subconscious after two espressos and a fever dream — Leonora Carrington. While the boys of Surrealism were busy melting clocks and napping with lobsters, Carrington was off summoning mythic beasts, unbothered and feral, painting goddesses who probably cursed anyone who mispronounced her name. Born in 1917 into British … Read more

Spiral Model — Round and Round We Go

If software development methodologies were rides at a theme park, the Spiral Model would be that slow, turning carousel that looks deceptively gentle — until you realize you’re on it for eternity, going in circles with increasing speed and existential dread. What is it? The Spiral Model is a risk-driven software development process that combines the rigid … Read more

Baroque and Loaded: The 1600s Get Dramatic

Welcome to the 1600s, the century where artists decided that if a painting didn’t have divine light, flying drapery, or a bit of theatrical flair, it simply wasn’t trying hard enough. This was the Baroque era — a time when art went full drama queen, and we loved it. Let’s dim the lights (for mood), cue the … Read more

Event-Driven Architecture: The Art of Letting Apps Gossip Behind Your Back

Imagine your software is a cocktail party. Instead of everyone talking over each other (a.k.a. a monolithic architecture), or politely scheduling appointments (a.k.a. REST APIs), Event-Driven Architecture (EDA) is when apps casually eavesdrop and react to what’s happening around them. No interruptions, no awkward handshakes — just smooth, reactive elegance. What is it? Event-Driven Architecture is a … Read more