Fexingo
The Technical Co-Founder Podcast with Fexingo: Engineering Founders, CTOs, and Building from Code
Lucas and Luna sit down with engineering founders and CTOs who ship code, not slide decks. Each episode deconstructs how a technical leader chose their stack, scaled the engineering team, and balanced building against fundraising — from the first commit to the series A. Lucas presses for concrete metrics: deployment frequency, incident response times, burn rate per engineer. Luna challenges the guest on hiring philosophy, monorepo decisions, and when to rewrite vs. refactor. The show serves experienced software engineers considering a co-founder role, early-stage CTOs looking for war stories,...
Where to listen?
Podcasts in the app Replaio Radio Coming soonPodcasts are coming to the app soon. Install now and be the first to see a whole new take on podcasts
Episodes
How One Startup Uses Schema Drift Detection to Prevent Database Disasters 28.06.2026 8:31
In this episode, Lucas and Luna explore how a fast-growing B2B SaaS company called DataSync avoided a catastrophic production outage by catching a silent schema drift before it reached production. They walk through the specific tooling — a combination of declarative migrations, CI checks, and a custom drift detector that compares the intended schema against the live database on every deploy. The c...
How One Startup Uses WebAssembly to Replace Container Sidecars 28.06.2026 6:09
Episode 78 dives into a specific technical decision: how one early-stage infrastructure startup replaced its sidecar proxies with WebAssembly modules running in the data plane. Lucas and Luna walk through the company's original architecture—a standard Envoy sidecar per pod—and the problems that emerged as they scaled to 200 microservices: memory overhead, version drift, and cold-start latency. The...
How One Startup Uses eBPF to Observe Kernel-Level Performance 27.06.2026 9:28
In this episode of The Technical Co-Founder Podcast, Lucas and Luna dive into eBPF (extended Berkeley Packet Filter), a technology that lets developers run sandboxed programs in the Linux kernel without changing kernel code or loading modules. They explore how a startup called Pixie (acquired by New Relic) built a no-instrumentation observability platform using eBPF, enabling engineers to trace ev...
How One Startup Used GraphQL Federation to Unify 20 Microservices 27.06.2026 6:34
Episode 76 of The Technical Co-Founder Podcast digs into how a mid-stage B2B SaaS company called SyncLayer used GraphQL Federation to unify 20 independent microservices into a single data graph — without rewriting any backend. Lucas walks through the specific problem: frontend teams were making 8 to 12 round trips per page load, and the API gateway had become a bottleneck with spaghetti logic. Lun...
One Startup Uses User-Facing Feature Flags to Ship on Customer Time 26.06.2026 10:06
Lucas and Luna break down how a fast-growing B2B SaaS startup swapped internal-only feature flags for user-facing toggles—and cut rollout friction by 60 percent. They walk through the architecture: a thin audit layer in the API gateway, a Redis-backed toggle store with per-tenant overrides, and a React hook that exposes beta features to power users without touching production code. The guest engin...
How One Startup Uses Embedded Analytics to Sell 10x Faster 26.06.2026 10:07
Episode 74 of The Technical Co-Founder Podcast dives into how a 12-person B2B SaaS startup called DataLoop replaced screenshots with live embedded analytics and cut their enterprise sales cycle from 9 months to under 4. Lucas and Luna unpack the architectural decisions behind embedding a full analytics layer using Supabase, Cube.js, and React. They discuss the trade-off between building vs buying,...
How Startups Use Glue Code to Ship Before the Monorepo 25.06.2026 11:06
Most startups don't need a perfect architecture on day one — they need to ship. In this episode, Lucas and Luna dig into the pragmatic art of glue code: the scripts, hacks, and duct-tape integrations that let early-stage teams build features before they have the infrastructure to do it cleanly. They walk through a real-world example from a SaaS company that used a 200-line Python script to bridge...
How One Startup Uses Database Sharding to Scale Past 10 Million Users 25.06.2026 7:56
Episode 72 of The Technical Co-Founder Podcast. Lucas and Luna dive into how a mid-stage B2B SaaS startup called DataRail used database sharding to handle explosive growth from 2 million to over 10 million users without breaking the bank. They break down the architecture: why DataRail chose hash-based sharding over range-based, how they migrated live with zero downtime using a dual-write strategy,...
How One Startup Uses Infrastructure as Code to Manage Multi-Cloud 24.06.2026 9:47
Episode 71 dives into how a fintech startup called Nucleus uses Terraform and Pulumi to manage infrastructure across AWS, GCP, and Azure from a single codebase. Lucas and Luna explore the trade-offs between declarative and imperative IaC, how Nucleus cut provisioning time from days to minutes, and the hidden costs of multi-cloud complexity. They also touch on the operational discipline required to...
How One Startup Uses OpenTelemetry to Map Every Service Interaction 24.06.2026 5:39
Episode 70 dives into a real-world implementation of OpenTelemetry at a fintech startup handling 50 million API calls daily. Lucas and Luna break down how the company replaced three proprietary monitoring tools with a single open-source observability framework, cutting mean time to detection by 60 percent and saving $2 million annually in licensing costs. They walk through the specific technical d...
How One Startup Uses Trunk-Based Development to Ship 10 Times a Day 23.06.2026 8:37
Episode 69 of The Technical Co-Founder Podcast: Lucas and Luna explore how a fast-growing payments startup, Transactly, adopted trunk-based development to ship code ten times per day. They break down the three-pillar strategy behind it: short-lived feature branches merged within hours, a mandatory pass through a staging environment via ephemeral preview deployments, and a culture of small reversib...
How One Startup Uses Feature Flags to Deploy Risk Free 23.06.2026 8:47
Lucas and Luna dive into LaunchDarkly's feature flag architecture and how it lets developers ship incomplete code to production without breaking the user experience. They break down the difference between flags for release vs. experimentation, discuss the concept of toggling technical debt, and share a real-world example of how one engineering team used progressive delivery to roll out a breaking...
How One Startup Uses BuildKit Cache Mounts to Cut CI Time by 70 Percent 22.06.2026 12:29
In this episode of The Technical Co-Founder Podcast, Lucas and Luna dive into a specific CI optimization technique that transformed a real startup's engineering velocity. They discuss how BuildKit cache mounts can dramatically speed up Docker image builds by persisting package manager caches across builds, eliminating redundant downloads. The conversation centers on a case study of a 20-person Saa...
How One Startup Uses Contract Testing to End Integration Headaches 22.06.2026 10:41
Lucas and Luna dig into contract testing — a practice that lets teams verify service-to-service compatibility without spinning up full integration environments. They walk through a real-world case: a fintech startup that cut its pre-deployment failure rate by 70 percent after adopting consumer-driven contract tests with Pact. Lucas explains how contracts act as executable documentation, keeping AP...
How One Startup Uses Test Containers to Replace Mocking and Speed Up CI 21.06.2026 9:48
In this episode of The Technical Co-Founder Podcast, Lucas and Luna explore how a growing SaaS startup replaced brittle mock-based tests with test containers — spinning up real PostgreSQL, Redis, and S3-compatible storage in ephemeral Docker containers for integration tests. The result: test flakiness dropped by 80 percent, false positives nearly vanished, and the CI pipeline sped up by 40 percent...
How One Startup Uses Continuous Profiling to Cut Cloud Costs by 40 Percent 21.06.2026 12:13
Episode 64 of The Technical Co-Founder Podcast with Fexingo dives into continuous profiling — a technique that captures production CPU, memory, and I/O usage at the function level in real time. Lucas and Luna examine how a fintech startup called ClearPay used continuous profiling to identify a single hot loop in their transaction engine that was wasting millions of CPU cycles per second. By fixing...
How One Startup Uses Blameless Postmortems to Build Trust 20.06.2026 6:30
On this episode of The Technical Co-Founder Podcast, Lucas and Luna explore how a fintech startup called LedgerSync uses blameless postmortems to turn outages into engineering culture wins. They walk through a specific incident where an API timeout cascade took down payment processing for 40 minutes—and how the postmortem process led to a 90 percent reduction in similar incidents over six months....
How One Startup Uses Regression Testing to Ship Fearlessly 20.06.2026 8:56
In this episode of The Technical Co-Founder Podcast, Lucas and Luna dive into how a fast-growing fintech startup called FloatPay uses automated regression testing to ship code multiple times a day without breaking things. They walk through FloatPay's specific approach: a pipeline that runs a full regression suite in under three minutes using parallelized containers and a clever diff-based test sel...
How One Startup Uses Distributed Tracing to Debug Microservices 19.06.2026 8:29
In this episode of The Technical Co-Founder Podcast, Lucas and Luna dive into a concrete case: how a mid-stage fintech startup uses distributed tracing to cut mean time to resolution from hours to minutes. They walk through the implementation of OpenTelemetry spans, how the team convinced skeptical engineers to instrument their code, and the surprising discovery that 40% of their production bugs w...
How One Startup Uses Internal Developer Platforms to Cut Cognitive Load 19.06.2026 11:59
Episode 60 of The Technical Co-Founder Podcast digs into a single case: how a mid-stage SaaS startup called LogiFlow built an internal developer platform (IDP) to reduce cognitive load on its engineering team. Lucas and Luna walk through why IDPs are gaining traction as an alternative to complex microservice architectures, and how LogiFlow's platform cut onboarding time from two weeks to two days...
How One Startup Uses Semantic Search to Replace Customer Support Tiers 18.06.2026 9:16
In this episode of The Technical Co-Founder Podcast, Lucas and Luna dive into how a B2B SaaS startup replaced three customer support tiers with a single semantic search layer. The case: a company called SupportAI (fictional) built a vector-search system that routes, resolves, and escalates queries automatically using embeddings. Lucas walks through the architecture: precomputed embeddings for FAQ...
How One Startup Uses Platform Engineering to Empower Product Teams 18.06.2026 10:26
In episode 58 of The Technical Co-Founder Podcast, Lucas and Luna explore how a startup called Opsless uses platform engineering to let product teams deploy infrastructure without a dedicated ops team. They walk through Opsless's core approach: building an internal developer platform (IDP) that abstracts Kubernetes, CI/CD, and monitoring into self-service APIs. Lucas breaks down how Opsless reduce...
How One Startup Uses Chaos Engineering to Stress-Test Its Systems 17.06.2026 8:19
Lucas and Luna explore how a fintech startup called PayShield uses chaos engineering to deliberately break its own infrastructure in production. They walk through a specific case: how PayShield simulated a regional AWS outage to test its failover logic, discovering a silent deadlock in its payment-processing queue. The episode covers the team's weekly 'break things' schedule, the tooling they buil...
How One Startup Uses Observability to Cut Incident Response Time by 80 Percent 17.06.2026 8:33
Episode 56 of The Technical Co-Founder Podcast explores how a fintech startup called LedgerLayer used observability—not just monitoring—to slash its incident response time from over an hour to under twelve minutes. Lucas and Luna walk through the specific tools and cultural shifts that made the difference: structured logging, distributed tracing with OpenTelemetry, and a practice called 'error bud...
How Startups Use Knowledge Graphs to Unlock Internal Data 16.06.2026 10:21
In episode 55 of The Technical Co-Founder Podcast, Lucas and Luna explore how early-stage startups are deploying knowledge graphs to connect siloed internal data without a data warehouse overhaul. They break down the concrete case of a 12-person fintech startup that built a lightweight knowledge graph on top of its existing PostgreSQL database using open-source tools like Neo4j and custom embeddin...
Similar podcasts
Replaio is not a podcast publisher; show names, artwork and audio belong to their authors and are distributed through public RSS feeds.