• How Stripe Solved Distributed Tracing Overhead
    2026/09/10
    Stripe engineers faced a brutal trade-off: full distributed tracing offered perfect observability but crushed latency and bloat the network. In this episode, Lucas and Luna dissect how one team replaced heavy JSON payloads with a binary protocol that cut trace overhead by half while preserving context. We look at the specific engineering decision to switch from text-based serialization to a compact binary format, the impact on tail latencies, and why most teams still cling to verbose logging despite the performance cost. #DistributedTracing #Observability #EngineeringCulture #SystemDesign #PerformanceOptimization #BinaryProtocols #LatencyReduction #Microservices #TechDebt #Infrastructure #CodeQuality #SoftwareArchitecture #FexingoBusiness #BusinessPodcast #TechTrends #DevOps #CloudComputing #EngineeringEfficiency Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    10 分
  • How GitHub Copilot Changes Code Review
    2026/09/09
    We dig into the counterintuitive reality of AI-assisted development: when code generation speeds up writing, it often slows down reviewing. We examine how one major platform team flipped their process by treating generated code as first-class contributors rather than disposable drafts. You will learn why strict review discipline is now more valuable than raw output volume, and how to audit AI-generated commits for security and style drift without drowning in noise. #FexingoBusiness #BusinessPodcast #SoftwareEngineering #CodeReview #AIAssistedDevelopment #DeveloperProductivity #TechLeadership #GitWorkflow #SecurityAudit #TechnicalDebt #TeamCollaboration #CodeQuality #EngineeringCulture #AutomationTools #ProgrammingBestPractices #SoftwareArchitecture #DevOps #ModernWorkforce Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    8 分
  • How Stripe Built a Universal Error Format
    2026/09/08
    Stripe transformed developer experience by standardizing error responses across its entire API suite. In this episode, we explore how the company moved from chaotic, inconsistent error codes to a unified structure that reduced support tickets and accelerated integration times. Lucas and Luna break down the engineering decisions behind the move, the specific data structures involved, and why treating errors as first-class citizens in API design matters for every software team building public interfaces. #FexingoBusiness #BusinessPodcast #SoftwareEngineering #APIDesign #Stripe #DeveloperExperience #ErrorHandling #RESTAPI #TechLeadership #CodingBestPractices #SystemArchitecture #EngineeringCulture #ProductManagement #WebDevelopment #BackendEngineering #Standardization #TechnicalDebt #Scalability Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    10 分
  • How Stripe Eliminated Technical Debt With Feature Flags
    2026/09/07
    Stripe’s engineering team faced a classic dilemma: how to ship new payment features without breaking existing flows or waiting months for massive releases. They adopted a feature flag architecture that allowed them to decouple deployment from release, turning what used to be high-risk code merges into low-stakes experiments. This episode breaks down the specific mechanics of their canary rollout strategy, how they managed flag lifecycle and cleanup, and why treating flags as temporary infrastructure rather than permanent code changes prevented the accumulation of technical debt that sinks so many other teams. #FeatureFlags #SoftwareEngineering #Stripe #TechnicalDebt #CanaryRelease #DevOps #CI/CD #SystemDesign #CodeQuality #RiskManagement #ProductLaunch #Architecture #EngineeringCulture #FexingoBusiness #BusinessPodcast #TechTalk #CodingBestPractices #CloudComputing Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    11 分
  • How One Team Eliminated Technical Debt With Feature Flags
    2026/09/06
    We look at how a mid-sized SaaS company used feature flags to isolate risky deployments, cut rollback rates by eighty percent, and finally tackle their legacy codebase without halting product velocity. This episode explores the specific architecture of their flag management system, the cultural shift required to move from 'big bang' releases to continuous delivery, and why technical debt is actually a liquidity problem rather than just a coding error. #FexingoBusiness #BusinessPodcast #SoftwareEngineering #TechnicalDebt #FeatureFlags #ContinuousDelivery #DevOpsCulture #SaaSGrowth #CodeArchitecture #DeploymentRisk #LegacySystems #ProductVelocity #EngineeringLeadership #ReleaseManagement #SoftwareDevelopment #TechStrategy #AgileMethodology #SystemDesign Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    8 分
  • How Stripe Reduced Server Costs by 90 Percent
    2026/09/05
    Stripe didn't just optimize code; they rewired their entire compute strategy. In this episode, we dive into how the payments giant shifted from a monolithic architecture to a serverless-first model, cutting infrastructure costs by ninety percent while improving latency. We explore the specific engineering trade-offs, the cultural shift required to make it work, and what other tech teams can learn from their journey toward extreme efficiency. #FexingoBusiness #BusinessPodcast #Technology #ServerlessComputing #Stripe #CloudCostOptimization #EngineeringExcellence #AWSLambda #InfrastructureEfficiency #TechLeadership #SoftwareArchitecture #CostReduction #DeveloperExperience #CloudMigration #PerformanceTuning #TechStrategy #DigitalTransformation #OperationalEfficiency Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    8 分
  • How GitHub Copilot Changed Developer Output
    2026/09/04
    We look at the real-world impact of AI coding assistants on engineering velocity and code quality. Using data from a mid-size SaaS company that adopted GitHub Copilot across three teams, we examine whether the tool actually saves time or just shifts where engineers spend their hours. The conversation covers specific metrics around commit frequency, review cycles, and the surprising rise in documentation generation. We also discuss the cultural shift in how senior engineers mentor juniors when an AI pair programmer is always available. #FexingoBusiness #BusinessPodcast #SoftwareEngineering #AICoding #GitHubCopilot #DeveloperProductivity #TechTrends2026 #CodeReview #EngineeringCulture #MachineLearning #DevOps #SaaSGrowth #TechLeadership #CodingAssistants #SoftwareArchitecture #FutureOfWork #TechNews #EngineeringBestPractices Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    11 分
  • How Git Bisect Saved a Production Release
    2026/09/03
    Episodes one hundred seventy-three and one hundred seventy-four both covered the mechanics of Git Bisect, so this episode pivots to a related but distinct debugging strategy: using randomized testing and mutation analysis to find bugs before they reach production. Lucas and Luna explore how teams at companies like Google and Netflix use fuzzing and property-based testing to expose edge cases that manual QA misses. They discuss the specific tools—like QuickCheck for Haskell or Hypothesis for Python—that generate thousands of test cases automatically, and why this approach is more reliable than writing individual unit tests for every permutation. The conversation also covers the cultural shift required to adopt these methods, moving from a mindset of 'testing happy paths' to 'breaking things systematically.' Listeners will learn how to integrate these techniques into their CI pipelines without slowing down development velocity. #GitBisect #Fuzzing #PropertyBasedTesting #MutationAnalysis #SoftwareEngineering #QualityAssurance #DevOps #ContinuousIntegration #TestAutomation #CodeReliability #EngineeringCulture #TechPodcast #LucasAndLuna #FexingoBusiness #BusinessPodcast #TechnologyNews #CodingBestPractices #AgileDevelopment Keep every episode free: buymeacoffee.com/fexingo
    続きを読む 一部表示
    10 分