Podcasts about The Toyota Way

Set of principles used by toyota

  • 102PODCASTS
  • 165EPISODES
  • 39mAVG DURATION
  • 1EPISODE EVERY OTHER WEEK
  • Jun 17, 2025LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about The Toyota Way

Latest podcast episodes about The Toyota Way

Scrum Master Toolbox Podcast
The Culture Shock of Applying Agile and Lean to Construction | Luca Cotta Ramusino

Scrum Master Toolbox Podcast

Play Episode Listen Later Jun 17, 2025 18:49


Agile in Construction: The Culture Shock of Applying Agile and Lean to Construction, With Luca Cotta Ramusino Read the full Show Notes and search through the world's largest audio library on Agile and Scrum directly on the Scrum Master Toolbox Podcast website: http://bit.ly/SMTP_ShowNotes. Luca experienced a culture shock when first applying Lean thinking to construction, struggling to see how methods designed for cars and assembly lines could work in one-off construction projects. However, he discovered that collaboration in construction isn't about boss relationships—it's about people coming together to deliver value from the customer's perspective. The key insight: when multiple contractors compete for their share of income, the real goal becomes finding ways to complete "the work" efficiently. Competition exists, but the ultimate focus must remain on delivering what the customer truly needs, not just what individual trades want to accomplish. In this segment, we refer to the concept of an Andon Cord, and Swarming from Lean. Featured Book of the Week: The Machine That Changed the World & The Toyota Way These two books provided Luca with his "aha!" moment in understanding Lean construction. The Toyota Way, available in both English and Italian (with additional Italian company case studies), initially created a culture shock as Luca struggled to apply automotive methods to construction's one-off projects. However, these books revealed how Lean thinking could transform construction through visual management to surface problems quickly and swarming practices to fix issues faster. The books taught him that Lean principles transcend industries when properly adapted to different contexts. The Machine That Changed The World, by Womack, Jones, and Roos. Self-reflection Question: What industry practices have you dismissed too quickly without considering how they might adapt to your unique context? [The Scrum Master Toolbox Podcast Recommends]

WLEI - Lean Enterprise Institute's Podcast

Josh Howell, LEI President, Mark Reich, LEI Chief Engineer Strategy, and Art Smalley discuss the four basic types of problem-solving. Art is a well-known expert in leadership, management, and the Toyota Way. He worked at Toyota Motor Corp. in Japan; helped to transform Donnelly Corp. in Michigan; was a consultant with McKinsey & Co.; and has authored several award-winning books, including Four Types of Problems.   The trio set out to discuss how the framework of the four types of problems maps onto the lean management system explained in Mark's recent book about hoshin kanri, Managing on Purpose, as well as daily management in Toyota, leadership, culture, and other related topics. The systematic intersection of these topics is a complex subject beyond just the simpler notion of “tools.” Art and Mark share respective viewpoints from their time at Toyota in Japan and what made the system so unique while trying to connect the dots of four types of problems, hoshin kanri, and other areas.  Josh kicks off the podcast by asking Art and Mark to examine in detail troubleshooting — the most frequent and possibly most misunderstood type of problem-solving. A good troubleshooting environment involves quickly attacking known problems with known solutions to get operations back to normal (i.e., how to mitigate issues that prevent achievement of near-term goals). They also review troubleshooting's relationship with the other types of problem-solving and the “flavors” of the types — gap from standard (how to prevent a problem from recurring by eliminating its underlying root causes), target condition (kaizen to elevate the standard), and open-ended (innovations and breakthrough thinking) — as well as the complex interaction of the four types with daily management and hoshin kanri.  Learn more about a lean management system and the connection between problem-solving, daily management, and hoshin kanri: lean.org/LMP

52 Weeks of Cloud
The Toyota Way: Engineering Discipline in the Era of Dangerous Dilettantes

52 Weeks of Cloud

Play Episode Listen Later May 21, 2025 14:38


Dangerous Dilettantes vs. Toyota Way EngineeringCore ThesisThe influx of AI-powered automation tools creates dangerous dilettantes - practitioners who know just enough to be harmful. The Toyota Production System (TPS) principles provide a battle-tested framework for integrating automation while maintaining engineering discipline.Historical ContextToyota Way formalized ~2001DevOps principles derive from TPSCoincided with post-dotcom crash startupsDecades of manufacturing automation parallels modern AI-based automationDangerous Dilettante IndicatorsPromises magical automation without understanding systemsFocuses on short-term productivity gains over long-term stabilityCreates interfaces that hide defects rather than surfacing themLacks understanding of production engineering fundamentalsPrioritizes feature velocity over deterministic behaviorToyota Way Implementation for AI-Enhanced Development1. Long-Term Philosophy Over Short-Term Gains// Anti-pattern: Brittle automation scriptlet quick_fix = agent.generate_solution(problem, { optimize_for: "immediate_completion", validation: false});// TPS approach: Sustainable system designlet sustainable_solution = engineering_system .with_agent_augmentation(agent) .design_solution(problem, { time_horizon_years: 2, observability: true, test_coverage_threshold: 0.85, validate_against_principles: true });Build systems that remain maintainable across yearsEstablish deterministic validation criteria before implementationOptimize for total cost of ownership, not just initial development2. Create Continuous Process Flow to Surface ProblemsImplement CI pipelines that surface defects immediately:Static analysis validationType checking (prefer strong type systems)Property-based testingIntegration testsPerformance regression detectionBuild flow:make lint → make typecheck → make test → make integration → make benchmarkFail fast at each stageForce errors to surface early rather than be hidden by automationAgent-assisted development must enhance visibility, not obscure it3. Pull Systems to Prevent OverproductionMinimize code surface area - only implement what's neededPrefer refactoring to adding new abstractionsUse agents to eliminate boilerplate, not to generate speculative features// Prefer minimal implementationsfunction processData(data: T[]): Result { // Use an agent to generate only the exact transformation needed // Not to create a general-purpose framework}4. Level Workload (Heijunka)Establish consistent development velocityAvoid burst patterns that hide technical debtUse agents consistently for small tasks rather than large sporadic generations5. Build Quality In (Jidoka)Automate failure detection, not just productionAny failed test/lint/check = full system haltEvery team member empowered to "pull the andon cord" (stop integration)AI-assisted code must pass same quality gates as human codeQuality gates should be more rigorous with automation, not less6. Standardized Tasks and ProcessesUniform build system interfaces across projectsConsistent command patterns:make formatmake lintmake testmake deployStandardized ways to integrate AI assistanceDocumented patterns for human verification of generated code7. Visual Controls to Expose ProblemsDashboards for code coverageComplexity metricsDependency trackingPerformance telemetryUse agents to improve these visualizations, not bypass them8. Reliable, Thoroughly-Tested TechnologyPrefer languages with strong safety guarantees (Rust, OCaml, TypeScript over JS)Use static analysis tools (clippy, eslint)Property-based testing over example-based#[test]fn property_based_validation() { proptest!(|(input: Vec)| { let result = process(&input); // Must hold for all inputs assert!(result.is_valid_state()); });}9. Grow Leaders Who Understand the WorkEngineers must understand what agents produceNo black-box implementationsLeaders establish a culture of comprehension, not just completion10. Develop Exceptional TeamsUse AI to amplify team capabilities, not replace expertiseAgents as team members with defined responsibilitiesCross-training to understand all parts of the system11. Respect Extended Network (Suppliers)Consistent interfaces between systemsWell-documented APIsVersion guaranteesExplicit dependencies12. Go and See (Genchi Genbutsu)Debug the actual system, not the abstractionTrace problematic code pathsVerify agent-generated code in contextSet up comprehensive observability// Instrument code to make the invisible visiblefunc ProcessRequest(ctx context.Context, req *Request) (*Response, error) { start := time.Now() defer metrics.RecordLatency("request_processing", time.Since(start)) // Log entry point logger.WithField("request_id", req.ID).Info("Starting request processing") // Processing with tracing points // ... // Verify exit conditions if err != nil { metrics.IncrementCounter("processing_errors", 1) logger.WithError(err).Error("Request processing failed") } return resp, err}13. Make Decisions Slowly by ConsensusMulti-stage validation for significant architectural changesAutomated analysis paired with human reviewDesign documents that trace requirements to implementation14. Kaizen (Continuous Improvement)Automate common patterns that emergeRegular retrospectives on agent usageContinuous refinement of prompts and integration patternsTechnical Implementation PatternsAI Agent Integrationinterface AgentIntegration { // Bounded scope generateComponent(spec: ComponentSpec): Promise; // Surface problems validateGeneration(code: string): Promise; // Continuous improvement registerFeedback(generation: string, feedback: Feedback): void;}Safety Control SystemsRate limitingProgressive exposureSafety boundariesFallback mechanismsManual oversight thresholdsExample: CI Pipeline with Agent Integration# ci-pipeline.ymlstages: - lint - test - integrate - deploylint: script: - make format-check - make lint # Agent-assisted code must pass same checks - make ai-validation test: script: - make unit-test - make property-test - make coverage-report # Coverage thresholds enforced - make coverage-validation# ...ConclusionAgents provide useful automation when bounded by rigorous engineering practices. The Toyota Way principles offer proven methodology for integrating automation without sacrificing quality. The difference between a dangerous dilettante and an engineer isn't knowledge of the latest tools, but understanding of fundamental principles that ensure reliable, maintainable systems.

52 Weeks of Cloud
DevOps Narrow AI Debunking Flowchart

52 Weeks of Cloud

Play Episode Listen Later May 16, 2025 11:19


Extensive Notes: The Truth About AI and Your Coding JobTypes of AINarrow AINot truly intelligentPattern matching and full text searchExamples: voice assistants, coding autocompleteUseful but contains bugsMultiple narrow AI solutions compound bugsGet in, use it, get out quicklyAGI (Artificial General Intelligence)No evidence we're close to achieving thisMay not even be possibleWould require human-level intelligenceNeeds consciousness to existConsciousness: ability to recognize what's happening in environmentNo concept of this in narrow AI approachesPure fantasy and magical thinkingASI (Artificial Super Intelligence)Even more fantasy than AGINo evidence at all it's possibleMore science fiction than realityThe DevOps Flowchart TestCan you explain what DevOps is?If no → You're incompetent on this topicIf yes → Continue to next questionDoes your company use DevOps?If no → You're inexperienced and a magical thinkerIf yes → Continue to next questionWhy would you think narrow AI has any form of intelligence?Anyone claiming AI will automate coding jobs while understanding DevOps is likely:A magical thinkerUnaware of scientific processA grifterWhy DevOps MattersProven methodology similar to Toyota WayBased on continuous improvement (Kaizen)Look-and-see approach to reducing defectsConstantly improving build systems, testing, lintingNo AI component other than basic statistical analysisFeedback loop that makes systems betterThe Reality of Job AutomationPeople who do nothing might be eliminatedNot AI automating a job if they did nothingWorkers who create negative valuePeople who create bugs at 2AMTheir elimination isn't AI automationMeasuring Software QualityHigh churn files correlate with defectsConstant changes to same file indicate not knowing what you're doingDevOps patterns help identify issues through:Tracking file changesMeasuring complexityCode coverage metricsDeployment frequencyConclusionVery early stages of combining narrow AI with DevOpsNarrow AI tools are useful but limitedNeed to look beyond magical thinkingOpinions don't matter if you:Don't understand DevOpsDon't use DevOpsClaim to understand DevOps but believe narrow AI will replace developersRaw AssessmentIf you don't understand DevOps → Your opinion doesn't matterIf you understand DevOps but don't use it → Your opinion doesn't matterIf you understand and use DevOps but think AI will automate coding jobs → You're likely a magical thinker or grifter

Chain of Learning: Empowering Continuous Improvement Change Leaders
43| Cultivate Human-Centered Leadership with Kata, Obeya, and Omotenashi: Japanese Management Masterclass Part 2 [with Tim Wolput]

Chain of Learning: Empowering Continuous Improvement Change Leaders

Play Episode Listen Later May 14, 2025 32:09


What's the real purpose behind the Japanese practices integral to lean management —like kata, obeya, and A3 reports?These methods are often misunderstood as mere templates or formats, without recognizing the deeper meaning and intention that drive their impact.In this episode, we're picking up on my conversation with Tim Wolput, Japanologist, Toyota Way management expert, and former World Aikido Champion, in Part 2 of this masterclass on Japanese culture and management. Tim brings a unique perspective on the connection between martial arts and leadership—exploring how practices like kata, obeya, and omotenashi (the spirit of hospitality) can be applied to transformational leadership in your organization.YOU'LL LEARN:What it means to flip the pyramid, highlighting the difference between servant leadership and traditional top-down leadershipWhat the tea ceremony teaches us in looking beyond transactional thinkingThe essence of obeya in being more than a space to display information and manage initiatives, but process for people development and collaborationThe importance of holding precious what it means to be human in leadership The concept of “ichigo ichie” and embracing the uniqueness of the present momentIn episode 42, we explored how Samurai and rice farming shaped Japanese leadership and how it differs from Western management. If you missed it, hit pause and listen now before continuing this episode!ABOUT MY GUEST:Tim Wolput is a Japanologist and Toyota Way Management expert passionate about helping people transform themselves, their organizations, and the world for the better. Since 2023 Tim has been my in-country partner for my immersive Japan Leadership Experiences. Originally from Belgium, Tim has lived in Japan since 1999 where he attended Tokyo University Graduate School where he studied the history of traditional Japanese mathematics. He is also the 2005 World Champion in Aikido. Tim is a certified Toyota Way Management System instructor and consultant to global organizations on Lean, Agile, and Toyota Production System (TPS).IMPORTANT LINKS:Full episode show notes: ChainOfLearning.com/43Listen to Part 1 with Tim Wolput: ChainfOfLearning.com/42Connect with Tim Wolput: linkedin.com/in/timwolputCheck out my website for resources and working together: KBJAnderson.comFollow me on LinkedIn: linkedin.com/in/kbjandersonLearn about my Japan Leadership Experience program: kbjanderson.com/JapanTripTIMESTAMPS FOR THIS EPISODE:01:54 The meaning and practice of Aikido and lessons for leadership and lean management06:20 What it means to flip the organizational pyramid and how it relates to supportive and servant leadership09:37 Importance of kata in Japanese culture 17:24 The ritual of the tea ceremony and how it relates to business and customer service21:05 Disadvantages of replacing humans with machines to get things done22:40 The concept of obeya, visual management, and people development25:30 The importance of being people focused rather than tools and processes to reach goals

52 Weeks of Cloud
Academic Style Lecture on Concepts Surrounding RAG in Generative AI

52 Weeks of Cloud

Play Episode Listen Later May 4, 2025 45:17


Episode Notes: Search, Not Superintelligence: RAG's Role in Grounding Generative AISummaryI demystify RAG technology and challenge the AI hype cycle. I argue current AI is merely advanced search, not true intelligence, and explain how RAG grounds models in verified data to reduce hallucinations while highlighting its practical implementation challenges.Key PointsGenerative AI is better described as "generative search" - pattern matching and prediction, not true intelligenceRAG (Retrieval-Augmented Generation) grounds AI by constraining it to search within specific vector databasesVector databases function like collaborative filtering algorithms, finding similarity in multidimensional spaceRAG reduces hallucinations but requires extensive data curation - a significant challenge for implementationAWS Bedrock provides unified API access to multiple AI models and knowledge base solutionsQuality control principles from Toyota Way and DevOps apply to AI implementation"Agents" are essentially scripts with constraints, not truly intelligent entitiesQuote"We don't have any form of intelligence, we just have a brute force tool that's not smart at all, but that is also very useful."ResourcesAWS Bedrock: https://aws.amazon.com/bedrock/Vector Database Overview: https://ds500.paiml.com/subscribe.htmlNext StepsNext week: Coding implementation of RAG technologyExplore AWS knowledge base setup optionsConsider data curation requirements for your organization#GenerativeAI #RAG #VectorDatabases #AIReality #CloudComputing #AWS #Bedrock #DataScience

52 Weeks of Cloud
Reframing GenAI as Not AI - Generative Search, Auto-Complete and Pattern Matching

52 Weeks of Cloud

Play Episode Listen Later May 4, 2025 16:43


Episode Notes: The Wizard of AI: Unmasking the Smoke and MirrorsSummaryI expose the reality behind today's "AI" hype. What we call AI is actually generative search and pattern matching - useful but not intelligent. Like the Wizard of Oz, tech companies use smoke and mirrors to market what are essentially statistical models as sentient beings.Key PointsCurrent AI technologies are statistical pattern matching systems, not true intelligenceThe term "artificial intelligence" is misleading - these are advanced search tools without consciousnessWe should reframe generative AI as "generative search" or "generative pattern matching"AI systems hallucinate, recommend non-existent libraries, and create security vulnerabilitiesSimilar technology hype cycles (dot-com, blockchain, big data) all followed the same patternSuccessful implementation requires treating these as IT tools, not magical solutionsCompanies using misleading AI terminology (like "cognitive" and "intelligence") create unrealistic expectationsQuote"At the heart of intelligence is consciousness... These statistical pattern matching systems are not aware of the situation they're in."ResourcesFramework: Apply DevOps and Toyota Way principles when implementing AI toolsHistorical Example: Amazon "walkout technology" that actually relied on thousands of workers in IndiaNext StepsRemove "AI" terminology from your organization's solutionsBuild on existing quality control frameworks (deterministic techniques, human-in-the-loop)Outcompete competitors by understanding the real limitations of these tools#AIReality #GenerativeSearch #PatternMatching #TechHype #AIImplementation #DevOps #CriticalThinking

Chain of Learning: Empowering Continuous Improvement Change Leaders
42| Doing the Right Thing: Japanese Management Masterclass Part 1 [with Tim Wolput]

Chain of Learning: Empowering Continuous Improvement Change Leaders

Play Episode Listen Later Apr 30, 2025 45:46


Apply for the Nov 2025 Japan Leadership Experience - early registration rate now through May 31st! https://kbjanderson.com/japantrip/ How much of the Toyota Way is dependent on Japanese culture?And how much of it all comes down to… being human?There are questions I've explored with 130+ global leaders who've joined my Japan Leadership Experience programs. To help you answer this question, I've invited Tim Wolput – Japanologist and Toyota Way Management expert, to Chain of Learning.Together, we take a deep (and fun!) dive into the differences between classical Japanese and Western management and explore the cultural and historical roots of real lean leadership.In this episode, we travel through Japanese history—from Confucius' teachings to samurai and rice farming traditions, and Deming's influence on Japanese management. If you've ever wanted a masterclass on Japanese management and Toyota Way principles—and how you can apply these lessons to create a culture of excellence—these two episodes are a must-listen.YOU'LL LEARN:Misconceptions about the Toyota Way management practices and applying the principles across culturesDeming's influence on Japan and the development of the Toyota Production System and Toyota WayThe way of the samurai: Focus on the process, not just the outcomeShu-ha-ri: The process towards mastery and turning knowledge into wisdom by learning through doing The power of leading through influence and “doing the right thing”: true leadership inspires growth, not just resultsSubscribe so you don't miss Part 2, where we continue along this path of learning to explore the nuances of Japanese concepts like kata and obeya and their relationship to lean management practices today.ABOUT MY GUEST:Tim Wolput is a Japanologist and Toyota Way Management expert passionate about helping people transform themselves, their organizations, and the world for the better. Since 2023 Tim has been my in-country partner for my immersive Japan Leadership Experiences. Originally from Belgium, Tim has lived in Japan since 1999 where he attended Tokyo University Graduate School and studied traditional Japanese mathematics. Tim is a certified Toyota Way Management System instructor and consultant to global organizations on Lean, Agile, and Toyota Production System (TPS).IMPORTANT LINKS:Full episode show notes: ChainOfLearning.com/42Connect with Tim Wolput: linkedin.com/in/timwolputCheck out my website for resources and working together: KBJAnderson.comFollow me on LinkedIn: linkedin.com/in/kbjanderson Learn about my Japan Leadership Experience program: kbjanderson.com/JapanTrip TIMESTAMPS FOR THIS EPISODE:03:53 Biggest misconceptions about Toyota Way management practices05:10 Katie's perspective Japan versus the west08:46 The meaning of Shu Ha Ri and the traditional way of learning10:23 Deming's influence on Japan and The Toyota Way13:05 Why Japan embraced PDCA15:45 Difference in mindset between Asia and the west17:28 The working culture in Japan and how work together in the community22:17 Power of the supplier relationship23:40 Japanese leadership style29:15 Concept of doing the right thing30:56 How to focus on processes as the way to get results34:13 Powerful words of wisdom about the way of the samurai Apply for the Nov 2025 Japan Leadership Experience - early registration rate now through May 31st! https://kbjanderson.com/japantrip/ 

Wiki University
Why does Toyota make the best cars?

Wiki University

Play Episode Listen Later Mar 28, 2025 40:57


How did Toyota emerge from Japan's crippled economy of WWII to become a leading car manufacturer globally? Was Diddy and Jimmy Page the worst collaboration of all time? Was the film Shazaam staring Sinbad the best comedy of the 90's?Kyle and Jheisson answer these questions and more as they efficiently make their way across Wikipedia from Lean Manufacturing to the Mandela Effect. TikTok: https://www.tiktok.com/@wikiuniversity YouTube: https://www.youtube.com/channel/UCmPDDjcbBJfR0s_xJfYCUvwInstagram: https://www.instagram.com/wikiuniversity/Music provided by Davey and the Chains

Midnight Wisdom
330: The Toyota Way

Midnight Wisdom

Play Episode Listen Later Feb 9, 2025 42:24


Uploaded Sunday 09.02.2025 17:07On Friday night, I reflect on books I read recently and put some ideas together that I haven't beforehand.Really happy I took the time.

Kodsnack in English
Kodsnack 620 - Encapsulation of knowledge, with Dejan Milicic

Kodsnack in English

Play Episode Listen Later Dec 17, 2024 61:47


Fredrik talks to Dejan Milicic about software development - understanding, methods, and stories. We start by talking about encapsulation of knowledge and the essential software in organizations. Almost every organization should - it can be argued - be developing software that solves their unique problems, and yet so many outsource so much of their knowledge encapsulation. Oh, and we can never completely encapsulate our knowledge in code either, so all the more reason to keep people who actually know what the code does and why around. Dejan tells us about his way to Ravendb and a developer relations role - and how you can craft your own job, stepping suitably outside of your comfort zone along the way. We also talk about shortening attention spans, daring to dig down a bit and find out about the context of things. Like the second sentence of some oft-repeated quote. Prohibit bad things, but help automate doing good things and avoid doing the bad things completely. Dejan shares some database backstories - why would someone want to build one more database? Specifically, what lead to the creation of Ravendb? And the very strong opinions which have been built into it. Avoiding falling into marketing-driven development. After that, we drift into talking about processes and how we work. Every organization is unique - which strongly speaks against adapting the “best practices” and methodologies of others. Or keeping things completely the same for too long. Innovation is also about doing what other people are not doing. Why is concurrency still hard? The free lunch has been over for twenty years! Functional programming and immutability offer ways forward, why aren’t these concepts spreading even more and faster? We get right back to understanding more context when Dejan discusses how few of us seem to have understood, just for example, the L in SOLID. Dive deeper, read more, and you will find new things and come up with new ideas. Finally, Dejan would like to see software development becoming just a little bit more mathematical. So that things can be established, verified and built on in a different way. Thank you Cloudnet for sponsoring our VPS! Comments, questions or tips? We a re @kodsnack, @tobiashieta, @oferlund and @bjoreman on Twitter, have a page on Facebook and can be emailed at info@kodsnack.se if you want to write longer. We read everything we receive. If you enjoy Kodsnack we would love a review in iTunes! You can also support the podcast by buying us a coffee (or two!) through Ko-fi. Links Dejan Ravendb Informatics Domain-driven design Event sourcing Data is worthless - said in episode 601 Developer relations Nosql databases Jack of all trades Jimmy - who introduced Fredrik to Dejan at Øredev 2024 Hibernate Relational databases Oren Eini - creator of Ravendb Antipatterns n+1 Couchbase Scrum Agile software development The Toyota approach The Scrum guide Unison programming language - VC funded Dr. Dobb’s journal The free lunch is over Concurrency SOLID Liskov substitution principle Repositories on top Unitofwork are not a good idea - by Rob Conery Elm Titles A mathematician turned software developer Coding, but without deadline Saturated with software development Encapsulation of knowledge A bit surreal Accept people as they are There’s a second line Professional depression Prevented, not diagnosed The pipeline kind of thinking Frustration-driven development (You shouldn’t be) Punished for being successful The largest company of his or her life so far Optimized for maintaining the status quo Wash away all the context Manager of one The proverbial Jira Substantial content Methods of moving forward

de Erno Hannink Show | Betere Beslissingen, Beter Bedrijf
The cutting edge #boekencast afl 109

de Erno Hannink Show | Betere Beslissingen, Beter Bedrijf

Play Episode Listen Later Nov 29, 2024 41:10


Vandaag bespreken we het boek The cutting edge van Bjørn Aris. Ondertitel The martial art of doing business. Aris begon zijn carrière bij ABN AMRO en daarna als investment bankier bij Lloyds Banking Group en NIBC. Na een reis door het verre Oosten startte hij een internetbedrijf, welke hij enkele jaren later verkocht. Zijn reis inspireerde hem om Oosterse wijsheden verder te onderzoeken als een manier van leven en wat mensen succesvol in werk maakt. Sinds 2000 werkt hij als spreker, trainer en consultant voor het bedrijfsleven. In zijn lezingen en trainingen combineert Aris zijn ervaring als investment banker en ondernemer met zijn kennis in oosterse filosofieën. Volgens Aris is innerlijke balans tussen lichaam en geest en tussen ratio (linkerhersenhelft) en intuïtie (rechterhersenhelft) de sleutel tot succes. Hiervoor is een ontspannen toestand vereist. Bjørn Aris ontwikkelde op basis van zijn bevindingen in 2004 een methode die mensen helpt effectiever te leren en gedragsverandering toe te passen. Hij koppelt hierbij theorie aan beweging, waardoor de ratio wordt omzeild en nieuwe cognitieve verbindingen worden aangemaakt. De oorspronkelijke titel was De zon komt op in het Oosten (2011), dit werd The cutting edge in 2012. Wij lazen de vierde druk uit 2019. Zijn tweede boek De lessen van een Samoerai dat we eerder hebben besproken uit 2020. Voor mij is er een duidelijk verschil in zijn eerste en tweede boek. In dit boek staan veel algemeenheden zonder verwijzingen waar Bjorn dit vandaan heeft. Meest interessante is het laatste hoofdstuk met suggesties wat we in het Westen kunnen gebruiken uit de Japanse wereld in het bedrijf en als mens. Boek Inleiding Het probleem Wat westerse bedrijven van Japan kunnen leren Japanse kennis - het Japanse zwaard, de bron Hoe word je succesvol? Japanse lessen in de praktijk Nawoord Inleiding Japanse oplossingen voor westerse problemen aan de hand van de Japanse Weg van het zwaard. Het probleem Westers denken leunt op ratio. Door scheiding lichaam en geest (Grieken) en de mens centraal te stellen zijn we de verbinding met anderen en de natuur kwijt geraakt. De hang naar materie is ons aangeleerd en kunnen we dus ook eer loslaten. Belemmerende factoren: conditionering, ego en angst. De geldwereld heeft de verbinding met de reële economie verloren. p15 allemaal problemen in het westerse bedrijfsleven. Inleiding naar volgende hoofdstuk Wat westerse bedrijven van Japan kunnen leren Hier wordt vooral de Toyota Way en het kaizen-principe besproken.  Bijzonder op p27 worden de resultaten genoemd van Toyota - in 2010 - terwijl jaar daarvoor verlies wordt gedraaid en er een terugroepactie is. In het vorige hoofdstuk praat hij over angst als belemmerende factor. In dit hoofdstuk op p29 heeft hij het over de angst voor uitsluiting in Japan en zelfdoding van de Japanse directeur. Klinkt niet als een goed voorbeeld. Bjorn kiest daarom waarschijnlijk voor cherry-picking. Uitleg over Bunsha - Japanse managementmethode. - Zie ook boek Start Up Factory over Haier. De meest natuurlijke manier om te groeien, is door te delen (celdeling). Gecontroleerde groei. Intrinsieke motivatie: verlangen naar vrijheid. Vertrouwen, erkenning en respect zijn belangrijkste waarden voor werknemer. Belangrijkste te doen is goed voor de klant zorgen. Focus op het proces in het hier en nu en niet op het resultaat. In Japan ben je geen ik, maar wordt je ik gevormd door de relaties die je hebt. Management is beheersen van processen en werknemers, leiderschap is juist loslaten daarvan. Japanse kennis - het Japanse zwaard, de bron p56 weer de mooie uitspraken in Japan tussen je 70e ne 80e piek je. Als je inzicht in het leven verkrijgt 10 minuten voor je sterft ben je op tijd. Tot die tijd,... gewoon doortrainen. De vorm is het begin, dan volgt de ontwikkeling en tenslotte volgt loslaten. Bijzonder hoofdstuk.

Scrum Master Toolbox Podcast
BONUS: Exploring Lean Principles in Software Development | Doug Rabow

Scrum Master Toolbox Podcast

Play Episode Listen Later Nov 23, 2024 43:21


BONUS: Rediscovering Agile's Roots, What We Can Learn From Lean Manufacturing with Doug Rabow In this BONUS episode, we reconnect with Doug Rabow, a previous guest and an expert in Lean-Agile strategic management known for his dedication to fostering empowered teams and enhancing processes through Lean principles. This discussion dives into the foundations of Lean, its evolution from manufacturing, and how software development can benefit from these time-tested methodologies. Join us as we uncover how adopting Lean can transform software practices and culture to align more closely with the true spirit of Agile. Introduction to Lean and the Toyota Production System (TPS) "Lean isn't just a methodology; it's an ongoing journey of learning and problem-solving." Doug begins by mapping out the origins of Lean and its cornerstone, the Toyota Production System (TPS) (Wikipedia article on TPS). Initially crafted to solve operational challenges in manufacturing, TPS introduced principles aimed at efficiency and continual improvement. Doug underscores that while Agile has gained broader recognition, Lean provides an essential, often overlooked foundation that extends beyond frameworks like Lean Six Sigma or isolated process improvements. "Lean isn't a set-and-forget solution; it's about cultivating an evolving culture of problem-solving." Cultural Foundations of Lean: Adapting for Software Teams "Respect for people and a culture of continuous improvement form the heartbeat of Lean." Transitioning to software development, Doug highlights the core cultural tenets that empower teams to excel. He points out that scaling these principles—such as fostering a culture where problem-solving is embedded in daily practices—is vital due to the complexities of software as a people-driven process. Referencing Conway's Law, Doug illustrates how the structure of teams directly impacts code and workflow. "Developing software is as much about building teams as it is about building products. Lean teaches us that these are inseparable." The Toyota Way: A Blueprint for Excellence "Applying Lean is about chasing excellence, not just managing tasks." Jeffrey Liker's The Toyota Way introduces 14 principles that Doug relates to software environments, emphasizing the value of discipline and respect for people. He discusses the importance of aligning processes with long-term strategies and ensuring that these processes are designed to foster continuous learning. Doug reiterates that truly understanding and integrating Lean requires more than surface-level adoption. "Respect for people isn't an add-on in Lean; it's the root of a thriving, innovative team culture." Waste in Software Development: Insights from the Poppendiecks "Work in progress is not an asset; it's a liability." Doug shares insights from Mary and Tom Poppendieck's (Mary and Tom have been on our podcast here) pioneering work on Lean Software Development, particularly their adaptation of waste types from manufacturing to software. These include partially done work, extra features, relearning, handoffs, and task switching. Doug points out that waste reduction strategies—such as Kanban and pull systems—help teams minimize bottlenecks and optimize flow. "Software development, like manufacturing, benefits from visualizing value streams and focusing on reducing waste." Metrics and Measurement in Lean "The right process will create the right results—focus on process metrics, not individual metrics." In Lean, metrics are crucial for assessing and refining processes. Doug advocates for using metrics like cycle time and throughput to provide teams with insights into system efficiency. He explains how focusing on process metrics rather than individual productivity helps sustain a culture that prioritizes team learning and growth. "When we measure what truly matters—the process—we empower teams to solve problems collectively and improve outcomes." About Doug Rabow Doug Rabow is a dedicated practitioner of Lean-Agile strategic management with an emphasis on building empowered teams and optimizing processes through Lean methodologies. His extensive experience in applying Lean principles in software development has made him a trusted voice in the Agile and Lean community. You can link with https://www.linkedin.com/in/dougrabow.

Troubleshooting Agile
Toyota Kata A-Z

Troubleshooting Agile

Play Episode Listen Later Oct 9, 2024 22:34


Boost team results by measuring carefully and using consistent methods to move toward your goal–with “scientific thinking” “the Improvement Kata” and “the Coaching Kata”. In this bumper episode, Squirrel and Jeffrey discuss quality and delivery the Toyota Way. Links: - Toyota Kata: https://public.websites.umich.edu/~jmondisa/TK/Homepage.html - Gemba: en.wikipedia.org/wiki/Gemba Other relevant episodes: - Episode 214 - Get Your Reps In: https://soundcloud.com/troubleshootingagile/get-your-reps-in -------------------------------------------------- You'll find free videos and practice material, plus our book Agile Conversations, at agileconversations.com And we'd love to hear any thoughts, ideas, or feedback you have about the show: email us at info@agileconversations.com -------------------------------------------------- About Your Hosts Douglas Squirrel and Jeffrey Fredrick joined forces at TIM Group in 2013, where they studied and practised the art of management through difficult conversations. Over a decade later, they remain united in their passion for growing profitable organisations through better communication. Squirrel is an advisor, author, keynote speaker, coach, and consultant, and he's helped over 300 companies of all sizes make huge, profitable improvements in their culture, skills, and processes. You can find out more about his work here: douglassquirrel.com/index.html Jeffrey is Vice President of Engineering at ION Analytics, Organiser at CITCON, the Continuous Integration and Testing Conference, and is an accomplished author and speaker. You can connect with him here: www.linkedin.com/in/jfredrick/

Title Agents Podcast
Accelerate Your Title Insurance Sales Growth with Ryan D'Aprile

Title Agents Podcast

Play Episode Listen Later Sep 24, 2024 43:06


Do you want to update your method of selling title insurance? Ryan D'Aprile reveals the innovative sales strategies that will transform your title business. From harnessing the power of technology to building unbreakable relationships, he's got the formula for success. So, if you're ready to learn the secrets of the trade, don't miss out on this episode.       What you'll learn from this episode Benefits of creating a sales culture from the ground up Importance of relationship-based sales The visual flow of sales processes for tracking and improving relationship management Dangers of overly relying on technology at the expense of personal relationships Actionable steps for establishing a sales culture in title companies      Resources mentioned in this episode  The Toyota Way by Jeffrey Liker | Paperback, Hardcover, and Kindle  E-Myth by Michael E. Gerber | Paperback, Hardcover, and Kindle  The Happiness Advantage by Shawn Achor | Paperback, Hardcover, and Kindle  TitlePro DataTrace®     About Ryan D'Aprile Ryan is the founder of D'Aprile Properties and Zanelo, with extensive experience in real estate, mortgage, title, and insurance. He successfully built one of the Midwest's leading real estate brokerages, which was known for its strong sales culture and innovative training programs. Ryan is now focused on his latest venture, Zanelo, which aims to revolutionize title sales by combining digital systems with a personal touch. His expertise lies in relationship-based sales, visualizing sales processes, and creating disciplined sales cultures that drive growth and success.     Connect with Ryan Website: Xannello  LinkedIn: Ryan D'Aprile     Connect With Us Love what you're hearing? Don't miss an episode! Follow us on our social media channels and stay connected.    Explore more on our website: www.alltechnational.com/podcast Stay updated with our newsletter: www.mochoumil.com Follow Mo on LinkedIn: Mo Choumil

Grow A Small Business Podcast
John Lenker & Assaf Arie on Scaling Their Consulting Firm from 4 to 14 Members, Achieving 10x Revenue Growth, and Helping Clients Save Millions with Strategic Marketing & Business Innovation Over 22 Years. (Episode 569 - John Lenker & Assaf Ar

Grow A Small Business Podcast

Play Episode Listen Later Sep 22, 2024 50:22


In this episode of the GASB Podcast, host Troy Trewin interviews John Lenker and Assaf Arie from Lenker Consulting, a firm specializing in strategic marketing and business growth. They share insights on scaling their business from 4 to 14 team members, achieving 10x revenue growth, and helping clients save millions. With over 22 years of experience, they discuss the challenges and successes of building a value-driven company. Why would you wait any longer to start living the lifestyle you signed up for? Balance your health, wealth, relationships and business growth. And focus your time and energy and make the most of this year. Let's get into it by clicking here. Troy delves into our guest's startup journey, their perception of success, industry reconsideration, and the pivotal stress point during business expansion. They discuss the joys of small business growth, vital entrepreneurial habits, and strategies for team building, encompassing wins, blunders, and invaluable advice. And a snapshot of the final five Grow A Small Business Questions: What do you think is the hardest thing in growing a small business? John Lenker and Assaf Arie believe the hardest part of growing a small business is managing emotional and practical challenges, staying resilient after setbacks, and understanding the industry. Balancing growth with payroll and hiring adds stress, especially when taking risks on new hires. They emphasize patience in building client relationships at the right pace to avoid overwhelming them. What's your favorite business book that has helped you the most? John Lenker and Assaf Arie often reference The Toyota Way as their favorite business book. They appreciate how it showcases a mindset shift in the automotive industry, demonstrating more efficient, profitable methods of production. The book's lessons on optimizing processes and continuous improvement resonate with them and have influenced their approach to business growth and innovation. Are there any great podcasts or online learning resources you'd recommend to help grow a small business? John Lenker and Assaf Arie recommend using Active Campaign for CRM and marketing automation and Webflow for building websites and landing pages. They also mention enjoying the Joe Rogan podcast for a break from business. What tool or resource would you recommend to grow a small business? John Lenker and Assaf Arie recommend using Active Campaign for CRM and marketing automation and Webflow for building digital environments like websites and landing pages. What advice would you give yourself on day one of starting out in business? John Lenker and Assaf Arie advise that starting a business will be much harder than anticipated. They suggest being prepared for significant challenges and understanding that things will get tougher before they get easier. Book a 20-minute Growth Chat with Troy Trewin to see if you qualify for our upcoming course. Don't miss out on this opportunity to take your small business to new heights! Enjoyed the podcast? Please leave a review on iTunes or your preferred platform. Your feedback helps more small business owners discover our podcast and embark on their business growth journey.     Quotable quotes from our special Grow A Small Business podcast guest: The second you run out of problems, you're out of business – be grateful for them – John Lenker & Assaf Arie Create a culture from your values, not just what the crowd is doing – John Lenker & Assaf Arie Get excited about what a new hire can do for you, and trust them to do their job – John Lenker & Assaf Arie    

The Ryan Hanley Show
That Leadership Mindset That Drove Toyota's Excellence | Nigel Thurlow

The Ryan Hanley Show

Play Episode Listen Later Sep 9, 2024 54:56


Unlock the powerful leadership mindset that transformed Toyota into the most efficient and effective car manufacturer in the world.Become a Master of the Close: https://www.masteroftheclose.com/waitlistConnect with Nigel ThurlowFlow System: https://www.getflowtrained.com/LinkedIn: https://www.linkedin.com/in/nigelthurlow/In this enlightening conversation with Nigel Thurlow, Toyota's pioneering Chief Agile Officer, we uncover how "Scrum for Toyota Way" and Nigel's book, "The Flow System," can be applied across various industries. Learn the art of balancing efficiency with effectiveness and avoid the pitfalls of over-automation to ensure top-notch product delivery.Shift your perspective on mindset and team dynamics as we dissect the pseudoscience behind collective mindset theories. With examples from naval aviation and corporate environments, we spotlight the importance of effective communication, cooperation, and conflict resolution within teams. Understand how individual mindsets, shaped by nature, nurture, and experience, impact overall team productivity, and discover strategies to nurture a positive and collaborative work environment.Embrace the future of team flexibility through dynamic reteaming. Discover how fostering high trust and psychological safety empowers team members to reteam autonomously in response to evolving project needs. Drawing from real-world examples, we discuss the critical role of leaders in supporting their teams by providing resources and acting as stewards without micromanagement. From shaping a positive work culture to understanding the financial wisdom crucial for long-term success, this episode is packed with actionable insights to help you and your team thrive.

The Ryan Hanley Show
That Leadership Mindset That Drove Toyota's Excellence | Nigel Thurlow

The Ryan Hanley Show

Play Episode Listen Later Sep 9, 2024 54:56


Unlock the powerful leadership mindset that transformed Toyota into the most efficient and effective car manufacturer in the world.Become a Master of the Close: https://www.masteroftheclose.com/waitlistConnect with Nigel ThurlowFlow System: https://www.getflowtrained.com/LinkedIn: https://www.linkedin.com/in/nigelthurlow/In this enlightening conversation with Nigel Thurlow, Toyota's pioneering Chief Agile Officer, we uncover how "Scrum for Toyota Way" and Nigel's book, "The Flow System," can be applied across various industries. Learn the art of balancing efficiency with effectiveness and avoid the pitfalls of over-automation to ensure top-notch product delivery.Shift your perspective on mindset and team dynamics as we dissect the pseudoscience behind collective mindset theories. With examples from naval aviation and corporate environments, we spotlight the importance of effective communication, cooperation, and conflict resolution within teams. Understand how individual mindsets, shaped by nature, nurture, and experience, impact overall team productivity, and discover strategies to nurture a positive and collaborative work environment.Embrace the future of team flexibility through dynamic reteaming. Discover how fostering high trust and psychological safety empowers team members to reteam autonomously in response to evolving project needs. Drawing from real-world examples, we discuss the critical role of leaders in supporting their teams by providing resources and acting as stewards without micromanagement. From shaping a positive work culture to understanding the financial wisdom crucial for long-term success, this episode is packed with actionable insights to help you and your team thrive.

The Academy - Your source for business growth.
81 - The Toyota Way - 10 key concepts that can grow your business

The Academy - Your source for business growth.

Play Episode Listen Later Sep 5, 2024 25:02


Today I wanted to talk about a philosophy called The Toyota Way. The Toyota Way is a comprehensive framework that extends far beyond the auto industry, emphasizing efficiency, innovation, and respect for people to create lasting success. At its heart, it's about fostering a culture where continuous improvement and problem-solving are central, with a strong recognition that people—not just processes—are the driving force behind a successful business. Originally developed in post-war Japan to address resource scarcity, the system has evolved into a refined approach that touches every part of an organization, from operations to leadership. Over time, what started as a response to immediate challenges has become a universal framework adaptable to any industry. At Sanctuary, we've embraced many of these core concepts, integrating them into our best practices and even our core values. The Toyota Way's emphasis on empowering workers, encouraging critical thinking, and aligning everyone toward shared goals -- just to mention a few -- have been instrumental in our success. By focusing on lean, adaptable systems that prioritize long-term gains over short-term fixes, Toyota has created a model that you can follow too. Ready to hear more? Let's jump into it!

Breakfast Leadership
Unleashing Flow: Transforming Organizations with Nigel Thurlow, Lean and Agile Expert

Breakfast Leadership

Play Episode Listen Later Aug 22, 2024 25:54


Nigel is the CEO of The Flow Consortium and one of the most sought-after speakers and experts in Lean, Agile, and Flow methods. He was Toyota's first Chief of Agile, where he co-created The Flow System and the award-winning Scrum, the Toyota Way approach. Nigel has trained 8,500+ people in Scrum, Agile, Lean, Flow, and Complexity approaches. His coaching portfolio includes GE, Bose, 3M, Microsoft, Vodafone, Lumen, Cox Automotive, and MIT. He is a Forbes Invite-only Coaches Council member and will be listed in the Who's Who's America later this year. Nigel has co-authored many peer-reviewed papers and books on methods and approaches to accelerating business transformation, including the renowned “The "low System” series. He is a highly sought-after international keynote speaker and will appear on the TV series Advancements, which aired on Bloomberg and Amazon Prime in June 2024. https://www.linkedin.com/in/nigelthurlow/ Quick recap Lean Thinking and Empowering Workers Nigel and Michael discussed their experiences and perspectives on lean thinking and its application in various work environments. Recalling his time at Toyota, Nigel emphasized the importance of eliminating non-value-added activities and the concept of 'Gemba,' which refers to the actual place where the work is done. He also highlighted the significance of empowering people closest to the work and giving them decision-making authority. Michael shared a nurse's story from a healthcare setting, illustrating how lean principles can be applied to improve efficiency and safety. Both agreed on the need for a balance between enhancing processes and respecting the autonomy and expertise of workers. Empowering People, Psychological Safety, and Flow Nigel and Michael discussed the importance of empowering people in an organization, particularly those closest to the work. They emphasized the value of giving employees agency, voice, and ownership in decision-making, which improves their psychological well-being and leads to better outcomes for the organization. They also touched on the concept of psychological safety and how it fosters a culture of trust and collaboration. Lastly, they introduced the idea of the flow system, which they described as a game-changer for organizations. Developing a Context-Based Learning System Nigel discussed the development and purpose of a system of learning and understanding based on three key areas: complexity, thinking, distributed leadership, and team science. He emphasized the interconnectedness of these areas and the importance of moving away from rigid frameworks and prescriptive approaches. Instead, he advocated for a context-based approach that considers the effectiveness and utility of tools in specific contexts. Nigel also highlighted the significance of psychological safety, the power distance index, and other leadership aspects in this system. Understanding Flow System Dynamics Nigel and Michael discussed the concept of the flow system, which combines various tools and techniques. Michael emphasized the importance of understanding the flow system's dynamics, likening it to a non-linear, squiggly line rather than a straight one. He highlighted that while unpredictable factors like wars and pandemics can disrupt the flow, a comprehensive understanding of the components and ingredients can help mitigate potential issues. Teamwork, Flow, and Customer Perspective Michael emphasized the importance of teamwork and supporting each other, especially those struggling. Nigel then discussed the concept of 'flow,' which he described as a psychological state of being fully engaged in and focused on a task or activity. He highlighted that teams must be free from fear and boredom to maintain flow by providing meaningful, challenging, and purposeful work. Nigel also stressed the importance of understanding the value of their work from the perspective of the customer or receiver. Michael agreed, pointing out that when people feel part of a team, they are more likely to contribute and keep things moving.

Connecting the Dots
No problem is the biggest problem of all with Mike Hoseus

Connecting the Dots

Play Episode Listen Later Aug 22, 2024 31:35


Mike is Executive Director for the Center for Quality People & Organizations (CQPO). Mike Hoseus brings both manufacturing operations and specialization in Human Resource experience to CQPO. CQPO is an organization developed in 1999 as a vision of Toyota Motor Manufacturing to share Lean Quality philosophy and human resource practices with education, business, and community organizations. CQPO current projects with Toyota include New Hire selection and training process, Team Leader and Group Leader post promotion training, Quality Circle Leader and Manager training, and Global Problem Solving for all levels. Mike is co author with Dr. Jeffery Liker (Author of the Toyota Way) of Toyota Culture. Mike is an adjunct professor with the Lean Enterprise Institute. Prior to CQPO, Mike was a corporate leader for 13 years at Toyota Motor Manufacturing's Georgetown, Kentucky, plant both in Human Resources and Manufacturing. As Assistant General Manager in Human Resources, his responsibilities included personnel, safety, HR development, employee relations, benefits, training, and manufacturing/human resource teams for a plant of 8000 team members. His major initiative was development of the enhanced relationship between Human Resource and Manufacturing. Mike's operational responsibilities in manufacturing started in 1987 as a front line supervisor in vehicle assembly. This included all aspects of safety, quality, productivity, cost and morale for operations. With experience as Assembly Plant Manager and eventually Assistant General Manager, his responsibilities increased to include both assembly plants including operations, maintenance, and engineering. Mike currently supports organizations with Lean Culture transformations focusing on the roles of Executive Management and Human Resources and how the Quality People Value Stream integrates with the Operations Value Stream. Mike has served and contributed to numerous community boards such as the Kentucky Community and Technical College System and the Lexington Mayor's Partnership for Youth. Mike has degrees in Business and Psychology from Xavier University and a Masters of Arts in Counseling from Asbury Theological Seminary. Mike's wife, Suzy and he are co-founders of CMH, Inc. and Life Learning Ministries and have three children, Ben, Leah and Lindsay as well as daughter in law, Jessica (Ben).Link to claim CME credit: https://www.surveymonkey.com/r/3DXCFW3CME credit is available for up to 3 years after the stated release dateContact CEOD@bmhcc.org if you have any questions about claiming credit.

Chain of Learning: Empowering Continuous Improvement Change Leaders
24 | Deming's Journey to Profound Knowledge [with John Willis]

Chain of Learning: Empowering Continuous Improvement Change Leaders

Play Episode Listen Later Aug 21, 2024 54:21


For more info and to apply for the Japan Study Trip: KBJAnderson.com/JapanTrip/To enter for a chance to win John Willis' book "Deming's Journey to Profound Knowledge:" ChainOfLearning.com/24If you're passionate about continuous improvement, quality, or operational excellence, chances are Dr. W. Edwards Deming has shaped your journey—even if you haven't realized it yet.But do you know how this influence came about and the profound impact Deming's management theories have had on shaping quality and improvement approaches such as Lean, Agile, and DevOps?I've invited John Willis, author of "Deming's Journey to Profound Knowledge," to today's episode to explore Deming's learning journey to become the father of the quality movement and how he influenced the development of the Toyota Production System and Japan's rebirth following World War II.We discuss Deming's pioneering management teachings and how you can apply his System of Profound Knowledge to solve problems in today's complex work environments.We also explore the four lenses of the System of Profound Knowledge—appreciation for a system, understanding variation, theory of knowledge, and psychology—and how integrating these concepts can elevate your approach to leadership and improvement.Tune in to discover how you can apply these management theories to solve the complex problems within your organization today.YOU'LL LEARN: The fundamental essence of leadership and how connecting people with purpose can drive organizational success.The significance of Deming's System of Profound Knowledge and the integration of its four components.How experiencing lean principles in action differs from theoretical knowledge and why it's critical for effective change leadership.The role of psychological safety in fostering an environment where everyone's input is valued.Insights on how Deming's principles apply to contemporary challenges, such as generative AI, emphasizing the importance of operational definitions and probability in managing complex systems.IMPORTANT LINKS:Full episode show notes: ChainOfLearning.com/24John's book “Deming's Journey to Profound Knowledge” - hereGet thebook “Learning to Lead, Leading to Learn”  LearningToLeadLeadingToLearn.comWork with me: KBJAnderson.comConnect with John Willis: linkedin.com/in/johnwillisatlantaFollow me on LinkedIn: linkedin.com/in/kbjandersonLearn more about the Japan Study Trip leadership program: KBJAnderson.com/JapanTripTIMESTAMPS:[00:00] An introduction to today's guest and author of "Deming's Journey to Profound Knowledge," John Willis[05:04] Dr. Deming's concept of profound knowledge[05:43] The four elements to understand complexity [12:23] How the Toyota Way pillar of Continuous Improvement = Wisdom and Kaizen [20:13] The impact of a collaborative culture [24:03] Deming's people-centered leadership approach [28:56] John's key takeaways a year after joining my executive Japan Study Trip leadership program[41:39] John's advice on applying Deming's principles today and the development of GenAI For more info and to apply for the Japan Study Trip: KBJAnderson.com/JapanTrip/To enter for a chance to win John Willis' book "Deming's Journey to Profound Knowledge:" ChainOfLearning.com/24

Lead to Succeed
Strengthening Business Bonds with Nigel Thurlow: Lead to Succeed 148

Lead to Succeed

Play Episode Listen Later Aug 14, 2024 39:14


The true measure of a successful leader lies not just in achieving organizational goals, but in the ability to build and develop their people. Investing in the growth and well-being of team members fosters a culture of trust, innovation, and collaboration. That's what Lead to Succeed guest Nigel Thurlow will be focusing on in this episode. Nigel is the CEO of The Flow Consortium and one of the most sought-after speakers and experts in Lean, Agile, and Flow methods. He was Toyota's first Chief of Agile, where he co-created The Flow System and the award-winning Scrum the Toyota Way approach. Nigel has trained 8,500+ people in Scrum, Agile, Lean, Flow, and Complexity approaches and his coaching portfolio includes GE, Bose, 3M, Microsoft, Vodafone, Lumen, Cox Automotive, and MIT. He is a member of Forbes' invite-only Coaches Council organization and is due to be listed in the Who's Who of America later this year. Nigel has co-authored many peer-reviewed papers and books on methods and approaches to accelerate business transformation, including the renowned “The Flow System” series. He is a highly sought-after international keynote speaker and will appear on the TV series Advancements, which will feature on Bloomberg and Amazon Prime, in June 2024. Listen in to learn the power of building your people.

Troubleshooting Agile
Toyota Kata Part III

Troubleshooting Agile

Play Episode Listen Later Aug 7, 2024 10:46


Boost team results by measuring carefully and using consistent methods to move toward your goal–with “the Coaching Kata”. In part three of this mini series, Squirrel and Jeffrey discuss quality and delivery the Toyota Way. Links: - Toyota Kata: https://public.websites.umich.edu/~jmondisa/TK/Homepage.html - Gemba: https://en.wikipedia.org/wiki/Gemba Other relevant episodes: - https://soundcloud.com/troubleshootingagile/get-your-reps-in - https://soundcloud.com/troubleshootingagile/toyota-kata-part-i - https://soundcloud.com/troubleshootingagile/toyota-kata-part-ii -------------------------------------------------- You'll find free videos and practice material, plus our book Agile Conversations, at agileconversations.com And we'd love to hear any thoughts, ideas, or feedback you have about the show: email us at info@agileconversations.com -------------------------------------------------- About Your Hosts Douglas Squirrel and Jeffrey Fredrick joined forces at TIM Group in 2013, where they studied and practised the art of management through difficult conversations. Over a decade later, they remain united in their passion for growing profitable organisations through better communication. Squirrel is an advisor, author, keynote speaker, coach, and consultant, and he's helped over 300 companies of all sizes make huge, profitable improvements in their culture, skills, and processes. You can find out more about his work here: douglassquirrel.com/index.html Jeffrey is Vice President of Engineering at ION Analytics, Organiser at CITCON, the Continuous Integration and Testing Conference, and is an accomplished author and speaker. You can connect with him here: www.linkedin.com/in/jfredrick/

Troubleshooting Agile
Toyota Kata Part II

Troubleshooting Agile

Play Episode Listen Later Jul 31, 2024 13:25


Boost team results by measuring carefully and using consistent methods to move toward your goal–with “the Improvement Kata”. In part two of our Toyota Kata series, Squirrel and Jeffrey discuss quality and delivery the Toyota Way. Links: - Toyota Kata: https://public.websites.umich.edu/~jmondisa/TK/Homepage.html - Gemba: https://en.wikipedia.org/wiki/Gemba Other relevant episodes: https://soundcloud.com/troubleshootingagile/get-your-reps-in https://soundcloud.com/troubleshootingagile/toyota-kata-part-i -------------------------------------------------- You'll find free videos and practice material, plus our book Agile Conversations, at agileconversations.com And we'd love to hear any thoughts, ideas, or feedback you have about the show: email us at info@agileconversations.com -------------------------------------------------- About Your Hosts Douglas Squirrel and Jeffrey Fredrick joined forces at TIM Group in 2013, where they studied and practised the art of management through difficult conversations. Over a decade later, they remain united in their passion for growing profitable organisations through better communication. Squirrel is an advisor, author, keynote speaker, coach, and consultant, and he's helped over 300 companies of all sizes make huge, profitable improvements in their culture, skills, and processes. You can find out more about his work here: douglassquirrel.com/index.html Jeffrey is Vice President of Engineering at ION Analytics, Organiser at CITCON, the Continuous Integration and Testing Conference, and is an accomplished author and speaker. You can connect with him here: www.linkedin.com/in/jfredrick/

Troubleshooting Agile
Toyota Kata Part I

Troubleshooting Agile

Play Episode Listen Later Jul 24, 2024 7:18


Boost team results by measuring carefully and using consistent methods to move toward your goal–with “scientific thinking”. In this episode of Troubleshooting Agile, Squirrel and Jeffrey discuss quality and delivery the Toyota Way. Links: - Toyota Kata: https://public.websites.umich.edu/~jmondisa/TK/Homepage.html - Gemba: https://en.wikipedia.org/wiki/Gemba Other relevant episodes: https://soundcloud.com/troubleshootingagile/get-your-reps-in [previous episodes in this mini-series] -------------------------------------------------- You'll find free videos and practice material, plus our book Agile Conversations, at agileconversations.com And we'd love to hear any thoughts, ideas, or feedback you have about the show: email us at info@agileconversations.com -------------------------------------------------- About Your Hosts Douglas Squirrel and Jeffrey Fredrick joined forces at TIM Group in 2013, where they studied and practised the art of management through difficult conversations. Over a decade later, they remain united in their passion for growing profitable organisations through better communication. Squirrel is an advisor, author, keynote speaker, coach, and consultant, and he's helped over 300 companies of all sizes make huge, profitable improvements in their culture, skills, and processes. You can find out more about his work here: douglassquirrel.com/index.html effrey is Vice President of Engineering at ION Analytics, Organiser at CITCON, the Continuous Integration and Testing Conference, and is an accomplished author and speaker. You can connect with him here: www.linkedin.com/in/jfredrick/

Lean Blog Interviews
Psychological Safety in Lean Leadership: Insights from Mike Hoseus and Toyota's Culture

Lean Blog Interviews

Play Episode Listen Later Jun 19, 2024 60:51


My guest for Episode #508 of the Lean Blog Interviews Podcast is Mike Hoseus, Executive Director of the Center for Quality People and Organizations and President of Lean Culture Enterprises. Episode page with video, transcript, and more He supports organizations in their lean journey, focusing on leadership and cultural aspects of the lean transformation. He is an adjunct professor with the University of Kentucky's Center for Manufacturing. Michael Hoseus developed his TPS skills at Toyota Motor Manufacturing Kentucky, where he worked at the General Manager level in both Production and Human Resources, being mentored by his Japanese sensei. His Toyota process experience includes production, engineering, maintenance, safety, personnel, employee relations, benefits/payroll and training and development. He learned first-hand how Toyota's success hinges on integrating their production and human systems to create the Toyota Way.  He's co-author, with Jeff Liker, of Toyota Culture: The Heart and Soul of the Toyota Way — which received the Shingo Publication Award in 2009 In this episode, Mike shares his extensive experience with Toyota, where he developed his TPS skills at TMMK in Georgetown, Kentucky. We take a deep dive into key topics such as the importance of psychological safety in lean leadership, the origins of the andon cord, and how to build a high-performance culture. Mike discusses his journey from Toyota to helping other organizations with lean transformation, emphasizing the critical role of leadership in fostering a culture of continuous improvement. He shares insights on problem identification and problem-solving, the significance of respect and trust, and the intentional development of a lean culture. Join us for this engaging conversation with valuable lessons and stories from Mike's career. Don't miss out on the chance to learn from one of the leading experts in lean culture and transformation. Mike is also organizing a Kentucky learning tour, “High-Performance Culture and Lean Leadership,” from October 15 to 17… I'll be there and am very much looking forward to it. Use code GRABAN to save $500.

Arguing Agile Podcast
AA168 - Why Asking for Help is Critical for Success

Arguing Agile Podcast

Play Episode Listen Later Jun 12, 2024 45:18 Transcription Available


In this episode of the Arguing Agile podcast, Product Manager Brian Orlando and Enterprise Business Agility Coach Om Patel explore the importance of asking for help across various roles, including developers, testers, UI/UX designers, managers and executives. The podcast explores the common reasons people avoid seeking help, such as ego, fear of appearing weak or incompetent, and cultural factors.Listen to this podcast if you want to discover the benefits of fostering a culture where asking for help is encouraged, and learn practical tips for instilling this mindset in your team. Whether you're an individual contributor or a leader, this episode will provide valuable insights to help you and your organization succeed through collaboration and continuous improvement.Keywords:asking for help, collaboration, coaching, leadership, team culture, developers, testers, UI/UX designers, managers, executives, ego, fear, incompetence, Toyota Way, agile, scrum= = = = = = = = = = = =Watch it on YouTubeSubscribe to our YouTube Channel:https://www.youtube.com/channel/UC8XUSoJPxGPI8EtuUAHOb6g?sub_confirmation=1Apple Podcasts:https://podcasts.apple.com/us/podcast/agile-podcast/id1568557596Spotify:https://open.spotify.com/show/362QvYORmtZRKAeTAE57v3Amazon Music:https://music.amazon.com/podcasts/ee3506fc-38f2-46d1-a301-79681c55ed82/Agile-Podcast= = = = = = = = = = = =AA168 - Why Asking for Help is Critical for Success

Scrum Master Toolbox Podcast
Prioritize, Visualize, Execute, A Lean Approach to Work Management in Agile Teams | Doug Rabow

Scrum Master Toolbox Podcast

Play Episode Listen Later May 28, 2024 17:13


Doug Rabow: Prioritize, Visualize, Execute, A Lean Approach to Work Management in Agile Teams Read the full Show Notes and search through the world's largest audio library on Scrum directly on the Scrum Master Toolbox Podcast website: http://bit.ly/SMTP_ShowNotes. Doug explores some of the critical aspects of team management that ensure efficiency and clarity. Doug also shares how visual management is essential for maintaining focus on top priorities within teams. We learn about the Five S from Lean, and how simplifying and visually organizing work can prevent priority confusion and, in the end, improve productivity. Featured Book of the Week: The Toyota Way by Jeffrey Liker In this episode, we explore lessons from The Toyota Way by Jeffrey Liker beyond manufacturing. Doug describes how The Toyota Way applies to strategic management and software development, focusing on high-quality, small batches. Discover how continuous feedback drives continuous improvement, and what Agile learned from Lean Manufacturing.   [IMAGE HERE] Do you wish you had decades of experience? Learn from the Best Scrum Masters In The World, Today! The Tips from the Trenches - Scrum Master edition audiobook includes hours of audio interviews with SM's that have decades of experience: from Mike Cohn to Linda Rising, Christopher Avery, and many more. Super-experienced Scrum Masters share their hard-earned lessons with you. Learn those today, make your teams awesome!     About Doug Rabow Doug is a passionate practitioner of Lean-Agile strategic management with a focus on developing empowered teams and Lean process improvement.   You can link with Doug Rabow on LinkedIn.

Finding Gravitas Podcast
The WRI Study 2024: Toyota's Surge, Ford's Decline

Finding Gravitas Podcast

Play Episode Listen Later May 23, 2024 38:03 Transcription Available


This episode is sponsored by Lockton, click here to learn more Watch the full video on YouTube - click hereIn this episode of the Automotive Leaders Podcast, host Jan Griffiths dives into the findings of the 24th Annual North American Automotive OEM and Supplier Working Relations Index (WRI) with guests Dave Andrea of Plante Moran, who led the study, and Sig Huber, Chief Commercial Officer for ELM Analytics.Dave starts by giving a macro-level overview of the industry's recent challenges, from electrification and new market competitors to supply chain disruptions and cost inflation. Despite these hurdles, Toyota, Nissan, Honda, and General Motors have emerged as top performers in the WRI. Toyota, in particular, saw another significant 30-point increase, reflecting their strong culture of continuous improvement and respect for people, known as The Toyota Way.They discuss General Motors, which has shown steady improvement despite leadership changes. Dave credits the company's progress to the consistent focus on supplier relations by successive Vice Presidents of Purchasing. Sig emphasizes that GM's efforts under leaders like Steve Kiefer have embedded supplier relationship management deeply into the company's culture.Jan and Dave then address the decline in Ford's ratings, attributing it to organizational challenges and a more command-and-control purchasing style. Sig warns that Ford's recent UAW negotiations and slower-than-expected EV adoption rates add to their struggles.On a brighter note, Stellantis shows signs of improvement under Marlo Vitous's leadership despite a rocky past with supplier relations. However, Jan questions how much Stellantis's top executives value the WRI.In their closing comments, Dave and Sig reflect on the industry's future and the need for change. Dave emphasizes adapting business practices to navigate uncertain technology trends and regulatory issues. Sig highlights the industry's resilience, stressing that collaboration and trust with suppliers are crucial for overcoming challenges.Themes discussed in this episode:Understanding the significance of the Automotive OEM-Supplier Working Relations Index (WRI) Study as a tool for assessing industry performance and supplier relationsAddressing electrification, supply chain disruptions, and cost inflation and their impact on OEM-supplier relationshipAnalyzing the cultural and organizational elements that contribute to Toyota's enduring success, including continuous improvement, respect for people, and long-term relationship-buildingThe influence of leadership changes, such as Vice Presidents of Purchasing, on supplier relations and organizational performanceFord's decline in WRI scores and the organizational issues contributing to challenges in supplier relations and performanceThe role of effective communication in fostering strong relationships between OEMs and suppliers.The importance of trust and collaboration between OEMs and suppliers in navigating future challenges.Featured guest: Dave AndreaWhat he does: Dave Andrea leads the

Voices from The Bench
313: Lab Day Chicago 2024 Act 1 with Michael Wandling, Vinod Dudhat, Brian Johns, and Rob Fletcher

Voices from The Bench

Play Episode Listen Later Mar 25, 2024 78:14


Want to go on the ULTIMATE exocad (https://exocad.com/) vacation? Endless fun, epic weather, amazing food, exotic culture, and two days all about the greatest software in dental, exocad. Join Elvis and Barb on May 9 and 10 on the beautiful Spanish island of Mallorca (https://www.spain.info/en/region/mallorca-island/). It's called exocad Insights 2024 and it's full of amazing speakers, great breakout sessions, evening events, and attendees from all over the world. Don't wait, register today at exocad.com/insights2024 and use the code VFTB15 to save 15% off the fee. We will see you there! On June 9 & 10, Voices From the Bench will be back at the Florida Dental Lab Association Symposium (https://www.fdla.net/symposium) that's to the wonderful people at Jensen Dental (https://jensendental.com/). Be sure to check out FDLA.NET to see the line up and to register. This week we start the conversations that we recorded in the Ivoclar Ballroom during Lab Day Chicago 2024. This week brings us: Michael Wandling from Summit-Horizon Dental Lab (https://www.summit-horizon.com/) talking about writing the question for the CDT tests and working on getting enough CDTs to become a Master CDT. Vinod Dudhat tells the story of changing careers after coming to America from India and opening American Dental Designs (https://americandentaldesigns.com/) that sees the value of offering education to dentists. Brian Johns, who was a fixed technician that wanted to add removable to his lab Spectrum Dental Science (https://spectrumdentalscience.com/). Thanks to Ivoclar, Ivotion, and the PM7, Brian was able to bring in digital dentures and eventually full arch fixed hybrids. Rob Fletcher loves lean manufacturing. Starting in the automotive industry, Rob was recruited to bring lean manufacturing to Knight Dental and is now bringing it to Bayshore Dental Studio (https://bayshoredentalstudio.com/). Rob explains the process and how labs can eliminate waste and increase productivity. Wanting to take your knowledge and skills to the next level? If you are looking for the best education dedicated to dentistry in both the labs and clinics, check out Ivoclar Academy. (https://resources.ivoclar.com/lab/en/academy) From on-demand webinars to in-person training, Ivoclar Academy has a program to meet your busy schedule. Check out all they have to offer HERE! (https://resources.ivoclar.com/lab/en/academy) Whether you are looking to elevate your craftsmanship or looking to cut back costs, look no further – VITA MFT Teeth (https://vitanorthamerica.com/en-US/VITA-MFT-Anterior-369,273,126133.html) are the ultimate solution for creating lifelike and stunning smiles. Crafted with precision and backed by cutting-edge technology, VITA MFT Teeth offers unparalleled esthetics and durability. And since VITA (https://vitanorthamerica.com/) believes in the power of experiencing excellence firsthand, for a limited time only, they're offering you the chance to get a complimentary case sample. That's right, a full case, absolutely free. Just visit vitanorthamerica.com/freemft (https://www2.vitanorthamerica.com/mft/) Don't wait any longer to start providing your customers with a premium tooth at an economy price. Redeem your free case sample and if you're ready to buy, VITA will even give you an extra 10% discount by shopping online on their newly launched online store. Join the VITA family today. Join Elvis & Barb as Voices From the Bench goes international! On May 9th and 10th, the podcast will be recording at https://exocad.com/insights2024 on the beautiful Spanish island of Mallorca (https://www.seemallorca.com/). This is a fantastic educational event for all of you in the lab industry – and your clinical colleagues! The international speaker line-up is top-notch. There will be: keynote presentations from master dental technicians, digital experts, implant surgeons, lab owners, and more! Exocad's software experts will run hands-on sessions so you can get to know the latest releases…including DentalCAD 3.2 Elefsina (https://exocad.com/our-products/dentalcad-elefsina)…which was released recently. Techs…. Do you have a problem with a design? Just bring your stl file and let the Application Specialists take a look at it. Check out exocad.com/insights2024 to see the AMAZING line up of speakers and to register. Use promo code VFTB15 to save 15% off registration to what will be one of the greatest events of the year. See you there! Special Guests: Brian K. Johns, Michael Wandling CDT, Rob Fletcher, and Vinod Dudhat.

Agile FM
145: Betty Gratopp and Jeffrey Liker

Agile FM

Play Episode Listen Later Feb 20, 2024 36:15


Joe has a book “Agile Kata” in the making, if you like to be the first to know when it launches, please visit www.agilekatabook.com.Transcript: ​Agile.FM radio for the agile community. [00:00:05] Joe Krebs: Welcome to another episode of Agile FM in the Agile Kata Series here. Today I have two authors. I have an author on the call and I have a character. I have two characters from a book and a comic illustration, which is called Engaging the Team at Zingerman's Mail Order. That is Betty Gratopp and Jeffrey Liker.Thank you for joining me here today. [00:00:34] Betty Gratopp: Thank you for having me. [00:00:37] Joe Krebs: All right. So this is a book, the it's a comic. And this book was published in 2023. And it's really a book that illustrates the journey from, in, in terms of Kata up at Zingerman's mail order. And before we talk a little bit about the lean journey, What is Zingerman?Zingerman, I have visited Zingerman in Ann Arbor myself. It's a mail order business of a a company that is shipping the most wonderful cheeses and breads. I can smell it in the in the warehouse. And but there's much, much more to it. Betty, what is the size? What's the scope of Zingerman's?What do listeners have to picture? Not familiar necessarily with the service? What do you guys do and how big is the operation? [00:01:20] Betty Gratopp: Oh, excellent. That's a great question. We are a warehouse and a call center. The warehouse employs approximately 55 people year round, and then we grow to a peak of about 400.Warehouse staff people during our Christmas holiday at the service center. I would say is about 20,25 people and they have, they experienced the same growth during that peak season. [00:01:45] Joe Krebs: Yeah, excellent. In the comic, you are a warehouse manager. [00:01:49] Betty Gratopp: Yes, I am one of three warehouse managers that manage the warehouse and have been the three warehouse managers that have taken us through our lean journey and our transformation to trying to be better scientific thinkers.[00:02:05] Joe Krebs: And as a character, you were visualized by the illustrator, Jasmine Morales, who is visualized this entire comic, the book, and she did a really good job knowing you obviously listeners cannot see you right now, but this picture is really nice. So is. Jeffrey as a character also drawn in the in the comic [00:02:24] Jeffrey Liker: and Skinnier and better looking in the comic.[00:02:28] Joe Krebs: And Jeffrey, I do have to mention the other two authors on the book. That's Eduardo Lander and Tom Root, which are not on the podcast today. But we are talking about this book, the three of us. More importantly than the book itself, obviously describes a story that describes a bumpy story of introducing lean and Kata within a Zingermanwhen did your journey start? What was the situation like that led to it? And obviously the origin of the book, that's where everything started, basically. [00:03:03] Betty Gratopp: Yes. I think back to 2003 when our business was growing in double digits. So we were a bunch of. Intended foodies who started this business and then had to get better at process because we weren't doing very well.We were not schooled or learned in anything that had to do with process. That was the environment. So we didn't know how many people to hire. We didn't know how much space we needed. We didn't know how many sales we could take. Really basic things about our business were not clear to us. [00:03:40] Joe Krebs: Sounds like a startup kind of environment.Like everybody who has worked or seen startups, it sounds very typical. Doesn't it? [00:03:47] Betty Gratopp: Oh yeah. Everybody did everything. Yeah. [00:03:51] Joe Krebs: Yeah. And you guys had some form of a warehouse. Is it the same warehouse as it is, or did you guys relocate it over the years? Was there also like growth or. [00:04:00] Betty Gratopp: One of the major motivations to moving to a more, more scientific thinking and lean lean process was the fact that we were moving our operation every two years.So I was hired in 97. I think we moved twice in four years. And then that fifth year or so is about when we started to think about, we had to find a different way. It was too costly. Ten months of the year, our building was way too large for what we needed it to be. Two months of the year, it was way too small for what we wanted it to be.And so we had to make a commitment to stay in the building that we were, and we had to figure out how that was going to happen. At that time. My boss, one of the managing partners here was going to the University of Michigan and met a gentleman who you already mentioned, Eduardo Landers, one of the authors of the book, and they were going to U of M together, and that's how that connection was made.I don't remember actually whether we met Jeff first or Eduardo. [00:04:57] Jeffrey Liker: I don't remember either, but I did get contacted by Tom Root, and he explained that there were Kept on growing out of their quarters and they understood that lean would help you save space and use space more efficiently. And he said, you know, do you think that it might help us in our journey?And at the same time, Eduardo was my doctoral student and he was trying to define a dissertation topic. And his interest was in lean and a high variability business, but he couldn't find any that. I had implemented lean as a case study. So this came along and I said Eduardo Maybe you're not gonna be able to find a case study to study and maybe you're gonna have to create your own and become like a consultant and advisor to Zingerman's mail order.And that's what ended up happening. It was just kind of a coincidence marriage his need and their need. And I was watching the whole thing unfold. And when he first came, and I visited the warehouse and he visited, it was clear to both of us that we talk in the Toyota production system about the seven wastes.And there was seven ways every place you looked, it was just a complete disaster from our point of view. So in other words, it would be a target rich environment for improvement. You could practically, you could probably throw a lean tool any place and. something. But his, he had been, I've been teaching them that in the Toyota Way of leading, which is asking questions and guiding them step by step, taking the whole enchilada, the whole big problem and boiling it down to small pieces.And then starting with a first step and then guiding them and getting them to do the thinking and the work. And that's the approach he took, which turns out to be very consistent with Kata. We didn't know about Kata at the time, but it was very consistent with that approach. , [00:06:54] Joe Krebs: I just want to go back to that quick is I think this is an important comment you just made is the initial approach was more focused on lean rather than Kata because it was quite a while ago, like, when did this all start? [00:07:07] Jeffrey Liker: 2003 so 2003 he walked through and then he started going there like several times every week.And again, what he did was what he could have done is he could have said, here's the Toyota production system. I'm going to lecture you about standard work. I'm going to lecture about Kanban. I'm going to lecture. He didn't do any of that. He just went with them to the floor and say, what's your biggest problem.Let's start there. And then he would ask questions and, you know, example, why do you have to build up a whole, why do you have to build all your gift boxes overnight? So that they're ready when the shift starts. Why can't you build them as the customers are ordering them? And they said things like, because this is a Star Trek and we can't just beam stuff to where we want to instantly.[00:07:57] Betty Gratopp: I think my exact words were, because we're going to fail. [00:08:01] Jeffrey Liker: Yeah, exactly. So they didn't believe, you know, what he was suggesting was possible. So he would say, I understand. Is there something we can try right now? And they would say I guess, you know, and then pretty soon they were generating ideas instead of pushing back and they were trying it.And then they also found their own analogies, like in the book, the original book, lean and high variability of business. We have a case where one of the, one of Betty's colleagues said, I guess it's kind of like subway. Where they make the sandwiches to order, but they have a certain number of sandwiches in a case in a cooled case that you could pull off the shelf and maybe we could develop both kinds of situations.And so that's the way it got started. Again, there was no lectures about except for very brief introductions. There was not. Here's 15 tools. I'll teach you all the tools go apply them. It was here's a problem. Let's test some ideas and let's do it right now. And then what do we learn from this?And then most of the ideas came from the group, like Betty, not from Eduardo. Is that true? Betty. [00:09:16] Betty Gratopp: Yeah, what I remember when he was first teaching us, he was very he didn't give us a whole lot of, he didn't give us a whole set of tools at one time. The first thing we learned was pull, the second thing we learned was kanban, the third thing we learned was timed routes, because now you have kanban, so it's At the time, I had no idea that these skills or tools were layered and connected and making a whole system.Had he come at us with all of that. I mean, even just coming with us with one thing and saying, Hey, we're going to make gift boxes just in time. What do you guys think? That was enough to make our brains explode and us want to stick our feet in the mud. But once we got over that, once we tried it, once we said, yes, we'll at least give it a shot and we saw the value of that, that set the stage for the rest of our growth because we had a problem that we thought we couldn't do.We learned that we could do it, we did it, and it made us stronger for the next problem that was coming down the way. Yeah. And none of that was like, I had no idea any of that was happening as the person that was being taught and led. Yeah. It's really remarkable and . Cool.[00:10:26] Jeffrey Liker: So they were being, they were the students, but, and the, they're, they were the top management.So in a sense this was a top down approach, only teaching the top managements. On the other hand, if you only have 40 people and three of the managers are leading this, that's a large percentage of the workforce. Yeah. Getting deep exposure to the way of thinking of linear. So that went on to for about 10, 10 years till 2013 when Kata was first introduced.[00:10:57] Joe Krebs: Yeah. So that's an interesting thing. Why? So there was a transition towards Kata and I just want to. Check in with you. Like, how did, what was the trigger for that? And obviously, why did you adopt this approach? Kata most specifically, [00:11:10] Betty Gratopp: I remember, I can still remember Eduardo.I remember when he brought the book. I remember the day he brought the book and I remember it actually happening because we had been through three or four different programs iterations trials of things to get the frontline crew involved. So programs or ways of now that the managers were bought into this work and saw the value in it.And we wanted to bring more of the frontline crew along. But we weren't having much success with that. So we tried out. There was a. I forget the names of the initiatives, but there were two or three or four programs that we tried. [00:11:48] Jeffrey Liker: This was one practices one. [00:11:50] Betty Gratopp: Another one was was something Tom came up with where we were going to have extra.I forget the name of it. Sorry. [00:11:56] Jeffrey Liker: They're incentivizing with money. Yeah. You got some percentage of the savings. Yeah. [00:12:02] Betty Gratopp: So we tried a couple different things to get frontline engaged with the managers. So, and it didn't work. So the next thing that we were going to try was Kata. And I remember actually saying I was willing to try anything at that point that was different than what we'd been trying.And this stuck. So Yeah. Yeah. I can, I remember asking the crew one time to come along with us on a Toyota business practice thing. And they were like, literally, I'd rather go to the dentist. I'd rather go anywhere right now than come with you on this little project that you have laid out of when Kata came.And I don't know if it's because it's four steps and five questions, or if it was the time in the business or what the case was. But people gravitated toward it. And if I had to guess it's because it defaults to action, like we are not a team that likes to sit around in a room and strategize about what a word means.It would make us crazy with the like perfect problem statement and things like that. We're just not geared for that. We're warehouse folks who want to be out on the floor doing things. And I think that's part of it. So it looks simple. I look at the recipe, I'm looking at it on the wall right now, and I go, wow, 1,2,3,4, really cool, really simple.Then you get into it and you find out what, how challenging and engaging it is, and it's enough to keep you going, right? [00:13:30] Joe Krebs: Yeah, and that was 2012 2013, somewhere in that time frame, right? [00:13:34] Betty Gratopp: Yeah, right around 2013. [00:13:35] Jeffrey Liker: At the same time as Betty was adopting this, because Eduardo has suggested it. Yeah. I was being kind of indoctrinated by Mike Rother, and we live in the same town.He was one of my students, and I decided to change my graduate course. I taught a graduate course for about 30 years and on organizational theory. And I decided to change it to lean think lean thinking and use kata as the framework for the whole course and have the students do projects and local companies.So I approached Betty to ask if our students could do kata projects. And I was like, how do I say this to Betty, like, how do I explain Kata? She's going to think I'm from Mars. And I mentioned Kata and she said, that's what we're doing. On my list of things for the year is to introduce Kata. I think we need to talk.So then I went and visited her that same afternoon and it was again, a perfect meeting, coincidence of goals. And it was really my students. Working with her people on the floor on kata that really started driving it as well as her at some point. They asked if her student if her people who are warehouse workers, a lot of them didn't have a college degree, but she asked if they could sit in on my graduate course.And that's what happened. So I had about 15 of these Zingerman's Warehouse met people in my graduate course, and then we're having breakout discussions there with my students and we, and it was the discussions were really rich, and the students are working with them in the warehouse and they're the experts in the warehouse.So the course turned out great. And what we did is in that first semester turned out great. [00:15:31] Joe Krebs: I can only imagine how rich the conversation conversations were between, you know, people at a university, but also bringing the real life and real world touch into the conversation [00:15:41] Jeffrey Liker: And they brought food. We would have, of [00:15:44] Betty Gratopp: Of course, we brought food.I take food wherever I go. [00:15:48] Joe Krebs: That is fantastic. [00:15:49] Betty Gratopp: The relationship between the students and our frontline coaches or between the managers and the, our frontline coaches and the students is really where a really nice piece of the benefits of working kata come in. When you're first learning this thing together, everybody's new.I didn't know what I was doing and in order for me to help teach others, I had to be willing to kind of step in it a lot. Over and over again and do it wrong. That's an amazing example for anybody else who's trying to learn something. I think one of the biggest things that we've had to get over here and it still comes up.It's not something that we ever stopped working on is. Is the environment safe so that people feel like they can test, try, fail, learn, whatever word you want to put on it. This gave us something to point to that said, we want to do this and we're going to not do it right all the time. And that is to be expected.In fact, it's desirous. That's a really different mind frame than most or mindset than most people walk into a workplace with each day. It really does put us into a laboratory where, you know, we love our food. We love that we pack boxes, but it's so much more. What we do out there is so much more in the relationships that we build and the way that we learn to interact and work on challenging goals together.It's super cool. [00:17:18] Jeffrey Liker: The we needed challenges. They needed the first step is to find the challenge. So they had to find projects based on challenges. And at one point we had eight student groups in there. So they had to have eight projects, eight challenges going on simultaneously. But so they would find, and I said, it has to be something where they can make a dent on it.And run through several target conditions over a semester, you can continue working on it after that, but it can't be too big and it can't be too small so small that they have the solution immediately. So they would pick not redesign the whole warehouse problems, but more like there are errors that are made when people take things off the shelf and put them in the boxes, and you don't get exactly what you ordered.They call it mis picks. So that was a recurring project is reducing mis picks. And another one was that was in the book was that it takes too long to take bread off the shelf and bag it. And get it to the production line and just in time and sometimes we are too late and also we're going to have to scale up and we expect the busiest season Christmas season ever.And we're going to have to scale up to work to a fast, much faster tack time. So, that was in that book, so that there was significant problems. They tend to be within a process rather than across the whole warehouse. And they would have a bunch of these going on at one time, and there are problems that they haven't been able to solve easily.On their own. [00:18:51] Joe Krebs: Yeah. Betty, you have touched a little bit on that already from a Kata and cultural perspective, but I want to go a little bit deeper on that. And I was just looking at the timeframe you guys mentioned before, and it's kind of, it's interesting because like your, the original start 2003, Kata came 2012, 13.And if you want to look at this timeline right now, we're recording this in January 2024, somewhat in the middle. So you have been going like 10 years there and 10 years after. I want to talk a little bit about the culture, like the culture of the company, the teams, the crews what the culture was like that enabled Kata in 2013.Like what were the signals and the signs there that you would say Oh, these were like, you know, setting the stage for us to be successful. Because you are successful with this. And then also I would love to see from both of you obviously to what has Kata done to the culture and positively impacted the culture at a Zingerman's mail order.Can you explore a little bit both of you on this because I feel like that's an it's an important piece and from it's unique if you're thinking about a company being trying to do it, not trying to do this, being successful with this Kata approach, being in this journey for such a long period of time.[00:20:05] Jeffrey Liker: Maybe you should go back to the kind of unique people oriented culture of Zingerman's. [00:20:10] Betty Gratopp: Yes. Yes, absolutely. So, you know, when I hired on here, I hired on in Zingerman's, I'm not going to give you a year, a long time ago, because otherwise, I'm really old. That was 1997. And I worked in catering. So I hired on as a frontline employee at Zingerman's Deli, one of our sister businesses.And I was immediately taken by the culture and the people from day one, I felt valued. It was really apparent that they wanted more from me than just putting meat on trays or making nice catering trays, which is also a really great thing. But They wanted to know what I wanted to do. They wanted to know what I thought about things that we were doing at the time.I felt heard and I felt valued. There's not a lot of places when you walk in the door into a new job, I don't in my experience anyway, where I felt that valued from the get go. And I stuck around and as a result, I've been able to grow into the position that I have now. Mostly because I've been willing to learn and I've been given a really safe place and a really great learning environment to do that.So my, what I want to do is provide that for everybody else that I work with, and that's the culture I think that Jeff was describing, our unique people based culture, I think is how you said it, is that it's a cycle of everybody trying to help everybody else have a more engaging job. You know, we're all striving for that success [00:21:44] Jeffrey Liker: and they have profit sharing, very active profit sharing and they have, they call it open book management where everybody could see all the numbers and how much [00:21:52] Betty Gratopp: servant leadership[00:21:53] Jeffrey Liker: It is a very open culture.And they provide somebody who was standing behind a counter. That's who's making a sandwich for you. That person has benefits and they're making a living wage. [00:22:03] Betty Gratopp: So it is really is about respect for people and, you know, providing an opportunity for growth. [00:22:10] Joe Krebs: But if I understand that that was already prior to the arrival of Kata.[00:22:13] Betty Gratopp: Yes. So what's really fun about that story though, is even with that culture. Adopting Kata was not like one, two, three, four, go. Everybody was energized by it. Everybody wanted to learn to do it. It doesn't mean that it's easy. And that was true with even all the Lean tools as well. So Kata wasn't unique in that way.And when you're trying to learn new things, we expect that it's going to be fun. I always expect things to be fun or try to make it fun. And we want it to be easy, but that's not when we learn. And we're not advancing our knowledge as a warehouse team if we are not struggling in some fashion towards something.So there's a little bit of a disconnect between how America or whatever thinks that we want work to be like, we kind of want to come to work and check out if you're practicing kata. That's not what you're able to do. You have to be completely engaged. In your in whatever it is that you're doing. [00:23:11] Jeffrey Liker: Yeah. The Toyota Way. There's respect for people and continuous improvement and a lot of companies I've worked with get the continuous improvement part and the tools pretty quickly. But they're weak on respect for people. And Zingerman's was the opposite. It was very strong in respect for people and very weak on the tools and the concepts of continuous improvement.And we thought from the beginning that it was easier to teach the tools. Within a favorable culture, then to teach the tools and then try to change the culture. So we thought it was a very nice fit and it turned out that way. That the fit was very strong. Yeah. [00:23:54] Joe Krebs: Thanks for pointing that out, Jeff. I think that's a that's an important takeaway also to see that there was a specific culture there that actually enabled what was.About to happen with the introduction of Kata, but then once scientific thinking took over 2013 and following, how did Kata positively impact the culture? How did it drive forward? What happened to it? I would assume it did not [00:24:23] Betty Gratopp: stay the same. I was thinking of the years from 2000. We started in 2013, 2018 was our best year ever best year.When I say that, I think of in terms of capacity the quality of our work, internal mistakes, things of that nature. Those were the years that we were, we had an engaged warehouse team. That was working on Kata, we went to school every year that kept us accountable to Dr. Liker's class. We're still doing that.Actually, we were inviting people in for tours and things like that as a way of elevating our work, because when our crew on the floor sees people come and they're curious about what it is that we're doing, that's kind of new and different for a warehouse staff person to have that sort of experience.I just lost my train of thought, but I was going somewhere really good.[00:25:14] Jeffrey Liker: So you were talking about the peak. So what was different? 13 to 18. We're learning. We're driving down the stakes. We're engaged. What happened in 2019 is we took our the eye, our eye off the ball a bit because of the COVID epidemic.And we started ticking back up, but you can look at our year over year, both in our capacity and our quality. And you can see when we started Kata. Actively practicing it and then you can see, so you can see mistakes going down. You can see revenue, things like that going up and you can see when the pandemic stopped our practice and what the impact of that was on our business.Mistakes went up. We weren't paying a lot of attention. There was a lot of other things going on. So it wasn't that we weren't paying attention. It was that our attention was on other things, like keeping people safe. And that's when our scientific thinking kicked in again, only in a different fashion.So it wasn't that we had storyboards everywhere. But every day that we came to work, the three managers were very active in thinking, what is it I can do today to keep people safe? What is it today? I can do now that people are safe to increase capacity. What is our next goal? How are we going to get there?It was pretty fascinating. Yeah. One of the things that impressed me because I bet he was kind of reporting to me at the time what's happened with COVID. And one thing is that people had to think about their jobs and what they touched and using sanitizer. And. What I would see in companies is that somebody say in human resources, which is responsible for safety, would come up with policies and then they would spread the policies every place.But in Zingerman's, they had the group leaders who had a small group and each group leader had to study the job and find out where their touch points and find out how they should use sanitizer. And. They tailored the solution to the standardized work of that particular job, and it was much deeper than the kind of more superficial thinking of everybody has to use sanitizer, you know, and yeah, so I could see the thinking way, even though they weren't formally using the method or storyboard.[00:27:32] Joe Krebs: Yeah, just to that point you're making, right? So sanitizing people, keeping people safe, respecting people, right? As a cultural anchor, as well as having a scientific thinking pattern for continuous improvement. Those two things might be really good attributes for navigating through the COVID crisis.[00:27:58] Betty Gratopp: What was yes, and what was surprising to me is I remember thinking that I might have misstepped by not having a storyboard. And then I think it was Jeff that said, no, actually, it was like the thinking in action. Like you were doing it the workout. I knew that the work was outpacing the storyboard and I knew I couldn't keep it up to date.It was good. That's good. [00:28:18] Jeffrey Liker: But I have the I think often what happens if you have a company that's good to its workers and is strong in respect for people. Is they may lack discipline in executing in a sort of systematic way and also improving in a systematic way. And I think that's what lean and then Kata introduced was a lot more rigor and discipline in how they structured their daily work and how they structured their approach to improvement and reaching their goals.. [00:28:53] Betty Gratopp: It's interesting that you say that because It is true and when, you know, when coven did happen and we were, we had an amazing amount of demand and growth and we tried to, we were hiring during COVID. But so there was like, 3 years there where. I think we did what other companies may experience where the demand hides perhaps some of your missteps internal mistakes were creeping up.We weren't quite aware of that. Standard work wasn't getting used as much as it used to get used. And we weren't really aware of that. And I say all these things just, Because in 2022, when we came, when we started to come out of the pandemic and look at our situation, because of our Kata training and our scientific thinking and.Having advanced to where we had, we were able to look at those years with a different set of eyes, not to say that it didn't hurt to think that we didn't we weren't paying attention to internal mistakes and we weren't auditing our standard work and we weren't focused on growing our.Staff during that time, but we knew that it was just a break. We think of it as a, we had a critical break in 2022 and we had the observation also that we had been here before in 2013, ironically, 10 years ago, as Joe pointed out, and we knew how to do the work. So it wasn't so much it wasn't a self defeat moment.It was a moment of, oh gosh, it's kind of not great that we're here, but we knew how to do the work, and we knew the next step forward, and we knew what we needed to do. And that makes it okay. It makes it. It actually makes it inspiring. You're not inspired at first. At first, you're just okay. But by the time you walk through it and you're like, Oh yeah, we've been here before.And you start getting some traction and the crew starts coming along again. Then it starts being inspired. [00:30:49] Jeffrey Liker: Busy season. Betty was another, it was another pretty successful season, right? [00:30:54] Betty Gratopp: It was better than 2022 markedly. Yes, we had we saw good results of the work that we did last summer. So coming out of holiday 2022, we had our work cut out for us.We spent the summer or I'm sorry, 23. we spent the summer working on that. Yeah. And we had a better year because of it. And when I say by working on it, we were using our scientific thinking to reach our goals. [00:31:20] Jeffrey Liker: I think that one, yeah, one of the things that I think Betty's saying is that the Mike calls the kata starter kata.So the starter kata includes here's the four steps, your challenge, your current state, your target condition, and then experiment and put it on a storyboard. And there's a coach and the coach has a question card and every day ask these questions. And that's the, those are the kata to the tools to help you get started.But the goal of kata is actually to eliminate the kata, is to get to the point where it's just the way you naturally think. And you don't need to say, wait a second, I better write that down on a storyboard. Yeah. [00:32:03] Joe Krebs: What's the fourth question?[00:32:05] Jeffrey Liker: People like Betty had gotten to that point. Not everybody in the warehouse did, but the leaders, all the leaders really of the warehouse had gotten to that point where they're thinking scientifically not necessarily grabbing the tools.[00:32:20] Joe Krebs: That's right. Absolutely. It wouldn't be continuous improvement without continuation. The comic you guys have published is a snapshot in time. It had to end somewhere. It had to go to the printer and has to be shipped. But the journey is going to continue. I would assume that the Kata journey will continue.I don't know how much you can share. You're very open and public with tours and everything on the floor. What are some things you, I don't know if you can share of anything or Jeff by working with Zingerman's, it's just like, where's the Kata journey gonna go? Are there, what are the goals?What are you, what's on your mind if you're thinking about Kata and the next steps? There's another year ahead of us. 24. You just mentioned 20 coming out of 22 busy season. There were some changes. What's happening now for you guys in Kata,. [00:33:14] Jeffrey Liker: We started to address that at the end of the book, and I think it's pretty accurate still, but there's a concept in Toyota hoshin kanri.It's also called strategy deployment where you start top down and you say, these are our biggest challenges. And, you know, there's four big challenges and then for each of those this year, we're going to have a big challenging audacious target for the year. And then that cascades down. So everybody has a piece of that problem of that goal, and they have their own goals that are aligned with those goals at the top of the company.So far, mostly what you saw mail order was individual projects. And it wasn't guided by a strategic vision. So getting to that point where it becomes natural to have an annual plan. And to execute the plan through the year with people involved at all levels. That's one thing. I know that Zingerman's working toward.It would be a huge step forward. [00:34:23] Betty Gratopp: Yeah, that's interesting. You mentioned that we just rolled out a, I call it the big goal instead of challenge your vision. We've called it the big goal. So now we have a, it's written as a Zingerman mail order wide, and then we'll take it and it'll be more specific to the warehouse, but it has to do with capacity, quality, and cost.So it has a I could read it to you if you want. [00:34:45] Jeffrey Liker: Go ahead. [00:34:45] Betty Gratopp: It's not, it's just a challenge. The beginning of a challenge statement, it's two days old, so you have to cut us some slack too. . It says literally two days old. ZMO is a dynamic team able to meet demand defined as 9, 000 boxes in a single ship day.While maintaining an internal quality percentage of 93 percent and offering a Zing org experience. This is to be done by December 2023. So it's a one year challenge for the warehouse and mail order as a larger business. It's not perfect. It'll probably change. [00:35:26] Joe Krebs: It will probably change, [00:35:27] Betty Gratopp: It'll probably change.[00:35:28] Joe Krebs: The journey continues. [00:35:30] Betty Gratopp: Yes. But yes. [00:35:32] Joe Krebs: And I do want to thank you guys for sharing that story a little bit making it really real and building that connect from a mail order business, a floor, very actionable to everybody listening out there. Some of my guests on agile FM, we're talking about sometimes about organizational culture.This is real. This is the culture in, in action. So I want to thank you for spending that time here with me and with the listeners. Thank you, Betty. Thank you, Jeff. [00:36:01] Jeffrey Liker: Thank you. [00:36:02] Betty Gratopp: Thank you. Thanks for having us.

Lean Blog Interviews
The Toyota Way: Responding to, Preventing and Learning from Mistakes with Jeff Liker

Lean Blog Interviews

Play Episode Listen Later Feb 14, 2024 60:52


My guest for Episode #498 of the Lean Blog Interviews Podcast is Jeffrey K. Liker. Jeff is Professor Emeritus from the University of Michigan, President of Liker Lean Advisors, and author of the great books in the Toyota Way series. Episode page with video, transcript, and more He was previously a guest here in Episodes 3, 4, 37, 39, 41, 111, and 400. Today, we have a discussion centered around learning from mistakes in the context of Toyota and lean methodologies. The episode delves into the significance of recognizing, reacting to, and learning from mistakes within organizations that employ Toyota Production System (TPS) or lean strategies. Jeff shares his insights on how Toyota's culture of continuous improvement and learning from errors fundamentally drives its success. The conversation touches on Toyota's approach to leadership and problem-solving, emphasizing the structured response to mistakes at different levels of the organization, from the factory floor to top management. The episode further explores the Toyota leadership model, illustrating how leaders at various levels are expected to react when mistakes occur. Liker explains the role of the andon cord system in facilitating immediate problem identification and resolution, showcasing Toyota's commitment to quality and efficiency. He elaborates on the multi-layered leadership response to errors, detailing the responsibilities of team leaders, group leaders, and higher management in fostering a culture of learning and improvement. The discussion underscores the importance of a systemic approach to problem-solving, where the focus is on understanding and addressing the root causes of mistakes rather than attributing blame to individuals. This episode offers valuable insights into the principles of lean leadership and the critical role of acknowledging and learning from mistakes in achieving organizational excellence and innovation. Questions, Notes, and Highlights: How you'd expect Toyota leaders to react to a mistake on the factory floor? Less likely to blame an individual?  Root cause vs. controllable cause? That can be a tough lesson to teach other companies? Hardest habit to break is the blame habit? Mistakes people make in trying to help change behavior What's necessary, in another company's workplace culture, for people to feel safe pulling the andon cord or speaking up? Article about the Ford plant and andon cords in 2007 Jeff insights on that Dearborn plant The mention of psychological safety in “Toyota Culture”? What do you think of the phrase “psychological safety”? Or just the concept of it? Fujio Cho – biggest surprise was that TMMK workers were afraid to pull the andon cord New book: Engaging the Team at Zingerman's Mail Order The podcast is brought to you by Stiles Associates, the premier executive search firm specializing in the placement of Lean Transformation executives. With a track record of success spanning over 30 years, it's been the trusted partner for the manufacturing, private equity, and healthcare sectors. Learn more. This episode is also brought to you by “The Optimistic Outlook,” hosted by Barbara Humpton, CEO of Siemens USA. This podcast is a hub for those passionate about transformative concepts that shape both our workplaces and our world. Find it in your favorite podcast app. This podcast is part of the #LeanCommunicators network. 

Agile FM
143: Jeffrey Liker

Agile FM

Play Episode Listen Later Feb 6, 2024 34:40


Joe has a book “Agile Kata” in the making, if you like to be the first to know when it launches, please visit www.agilekatabook.com.Transcript: Agile F M radio for the agile community. [00:00:05] Joe Krebs: Thank you for tuning into another episode of Agile FM. Today, I have Dr. Jeffrey Liker with me. You probably know from a, I would say, famous book with the title The Toyota Way. That is a book we want to talk about today a little bit, but there's so much, much more about Jeff, he is a professor of industrial and operations engineering at the University of Michigan.He's president of Liker Lean Advisors, and as I said, he wrote not only the Toyota Way, but he also wrote, if I did the count right, nine other books. That relate to Toyota, and there are two books that more recently were published and we'll have a chance in a different episode to talk about those.One was in June, 2023, Giving Wings to her team with Tilo Schwartz, and we have Engaging the Team at Zingerman's Mail Order and that's more like a comic if you want to see it this way, and he co authored that with Eduardo Lander and Tim Root, so that is the The list of books if I haven't missed anything, but we want to talk a little bit about the Toyota way before we do that.Welcome to the show though, Jeff. [00:01:13] Jeffrey Liker: Thank you. Joe. [00:01:16] Joe Krebs: Awesome. So the Toyota way initially released, I believe 2000, somewhere three, two, somewhere that this book we're talking about is the Toyota way. Second edition. This is also very important. We're talking about the second edition of which, which was released somewhere in the year 2021. Timeframe. [00:01:34] Jeffrey Liker: Yes. Three, about two years old. [00:01:36] Joe Krebs: Yeah. And but there is something that happened in that book that is fundamentally different in, in terms of I, I don't know all the change log and everything, but there's one fundamental change, and that is the inclusion of scientific thinking.[00:01:52] Jeffrey Liker: Right, right. A little over five years ago, Mike Rother than I jointly gave a presentation and the book hit my book Toyota Way was 20 years old. So the 20 year anniversary, and his book to Toyota Kata was, I believe, 10 years old, and. We started talking about the relationship between the two.Mike was one of my students and he had practiced lean transformation for many years and was very familiar with the Toyota way and all the concepts of Toyota and studied Toyota. And then he came up with this thing called Toyota Kata. And I had to kind of struggle to sort of figure out what it was and what he was trying to add to what we know about Toyota.And. What he really did was to reverse engineer what Toyota, we call him Toyota Sensei. Sensei is like a master teacher. So what the Toyota Sensei, who are experts on the Toyota production system, do when they work with a new client outside of Toyota, how do they teach it? And they always teach by doing.And he had a chance to see a lot of companies that these different Toyota masters worked with and their masterpieces. And. Asked the question, What do they have in common? And they're all very successful, like they almost won't even bother working on a project unless they can at least double productivity.And that just happens almost automatically. And so he knew that they got great results. But the question is, what are they doing. And in fact, each of these masters. It has a bit of an ego, and they think that they're doing it the right way and the best way, and nobody else can do it that way, the way they do, but he found an underlying pattern, which he called scientific thinking, and what he noticed is the first thing they do is they grasp, they call it grasp the situation in Toyota, they go in, they see what's going on, they talk to the top leaders, and they ask, what is it that they're trying to accomplish?What is their goal? What is their purpose? What are their goals? Why do they want to learn about lean management? What is their vision for what happened? If they were successful, then they go to the Gemba where the activity is, and it could be a factory that they work. They've worked with where they gave you injections for COVID 19.They've worked with where they made ventilators for COVID 19. They've worked with software houses where they develop software. They don't really care when they will go to the Gemba and they'll see the process and understand the current conditions. So then they'll go back, they'll grasp the situation generally, and then they'll go back and they'll say, here's where you're at.Here's the challenge for you. Yeah. And the challenge is always big, you know, like we will double productivity or we will reduce costs by 30 percent or something pretty big based on the needs of the company may have runaway late deliveries and there's paying a ton for a premium freight.And we'll say we will eliminate all shipping and then they will go back to the Gemba with a team of people from the company. And they will teach them how to see, how to understand the process as it is. And Mike calls this the current condition. And then the people in the company will basically wait and expect answers, solutions from the masters.So what do we do? And the masters will say, that's my question to you. What are you going to do? You see where you are, you see where you want to be. You see all sorts of opportunities. What do you think you should be working on first? And then based on what they say the students say, they they may ask them to go back and look some more.Or they may say, why don't we try it? Usually what these people come in the company, come up with, because it's a big challenge, they come up with a fairly big thing and they, it might be, for example, in a manufacturing facility, moving equipment around and laying it out as a cell and They said a personal last one.Can you do this? And they'll say something like, well, we have to talk to engineering and we have to make sure customers okay with this. We have to line up the maintenance people move the equipment. So, I think we really stretch it. Maybe we could do it in a week. And then the trade master will say, good, I'll be back tomorrow and that like starts the process. Now, of course they can't do it in a day what they might have to do it. They can't get all the approvals. So what the person is trying to get them to do is. You don't have to do a hundred percent in one step. Let's try something that's doable and then see what happens.And then we can learn from it. And then we can think about based on that, what our next step is. Usually what happens is the, like, for example, if they lay out a cell. It'll be a disaster. You'll move the equipment together and they'll realize that the equipment has maintenance issues and it's breaking down and everything stops because they don't have inventory anymore.And usually they can't, they barely make product and the you know, the mentors say, that's okay. Let's start working on the problems down now that we see what the problems are. You were hiding them before. Now let's start working on the problems one by one. So Mike saw that, and he saw it enough times, that he realized that what the, these Master thinkers were doing.We're not teaching tools and methods like most of the Westerners were doing with lean. They were teaching a way of thinking. Yeah. And it was actually very scientific. What's your goal? What's your current condition? Right. You know, fairly precisely with measurements and direct observation. And then let's not try to in one step get to the challenge.Let's break down the problem. And all we really need to understand is our first step. And then after that, our second step, our third step, and each of these steps were structured like experiments. They might ask them, what do you think will happen if we make the cell? And then, you know, the people will say, Oh, well, our productivity will go up or quality will go up.Let's see what happens. Yeah. It's a disaster. Yeah. So what did we learn from that? We learned that we have a lot of problems that we've been hiding. And now we can see the problems we have to solve them. So, and also they're trying to teach the value of running the experiment, learning from it, which then gives you the next step and gives you the next step.So that became the basis for what. Mike call Toyota kata. The other part of it was in the meantime, he was studying about neuroscience and cognitive psychology and how we learn and there's a lot of literature that suggests that none of us are natural scientific thinkers, right? We're driven more by biases and the desire to know things, whether we do or not.So we want a lot of certainty. And we want to be right. We're going to, in fact, fudge the data to make it appear that we're right. That's called confirmation bias, which is really strong in humans. So he realized that to change people, to start to think and act scientifically requires fundamental behavior change.That's right. Yeah. It means changing our habits. And then he asked the question, how do you change habits? And the literature on, on, on cognitive psychology and neuroscience, as well as Practical experience, for example, with coaching sports teams, it all says the same thing, which we have to practice repeatedly with feedback.And it's very common enough times it becomes a new habit. So then he said, asked, how do you, how can we practice scientific thinking? And he said, first, we need a model, which we have, which is challenge current condition, first short term target condition, then experiment, then second target condition and experiment.Then third target condition and experiment. And. Then he said, how can we teach this? And each of those steps has some associated ways of thinking and tools and think practice routines, things to practice. So he laid that out in what he calls the Toyota Kata practice guide, which is pictures and step by step instruction, like, Like a recipe book and he came up with kata, which comes from the martial arts, which mean small practice routines to teach us complex skill by breaking it down and trying the pieces one by one karate.They'll have the first kata and move the second kata until you learn the first kata. That's right. Correctly. So it's an evolution. Yeah, and usually think about, you know, taking a music lesson until you can play the very simple piece. They want. Go on to the next more complicated piece. All right. So, that led to the whole Toyota Kata, which is a model plus the practice routines.And as you practice them, you begin to think more naturally in a scientific way. [00:11:20] Joe Krebs: Right. So what's interesting is so when I started looking at Mike Rothers work right on, on Kata, and obviously I read your first edition, came in to the second edition and it just like became more and more eyeopening is these habit changes or like a habits we have and habits we want to change that's the same in the agile community, right?So we have certain habits of how we. build software or how we release software and go through transformation and all these cultural changes. So it's just like this meta skill. If you want to see it this way, that, that's that's fascinating when I came across this now, I do want to make sure that If I understand this right, this is obviously not that in 2021 Toyota started with scientific thinking.It was there before, right? It is like something that was carved out as something like it should go into the Toyota way as this core thing. So if you look at [00:12:10] Jeffrey Liker: Yeah. So that was the, we ended up giving a presentation where we said Toyota way and Toyota Kata play well together as if there were separate things.And then thinking about some more, I realized that scientific thinking really underlies. What I called in the Toyota way, the four P's of the Toyota way. The first was philosophy, which I refer to as long term systems thinking. And the second is lean processes. The process of trying to work toward one piece flow.And the third is developing people. In problem solving, which is the fourth "P" and I realized these all are connected through scientific thinking, right? And if you're not thinking scientifically, you can't do any of them. For example, you can't be a system thinker. Yeah. If you're a jelly non scientific thinking is reductionist.We assume every individual tool operates on its own. So we implement Kanban to get inventory reductions and we implement standardized work to get productivity improvements. So we're seeing isolated tools as opposed to a whole system, which is what Mike called the Toyota production system. So with that, I then started to rethink the book from the point of view of scientific thinking, being at the center.And also realizing that you can't really talk about lean as if it's a bunch of mechanistic pieces that you individually build and then they just all suddenly fit together. You have to talk about more of an evolutionary learning process. Yeah. Organization. [00:13:48] Joe Krebs: Yeah. This is interesting. So, I have never consulted for Toyota myself but I was told that the word Toyota Kata does not really, it's not a use, it use Toyota.[00:13:58] Jeffrey Liker: That was not their word. It was Mike's. [00:13:59] Joe Krebs: Exactly. Yeah. [00:14:00] Jeffrey Liker: Description from the outside of what he learned in Toyota. And then he went further and say, the Japanese sensei, they tend to be pretty mysterious Yeah. Yeah, it's light. For example, do it tomorrow. Yeah, we'll come and see. So what should I do now? What do you think you should do now?Yeah. So they tend to be mysterious, but he realized that if we want to mass distribute this to people that don't have access to those magical Japanese, we need a very explicit and simple methodology. So he developed in great detail, this methodology that in Toyota, they wouldn't think they had to use because they, what they say is that from the day you enter the company, the culture is so strong.You begin to learn Kaizen. [00:14:49] Joe Krebs: Yeah. Interesting. So, what was that one of the reasons why you decided to call that core scientific thinking, or was it more like, because it's the thinking and not the tool, it's not the pattern [00:15:00] Jeffrey Liker: thinking now it turns out. You go back to the first Japanese pamphlet. Really? It was a document for the first Japanese document that describes the Toyota production system.It says that it's based on scientific thinking. So for people in Toyota, that's not. Unusual. It's not a stretch, but they, and they think of scientific thinking more empirically than theoretically. So there's theoretical science where we just. In the abstract. And then we deduce from that things and we apply the abstract model to a problem.And then there's inductive science where we look at the phenomena and the empirical reality. And then we induce from that principles and solutions. And so in Toyota, they learned that you need very specific solutions to very specific problems. Yeah. Not general solutions to a whole general class of problems.So you need both to some degree, but they're much more focused than most on solving this problem right here, right now. Yeah. So when they see product development in software, we're developing a software program, they see it and maybe they see it as a part of product development, but they're not going to come in and say, here's your 10 step roadmap to great software.They're going to ask, what is your problem? What are you trying to accomplish? What's your goal? Let's go look at your current process. So they want to know the specifics of your situation and your goals. And they want you to learn how to think scientifically, to learn for yourself how to achieve whatever goals you have and adapt and adjust as the environment changes.[00:16:45] Joe Krebs: It is, it's fascinating also when I open up your new book, the second edition, right? There's also a thing where you design a I don't know if that's the content of your masterclass. I do know that you're teaching a lot of masterclasses but it's really the transition from a mechanistic lean, right?Organic lean. And if I go through the list of the organic lean, this is just like, it just translates for me, for somebody who has been now, you know, using, learning, applying Kata thinking more and more it just links like one, one, one to one, like two to the scientific thinking too, right? [00:17:17] Jeffrey Liker: Yeah, the other part is that whatever performance improvement program you have, Whether it's lean or agile or theory of constraints or whatever.If you look at it from what I call mechanistic point of view, then you're trying to fit square pegs in the round holes, you know, your problems, I want your problems to fit into my model. . and the other expression pill uses, if you have a hammer, everything looks like a nail.So, You can apply Lean, you can apply Agile, you can apply Six Sigma mechanistically, or you can apply any of those things organically. You start organically, you start with a problem. You want to engage the people who understand the Gemba the reality the best. And you want to teach them how to think differently about their process.So they developed the skills of problem solving and performance improvement, and you expect to be surprised and you expect that you won't know the answers until you start digging in and trying things, Mechanistic point of view, you, I have the solution and I'm going to sell you the solution, even though I've never been in your place.I've never seen your process. I don't know anything about. Yeah, I have the solution for you. That's kind of taking this abstract solution and assuming it's going to apply in the abstract to any similar type of problem. Staying at that theoretical level. [00:18:49] Joe Krebs: This is this could I want to just take one example.You know, I want to hear your opinion about this as you do teach these classes, right? When you are surrounded by leaders in those workshops, and you do talk about something like, yeah, I find like the right line here. It's not about like organic, Lean. It would be, it's not a project. It's a journey.Right. And I would just like to hear like what kind of responses, what do you hear when you introduce a concept like this, in terms of continuous improvement and it's a journey or it's a. From a cultural perspective, it's not like an initiative that starts here and ends in by the end of March or any arbitrary date you, somebody might pick it as an ongoing activity that obviously shifts from a leadership perspective, entirely the view, like, what did you hear when you challenge people?[00:19:39] Jeffrey Liker: When I teach the masterclass, the people that usually come have titles like director of continuous improvement, vice president operations excellence and then I'll get some people who might be the head of operations or plant manager, but and you're probably this is self selection, but they all agree when we talk about it.That the approach they have used in the past was very mechanistic and the approach that they believe, particularly after they see it in Toyota. So we do this with Toyota is they see the value of engaging all the people and Leaders acting more as coaches than as disciplinarians. And they said, that's what we need.So they, they conclude they want to move toward a more organic approach, but then they also feel a little bit concerned and nervous because I said, you know, my boss's boss expects immediate measurable results from everything we do with lean. And if you're telling me that it takes time, if you're telling me that it takes investment in developing people.And there's a gap, a time gap between the investments we make in developing people, for example, teaching them using Kata and the results that we get, we're going to have a hard time selling that. So what we ended up concluding usually is that you need both, that there is some value in the experts coming in with the tools, eliminating waste and streamlining processes and getting.Quick results on a more expansive part of the organization. Cause these people are coming in with big companies. They might have 30 or 40 or 50 manufacturing plants and the, and that there's a value in piloting within a smaller area, some of the deeper approaches to changing ways of thinking and changing culture with the successes you have in those models.You have something to sell to the senior management, come and see this and see how much better they perform. So that's usually the kind of vision they have is that they have to somehow find a balance. And I have a slide that shows like, the balance of justice and they have to find a balance between the more mechanistic, quick, short term and superficial approach.Deep and a mile wide. And that's deploying the tools and then the more deep one inch wide, a mile deep, the more deep approach to developing people one by one that you would be doing with Kata. So they have to find a balance between those things, and they have to figure that out there through their own scientific thinking journey.They have to figure it out inside their company by trying things by experimenting. So I asked him instead of leaving here with a whole bunch of solutions. that you're going to bring and implement your company, think about one big challenge that would really make a difference. Your ability to deploy lean, sell lean and define that as a challenge.Then the next, what do you do next? And they said, well, we have to solve the problem. Okay. So how do you solve the problem? Do you go back there and say, we need standardized work. We need employ work groups that we saw at Toyota. And they said, no, those are solutions. We have to understand the current condition.First. That's a great, wonderful.[00:23:09] Joe Krebs: Back to scientific thinking.. This is awesome. Your book was initially the first edition came out as we said of. Several years ago, 2002 or something like that. Why do you think at least from the, from an agile perspective there's other terms floating around. I don't want to go into pick any, right, because it's not a complete list necessarily, but why do we.I see like a lack of of these terms actually like being used on a more broader level, right? You have sold so many books and people are looking at this and saying this is wonderful material, but the implementation, it seems to be slow in the transition. Like taking companies to lean or even in, in agile transformations, is it, do you think it has something to do with the the culture, like, like, for example, using Japanese terms or something like that?[00:24:01] Jeffrey Liker: Yeah, I don't think that so much. I mean, I think there is sometimes a sense that since this is a car company and you have a stereotype picture in your mind of what a car company does. And the first thing you often think about is the assembly line, where you have cars running down the assembly line and people are attaching things to the car.And you say, well, that doesn't look anything like what I do, so therefore, it doesn't apply to me. So there's a lot of that, you know, we're different. And it could be anything. It could be that we're a manufacturing company, but we make chemical products. It's not like cars going down the line. Or it could be that we're a finance company and we don't make any physical products.Or it could be that we work with a mining company that does iron ore mining in Australia and we go and we blast and we dig and we have this big batches of stuff. And how do we get to one piece flow? So, the the problem is that you have to shift your thinking from manufacturing. Mechanical solutions.Like I'm trying to look over here to get solutions that apply in an obvious way to me. You have to shift that thinking to there are some general principles here that have been abstract abstracted that I can then bring to my operations and the people who are well trained and lean or in Kata get very comfortable going into any new environment and not knowing What the solutions are, and then digging in and trying to understand the current condition of that operations.So this idea of I think the first easy thing to do is to copy solutions like a template. But if you give me a template, I'll just superimpose on my process and I know what to do. And the harder thing is to take a more abstract concept, like I need to define a challenge., even when I take my classes and I asked them to define a challenge, they struggle, you know, the challenges we want to have a culture of continuous improvement.Well, that's way too abstract. And then if they say, well, the challenges we would want, we'd like five suggestions per employee. That's way too specific. . So finding the right level of the challenge, you know, itself challenging challenges are thinking. And then what do you look at in the current condition?If it doesn't look like a Toyota plant where you can say it takes 60 seconds for each car and we can break down the steps of attaching window wiper into a reach that takes 2 seconds and, you know, They that's their current condition analysis. Your current condition analysis may be very different if you don't have a routine repeating process.But there are ways to understand the current condition in any sort of process. And even and I remember Deming saying that if you don't think you have a process, you can't improve anything. So, that even that idea that, you know, we develop software, and every software project is different. And the process is that we understand what the customer wants, and we do it.There's no process beyond that. You know, so that Just understanding there are processes, there are habits, there are routines that you have and you need to shine a light on them and understand them, and then figure out from where you are how to start to move in the direction. of the ideal model you have in your head.That, you know, it takes a, it takes thinking. Yeah. It's thinking is tiring. [00:27:36] Joe Krebs: Well, that's my recommendation to all of the listeners out there. When I went down the journey and extracted. By doing exactly what you just said, like looking at that material and extracting information saying like, okay, this is not about Toyota.This is not about this. This is about, you know, how would this apply a map to the agile world? I'm just calling it agile Kata out because of the making a dereferencing it to the Toyota. Brand, let's say in this particular case, but the thinking is the same in terms of the scientific thinking, but surrounding it with agile principles and, you know, [00:28:12] Jeffrey Liker: last thing I'd like to say is that as I dug into agile and you and I met.Menlo Innovations, which is kind of a benchmark for Agile and software development. And I looked at what they're doing there, which Richard Sheridan we're doing. And I saw lots of similarities to the Toyota way. And I saw also a lot of similarities to Toyota Kata. And I met, worked on Zingerman's mail order with Tom Root, who is one of the owners.He was originally an IT guy. So the backbone of the mail order business is the IT system. And what I discovered, and I've talked to you and I've talked to a lot of different IT people, what I discovered is that a lot of the concepts of scientific thinking are actually quite natural for programmers, you know, see, if I think in terms, if I say we need to think in terms of systems and how the parts interact, and I go into a manufacturing environment, they might think Treat me like I'm from another planet, but the software guy will say, of course, and then the idea that you have to have a vision for what the software is going to do and understand the customer.And then you have to break that down into small elements of some sort. Call them features, and then you need to develop one feature at a time and then compile them, make sure they work together as a system, and then build the next feature and compile it. And it's a step by step learning process, breaking the big problem into small pieces and then solving each problem one by one.That idea just you know, a software program said, how do you do it any other way? So the high level model of the Kata makes perfect sense. Within the world of software development, but how to do that in a sort of structured systematic way and make it part of the culture and natural.For example at Menlo Innovations, they do unit testing. And if I say unit testing to a software program and say, of course, we know what that is. Let's go and see your program and show me the unit test you've conducted. Exactly. And this kind of, yeah, and it's got to be hopefully more and more examples like this, right?Than than the one you're naming. And so I think somebody might be listening to this. Or reading the second edition of your book of the Toyota way might be building these bridges to whatever environment they are in, right? About in, in the Toyota way I do write about Menlo innovations. And so I, so that's another thing I did in the new edition is add more service examples and software examples and examples from other places, which I didn't have at the time I wrote the original book, I was just describing.So that's in the book. And it. The thinking way is still the same and one of the things that happened with Richard and to tell you the truth is that he started to get kind of turned off by a lot of the agile examples he was seeing, because they like the lean folks were often simply using a tool.Be that agile was almost equivalent to writing things on post it notes. Yeah, and he has all culture. He calls it deliberate culture. He had to develop the whole culture. Out of pairs, paired programming and programs learning from each other and sending what he calls technical anthropologists out to the customer to really deeply understand the Gemba and how they're using software and getting the customer in week by week, every single week to test the software and give feedback to the team.So there's a whole set of practices that he had to create as the standard for the culture of Menlo. That it took an awful lot of work and it was much more than buying a lot of post it notes. [00:32:08] Joe Krebs: Yes, and maybe that was one of the reasons why he decided when we all agreed on we're going to meet in Ann Arbor and it was in September 23 we'll all come together and it was Mike it was you and several others and Richard Sheridan was the first one who says and count me in and I'm offering my office space for this because it's so important.[00:32:25] Jeffrey Liker: So yeah, well he yeah so he didn't understand Kata at first but then I understood it. And he said, yeah, that's pretty much what we do. Isn't it? Then he had to, you know, he then added some things to what they do because they weren't working in a deliberate way using the scientific approach of kind, but the overarching way that they worked and developed all their software was very much the vision, current state, right down to small pieces, solve one problem after another with very quick feedback.Correct feedback, then get it to work. One of the interesting things about Menlo innovations projects, cause they're developing customer software, none of it's off the shelf. And they, if they do a one year project in the 52nd week, the only thing they have to get right is one week of work because 51 weeks of work works perfectly.So there's basically zero, almost zero rework and they have a hundred percent customer satisfaction. The customer takes the software out of the box and they just start using it.. [00:33:37] Joe Krebs: I want to thank you Jeff for some insights on the second edition of the Toyota Way. If the second edition is It's only somewhat successful as the first edition in terms of sales of books.Thousands of books will be sold and thousands of readers out there will be exposed to scientific thinking and it's a good thing through your materials. I want to thank you for that. And also, yeah, just like, to everybody out there, if you are interested go to the show pages, I'm going to list Jeff's books and obviously ways of learning about Kata in a way to apply that in the agile context, I have some additional pointers here of where to go, what to do first and second, and obviously the Kata Bookshelf is growing thanks to you, Jeff, too, and and many more ways to learn about scientific thinking.Thank you, Jeff. [00:34:27] Jeffrey Liker: You're welcome. It's my pleasure, Joe. Take care then.

My Favorite Mistake
Amazon's Culture of Experimentation and Learning; Big Bet Leadership with John Rossman

My Favorite Mistake

Play Episode Listen Later Jan 2, 2024 38:00


My guest for Episode #242 of the My Favorite Mistake podcast is John Rossman, a leadership and digital transformation expert. John is the author of three books on leadership and business innovation including the best seller The Amazon Way. He is an early Amazon executive who played a key role in launching the Amazon marketplace business in 2002.  His new book will be released on February 24, 2024: Big Bet Leadership: Your Playbook for Winning in the Hyper-Digital Era. You can pre-order it now. Episode page with video, transcript, and more Today, he is a leading keynote speaker on leadership for innovation, transformation and artificial intelligence and has given over 200 keynotes to worldwide audiences. John is an operator and builder whose love is diving into business problems and customer needs designing innovative solutions and business models, and creating durable enterprise value. He served as senior innovation advisor at T-Mobile and senior technology advisor to the Gates Foundation. John was a managing director at Alvarez and Marsal for twelve years leading several business turn-around situations, serving as interim CIO at a restructuring client, and leading the development of several large clients, including Walmart, Nordstrom, and Microsoft.  John is the founder of Rossman Partners, a leadership development, coaching and advisor solutions company. He is often joined by his Frenchie, Bossman. In this episode, we delve into the birth of Amazon's Marketplace, a venture that pushed limits and disrupted the e-commerce landscape. Rossman's role in pioneering this platform was marked by strategic risk-taking and innovation, lessons that emerging business leaders can take to heart. From edging out competition with unified checkouts to shaking the norm with new product categories, Rossman's story is a testament to the power of creativity and resilience. Understand his approach to the successful expansion of the Marketplace and discover how to nurture “small and tender” ideas into successful ventures. Questions and Topics: Amazon Marketplace business - the 3rd iteration of a 3rd party selling platform Were you confident this was NOT a mistake, this new approach? What was different? What was the testing process? Auctions was an eBay competitor? What was the approach for evaluating the experiment? How long to give it? Not working or not working yet? Is the mistake thinking that a company like Amazon always gets it right the first time and that others need to do the same? Amazon is influential... Mistakes people make in trying to copy them too directly?  Differences between Toyota Way & Amazon Way structure? What does “leaders are right - a lot” mean? Not “always”? 80% level What's a hyper-digital era? Subscribe, Follow, Support, Rate, and Review! Please follow, rate, and review via Apple Podcasts, Podchaser, or your favorite app -- that helps others find this content, and you'll be sure to get future episodes as they are released weekly. You can also financially support the show through Spotify. You can now sign up to get new episodes via email, to make sure you don't miss an episode. This podcast is part of the Lean Communicators network.

'The Mo Show' Podcast
The Toyota Way, Growing Up In Japan, Ice Baths & Vision 2030 | Hassan Jameel 100

'The Mo Show' Podcast

Play Episode Listen Later Dec 11, 2023 101:19


Hassan Jameel is a prominent Saudi businessman. He is the Deputy President and Vice Chairman at Abdul Latif Jameel, an internationally diversified business founded by his grandfather in 1945. A substantial part of his life has been immersed in Japan, where he grew up, and worked with Toyota. Proficient in Japanese, he has a deep affinity for the culture and feels entirely at home there. He has embraced the Japanese principle of “kaizen,” meaning continuous improvement, in both his business ventures and personal well-being. He is an aficionado of automobiles.

Connecting the Dots
Giving Wings to Her Team with Tilo Schwarz

Connecting the Dots

Play Episode Listen Later Nov 30, 2023 28:42


Tilo Schwarz is a leadership coach, former plant manager and co-founder of the Campus for Leaders at the University of Applied Science Ansbach. He helps managers to successfully lead change and empower their teams for improvement, adaptiveness, and superior results. During his time as a plant manager at a renowned German power-tool manufacturer, he started practicing Toyota Kata with his management team as part of Mike Rother's groundbreaking research in 2006. By doing so, Tilo and his team established continuous improvement as a daily routine throughout all processes and areas of the plant. That led to winning the A. T. Kearny operational excellence competition "Factory of the Year" and a WHU/INSEAD Industrial Excellence Award. Tilo is the author of several books on coaching and Toyota Kata.Jeffrey K. Liker is Professor Emeritus, Industrial and Operations Engineering at The University of Michigan and President of Liker Lean Advisors, LLC. He is the author of the best-selling book, The Toyota Way, Second Edition, and has coauthored nine other books about Toyota including The Toyota Way to Service Excellence and The Toyota Way to Lean Leadership. His graphic novel with Eduardo Lander and Tom Root tells the story of lean transformation at a mail-order company: Lean in a High-Variability Business. A more compact graphic novel, Engaging the Team at Zingerman's Mail Order, illustrates how Kata unleashed the creativity of their team. His articles and books have won thirteen Shingo Prizes for Research Excellence. He was inducted into the Association of Manufacturing Excellence Hall of Fame and the Shingo Academy.Link to claim CME credit: https://www.surveymonkey.com/r/3DXCFW3CME credit is available for up to 3 years after the stated release dateContact CEOD@bmhcc.org if you have any questions about claiming credit.

WLEI - Lean Enterprise Institute's Podcast
Exploring the Intersection of Lean and Agile: Lessons from Theodo

WLEI - Lean Enterprise Institute's Podcast

Play Episode Listen Later Oct 31, 2023 42:58


In this episode of the WLEI Podcast, we talk with Fabrice Bernhard and Catherine Chabiron. Fabrice is the co-founder of Theodo, a fast-growing software company, and Catherine is the author of the new book, Learning to Scale at Theodo: Growing a Fast and Resilient Company. Fabrice and Catherine share how Theodo has seamlessly integrated lean thinking into its management system enabling it to grow rapidly while maintaining a customer-first mindset and ship quality software. During the conversation, we dive into: Lean vs. Agile: How Theodo found lean thinking and how it complements agile, while challenging traditional perspectives in the software industry. Quality vs. Speed: Navigating the delicate balance between producing high-quality code and meeting the demands for rapid delivery. Customer Focus: How lean has enhanced Theodo's customer-centric approach, making it a hallmark of their operations. Learning Organizations: The role of continuous learning in building resilient teams that not only solve technical problems but contribute to organizational growth. People Development: How Theodo leverages problem-solving at the gemba to foster a culture of continuous improvement and employee development. Special note: During the conversation, we mention the book The Toyota Way of Dantotsu Radical Quality Improvement, which Theodo has been using to transform its approach to improving quality.

Amplified Impact w/ Anthony Vicino
Insanely Powerful Business Building Framework | Ep. 265

Amplified Impact w/ Anthony Vicino

Play Episode Listen Later Sep 18, 2023 18:51


In this episode, I'm sharing a principle that transformed my business, Escape Climbing, from $300,000 to $3 million in just a few years. This concept applies not only to manufacturing but to any business and even your personal life.I'm talking about identifying the eight types of waste, a concept borrowed from the Toyota Way and Lean Methodology. These forms of waste lurk in everything we do, from making products to running daily operations.The key is to identify these types of waste in your processes and start eliminating them. By doing so, you'll streamline your operations, boost efficiency, and watch your business grow.So, take these principles and run with them. It's a sure path to success. LEAVE A REVIEW if you liked this episode!! Let's Connect On Social Media! youtube.com/anthonyvicino twitter.com/anthonyvicino instagram.com/theanthonyvicino https://anthonyvicino.com Join an exclusive community of peak performers at Beyond the Apex University learning how to build a business, invest in real estate, and develop hyperfocus. www.beyondtheapex.com Learn More About Investing With Anthony Invictus Capital: www.invictusmultifamily.com Multifamily Investing Made Simple Podcast Passive Investing Made Simple Book: www.thepassiveinvestingbook.com

The Lean Solutions Podcast
Coaching Kata With Dr. Jeff Liker

The Lean Solutions Podcast

Play Episode Listen Later Aug 8, 2023 43:16


In this episode, Dr. Jeff Liker and I dive into the fascinating world of Kata coaching and explore the key concepts from his novel on the subject What You'll Learn: 1. What led you to write a novel with Tilo Schwarz? 2. For the listeners that do not know, what is kata coaching? 3. What did Tilo add about coaching to Mike Rother's 5 question card? 4. Why a novel about kata coaching? I understand that Tilo already published a book about the coaching microskills. 5. What would you like to hear from readers that would really excite you? About the Guest:  Jeffrey K. Liker is Professor Emeritus, Industrial and Operations Engineering at The University of Michigan and President of Liker Lean Advisors, LLC. He is author of the best-selling book, The Toyota Way, Second Edition, and has coauthored nine other books about Toyota including The Toyota Way to Service Excellence, and The Toyota Way to Lean Leadership. His graphic novel with Eduardo Lander and Tom Root tells the story of lean transformation at a mail-order company: Lean in a High-Variability Business. His articles and books have won thirteen Shingo Prizes for Research Excellence. He was inducted into the Association of Manufacturing Excellence Hall of Fame and the Shingo Academy. Links: Click here for more information on "Giving Wings to Her Team: A Novel About Learning to Coach the Toyota Kata Way" ⁠Click here to connect with Jeff on LinkedIn⁠ ⁠Click here for The Lean Solutions Summit  --- Support this podcast: https://podcasters.spotify.com/pod/show/leansolutions/support

The Marketing Analytics Show
The Kaizen Framework: How to turn marketing data into growth

The Marketing Analytics Show

Play Episode Listen Later Jun 29, 2023 26:02


You may have heard of the Toyota Way or Kaizen. It's a manufacturing approach that aims to maximize efficiency and reduce waste. Kaizen means 'continuous improvement' in Japanese. So how can you apply Kaizen to marketing data management? We chat with Zeke Camusio, CEO of Data Speaks, to figure it out.

KaiNexus Continuous Improvement Podcast
[Preview] Why Kindness is the Key to Lean Leadership, Webinar with Karyn Ross

KaiNexus Continuous Improvement Podcast

Play Episode Listen Later Jun 22, 2023 8:04


Learn more and register Mark Graban, from KaiNexus, and Karyn Ross discuss her upcoming webinar. July 11 from 1:00 pm - 2:00 pm ET Presented by Karyn Ross, Founder of The New School for Kind Leaders People often think that lean is a kind way to work. But lean is a thing – and things aren't kind or unkind – people are! In order for leaders to be able to develop people to work in lean ways, create, and innovate, they need to lead with kindness. In this webinar, you'll learn about the Three Key Kind Leader Practices of Thinking, Speaking, and Acting Kindly, from Karyn Ross's latest book "The Kind Leader: A Practical Guide to Eliminating Fear, Creating Trust and Leading with Kindness," and how and why they are the key to lean leadership. About the Presenter: Karyn Ross Karyn is on a mission to Help People Create a Better, Kinder World. An artist, internationally acclaimed speaker, award-winning author, consultant, coach and practitioner, Karyn travels the globe teaching people her unique system of combining creativity, continuous improvement and kindness to make a better world. As well as being the owner of KRC (Karyn Ross Consulting) Karyn is one of the Founding Mothers of Women in Lean – Our Table, a global group of more than seven hundred and fifty women lean practitioners. Karyn is also Founder and President of the Love and Kindness Project Foundation, a registered public charity and The New School for Kind Leaders. She has created both of these initiatives to help people around the world think, speak, act and lead more kindly. Karyn's sixth book, The Kind Leader: A Practical Guide to Eliminating Fear, Creating Trust and Leading with Kindness is available for preorder. Karyn's five other books are: How to Coach for Creativity and Service Excellence: A Lean Coaching Workbook, the Shingo-award winning The Toyota Way to Service Excellence: Lean Transformation in Service Organizations, I'll Keep You Posted: 102 of My Reflections to Help You Start – and Deepen – Your Own Active Reflection Process, Think Kindly – Speak Kindly – Act Kindly: 366 Easy and Free Ideas You Can Use to Create a Kinder World…Starting Today, and Big Karma and Little Kosmo Help Each Other. Proceeds from books fund The Love and Kindness Project Foundation. When not traveling, Karyn spends time designing and sewing her own clothes! Follow Karyn on LinkedIn for a daily inspirational post about creativity, kindness and/or continuous improvement.

MakingChips | Equipping Manufacturing Leaders
Does IMTS Really Change the Manufacturing Economy? 350

MakingChips | Equipping Manufacturing Leaders

Play Episode Listen Later Mar 13, 2023 39:20


What is the greatest show on manufacturing Earth? IMTS. Every two years, the International Manufacturing Technology Show (IMTS) draws manufacturers from around the world to Chicago for six days. IMTS not only makes a huge impact on the economy in Chicago but also on the manufacturing industry. Peter Eelman—the Chief Experience Officer at AMT— joins us in this episode of MakingChips to share just what that impact is. Because if you're not MakingChips, you're not making money. BAM! – Nick Segments [0:13] The Industrial Digital Marketing Services at Thomas™ [2:45] What our new show structure is going to look like [4:35] Manufacturing leadership spotlight: Karyn Ross [6:22] Today's guest: Peter Eelman at AMT [9:28] What Peter's been doing since IMTS [13:16] The impact IMTS has on Chicago [22:41] The economic impact on the manufacturing industry [27:02] Does the health of the trade show industry matter? [30:14] What impacted the attendance numbers in 2022? [35:17] The Lean Setup Guide from ProShop  [35:55] How can you engage with IMTS and each other? Resources mentioned on this episode The Toyota Way to Service Excellence by Karyn Ross Karyn Ross on LinkedIn Michelle Edmonson on LinkedIn Peter Eelman on LinkedIn IMTS+ SPS Formnext Formnext Forum Mesago Messe Frankfurt GmbH The Lean Setup Guide from ProShop Connect With MakingChips www.MakingChips.com On Facebook On LinkedIn On Instagram On Twitter On YouTube

Driven Car Reviews
The All-Electric bZ4X Is A Pure EV Done The Toyota Way

Driven Car Reviews

Play Episode Listen Later Feb 27, 2023 19:46


It would seem that hybrid king Toyota has pushed back against battery electric vehicles. But it does make a BEV- the bZ4X. With a range of up to 252 miles, it's available in front and all-wheel drive. How does it drive? Tom Voelk drives a front-wheel drive Limited model and finds it to be a solid performer with an excellent driving dynamic. Charging speed and curve? That might be the deal breaker for those that travel long distances.

Lean Blog Interviews
What a Unicorn Knows: Interview with Authors Matt May & Pablo Dominguez

Lean Blog Interviews

Play Episode Listen Later Feb 22, 2023 61:48


New book, available now! For links, video, transcript, and more visit the episode page  Joining us for Episode #469 of the Lean Blog Interviews Podcast are Matt May and Pablo Dominguez, the authors of the new book What a Unicorn Knows: How Leading Entrepreneurs Use Lean Principles to Drive Sustainable Growth. It's available now! Matt has been before, in episodes 67 and 103… and he was my guest for episode 39 of My Favorite Mistake. Pablo Dominguez is an Operating Partner at Insight Partners, a leading global venture capital and private equity firm investing in high-growth technology and software ScaleUp companies that drive transformative change in their industries. Pablo has spent his entire career as a go-to-market and sales-focused operator, working in consulting, public companies, startups, and, most recently, ScaleUps. The application of lean principles has figured centrally in driving sustainable growth in each of these ventures. Matthew E. May leads the Lean ScaleUp program at Insight Partners, with Pablo.  His mastery of lean principles and methodologies comes from spending nearly a decade inside the Toyota organization, where he played an integral part in launching the University of Toyota, a corporate university dedicated to teaching, preserving, and expanding the Toyota Way. Previously the author of many great books, including The Elegant Solution and, most recently, Winning the Brain Game. In this episode, we discuss their new book and how they are both influenced by Toyota and broader Lean thinking, including the Lean Startup methodology — and we discuss the questions and topics listed below: Questions, Notes, and highlights: Pablo, since this is your first time here, it would be great to hear your “Lean origin story” Helping people cope with the discovery of waste and opportunities to improve? Feeling bad about it before moving forward? Congratulations on the release of the book… in startup circles, what's meant by the term “Unicorn”? What's a ScaleUp compared to a startup? What is product-market fit? An example? Risk of trying to scale prematurely? One of the core themes in your model is “Constant experimentation”  Investors – do they want to hear about “constant experimentation”? Do they want certainty? How to prevent Big Company Syndrome (a.k.a., Big Company Disease)? What is meant by “Lean ScaleUp”? How do you react when you hear this aversion to “process” in agile or startup circles, as if process means being inflexible? What's a “lean kaizen sprint”? Applying this to the sales process? Lessons Toyota about “building team spirit”? Building teamwork across silos? The podcast is sponsored by Stiles Associates, now in its 30th year of business. They are the go-to Lean recruiting firm serving the manufacturing, private equity, and healthcare industries. Learn more. This podcast is part of the #LeanCommunicators network. 

Wizards of Amazon
#274-From Miami to Amazon: The Success Story of Colsen Fire Pits' Portable Fire Pits

Wizards of Amazon

Play Episode Listen Later Feb 20, 2023 20:49


I always admire and love having a successful brand in the show to inspire and get inspired. The sky's the limit when you put your heart into something. The success story of Colsen Fire Pits selling and scaling on both Amazon and Shopify platform. From the beginning of the brand to staying up to date, Armando Colimodo, the owner of Colsen Fire Pits shares his secrets to success. Tune in and be inspired!   In This Episode: [00:50] Welcoming Armando Colimodio on the show. [01:24] Colsen Fire Pit background. [04:50] Amazon or Shopify? [06:54] The biggest challenges. [08:05] Buy with Prime. [09:50] Biggest lever on Amazon and Shopify. [12:00] Competition. [14:05] Where should you start, Amazon or Shopify? [15:00] Starting budget. [16:30] Retail [18:45] Staying up to date.   Guest Links and References: Website: https://colsenfirepits.com/ LinkedIn: https://www.linkedin.com/in/armandocolimodio/   Book References: The Quest for Global Dominance by Anil K. Gupta et al   The Toyota Way by Jeffrey Liker   Sell Like Crazy by Subri Suby   Links and References: Wizards of Amazon: https://www.wizardsofecom.com/ Wizards of Amazon Courses: https://wizardsofamazon.mykajabi.com/a/27566/x6Kwkz6p Wizards of Amazon Meetup: https://www.meetup.com/South-Florida-FBA/ Wizards of Amazon on Facebook: https://www.facebook.com/groups/WizardsofAmazon/ Wizards of Amazon on Instagram: https://www.instagram.com/wizardsofecom/  

imperfect: The Heart-Centered Leadership Podcast
Episode 214: Putting the K in Kindness with Karyn Ross

imperfect: The Heart-Centered Leadership Podcast

Play Episode Listen Later Dec 16, 2022 27:48


Want to become more heart-centered? We invite you to join us on Deb's Dailies (daily blog and newsletter), a daily reflection on living and loving life as a heart-centered leader. Karyn Ross is an internationally acclaimed consultant, coach, and lean practitioner. She has taught organizations of all sizes, in sectors as diverse as insurance, HR, transportation, and retail how to use creativity combined with Toyota Way principles, practices, and tools. This powerful combination enables organizations to create better, more effective and efficient ways to work and the peak services that each of their customers wants, now and for the future. While many other Lean consultants focus on implementing tools, Karyn teaches your team how to use Practical Creativity™ to continuously strive towards service excellence. By developing each person's capability through Coached Practice, she focuses on the means: the ‘how', and not just the ‘ends' or the results, because “how we get there is as important as where we are going”. She is also a practicing artist with an MFA in Sculpture and author of How to Coach for Creativity and Service Excellence and coauthor of The Toyota Way to Service Excellence. Connect with Karyn at: https://www.linkedin.com/in/krclean4service/ https://karynrossconsulting.com/ https://kindleadership.org/

Elevate Construction
Ep.695 - Takt & The 14 Principles of Lean Management

Elevate Construction

Play Episode Listen Later Nov 28, 2022 18:01


In this podcast we cover: How Takt applies to the 14 principles of the Toyota Way.   If you like the Elevate Construction podcast, please subscribe for free and you'll never miss an episode.  And if you really like the Elevate Construction podcast, I'd appreciate you telling a friend (Maybe even two 

Timeout With Leaders
S2:E25 Timeout with Pat Smith ”If You Aren't Failing, You Aren't Trying”

Timeout With Leaders

Play Episode Listen Later Sep 9, 2022 37:10


We sit down with Pat Smith, CEO of Serve Denton located in Denton, Texas down is Tyler's country, everything is said to be bigger in Texas! His favorite meal and musician is George Strait, and he has a big heart for his community and our country. He is a veteran and now has turned his mission into serving the Denton, Texas community.  Desperation is a powerful force, if you aren't failing then you are not trying. FAIL stands for the first attempt at learning. He empowers his employees, by embracing the Toyota Way where failure is celebrated. If you fail in Pat's mind the process is broken not the person. It is if the company has set that individual up for success or failure with the given policies, procedures, and processes.  Pat shares that we in leadership today need to give our employees space. Trust them, that they can and will fail but as long as we learn and continue to improve we are always getting better. 

GEAR:30
Domestic Apparel Manufacturing, Supply-Chain Logistics, & More

GEAR:30

Play Episode Listen Later Jul 29, 2022 65:55 Very Popular


A few years ago, Kitsbow undertook an incredibly ambitious plan to move to Old Fort, North Carolina, and bring all of their apparel production to the United States, after years of working with overseas factories. In doing so, they not only found a way to adapt to today's challenging supply chain logistics, but they also trained an entirely new workforce and spearheaded the revitalization of their new hometown, which had been losing manufacturing jobs for decades. So we talked with their CEO, David Billstrom, about how they did that while weathering a global pandemic; how doing so has been a boon to the brand, their customers, and their local community; and how they hope to be a blueprint for other companies to do the same.TOPICS & TIMES:Covid shields and facemasks (4:57)Moving to North Fort, NC (10:34)The Toyota Way (25:15)Domestic manufacturing & efficiency (31:53)Revitalizing a community (38:05)Employee purchase as a Public Benefit Corporation (52:54)David's Big Idea (1:00:28)What We're Celebrating (1:02:20)RELATED LINKS:Ep. 20: How the Outdoor Industry is Helping Fight CovidBlister LabsGear Giveaway / Newsletter SignupBecome a Blister Member / Get our new Buyer's GuideBlister Mountain Bike Buyer's GuideCHECK OUT OUR OTHER PODCASTS:Blister PodcastBikes & Big IdeasOff the Couch See acast.com/privacy for privacy and opt-out information.