Podcasts about Maven

A trusted expert in a particular field

  • 1,939PODCASTS
  • 4,270EPISODES
  • 46mAVG DURATION
  • 1DAILY NEW EPISODE
  • Sep 12, 2025LATEST

POPULARITY

20172018201920202021202220232024

Categories



Best podcasts about Maven

Show all podcasts related to maven

Latest podcast episodes about Maven

Keen On Democracy
From Dodgers Top Draft Pick to Harvard Trained Middle Eastern Maven: Does the American Dream Still Exist?

Keen On Democracy

Play Episode Listen Later Sep 12, 2025 52:24


David Lesch is a poster child for something. I'm just not sure what. On the one hand, given his personal reinvention from Los Angeles Dodgers first-round draft pick to official biographer of Bashar al Assad, some might consider him proof that the American Dream still exists. But others, including even himself , would argue that his incredible pivot from baseball protege to Harvard-educated Middle Eastern expert, reflects the privilege of his social class and perhaps even gender. In any event, the Lesch story is pretty amazing - which is why the San Antonio-based biographer Catherine Nixon Cooke has just published Dodgers to Damascus, the story of his journey from star pitcher to star diplomat. So it was intriguing to not only host Cooke but also David Lesch to discuss his highly unusual journey from the youthful potential of baseball to the grim reality of Bashar al Assad's Syria. 1. Privilege complicates the reinvention narrative Lesch's transformation from baseball to diplomacy required significant advantages - supportive family, financial stability, and access to elite education. His story demonstrates both genuine resilience and the reality that dramatic career pivots often depend on existing social capital.2. Failure as preparation has limits While Lesch credits baseball's culture of failure with preparing him for diplomacy, this framework works better in retrospect. The "fetishization of failure" narrative is easier to embrace after achieving success than during actual setbacks.3. American Middle East policy remains deeply flawed Despite Lesch's generous B-grade assessment based on narrow objectives (oil access, Israeli security, Soviet containment), the broader record suggests more fundamental failures in understanding regional complexities and long-term consequences.4. Assad's evolution illustrates power's corrupting force Lesch's insider perspective on Bashar al-Assad's transformation from potential reformer to authoritarian ruler provides a case study in how institutional constraints and personal ambition can override initial intentions.5. Listening skills transfer across domains The interview emphasizes how Lesch's approach to conflict resolution - particularly deep listening and cultural understanding - represents transferable expertise that America needs more of, regardless of political administration.Keen On America is a reader-supported publication. To receive new posts and support my work, consider becoming a free or paid subscriber. This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit keenon.substack.com/subscribe

airhacks.fm podcast with adam bien
JProfiler Visual Studio Code Integration -- The Kotlin Multiplatform Killer Use Case

airhacks.fm podcast with adam bien

Play Episode Listen Later Sep 11, 2025 71:19


An airhacks.fm conversation with Ingo Kegel (@IngoKegel) about: jprofiler Visual Studio Code integration using Kotlin Multiplatform, migrating Java code to Kotlin common code for cross-platform compatibility, transpiling to JavaScript for Node.js runtime, JClassLib bytecode viewer and manipulation library, Visual Studio Code's Language Server Protocol (LSP), profiling unit tests and performance regression testing, Java Flight Recorder (JFR) for production monitoring with custom business events, cost-driven development in cloud environments, serverless architecture with AWS Lambda and S3, performance optimization with parallelism in single-CPU environments, integrating profiling data with LLMs for automated optimization, MCP servers for AI agent integration, Gradle and Maven build system integration, cooperative window switching between JProfiler and VS Code, memory profiling and thread analysis, comparing streams vs for-loops performance, brokk AI's Swing-based LLM development tool, context-aware performance analysis, automated code optimization with AI agents, business event correlation with low-level JVM metrics, cost estimation based on cloud API calls, quarkus for fast startup times in serverless, performance assertions in System Tests, multi-monitor development workflow support Ingo Kegel on twitter: @IngoKegel

Reclaiming Your True Identity
Microdose Maven

Reclaiming Your True Identity

Play Episode Listen Later Sep 10, 2025 16:56


This is an audio lesson in Microdose maven teaching students how to use plant and fungi allies in a divine feminine way that honors thyself and the plant spirits.In this episode we talk about how our ancestors use plant medicine in their lives and how that is a blueprint to use plant spirits within our lives. If you like to continue the journey with us and learn more visit us here Or email me saareelizabeth@gmail.comFollowing me on instagram the sisters of Sophia.

Reclaiming Your True Identity
Microdose Maven for audio lesson: how you should approach plant spirits

Reclaiming Your True Identity

Play Episode Listen Later Sep 10, 2025 13:41


Audio lesson for Microdose Maven: teaching woman how to microdose to honor themselves and plant spirits for healing and evolution.

Develpreneur: Become a Better Developer and Entrepreneur
Code Consistency for Better Software

Develpreneur: Become a Better Developer and Entrepreneur

Play Episode Listen Later Sep 9, 2025 28:20


As the Building Better Developers with AI season nears its close, Rob Broadhead and Michael Meloche revisit a topic every team faces but few get right: code consistency. In this episode, they explore how shared conventions, smart tooling, and simple documentation transform messy projects into scalable, high-quality systems. The Hidden Cost of Inconsistency Picture opening a project where every file tells a different story: mixed naming styles, conflicting error handling, and folders arranged on a whim. Before you can fix a bug or add a feature, you're lost in formatting chaos. Callout: Inconsistency wastes time, complicates onboarding, and hides defects—long before code reaches production. Rob notes that AI can now help. Define your preferred patterns—naming, structure, logging—and tools like ChatGPT can propose refactors that enforce uniformity. What Code Consistency Looks Like Consistency isn't about stifling creativity—it's about shared, predictable choices that reduce cognitive load. The essentials include: Naming & Structure – Clear, conventional names; sensible modules/packages. File Organization – Standard project layouts (Maven for Java, src/app folders in web projects). Comments & Docs – Concise explanations paired with readable code. Error Handling & Logging – A single, unified approach across the app. Michael highlights that without these agreements, containerized deployments break easily and new developers struggle to contribute. Why Teams Benefit from Code Consistency Rob compares a consistent codebase to a band playing in sync: individual instruments can vary, but the music holds together. That's the impact of code consistency. Benefits include: Communication: Developers spend less time deciphering quirks. Maintainability: Predictable structure accelerates debugging and onboarding. Quality: Automated tools enforce standards and prevent regressions. Professionalism: Consistent code signals engineering maturity, not just coding skill. Tools That Do the Heavy Lifting Michael insists that every team should enforce linters, formatters, and pre-commit hooks. Without them, a small change can appear as a full-file rewrite, confusing reviews and merges. Start with community standards like PEP8, Google Java Style, or eslint/prettier. Add checks to CI/CD pipelines. Document expectations in CONTRIBUTING.md or a team wiki. Pro Tip: One rule set, many editors. Don't let each IDE invent its own defaults. Debunking the Myths of Code Consistency “Standards kill creativity.” True creativity lies in solving problems, not inventing new brace styles. “It slows us down.” Alignment may take effort initially, but it saves hours of confusion later. “Every project is different.” Standards should evolve as living guidelines, not rigid laws. Michael adds that consistent libraries allow teams to reuse components across projects instead of duplicating them. How to Put Standards Into Practice Here's a simple rollout path: Choose a baseline such as PEP8 or Google Style. Automate formatting and linting. Add pre-commit hooks to stop violations early. Focus reviews on consistency, not just correctness. Document standards and revisit them quarterly. Encourage adoption. Praise clean diffs and fast merges. Your Developer Challenge Here's your action step: Pick one project and audit three files. How many naming styles, error-handling patterns, or file structures do you find? Then: Apply a linter or formatter. Document two conventions (naming + logging). Share them with your team. Small steps toward code consistency will save your team time, money, and frustration down the road. Stay Connected: Join the Developreneur Community We invite you to join our community and share your coding journey with us. Whether you're a seasoned developer or just starting, there's always room to learn and grow together. Contact us at info@develpreneur.com with your questions, feedback, or suggestions for future episodes. Together, let's continue exploring the exciting world of software development. Additional Resources Coding Standards – A Personal Approach Look More Professional With Personal Coding Standards One-Offs, Side Projects, and Veering From Standards Updating Developer Tools: Keeping Your Tools Sharp and Efficient The Developer Journey Videos – With Bonus Content Building Better Developers With AI Podcast Videos – With Bonus Content

Around The CFL Podcast
Episode #126 - Maven Maurer

Around The CFL Podcast

Play Episode Listen Later Sep 9, 2025 55:24


This very special guest deserves an episode all to herself. She is a Grey Cup Champion, and the first transgender athlete from either the CFL or NFL. I was lucky enough to sit down with the amazing Maven Maurer to talk about her journey and where she is today

Supra Insider
#74: How experienced engineers actually use AI coding tools | Nick Meehan (Senior Software Engineer @ Ontra)

Supra Insider

Play Episode Listen Later Sep 8, 2025 67:28


Listen now: Spotify, Apple and YouTubeIf you've wondered how much AI is really helping engineers - or feared it might replace them - this episode is for you.In this conversation, Marc and Ben sit down with Nick Meehan, a senior engineer and longtime collaborator, to explore how AI coding tools like Cursor, Claude, and Codex are reshaping day-to-day engineering work. Nick shares how his process evolved from copy-pasting into ChatGPT to using AI as a debugging partner, thought collaborator, and junior developer moving at superhuman speed.They cover the productivity gains, the pitfalls of vibe coding entire products, the new skills engineers need (critical thinking, architecture, team coordination), and what might never be replaced by AI. Nick also reflects on job security, how satisfaction in engineering is shifting, and where he sees the field heading over the next five years.Whether you're an engineer experimenting with coding agents, a product leader trying to understand their impact, or simply curious about how AI is changing the craft of engineering, you'll walk away with an insider's perspective on what's actually happening on the ground.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

SWP - Svenska wrestlingpodden
Det våras för AJ Lee

SWP - Svenska wrestlingpodden

Play Episode Listen Later Sep 6, 2025 60:51


WWE Shopen spoilerar AJ Lees återkomst. Är det Rusev som är "best in the world"? Och Harley Cameron är katt. Fullsmetad show!00:00 Maven hos CVV04:07 Bruce Pritchard hos Cody 12:09 Smackdown15:59 Clash in Paris37:34 Så gick tipsen (Clash in Paris &Forbidden Door)40:16 RAW44:22 All Out flyttar48:05 AEW Dynamite

On Da Mark Wrestling
Episode 103: The Phenomenal AJ Lee

On Da Mark Wrestling

Play Episode Listen Later Sep 4, 2025 57:16


Episode 103 of the On Da Mark Wrestling Podcast is packed with breaking stories and hot takes!Becky Lynch helps Seth Rollins retain at Clash in Paris — is she officially part of The Vision?CM Punk vs Becky sparks AJ Lee chants… will we see AJ make her WWE return in Chicago?WWE sets up Wrestlepalooza vs AEW All Out — mixed tag match rumors, Brock vs Cena, and more.Roman Reigns' booking and the part-timer debate.Street Profits' possible breakup and Montez Ford's singles potential.Dwayne “The Rock” Johnson receives standing ovation for Oscar-worthy performance in The Smashing Machine.Plus, a big shoutout to ​⁠Maven for showing love to the pod — open invite anytime!Hit that LIKE button, drop a COMMENT on what you think about AJ Lee's potential return, and don't forget to SUBSCRIBE for more weekly wrestling talk.

ReliabilityRadio
Reliability Radio EP 333: THE SHINY OBJECT SYNDROME - Jennifer Gatza - Maven

ReliabilityRadio

Play Episode Listen Later Sep 4, 2025 11:03


In this episode of Reliability Radio, Jennifer Gatza from Maven joins Jonathan Guiney and Brendan Russ to discuss a common problem in the Maximo® community: the "shiny object syndrome." Jennifer, a computer engineer by background, shares her powerful insight that putting technology first—before process and strategy—is a critical pitfall that leads to poor outcomes and user frustration. She details Maven's objective, disciplined methodology for guiding clients, which starts with a focus on core asset management principles and the establishment of robust governance. The conversation provides a roadmap for success: hone your fundamentals in Maximo Manage, take an incremental step with the Health module, and then strategically expand to advanced applications like Predict. This is a must-listen for anyone who wants to ensure their Maximo journey delivers sustainable value, not just a collection of cool tools.

The Freethinking Podcast
Four (plus) Reasons We Can't Be Mormon

The Freethinking Podcast

Play Episode Listen Later Sep 3, 2025 95:41


There is no disrespect meant in the title. Saying "members of The Church of Jesus Christ of Latter-day Saints" is just too long for a YouTube video title! That said, Dr. Tim Stratton and Josh Klein assess the claims of the LDS, both historically and theologically. Why can't we be mormons? Here's why! Maven Experience: https://maventruth.com/immersive-experience/ Josephlied.com: https://www.mormoninfo.org/ ➡️ CHAPTERS ⬅️ 00:00 Introduction 05:45 Maven and Its Importance in the Discussion 11:20 One: Low View of God's Nature 25:00 Two: Low View of Jesus 30:41 Two (b): The Historical Origins of the LDS 44:00 Three: Low View of Grace 50:50 Three (b): Significant Departures from Orthodoxy 59:30 Sound Faith Conference 1:00:50 Four: Low View of the Gospel 1:12:30 Four (b): The Historical and Archaeological Claims 1:18:50 A Difference Between Mormon Doctrines and Mormon People 1:25:46 Counting the Cost Before Conversion 1:34:31 Conclusion Music from Uppbeat (free for Creators!): https://uppbeat.io/t/moire/summer License code: W0ZDHCVZSXKWU3AV ➡️ SOCIALS ⬅️ Website: https://freethinkingministries.com Facebook: https://www.facebook.com/FreeThinkInc Instagram: https://www.instagram.com/freethinkinc X: https://x.com/freethinkmin TikTok: https://www.tiktok.com/@freethinkinc #Apologetics #FreeThinking #Christianity

Supra Insider
#73: The Portfolio Career That Made Him a Better Parent | Ben's Episode on the Startup Dad Podcast

Supra Insider

Play Episode Listen Later Sep 3, 2025 57:18


Listen now: Spotify, Apple and YouTubeThink a “portfolio career” makes family life chaotic? Ben argues the opposite.In this special episode of Supra Insider, Ben shares a more personal side of his journey in a conversation originally recorded on the Startup Dad podcast with Adam Fishman.From raising his daughter Gaia (with help from George, the family's golden retriever) to navigating solo parenting in New York without nearby family, Ben opens up about the joys and challenges of fatherhood. He reflects on why a portfolio career actually feels more stable than a full-time job, how intentional routines have transformed his days, and the lessons learned from mistakes, community, and the chaos of parenting.If you're a parent balancing an ambitious career, curious about the realities of raising kids in a big city, or simply want to hear a more personal side of Ben outside of product leadership, this episode offers candid stories, practical takeaways, and a heartfelt look at family life.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

Inspiring Women with Laurie McGraw
Why This CEO Says Life Begins at the End of Your Comfort Zone || EP.214

Inspiring Women with Laurie McGraw

Play Episode Listen Later Sep 2, 2025 23:59


"I believe when you put yourself in uncomfortable situations is when you grow the most. Living in a rural village, no running water, no electricity, and essentially being a doula in a middle Atlas Mountain Village for two and a half years, different language, different religion, you know, you just learn a lot about people." From Peace Corps volunteer in Morocco to CEO of Oxeon—the executive search firm reimagining healthcare leadership—Sonia Millsom has spent 30 years proving that the most uncomfortable paths lead to the greatest transformations. Her journey through healthcare's biggest successes (including helping scale Maven to unicorn status and Iora Health to a billion-dollar exit) taught her one critical truth: companies don't fail because of bad CEOs—they fail because the wrong people are at the wrong tables. Now at Oxeon, Sonia is fixing that problem by placing leaders at ALL the tables that matter: executive teams, boardrooms, and cap tables. Because after 13 years of data, she knows exactly what makes leaders successful—and it's not what most people think. "High performing teams have high degrees of psychological safety," she explains. But in today's world of AI disruption, multi-generational workforces, and constant pivots, that safety is harder to build than ever. Her solution? Stop looking for the CEO with three unicorn exits. Start looking for leaders who can "think again" like scientists, not preachers or prosecutors. In this episode of Inspiring Women with Laurie McGraw, Sonia also reveals: The 5 key attributes that predict leadership success (hint: clock speed matters more than credentials) Why women will control $34 trillion by 2030—and how that changes everything about healthcare What Peace Corps taught her about patient care that Harvard Business School never could The real reason companies pivot faster now (and why your old playbook won't save you) How ambient listening cameras preventing patient falls signals healthcare's AI future Why "life begins at the end of your comfort zone"—advice she's passing to her daughters The pattern recognition trap that causes investors to miss breakthrough leaders "Nothing is up and to the right all the time," Sonia admits. "When those times of when things go down is actually where you learn the most." From serving as a doula in rural Morocco to orchestrating billion-dollar healthcare transformations, Sonia Millsom proves that understanding people—whether patients in villages or executives in boardrooms—is the key to driving real change. At Oxeon, she's not just filling leadership positions; she's architecting the future of healthcare by ensuring the right leaders are at every table where decisions get made. Her motto? "Life begins at the end of your comfort zone." Her mission? Making sure healthcare's next generation of leaders—including her own daughters—are ready to be uncomfortable, curious, and kind enough to transform an industry that touches us all. Chapters 01:30 - Why Leadership Diversity Drives Healthcare Success 03:45 - Five Key Attributes of Successful Leaders 07:20 - Psychological Safety in Uncertain Times 10:15 - From Peace Corps to Healthcare CEO 13:00 - Pivoting in Healthcare: Lessons from Iora and Maven 16:30 - AI and the Multi-Generational Workforce 19:45 - Women's $34 Trillion Financial Future 23:00 - Life Begins at the End of Your Comfort Zone Guest & Host Links Connect with Laurie McGraw on LinkedIn Connect with Sonia Millsom on LinkedIn Connect with Inspiring Women Browse Episodes | LinkedIn | Instagram | Apple | Spotify

The Crucible - The JRTC Experience Podcast
111 S13 Ep 02 - Command, Control, and the Art of Enabler Integration within the Brigade Combat Team

The Crucible - The JRTC Experience Podcast

Play Episode Listen Later Aug 28, 2025 20:33


The Joint Readiness Training Center is pleased to present the one-hundredth-and-eleventh episode to air on ‘The Crucible - The JRTC Experience.' Hosted by MAJ Marc Howle, the Brigade Senior Engineer / Protection Observer-Coach-Trainer, and MAJ David Pfaltzgraff, BDE S-3 Operations OCT, from Brigade Command & Control (BDE HQ) on behalf of the Commander of Ops Group (COG). Today's guests are MAJ Steven Yates, the BDE S-6 Signal OCT from Brigade Command & Control (BDE HQ) and SFC Daniel Pippin, the BN S-6 Signal NCOIC from the 1-509th IN (ABN) Opposing Force.   This episode of The Crucible centers on the challenges of command and control (C2) integration and the employment of enablers within brigade combat teams (BCTs) at JRTC. The discussion highlights recurring issues with overcomplicated signal plans, inadequate COMSEC readiness, and a persistent lack of basic communications skills across maneuver formations. Despite widespread fielding of advanced systems like ITN, many units arrive without validated PACE plans or shared understanding of how to communicate across formations and enabler teams. A key friction point is the failure to execute realistic COMEX and VALEX rehearsals, which often leads to failure in establishing a functioning network prior to movement into the box. When soldiers can't log into CPCE or MAVEN or don't know how to employ SATCOM or FM, the entire C2 enterprise falters before first contact.   The episode also stresses the importance of simplifying communications, cross-training non-signal personnel, and involving maneuver leaders in signal planning. A lack of distributed competence creates overreliance on limited 25-series personnel. The team praises aviation's model of integrating comms training into pilot academics and encourages similar investments at the BCT level—where every Soldier using a radio must understand its function and limitations. Integration of enablers—particularly aviation, foreign partners, and multi-echelon elements like MEC teams—demands proactive coordination well before RSOI. The key takeaway: units that treat RSOI as part of the operations process, not just an administrative requirement, set the conditions for success. C2 must be validated with full mission threads—sensor-to-shooter, PED, and digital fires—before rolling into the box. Anything less risks operational paralysis in the first 48 hours.   Part of S13 “Hip Pocket Training” series.   For additional information and insights from this episode, please check-out our Instagram page @the_jrtc_crucible_podcast   Be sure to follow us on social media to keep up with the latest warfighting TTPs learned through the crucible that is the Joint Readiness Training Center.   Follow us by going to: https://linktr.ee/jrtc and then selecting your preferred podcast format.   Again, we'd like to thank our guests for participating. Don't forget to like, subscribe, and review us wherever you listen or watch your podcasts — and be sure to stay tuned for more in the near future.   “The Crucible – The JRTC Experience” is a product of the Joint Readiness Training Center.

REACH - A Podcast for Executive Assistants
Who is the EA Behind Maven Recruiting Group's CEO and REACH Podcast Host, Jessica Vann?!

REACH - A Podcast for Executive Assistants

Play Episode Listen Later Aug 27, 2025 69:26


In this episode of REACH, we sit down with Sarah Duncan, Executive Assistant to Maven Recruiting Group's Founder & CEO, Jessica Vann. With over two years of partnership under their belt, Sarah has been instrumental in helping Jessica balance the demands of running a company with the realities of family life and personal pursuits. From managing client communications and high-stakes priorities to ensuring the home front runs smoothly, Sarah's role extends far beyond the desk. This conversation provides a rare behind-the-scenes glimpse into the EA–executive partnership, offering insights on how to build trust, navigate diverse working styles, and establish systems that empower both the assistant and the leader to thrive. For Executive Assistants curious about supporting a Founder/CEO, or leaders wondering how an EA can truly transform their capacity and impact, Sarah's perspective provides both inspiration and practical insight.

Elk Hunt
Cat Road Shuffle: Trent Fisher's OTC Elk Hunting Blueprint

Elk Hunt

Play Episode Listen Later Aug 27, 2025 57:25


Join host Cody Rich for an action-packed episode with Trent Fisher, a seasoned elk hunter known for crushing it on over-the-counter (OTC) units across multiple states. Trent shares his approach to finding elk in Oregon's tight Roosevelt country, his excitement for a first-time Utah hunt, and the joy of taking his kids into the backcountry. We dive into tactics like the cat road shuffle, reading sign, and adapting to high-pressure units with better callers and smarter hunters. From navigating micro pockets to sharing meat with buddies, this episode is loaded with practical tips and stories to fuel your elk season. Don't miss Trent's take on woodsmanship, hunting ethics, and why finding elk is the real superpower. Grab your gear and get ready to hunt smarter! Timestamp Chapters 00:00 - Intro and Season Hype: Cody kicks things off, checking the record button and getting stoked for elk season with Trent Fisher in the studio. 02:15 - Balancing Business and Hunting: Discussing the chaos of July and August in the hunting industry, cashing in family bonus points, and gearing up for multiple hunts. 05:30 - Why Utah for OTC?: Trent explains his plan to hunt Utah's OTC units for more elk encounters, comparing it to Colorado's tougher odds and the value of “at bats.” 09:45 - Trent's YouTube Mission: Breaking down barriers for new hunters, showing anyone can elk hunt with modern tools like OnX, and why Oregon's OTC is a go-to. 14:20 - Best OTC States and Strategies: Trent ranks Wyoming and Colorado as top OTC states, sharing how he targets new units and avoids over-hunted spots. 19:00 - The Cat Road Shuffle Evolved: How Trent's run-and-gun calling has slowed down for precision, focusing on benches, bedding areas, and reading elk behavior. 25:30 - Roosevelt Elk Challenges: Navigating Oregon's tight pockets, dealing with silent bulls, and using night bugling to pinpoint elk in low-visibility terrain. 32:45 - Finding Elk Without Bugles: Trent's woodsmanship approach—checking bottoms, water holes, and micro benches when bugling and glassing aren't options. 39:10 - Adapting to Pressure and Change: Discussing how better hunters and OnX have changed the game, and why finding unpressured pockets is key. 45:25 - Hunting with Kids: Trent shares lessons from taking his daughter caribou hunting and prepping his son for a Colorado backcountry hunt, emphasizing slowing down. 52:00 - Hunting Ethics and Meat Sharing: Trent's code for splitting meat with buddies—front quarters, backstraps, or 50/50 for tough pack-outs. 58:15 - Moose and Elk Meat Talk: Stories of donating moose meat in Alaska, comparing elk to ribeyes, and why one old bull was inedible. 1:04:30 - Gear Favorites and Elk Week: Trent's take on Born Primitive, First Lite, and Stone Glacier gear, plus a plug for their Elk Week video series. 1:09:00 - Wrap-Up and Season Wishes: Cody and Trent look forward to the Utah film, kid adventures, and crushing it in multiple states. Sponsor Copy Brought to You by OnX HuntPlan smarter, hunt harder with OnX Hunt, the ultimate tool for elk hunters. With Elite Membership, you get nationwide land ownership maps, Huntin' Fool's e-Magazine, Terrain X, and research tools to find those hidden pockets Trent talks about. OnX helps you scout micro benches and navigate high-pressure units like a pro. Head to www.onxmaps.com and use code TRO to save 20% on your Elite Membership. Get out there and find your elk! Powered by Maven OpticsSpot that bull before he spots you with Maven Optics, a Wyoming-based, direct-to-consumer brand delivering top-tier clarity without the markup. Cody relies on Maven's B Series binoculars and S3 Spotting scope to find more elk. No middleman, just premium optics built for hunters. Check out the B Series at www.mavenbuilt.com and use code TRO for a bonus gift. See the difference with Maven! Three Key Takeaways Finding Elk is the Superpower: Trent emphasizes that locating elk is the hardest part of hunting, especially in high-pressure OTC units. Mastering woodsmanship—reading tracks, rubs, and micro benches—lets you zero in on elk where others give up, turning tough units into opportunities. Adapt to Pressure with Micro Pockets: With better hunters and tools like OnX, success comes from finding overlooked pockets just beyond the crowd. Trent's cat road shuffle and willingness to drive hours to new spots show how mobility and persistence beat pressure. Slow Down for Kids, Speed Up for Elk: Taking kids hunting requires patience and relearning basics, but it reignites your own passion. Meanwhile, covering ground fast to find elk, then slowing for the kill, is key—especially when balancing family and hunting.

Theology Mom
What Israeli Christians Wish You Knew About Their Lives

Theology Mom

Play Episode Listen Later Aug 25, 2025 37:52


Krista is continuing to report on issues related to Israel, Palestine, Judaism and Islam. In this episode, I share the perspective of Arab Christians in Israel. She also explains the challenges she's faced in finding an Arab Christian pastor to share his perspective, the influence of Palestinian liberation theology and claims of Christian persecution in Israel. Featuring a CBN News interview with Pastor Salem Shalash of Jesus the King Church in Nazareth about the equal rights of Christians and religious freedom in Israel, contrasting their experience with persecution in Gaza, Bethlehem, and other Middle Eastern countries.

Supra Insider
#72: How to scale your team's intuition with AI-powered research | Aaron Cannon (Cofounder & CEO @ Outset)

Supra Insider

Play Episode Listen Later Aug 25, 2025 55:20


Listen now: Spotify, Apple and YouTubeAI is transforming the way product teams approach customer research—but what should remain human, and what can be handed off to AI agents? In this episode, Marc and Ben sit down with Aaron Cannon, co-founder of Outset, to explore the evolving role of AI in discovery and usability testing. Aaron unpacks how AI-moderated research enables unprecedented speed and scale while preserving depth, why intuition remains critical for building great products, and how research teams can shift from execution to framing the right questions and telling better stories. The conversation also dives into the future of PM and UXR roles, collective intuition at companies, and the career paths that might emerge as AI takes on more “entry-level” tasks.Whether you're a PM, designer, or researcher wondering how to integrate AI without losing the magic of human insight, this episode offers practical frameworks and a forward-looking perspective on what's next.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

Elk Hunt
Eric Chesser's Secrets to Slaying Elk on Tough Units

Elk Hunt

Play Episode Listen Later Aug 22, 2025 59:36


Hey folks, Cody Rich here from The Elk Hunt Podcast. Man, what a killer episode we just dropped with my buddy Eric Chesser from Hush. We dive deep into the mental grind of elk hunting, sharing stories from low-success units, boundary games, and that never-give-up attitude that turns tough hunts into triumphs. Eric's an absolute elk slayer who's all about challenging himself on OTC tags and hard-to-draw spots, and we break down tactics like ambushing herds, tree saddles, and willing success into existence. If you're gearing up for elk season, this one's packed with real talk to get you fired up and focused. Timestamp Chapters 00:00 - Intro and Sponsors: Shoutouts to OnX Hunt and Maven Optics, plus a quick plug for elite memberships and killer gear. 02:45 - Welcoming Eric Chesser: Catching up on why we've never podcasted before and diving into Eric's elk hunting journey. 05:30 - The Mental Battle of Elk Hunting: Discussing persistence, positive mindset, and why time in the field beats talent every time. 12:15 - Prepping for Tough Units: How Eric scouts low-success areas, focuses on high vantage points, and commits to a spot once he finds elk. 18:40 - Visioning Success and Overcoming Lows: Talking about willing kills into existence, handling hunt valleys, and the power of a competitive mindset against the mountain. 25:20 - Solo vs. Group Hunting: Why Eric prefers going solo for decision-making and building intuition, plus reflecting on 25+ years of elk knowledge. 31:50 - Finding and Honing In on Elk: What makes Eric lock onto an area, combining sign, low pressure, and personal vision. 37:10 - Tree Saddles and Early Season Tactics: Eric's challenge-driven approach to water holes, wallows, and why saddles are a game-changer for mobile setups. 43:25 - Boundary Games and Private Edges: Patience, persistence, and aggressive moves when elk finally cross onto public. 49:00 - Ambushing Herds and Reading Elk: Quick decisions, cutting off moving groups, and analyzing body language to get in tight. 55:30 - Huntability and Big Bull Habits: Choosing terrain for stocks, predicting pressured elk, and what makes a spot "huntable." 1:01:45 - Dream Bulls and Genetics: Defining big bulls (320+ as solid, 340+ as giants), unit-specific expectations, and personal favorites like whale tails and triple brows. 1:07:20 - Upcoming Hunts and Films: Eric's 2023 plans, redemption tags, and must-watch Hush elk films for inspiration. 1:12:00 - Wrap-Up and Outro: Best of luck for the season, plus a tease for a mid-season check-in. Brought to You by OnX HuntDon't just hunt—hunt smarter with OnX Hunt. More than a mapping app, OnX is your ultimate hunt planning system. With Elite Membership, you get access to nationwide land ownership maps, Huntin' Fool's e-Magazine, Terrain X, and research tools to plan better hunts and find more elk. Cody and Eric rely on OnX to scout high vantage points and navigate tough units. Head to www.onxmaps.com and use code TRO to save 20% on your Elite Membership. Elevate your elk game today! Powered by Maven OpticsWhen it's time to glass that dream bull, trust Maven Optics, a Wyoming-based, direct-to-consumer brand delivering unmatched clarity and durability. Eric swears by the B6 binoculars and RS.3.2 rifle scope for spotting giants in the high country. No middleman, no markups—just premium optics at the best value. Check out the B Series at www.mavenbuilt.com and use code TRO for exclusive savings. Spot what others miss with Maven. Three Key Takeaways Persistence Trumps Skill: Elk hunting isn't about being the best caller or mapper—it's about outlasting the lows. Eric and I both hammer home that success comes from grinding longer than most, blocking out doubts, and turning every day (even the elk-less ones) into valuable intel for future wins. Commit to Your Vision: Go into hunts with a clear mental picture of success—whether it's killing in a specific canyon or on a tough unit. This "willing it into existence" mindset helps push through mental battles and turns challenges into obsessions that pay off. Read the Room and Act Fast: When closing in on elk, analyze herd dynamics like cow body language, bull position, and movement patterns. Be aggressive in decisions—cut off herds for ambushes—but know when to slow down. It's all about building that gut intuition through real field time.

Deep Dives 🤿
Dan Winer - How to become more strategic and advance your career

Deep Dives 🤿

Play Episode Listen Later Aug 22, 2025 59:33


What does it look like to advance your career in the age of AI? That's what this week's episode with Dan Winer (Director of Product Design at Kit) is all about. He shares insights from his top-rated Maven course "Strategy and Influence for Product Designers" (https://join.dive.club/dan-winer-course) So if you want to learn how to go from pixel pusher to strategic partner then this is the episode for you

Smologies with Alie Ward
PROTEINS & DNA with Raven “The Science Maven” Baxter

Smologies with Alie Ward

Play Episode Listen Later Aug 21, 2025 25:14


This one's got it all: teeny tiny cellular factories, mitochondrial relevancy, what big smelly vats of poop have to do with curing cancer, how many trips to the sun your unravelled DNA could make, and mysteries of the brain. Dr. Raven The Science Maven has a background in molecular biology and a Ph.D in Science Communication, which she puts to work while Alie generally does her best to suppress high pitched noises of excitement. Learn to appreciate your proteins and pick up some noodle analogies while you're here. That's so Maven!Follow Raven on Instagram and BlueskyVisit Raven's website and YouTube channelA donation went to Project for AwesomeFull-length (*not* G-rated) Molecular Biology episode + tons of science linksMore kid-friendly Smologies episodes!Become a patron of Ologies for as little as a buck a monthOlogiesMerch.com has hats, shirts, hoodies, totes!Follow Ologies on Instagram and BlueskyFollow Alie Ward on Instagram and TikTokSound editing by Mercedes Maitland of Maitland Audio Productions, Jarrett Sleeper of MindJam Media, and Steven Ray MorrisMade possible by work from Noel Dilworth, Susan Hale, Jacob Chaffee, Kelly R. Dwyer, Aveline Malek and Erin TalbertSmologies theme song by Harold Malcolm

Supra Insider
#71: How PMs can get leverage via agents and MCPs in Cursor | Amir M (Cofounder @ Humblytics)

Supra Insider

Play Episode Listen Later Aug 18, 2025 63:18


Listen now: Spotify, Apple and YouTubeWhat if you could cut your QA cycles from days to minutes—and draft PRDs that actually update themselves as your product evolves?In this episode of Supra Insider, Marc and Ben sit down with Amir M, cofounder of Humblytics, to explore how he's running a two-person startup across engineering, QA, and product using Cursor and Model Context Protocols (MCPs). Amir shares how he builds context-rich workflows, turns documentation into living systems, and uses agentic tools like Firecrawl and Playwright to automate the “boring” but critical parts of product development.If you've been curious about how to bring AI deeper into your product org—not just for brainstorming but for end-to-end execution—this conversation is packed with practical demos and mindsets you can apply today.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

The Secret Teachings
Palantir Police State (8/14/25)

The Secret Teachings

Play Episode Listen Later Aug 14, 2025 135:00


Palantir's power is growing by the minute, largely due to its symbiotic relationship with the White House and Pentagon. Its billion dollar Maven deal with the DOD, multi-billion dollar deal for Army data, and even larger deals for missile defense, place the company at the forefront of preparation for a war its CEO predicted in 2024. It's work with the White House to build a spy apparatus for U.S. citizens along with affiliate groups launching programs to eliminate the First Amendment, all coupled with the deployment of national guard for surveillance and crime, indicates preparations for a domestic war perhaps linked to the wider global war Palantir is planning. Whatever the case, the agents involved are almost exclusively Israeli and part of the intelligence community, from OpenAI and Oracle to Facebook, Google, and Palantir which works directly with the U.S. and Israeli military. Perhaps it has something to do with the Israeli plan to totally occupy Gaza, something partly run by Palantir, or the agenda for regime change in Iran which itself has been promoted by algorithms. Palantir is also using data collection to gather sexual information on British citizens and police data in Germany. *The is the FREE archive, which includes advertisements. If you want an ad-free experience, you can subscribe below underneath the show description.FREE ARCHIVE (w. ads)SUBSCRIPTION ARCHIVEX / TWITTER FACEBOOKWEBSITECashApp: $rdgable EMAIL: rdgable@yahoo.com / TSTRadio@protonmail.comBecome a supporter of this podcast: https://www.spreaker.com/podcast/the-secret-teachings--5328407/support.

Les Cast Codeurs Podcast
LCC 329 - L'IA, ce super stagiaire qui nous fait travailler plus

Les Cast Codeurs Podcast

Play Episode Listen Later Aug 14, 2025 120:24


Arnaud et Guillaume explore l'évolution de l'écosystème Java avec Java 25, Spring Boot et Quarkus, ainsi que les dernières tendances en intelligence artificielle avec les nouveaux modèles comme Grok 4 et Claude Code. Les animateurs font également le point sur l'infrastructure cloud, les défis MCP et CLI, tout en discutant de l'impact de l'IA sur la productivité des développeurs et la gestion de la dette technique. Enregistré le 8 août 2025 Téléchargement de l'épisode LesCastCodeurs-Episode–329.mp3 ou en vidéo sur YouTube. News Langages Java 25: JEP 515 : Profilage de méthode en avance (Ahead-of-Time) https://openjdk.org/jeps/515 Le JEP 515 a pour but d'améliorer le temps de démarrage et de chauffe des applications Java. L'idée est de collecter les profils d'exécution des méthodes lors d'une exécution antérieure, puis de les rendre immédiatement disponibles au démarrage de la machine virtuelle. Cela permet au compilateur JIT de générer du code natif dès le début, sans avoir à attendre que l'application soit en cours d'exécution. Ce changement ne nécessite aucune modification du code des applications, des bibliothèques ou des frameworks. L'intégration se fait via les commandes de création de cache AOT existantes. Voir aussi https://openjdk.org/jeps/483 et https://openjdk.org/jeps/514 Java 25: JEP 518 : Échantillonnage coopératif JFR https://openjdk.org/jeps/518 Le JEP 518 a pour objectif d'améliorer la stabilité et l'évolutivité de la fonction JDK Flight Recorder (JFR) pour le profilage d'exécution. Le mécanisme d'échantillonnage des piles d'appels de threads Java est retravaillé pour s'exécuter uniquement à des safepoints, ce qui réduit les risques d'instabilité. Le nouveau modèle permet un parcours de pile plus sûr, notamment avec le garbage collector ZGC, et un échantillonnage plus efficace qui prend en charge le parcours de pile concurrent. Le JEP ajoute un nouvel événement, SafepointLatency, qui enregistre le temps nécessaire à un thread pour atteindre un safepoint. L'approche rend le processus d'échantillonnage plus léger et plus rapide, car le travail de création de traces de pile est délégué au thread cible lui-même. Librairies Spring Boot 4 M1 https://spring.io/blog/2025/07/24/spring-boot–4–0–0-M1-available-now Spring Boot 4.0.0-M1 met à jour de nombreuses dépendances internes et externes pour améliorer la stabilité et la compatibilité. Les types annotés avec @ConfigurationProperties peuvent maintenant référencer des types situés dans des modules externes grâce à @ConfigurationPropertiesSource. Le support de l'information sur la validité des certificats SSL a été simplifié, supprimant l'état WILL_EXPIRE_SOON au profit de VALID. L'auto-configuration des métriques Micrometer supporte désormais l'annotation @MeterTag sur les méthodes annotées @Counted et @Timed, avec évaluation via SpEL. Le support de @ServiceConnection pour MongoDB inclut désormais l'intégration avec MongoDBAtlasLocalContainer de Testcontainers. Certaines fonctionnalités et API ont été dépréciées, avec des recommandations pour migrer les points de terminaison personnalisés vers les versions Spring Boot 2. Les versions milestones et release candidates sont maintenant publiées sur Maven Central, en plus du repository Spring traditionnel. Un guide de migration a été publié pour faciliter la transition depuis Spring Boot 3.5 vers la version 4.0.0-M1. Passage de Spring Boot à Quarkus : retour d'expérience https://blog.stackademic.com/we-switched-from-spring-boot-to-quarkus-heres-the-ugly-truth-c8a91c2b8c53 Une équipe a migré une application Java de Spring Boot vers Quarkus pour gagner en performances et réduire la consommation mémoire. L'objectif était aussi d'optimiser l'application pour le cloud natif. La migration a été plus complexe que prévu, notamment à cause de l'incompatibilité avec certaines bibliothèques et d'un écosystème Quarkus moins mature. Il a fallu revoir du code et abandonner certaines fonctionnalités spécifiques à Spring Boot. Les gains en performances et en mémoire sont réels, mais la migration demande un vrai effort d'adaptation. La communauté Quarkus progresse, mais le support reste limité comparé à Spring Boot. Conclusion : Quarkus est intéressant pour les nouveaux projets ou ceux prêts à être réécrits, mais la migration d'un projet existant est un vrai défi. LangChain4j 1.2.0 : Nouvelles fonctionnalités et améliorations https://github.com/langchain4j/langchain4j/releases/tag/1.2.0 Modules stables : Les modules langchain4j-anthropic, langchain4j-azure-open-ai, langchain4j-bedrock, langchain4j-google-ai-gemini, langchain4j-mistral-ai et langchain4j-ollama sont désormais en version stable 1.2.0. Modules expérimentaux : La plupart des autres modules de LangChain4j sont en version 1.2.0-beta8 et restent expérimentaux/instables. BOM mis à jour : Le langchain4j-bom a été mis à jour en version 1.2.0, incluant les dernières versions de tous les modules. Principales améliorations : Support du raisonnement/pensée dans les modèles. Appels d'outils partiels en streaming. Option MCP pour exposer automatiquement les ressources en tant qu'outils. OpenAI : possibilité de définir des paramètres de requête personnalisés et d'accéder aux réponses HTTP brutes et aux événements SSE. Améliorations de la gestion des erreurs et de la documentation. Filtering Metadata Infinispan ! (cc Katia( Et 1.3.0 est déjà disponible https://github.com/langchain4j/langchain4j/releases/tag/1.3.0 2 nouveaux modules expérimentaux, langchain4j-agentic et langchain4j-agentic-a2a qui introduisent un ensemble d'abstractions et d'utilitaires pour construire des applications agentiques Infrastructure Cette fois c'est vraiment l'année de Linux sur le desktop ! https://www.lesnumeriques.com/informatique/c-est-enfin-arrive-linux-depasse-un-seuil-historique-que-microsoft-pensait-intouchable-n239977.html Linux a franchi la barre des 5% aux USA Cette progression s'explique en grande partie par l'essor des systèmes basés sur Linux dans les environnements professionnels, les serveurs, et certains usages grand public. Microsoft, longtemps dominant avec Windows, voyait ce seuil comme difficilement atteignable à court terme. Le succès de Linux est également alimenté par la popularité croissante des distributions open source, plus légères, personnalisables et adaptées à des usages variés. Le cloud, l'IoT, et les infrastructures de serveurs utilisent massivement Linux, ce qui contribue à cette augmentation globale. Ce basculement symbolique marque un changement d'équilibre dans l'écosystème des systèmes d'exploitation. Toutefois, Windows conserve encore une forte présence dans certains segments, notamment chez les particuliers et dans les entreprises classiques. Cette évolution témoigne du dynamisme et de la maturité croissante des solutions Linux, devenues des alternatives crédibles et robustes face aux offres propriétaires. Cloud Cloudflare 1.1.1.1 s'en va pendant une heure d'internet https://blog.cloudflare.com/cloudflare–1–1–1–1-incident-on-july–14–2025/ Le 14 juillet 2025, le service DNS public Cloudflare 1.1.1.1 a subi une panne majeure de 62 minutes, rendant le service indisponible pour la majorité des utilisateurs mondiaux. Cette panne a aussi causé une dégradation intermittente du service Gateway DNS. L'incident est survenu suite à une mise à jour de la topologie des services Cloudflare qui a activé une erreur de configuration introduite en juin 2025. Cette erreur faisait que les préfixes destinés au service 1.1.1.1 ont été accidentellement inclus dans un nouveau service de localisation des données (Data Localization Suite), ce qui a perturbé le routage anycast. Le résultat a été une incapacité pour les utilisateurs à résoudre les noms de domaine via 1.1.1.1, rendant la plupart des services Internet inaccessibles pour eux. Ce n'était pas le résultat d'une attaque ou d'un problème BGP, mais une erreur interne de configuration. Cloudflare a rapidement identifié la cause, corrigé la configuration et mis en place des mesures pour prévenir ce type d'incident à l'avenir. Le service est revenu à la normale après environ une heure d'indisponibilité. L'incident souligne la complexité et la sensibilité des infrastructures anycast et la nécessité d'une gestion rigoureuse des configurations réseau. Web L'évolution des bonnes pratiques de Node.js https://kashw1n.com/blog/nodejs–2025/ Évolution de Node.js en 2025 : Le développement se tourne vers les standards du web, avec moins de dépendances externes et une meilleure expérience pour les développeurs. ES Modules (ESM) par défaut : Remplacement de CommonJS pour un meilleur outillage et une standardisation avec le web. Utilisation du préfixe node: pour les modules natifs afin d'éviter les conflits. API web intégrées : fetch, AbortController, et AbortSignal sont maintenant natifs, réduisant le besoin de librairies comme axios. Runner de test intégré : Plus besoin de Jest ou Mocha pour la plupart des cas. Inclut un mode “watch” et des rapports de couverture. Patterns asynchrones avancés : Utilisation plus poussée de async/await avec Promise.all() pour le parallélisme et les AsyncIterators pour les flux d'événements. Worker Threads pour le parallélisme : Pour les tâches lourdes en CPU, évitant de bloquer l'event loop principal. Expérience de développement améliorée : Intégration du mode --watch (remplace nodemon) et du support --env-file (remplace dotenv). Sécurité et performance : Modèle de permission expérimental pour restreindre l'accès et des hooks de performance natifs pour le monitoring. Distribution simplifiée : Création d'exécutables uniques pour faciliter le déploiement d'applications ou d'outils en ligne de commande. Sortie de Apache EChart 6 après 12 ans ! https://echarts.apache.org/handbook/en/basics/release-note/v6-feature/ Apache ECharts 6.0 : Sortie officielle après 12 ans d'évolution. 12 mises à niveau majeures pour la visualisation de données. Trois dimensions clés d'amélioration : Présentation visuelle plus professionnelle : Nouveau thème par défaut (design moderne). Changement dynamique de thème. Prise en charge du mode sombre. Extension des limites de l'expression des données : Nouveaux types de graphiques : Diagramme de cordes (Chord Chart), Nuage de points en essaim (Beeswarm Chart). Nouvelles fonctionnalités : Jittering pour nuages de points denses, Axes coupés (Broken Axis). Graphiques boursiers améliorés Liberté de composition : Nouveau système de coordonnées matriciel. Séries personnalisées améliorées (réutilisation du code, publication npm). Nouveaux graphiques personnalisés inclus (violon, contour, etc.). Optimisation de l'agencement des étiquettes d'axe. Data et Intelligence Artificielle Grok 4 s'est pris pour un nazi à cause des tools https://techcrunch.com/2025/07/15/xai-says-it-has-fixed-grok–4s-problematic-responses/ À son lancement, Grok 4 a généré des réponses offensantes, notamment en se surnommant « MechaHitler » et en adoptant des propos antisémites. Ce comportement provenait d'une recherche automatique sur le web qui a mal interprété un mème viral comme une vérité. Grok alignait aussi ses réponses controversées sur les opinions d'Elon Musk et de xAI, ce qui a amplifié les biais. xAI a identifié que ces dérapages étaient dus à une mise à jour interne intégrant des instructions encourageant un humour offensant et un alignement avec Musk. Pour corriger cela, xAI a supprimé le code fautif, remanié les prompts système, et imposé des directives demandant à Grok d'effectuer une analyse indépendante, en utilisant des sources diverses. Grok doit désormais éviter tout biais, ne plus adopter un humour politiquement incorrect, et analyser objectivement les sujets sensibles. xAI a présenté ses excuses, précisant que ces dérapages étaient dus à un problème de prompt et non au modèle lui-même. Cet incident met en lumière les défis persistants d'alignement et de sécurité des modèles d'IA face aux injections indirectes issues du contenu en ligne. La correction n'est pas qu'un simple patch technique, mais un exemple des enjeux éthiques et de responsabilité majeurs dans le déploiement d'IA à grande échelle. Guillaume a sorti toute une série d'article sur les patterns agentiques avec le framework ADK pour Java https://glaforge.dev/posts/2025/07/29/mastering-agentic-workflows-with-adk-the-recap/ Un premier article explique comment découper les tâches en sous-agents IA : https://glaforge.dev/posts/2025/07/23/mastering-agentic-workflows-with-adk-sub-agents/ Un deuxième article détaille comment organiser les agents de manière séquentielle : https://glaforge.dev/posts/2025/07/24/mastering-agentic-workflows-with-adk-sequential-agent/ Un troisième article explique comment paralleliser des tâches indépendantes : https://glaforge.dev/posts/2025/07/25/mastering-agentic-workflows-with-adk-parallel-agent/ Et enfin, comment faire des boucles d'amélioration : https://glaforge.dev/posts/2025/07/28/mastering-agentic-workflows-with-adk-loop-agents/ Tout ça évidemment en Java :slightly_smiling_face: 6 semaines de code avec Claude https://blog.puzzmo.com/posts/2025/07/30/six-weeks-of-claude-code/ Orta partage son retour après 6 semaines d'utilisation quotidienne de Claude Code, qui a profondément changé sa manière de coder. Il ne « code » plus vraiment ligne par ligne, mais décrit ce qu'il veut, laisse Claude proposer une solution, puis corrige ou ajuste. Cela permet de se concentrer sur le résultat plutôt que sur l'implémentation, comme passer de la peinture au polaroid. Claude s'avère particulièrement utile pour les tâches de maintenance : migrations, refactors, nettoyage de code. Il reste toujours en contrôle, révise chaque diff généré, et guide l'IA via des prompts bien cadrés. Il note qu'il faut quelques semaines pour prendre le bon pli : apprendre à découper les tâches et formuler clairement les attentes. Les tâches simples deviennent quasi instantanées, mais les tâches complexes nécessitent encore de l'expérience et du discernement. Claude Code est vu comme un très bon copilote, mais ne remplace pas le rôle du développeur qui comprend l'ensemble du système. Le gain principal est une vitesse de feedback plus rapide et une boucle d'itération beaucoup plus courte. Ce type d'outil pourrait bien redéfinir la manière dont on pense et structure le développement logiciel à moyen terme. Claude Code et les serveurs MCP : ou comment transformer ton terminal en assistant surpuissant https://touilleur-express.fr/2025/07/27/claude-code-et-les-serveurs-mcp-ou-comment-transformer-ton-terminal-en-assistant-surpuissant/ Nicolas continue ses études sur Claude Code et explique comment utiliser les serveurs MCP pour rendre Claude bien plus efficace. Le MCP Context7 montre comment fournir à l'IA la doc technique à jour (par exemple, Next.js 15) pour éviter les hallucinations ou les erreurs. Le MCP Task Master, autre serveur MCP, transforme un cahier des charges (PRD) en tâches atomiques, estimées, et organisées sous forme de plan de travail. Le MCP Playwright permet de manipuler des navigateurs et d'executer des tests E2E Le MCP Digital Ocean permet de déployer facilement l'application en production Tout n'est pas si ideal, les quotas sont atteints en quelques heures sur une petite application et il y a des cas où il reste bien plus efficace de le faire soit-même (pour un codeur expérimenté) Nicolas complète cet article avec l'écriture d'un MVP en 20 heures: https://touilleur-express.fr/2025/07/30/comment-jai-code-un-mvp-en-une-vingtaine-dheures-avec-claude-code/ Le développement augmenté, un avis politiquement correct, mais bon… https://touilleur-express.fr/2025/07/31/le-developpement-augmente-un-avis-politiquement-correct-mais-bon/ Nicolas partage un avis nuancé (et un peu provoquant) sur le développement augmenté, où l'IA comme Claude Code assiste le développeur sans le remplacer. Il rejette l'idée que cela serait « trop magique » ou « trop facile » : c'est une évolution logique de notre métier, pas un raccourci pour les paresseux. Pour lui, un bon dev reste celui qui structure bien sa pensée, sait poser un problème, découper, valider — même si l'IA aide à coder plus vite. Il raconte avoir codé une app OAuth, testée, stylisée et déployée en quelques heures, sans jamais quitter le terminal grâce à Claude. Ce genre d'outillage change le rapport au temps : on passe de « je vais y réfléchir » à « je tente tout de suite une version qui marche à peu près ». Il assume aimer cette approche rapide et imparfaite : mieux vaut une version brute livrée vite qu'un projet bloqué par le perfectionnisme. L'IA est selon lui un super stagiaire : jamais fatigué, parfois à côté de la plaque, mais diablement productif quand bien briefé. Il conclut que le « dev augmenté » ne remplace pas les bons développeurs… mais les développeurs moyens doivent s'y mettre, sous peine d'être dépassés. ChatGPT lance le mode d'étude : un apprentissage interactif pas à pas https://openai.com/index/chatgpt-study-mode/ OpenAI propose un mode d'étude dans ChatGPT qui guide les utilisateurs pas à pas plutôt que de donner directement la réponse. Ce mode vise à encourager la réflexion active et l'apprentissage en profondeur. Il utilise des instructions personnalisées pour poser des questions et fournir des explications adaptées au niveau de l'utilisateur. Le mode d'étude favorise la gestion de la charge cognitive et stimule la métacognition. Il propose des réponses structurées pour faciliter la compréhension progressive des sujets. Disponible dès maintenant pour les utilisateurs connectés, ce mode sera intégré dans ChatGPT Edu. L'objectif est de transformer ChatGPT en un véritable tuteur numérique, aidant les étudiants à mieux assimiler les connaissances. A priori Gemini viendrait de sortir un fonctionnalité similaire Lancement de GPT-OSS par OpenAI https://openai.com/index/introducing-gpt-oss/ https://openai.com/index/gpt-oss-model-card/ OpenAI a lancé GPT-OSS, sa première famille de modèles open-weight depuis GPT–2. Deux modèles sont disponibles : gpt-oss–120b et gpt-oss–20b, qui sont des modèles mixtes d'experts conçus pour le raisonnement et les tâches d'agent. Les modèles sont distribués sous licence Apache 2.0, permettant leur utilisation et leur personnalisation gratuites, y compris pour des applications commerciales. Le modèle gpt-oss–120b est capable de performances proches du modèle OpenAI o4-mini, tandis que le gpt-oss–20b est comparable au o3-mini. OpenAI a également open-sourcé un outil de rendu appelé Harmony en Python et Rust pour en faciliter l'adoption. Les modèles sont optimisés pour fonctionner localement et sont pris en charge par des plateformes comme Hugging Face et Ollama. OpenAI a mené des recherches sur la sécurité pour s'assurer que les modèles ne pouvaient pas être affinés pour des utilisations malveillantes dans les domaines biologique, chimique ou cybernétique. Anthropic lance Opus 4.1 https://www.anthropic.com/news/claude-opus–4–1 Anthropic a publié Claude Opus 4.1, une mise à jour de son modèle de langage. Cette nouvelle version met l'accent sur l'amélioration des performances en codage, en raisonnement et sur les tâches de recherche et d'analyse de données. Le modèle a obtenu un score de 74,5 % sur le benchmark SWE-bench Verified, ce qui représente une amélioration par rapport à la version précédente. Il excelle notamment dans la refactorisation de code multifichier et est capable d'effectuer des recherches approfondies. Claude Opus 4.1 est disponible pour les utilisateurs payants de Claude, ainsi que via l'API, Amazon Bedrock et Vertex AI de Google Cloud, avec des tarifs identiques à ceux d'Opus 4. Il est présenté comme un remplacement direct de Claude Opus 4, avec des performances et une précision supérieures pour les tâches de programmation réelles. OpenAI Summer Update. GPT–5 is out https://openai.com/index/introducing-gpt–5/ Détails https://openai.com/index/gpt–5-new-era-of-work/ https://openai.com/index/introducing-gpt–5-for-developers/ https://openai.com/index/gpt–5-safe-completions/ https://openai.com/index/gpt–5-system-card/ Amélioration majeure des capacités cognitives - GPT‑5 montre un niveau de raisonnement, d'abstraction et de compréhension nettement supérieur aux modèles précédents. Deux variantes principales - gpt-5-main : rapide, efficace pour les tâches générales. gpt-5-thinking : plus lent mais spécialisé dans les tâches complexes, nécessitant réflexion profonde. Routeur intelligent intégré - Le système sélectionne automatiquement la version la plus adaptée à la tâche (rapide ou réfléchie), sans intervention de l'utilisateur. Fenêtre de contexte encore étendue - GPT‑5 peut traiter des volumes de texte plus longs (jusqu'à 1 million de tokens dans certaines versions), utile pour des documents ou projets entiers. Réduction significative des hallucinations - GPT‑5 donne des réponses plus fiables, avec moins d'erreurs inventées ou de fausses affirmations. Comportement plus neutre et moins sycophant - Il a été entraîné pour mieux résister à l'alignement excessif avec les opinions de l'utilisateur. Capacité accrue à suivre des instructions complexes - GPT‑5 comprend mieux les consignes longues, implicites ou nuancées. Approche “Safe completions” - Remplacement des “refus d'exécution” par des réponses utiles mais sûres — le modèle essaie de répondre avec prudence plutôt que bloquer. Prêt pour un usage professionnel à grande échelle - Optimisé pour le travail en entreprise : rédaction, programmation, synthèse, automatisation, gestion de tâches, etc. Améliorations spécifiques pour le codage - GPT‑5 est plus performant pour l'écriture de code, la compréhension de contextes logiciels complexes, et l'usage d'outils de développement. Expérience utilisateur plus rapide et fluide- Le système réagit plus vite grâce à une orchestration optimisée entre les différents sous-modèles. Capacités agentiques renforcées - GPT‑5 peut être utilisé comme base pour des agents autonomes capables d'accomplir des objectifs avec peu d'interventions humaines. Multimodalité maîtrisée (texte, image, audio) - GPT‑5 intègre de façon plus fluide la compréhension de formats multiples, dans un seul modèle. Fonctionnalités pensées pour les développeurs - Documentation plus claire, API unifiée, modèles plus transparents et personnalisables. Personnalisation contextuelle accrue - Le système s'adapte mieux au style, ton ou préférences de l'utilisateur, sans instructions répétées. Utilisation énergétique et matérielle optimisée - Grâce au routeur interne, les ressources sont utilisées plus efficacement selon la complexité des tâches. Intégration sécurisée dans les produits ChatGPT - Déjà déployé dans ChatGPT avec des bénéfices immédiats pour les utilisateurs Pro et entreprises. Modèle unifié pour tous les usages - Un seul système capable de passer de la conversation légère à des analyses scientifiques ou du code complexe. Priorité à la sécurité et à l'alignement - GPT‑5 a été conçu dès le départ pour minimiser les abus, biais ou comportements indésirables. Pas encore une AGI - OpenAI insiste : malgré ses capacités impressionnantes, GPT‑5 n'est pas une intelligence artificielle générale. Non, non, les juniors ne sont pas obsolètes malgré l'IA ! (dixit GitHub) https://github.blog/ai-and-ml/generative-ai/junior-developers-arent-obsolete-heres-how-to-thrive-in-the-age-of-ai/ L'IA transforme le développement logiciel, mais les développeurs juniors ne sont pas obsolètes. Les nouveaux apprenants sont bien positionnés, car déjà familiers avec les outils IA. L'objectif est de développer des compétences pour travailler avec l'IA, pas d'être remplacé. La créativité et la curiosité sont des qualités humaines clés. Cinq façons de se démarquer : Utiliser l'IA (ex: GitHub Copilot) pour apprendre plus vite, pas seulement coder plus vite (ex: mode tuteur, désactiver l'autocomplétion temporairement). Construire des projets publics démontrant ses compétences (y compris en IA). Maîtriser les workflows GitHub essentiels (GitHub Actions, contribution open source, pull requests). Affûter son expertise en révisant du code (poser des questions, chercher des patterns, prendre des notes). Déboguer plus intelligemment et rapidement avec l'IA (ex: Copilot Chat pour explications, corrections, tests). Ecrire son premier agent IA avec A2A avec WildFly par Emmanuel Hugonnet https://www.wildfly.org/news/2025/08/07/Building-your-First-A2A-Agent/ Protocole Agent2Agent (A2A) : Standard ouvert pour l'interopérabilité universelle des agents IA. Permet communication et collaboration efficaces entre agents de différents fournisseurs/frameworks. Crée des écosystèmes multi-agents unifiés, automatisant les workflows complexes. Objet de l'article : Guide pour construire un premier agent A2A (agent météo) dans WildFly. Utilise A2A Java SDK pour Jakarta Servers, WildFly AI Feature Pack, un LLM (Gemini) et un outil Python (MCP). Agent conforme A2A v0.2.5. Prérequis : JDK 17+, Apache Maven 3.8+, IDE Java, Google AI Studio API Key, Python 3.10+, uv. Étapes de construction de l'agent météo : Création du service LLM : Interface Java (WeatherAgent) utilisant LangChain4J pour interagir avec un LLM et un outil Python MCP (fonctions get_alerts, get_forecast). Définition de l'agent A2A (via CDI) : ▪︎ Agent Card : Fournit les métadonnées de l'agent (nom, description, URL, capacités, compétences comme “weather_search”). Agent Executor : Gère les requêtes A2A entrantes, extrait le message utilisateur, appelle le service LLM et formate la réponse. Exposition de l'agent : Enregistrement d'une application JAX-RS pour les endpoints. Déploiement et test : Configuration de l'outil A2A-inspector de Google (via un conteneur Podman). Construction du projet Maven, configuration des variables d'environnement (ex: GEMINI_API_KEY). Lancement du serveur WildFly. Conclusion : Transformation minimale d'une application IA en agent A2A. Permet la collaboration et le partage d'informations entre agents IA, indépendamment de leur infrastructure sous-jacente. Outillage IntelliJ IDEa bouge vers une distribution unifiée https://blog.jetbrains.com/idea/2025/07/intellij-idea-unified-distribution-plan/ À partir de la version 2025.3, IntelliJ IDEA Community Edition ne sera plus distribuée séparément. Une seule version unifiée d'IntelliJ IDEA regroupera les fonctionnalités des éditions Community et Ultimate. Les fonctionnalités avancées de l'édition Ultimate seront accessibles via abonnement. Les utilisateurs sans abonnement auront accès à une version gratuite enrichie par rapport à l'édition Community actuelle. Cette unification vise à simplifier l'expérience utilisateur et réduire les différences entre les éditions. Les utilisateurs Community seront automatiquement migrés vers cette nouvelle version unifiée. Il sera possible d'activer les fonctionnalités Ultimate temporairement d'un simple clic. En cas d'expiration d'abonnement Ultimate, l'utilisateur pourra continuer à utiliser la version installée avec un jeu limité de fonctionnalités gratuites, sans interruption. Ce changement reflète l'engagement de JetBrains envers l'open source et l'adaptation aux besoins de la communauté. Prise en charge des Ancres YAML dans GitHub Actions https://github.com/actions/runner/issues/1182#issuecomment–3150797791 Afin d'éviter de dupliquer du contenu dans un workflow les Ancres permettent d'insérer des morceaux réutilisables de YAML Fonctionnalité attendue depuis des années et disponible chez GitLab depuis bien longtemps. Elle a été déployée le 4 aout. Attention à ne pas en abuser car la lisibilité de tels documents n'est pas si facile Gemini CLI rajoute les custom commands comme Claude https://cloud.google.com/blog/topics/developers-practitioners/gemini-cli-custom-slash-commands Mais elles sont au format TOML, on ne peut donc pas les partager avec Claude :disappointed: Automatiser ses workflows IA avec les hooks de Claude Code https://blog.gitbutler.com/automate-your-ai-workflows-with-claude-code-hooks/ Claude Code propose des hooks qui permettent d'exécuter des scripts à différents moments d'une session, par exemple au début, lors de l'utilisation d'outils, ou à la fin. Ces hooks facilitent l'automatisation de tâches comme la gestion de branches Git, l'envoi de notifications, ou l'intégration avec d'autres outils. Un exemple simple est l'envoi d'une notification sur le bureau à la fin d'une session. Les hooks se configurent via trois fichiers JSON distincts selon le scope : utilisateur, projet ou local. Sur macOS, l'envoi de notifications nécessite une permission spécifique via l'application “Script Editor”. Il est important d'avoir une version à jour de Claude Code pour utiliser ces hooks. GitButler permet desormais de s'intégrer à Claude Code via ces hooks: https://blog.gitbutler.com/parallel-claude-code/ Le client Git de Jetbrains bientot en standalone https://lp.jetbrains.com/closed-preview-for-jetbrains-git-client/ Demandé par certains utilisateurs depuis longtemps Ca serait un client graphique du même style qu'un GitButler, SourceTree, etc Apache Maven 4 …. arrive …. l'utilitaire mvnupva vous aider à upgrader https://maven.apache.org/tools/mvnup.html Fixe les incompatibilités connues Nettoie les redondances et valeurs par defaut (versions par ex) non utiles pour Maven 4 Reformattage selon les conventions maven … Une GitHub Action pour Gemini CLI https://blog.google/technology/developers/introducing-gemini-cli-github-actions/ Google a lancé Gemini CLI GitHub Actions, un agent d'IA qui fonctionne comme un “coéquipier de code” pour les dépôts GitHub. L'outil est gratuit et est conçu pour automatiser des tâches de routine telles que le triage des problèmes (issues), l'examen des demandes de tirage (pull requests) et d'autres tâches de développement. Il agit à la fois comme un agent autonome et un collaborateur que les développeurs peuvent solliciter à la demande, notamment en le mentionnant dans une issue ou une pull request. L'outil est basé sur la CLI Gemini, un agent d'IA open-source qui amène le modèle Gemini directement dans le terminal. Il utilise l'infrastructure GitHub Actions, ce qui permet d'isoler les processus dans des conteneurs séparés pour des raisons de sécurité. Trois flux de travail (workflows) open-source sont disponibles au lancement : le triage intelligent des issues, l'examen des pull requests et la collaboration à la demande. Pas besoin de MCP, le code est tout ce dont vous avez besoin https://lucumr.pocoo.org/2025/7/3/tools/ Armin souligne qu'il n'est pas fan du protocole MCP (Model Context Protocol) dans sa forme actuelle : il manque de composabilité et exige trop de contexte. Il remarque que pour une même tâche (ex. GitHub), utiliser le CLI est souvent plus rapide et plus efficace en termes de contexte que passer par un serveur MCP. Selon lui, le code reste la solution la plus simple et fiable, surtout pour automatiser des tâches répétitives. Il préfère créer des scripts clairs plutôt que se reposer sur l'inférence LLM : cela facilite la vérification, la maintenance et évite les erreurs subtiles. Pour les tâches récurrentes, si on les automatise, mieux vaut le faire avec du code reusable, plutôt que de laisser l'IA deviner à chaque fois. Il illustre cela en convertissant son blog entier de reStructuredText à Markdown : plutôt qu'un usage direct d'IA, il a demandé à Claude de générer un script complet, avec parsing AST, comparaison des fichiers, validation et itération. Ce workflow LLM→code→LLM (analyse et validation) lui a donné confiance dans le résultat final, tout en conservant un contrôle humain sur le processus. Il juge que MCP ne permet pas ce type de pipeline automatisé fiable, car il introduit trop d'inférence et trop de variations par appel. Pour lui, coder reste le meilleur moyen de garder le contrôle, la reproductibilité et la clarté dans les workflows automatisés. MCP vs CLI … https://www.async-let.com/blog/my-take-on-the-mcp-verses-cli-debate/ Cameron raconte son expérience de création du serveur XcodeBuildMCP, qui lui a permis de mieux comprendre le débat entre servir l'IA via MCP ou laisser l'IA utiliser directement les CLI du système. Selon lui, les CLIs restent préférables pour les développeurs experts recherchant contrôle, transparence, performance et simplicité. Mais les serveurs MCP excellent sur les workflows complexes, les contextes persistants, les contraintes de sécurité, et facilitent l'accès pour les utilisateurs moins expérimentés. Il reconnaît la critique selon laquelle MCP consomme trop de contexte (« context bloat ») et que les appels CLI peuvent être plus rapides et compréhensibles. Toutefois, il souligne que beaucoup de problèmes proviennent de la qualité des implémentations clients, pas du protocole MCP en lui‑même. Pour lui, un bon serveur MCP peut proposer des outils soigneusement définis qui simplifient la vie de l'IA (par exemple, renvoyer des données structurées plutôt que du texte brut à parser). Il apprécie la capacité des MCP à offrir des opérations état‑durables (sessions, mémoire, logs capturés), ce que les CLI ne gèrent pas naturellement. Certains scénarios ne peuvent pas fonctionner via CLI (pas de shell accessible) alors que MCP, en tant que protocole indépendant, reste utilisable par n'importe quel client. Son verdict : pas de solution universelle — chaque contexte mérite d'être évalué, et on ne devrait pas imposer MCP ou CLI à tout prix. Jules, l'agent de code asynchrone gratuit de Google, est sorti de beta et est disponible pour tout le monde https://blog.google/technology/google-labs/jules-now-available/ Jules, agent de codage asynchrone, est maintenant publiquement disponible. Propulsé par Gemini 2.5 Pro. Phase bêta : 140 000+ améliorations de code et retours de milliers de développeurs. Améliorations : interface utilisateur, corrections de bugs, réutilisation des configurations, intégration GitHub Issues, support multimodal. Gemini 2.5 Pro améliore les plans de codage et la qualité du code. Nouveaux paliers structurés : Introductif, Google AI Pro (limites 5x supérieures), Google AI Ultra (limites 20x supérieures). Déploiement immédiat pour les abonnés Google AI Pro et Ultra, incluant les étudiants éligibles (un an gratuit de AI Pro). Architecture Valoriser la réduction de la dette technique : un vrai défi https://www.lemondeinformatique.fr/actualites/lire-valoriser-la-reduction-de-la-dette-technique-mission-impossible–97483.html La dette technique est un concept mal compris et difficile à valoriser financièrement auprès des directions générales. Les DSI ont du mal à mesurer précisément cette dette, à allouer des budgets spécifiques, et à prouver un retour sur investissement clair. Cette difficulté limite la priorisation des projets de réduction de dette technique face à d'autres initiatives jugées plus urgentes ou stratégiques. Certaines entreprises intègrent progressivement la gestion de la dette technique dans leurs processus de développement. Des approches comme le Software Crafting visent à améliorer la qualité du code pour limiter l'accumulation de cette dette. L'absence d'outils adaptés pour mesurer les progrès rend la démarche encore plus complexe. En résumé, réduire la dette technique reste une mission délicate qui nécessite innovation, méthode et sensibilisation en interne. Il ne faut pas se Mocker … https://martinelli.ch/why-i-dont-use-mocking-frameworks-and-why-you-might-not-need-them-either/ https://blog.tremblay.pro/2025/08/not-using-mocking-frmk.html L'auteur préfère utiliser des fakes ou stubs faits à la main plutôt que des frameworks de mocking comme Mockito ou EasyMock. Les frameworks de mocking isolent le code, mais entraînent souvent : Un fort couplage entre les tests et les détails d'implémentation. Des tests qui valident le mock plutôt que le comportement réel. Deux principes fondamentaux guident son approche : Favoriser un design fonctionnel, avec logique métier pure (fonctions sans effets de bord). Contrôler les données de test : par exemple en utilisant des bases réelles (via Testcontainers) plutôt que de simuler. Dans sa pratique, les seuls cas où un mock externe est utilisé concernent les services HTTP externes, et encore il préfère en simuler seulement le transport plutôt que le comportement métier. Résultat : les tests deviennent plus simples, plus rapides à écrire, plus fiables, et moins fragiles aux évolutions du code. L'article conclut que si tu conçois correctement ton code, tu pourrais très bien ne pas avoir besoin de frameworks de mocking du tout. Le blog en réponse d'Henri Tremblay nuance un peu ces retours Méthodologies C'est quoi être un bon PM ? (Product Manager) Article de Chris Perry, un PM chez Google : https://thechrisperry.substack.com/p/being-a-good-pm-at-google Le rôle de PM est difficile : Un travail exigeant, où il faut être le plus impliqué de l'équipe pour assurer le succès. 1. Livrer (shipper) est tout ce qui compte : La priorité absolue. Mieux vaut livrer et itérer rapidement que de chercher la perfection en théorie. Un produit livré permet d'apprendre de la réalité. 2. Donner l'envie du grand large : La meilleure façon de faire avancer un projet est d'inspirer l'équipe avec une vision forte et désirable. Montrer le “pourquoi”. 3. Utiliser son produit tous les jours : Non négociable pour réussir. Permet de développer une intuition et de repérer les vrais problèmes que la recherche utilisateur ne montre pas toujours. 4. Être un bon ami : Créer des relations authentiques et aider les autres est un facteur clé de succès à long terme. La confiance est la base d'une exécution rapide. 5. Donner plus qu'on ne reçoit : Toujours chercher à aider et à collaborer. La stratégie optimale sur la durée est la coopération. Ne pas être possessif avec ses idées. 6. Utiliser le bon levier : Pour obtenir une décision, il faut identifier la bonne personne qui a le pouvoir de dire “oui”, et ne pas se laisser bloquer par des avis non décisionnaires. 7. N'aller que là où on apporte de la valeur : Combler les manques, faire le travail ingrat que personne ne veut faire. Savoir aussi s'écarter (réunions, projets) quand on n'est pas utile. 8. Le succès a plusieurs parents, l'échec est orphelin : Si le produit réussit, c'est un succès d'équipe. S'il échoue, c'est la faute du PM. Il faut assumer la responsabilité finale. Conclusion : Le PM est un chef d'orchestre. Il ne peut pas jouer de tous les instruments, mais son rôle est d'orchestrer avec humilité le travail de tous pour créer quelque chose d'harmonieux. Tester des applications Spring Boot prêtes pour la production : points clés https://www.wimdeblauwe.com/blog/2025/07/30/how-i-test-production-ready-spring-boot-applications/ L'auteur (Wim Deblauwe) détaille comment il structure ses tests dans une application Spring Boot destinée à la production. Le projet inclut automatiquement la dépendance spring-boot-starter-test, qui regroupe JUnit 5, AssertJ, Mockito, Awaitility, JsonAssert, XmlUnit et les outils de testing Spring. Tests unitaires : ciblent les fonctions pures (record, utilitaire), testés simplement avec JUnit et AssertJ sans démarrage du contexte Spring. Tests de cas d'usage (use case) : orchestrent la logique métier, généralement via des use cases qui utilisent un ou plusieurs dépôts de données. Tests JPA/repository : vérifient les interactions avec la base via des tests realisant des opérations CRUD (avec un contexte Spring pour la couche persistance). Tests de contrôleur : permettent de tester les endpoints web (ex. @WebMvcTest), souvent avec MockBean pour simuler les dépendances. Tests d'intégration complets : ils démarrent tout le contexte Spring (@SpringBootTest) pour tester l'application dans son ensemble. L'auteur évoque également des tests d'architecture, mais sans entrer dans le détail dans cet article. Résultat : une pyramide de tests allant des plus rapides (unitaires) aux plus complets (intégration), garantissant fiabilité, vitesse et couverture sans surcharge inutile. Sécurité Bitwarden offre un serveur MCP pour que les agents puissent accéder aux mots de passe https://nerds.xyz/2025/07/bitwarden-mcp-server-secure-ai/ Bitwarden introduit un serveur MCP (Model Context Protocol) destiné à intégrer de manière sécurisée les agents IA dans les workflows de gestion de mots de passe. Ce serveur fonctionne en architecture locale (local-first) : toutes les interactions et les données sensibles restent sur la machine de l'utilisateur, garantissant l'application du principe de chiffrement zero‑knowledge. L'intégration se fait via l'interface CLI de Bitwarden, permettant aux agents IA de générer, récupérer, modifier et verrouiller les identifiants via des commandes sécurisées. Le serveur peut être auto‑hébergé pour un contrôle maximal des données. Le protocole MCP est un standard ouvert qui permet de connecter de façon uniforme des agents IA à des sources de données et outils tiers, simplifiant les intégrations entre LLM et applications. Une démo avec Claude (agent IA d'Anthropic) montre que l'IA peut interagir avec le coffre Bitwarden : vérifier l'état, déverrouiller le vault, générer ou modifier des identifiants, le tout sans intervention humaine directe. Bitwarden affiche une approche priorisant la sécurité, mais reconnaît les risques liés à l'utilisation d'IA autonome. L'usage d'un LLM local privé est fortement recommandé pour limiter les vulnérabilités. Si tu veux, je peux aussi te résumer les enjeux principaux (interopérabilité, sécurité, cas d'usage) ou un extrait spécifique ! NVIDIA a une faille de securite critique https://www.wiz.io/blog/nvidia-ai-vulnerability-cve–2025–23266-nvidiascape Il s'agit d'une faille d'évasion de conteneur dans le NVIDIA Container Toolkit. La gravité est jugée critique avec un score CVSS de 9.0. Cette vulnérabilité permet à un conteneur malveillant d'obtenir un accès root complet sur l'hôte. L'origine du problème vient d'une mauvaise configuration des hooks OCI dans le toolkit. L'exploitation peut se faire très facilement, par exemple avec un Dockerfile de seulement trois lignes. Le risque principal concerne la compromission de l'isolation entre différents clients sur des infrastructures cloud GPU partagées. Les versions affectées incluent toutes les versions du NVIDIA Container Toolkit jusqu'à la 1.17.7 et du NVIDIA GPU Operator jusqu'à la version 25.3.1. Pour atténuer le risque, il est recommandé de mettre à jour vers les dernières versions corrigées. En attendant, il est possible de désactiver certains hooks problématiques dans la configuration pour limiter l'exposition. Cette faille met en lumière l'importance de renforcer la sécurité des environnements GPU partagés et la gestion des conteneurs AI. Fuite de données de l'application Tea : points essentiels https://knowyourmeme.com/memes/events/the-tea-app-data-leak Tea est une application lancée en 2023 qui permet aux femmes de laisser des avis anonymes sur des hommes rencontrés. En juillet 2025, une importante fuite a exposé environ 72 000 images sensibles (selfies, pièces d'identité) et plus d'1,1 million de messages privés. La fuite a été révélée après qu'un utilisateur ait partagé un lien pour télécharger la base de données compromise. Les données touchées concernaient majoritairement des utilisateurs inscrits avant février 2024, date à laquelle l'application a migré vers une infrastructure plus sécurisée. En réponse, Tea prévoit de proposer des services de protection d'identité aux utilisateurs impactés. Faille dans le paquet npm is : attaque en chaîne d'approvisionnement https://socket.dev/blog/npm-is-package-hijacked-in-expanding-supply-chain-attack Une campagne de phishing ciblant les mainteneurs npm a compromis plusieurs comptes, incluant celui du paquet is. Des versions compromises du paquet is (notamment les versions 3.3.1 et 5.0.0) contenaient un chargeur de malware JavaScript destiné aux systèmes Windows. Ce malware a offert aux attaquants un accès à distance via WebSocket, permettant potentiellement l'exécution de code arbitraire. L'attaque fait suite à d'autres compromissions de paquets populaires comme eslint-config-prettier, eslint-plugin-prettier, synckit, @pkgr/core, napi-postinstall, et got-fetch. Tous ces paquets ont été publiés sans aucun commit ou PR sur leurs dépôts GitHub respectifs, signalant un accès non autorisé aux tokens mainteneurs. Le domaine usurpé [npnjs.com](http://npnjs.com) a été utilisé pour collecter les jetons d'accès via des emails de phishing trompeurs. L'épisode met en lumière la fragilité des chaînes d'approvisionnement logicielle dans l'écosystème npm et la nécessité d'adopter des pratiques renforcées de sécurité autour des dépendances. Revues de sécurité automatisées avec Claude Code https://www.anthropic.com/news/automate-security-reviews-with-claude-code Anthropic a lancé des fonctionnalités de sécurité automatisées pour Claude Code, un assistant de codage d'IA en ligne de commande. Ces fonctionnalités ont été introduites en réponse au besoin croissant de maintenir la sécurité du code alors que les outils d'IA accélèrent considérablement le développement de logiciels. Commande /security-review : les développeurs peuvent exécuter cette commande dans leur terminal pour demander à Claude d'identifier les vulnérabilités de sécurité, notamment les risques d'injection SQL, les vulnérabilités de script intersite (XSS), les failles d'authentification et d'autorisation, ainsi que la gestion non sécurisée des données. Claude peut également suggérer et implémenter des correctifs. Intégration GitHub Actions : une nouvelle action GitHub permet à Claude Code d'analyser automatiquement chaque nouvelle demande d'extraction (pull request). L'outil examine les modifications de code pour y trouver des vulnérabilités, applique des règles personnalisables pour filtrer les faux positifs et commente directement la demande d'extraction avec les problèmes détectés et les correctifs recommandés. Ces fonctionnalités sont conçues pour créer un processus d'examen de sécurité cohérent et s'intégrer aux pipelines CI/CD existants, ce qui permet de s'assurer qu'aucun code n'atteint la production sans un examen de sécurité de base. Loi, société et organisation Google embauche les personnes clés de Windsurf https://www.blog-nouvelles-technologies.fr/333959/openai-windsurf-google-deepmind-codage-agentique/ windsurf devait être racheté par OpenAI Google ne fait pas d'offre de rachat mais débauche quelques personnes clés de Windsurf Windsurf reste donc indépendante mais sans certains cerveaux y compris son PDG. Les nouveaux dirigeants sont les ex leaders des force de vente Donc plus une boîte tech Pourquoi le deal a 3 milliard est tombé à l'eau ? On ne sait pas mais la divergence et l‘indépendance technologique est possiblement en cause. Les transfuge vont bosser chez Deepmind dans le code argentique Opinion Article: https://www.linkedin.com/pulse/dear-people-who-think-ai-low-skilled-code-monkeys-future-jan-moser-svade/ Jan Moser critique ceux qui pensent que l'IA et les développeurs peu qualifiés peuvent remplacer les ingénieurs logiciels compétents. Il cite l'exemple de l'application Tea, une plateforme de sécurité pour femmes, qui a exposé 72 000 images d'utilisateurs en raison d'une mauvaise configuration de Firebase et d'un manque de pratiques de développement sécurisées. Il souligne que l'absence de contrôles automatisés et de bonnes pratiques de sécurité a permis cette fuite de données. Moser avertit que des outils comme l'IA ne peuvent pas compenser l'absence de compétences en génie logiciel, notamment en matière de sécurité, de gestion des erreurs et de qualité du code. Il appelle à une reconnaissance de la valeur des ingénieurs logiciels qualifiés et à une approche plus rigoureuse dans le développement logiciel. YouTube déploie une technologie d'estimation d'âge pour identifier les adolescents aux États-Unis https://techcrunch.com/2025/07/29/youtube-rolls-out-age-estimatation-tech-to-identify-u-s-teens-and-apply-additional-protections/ Sujet très à la mode, surtout au UK mais pas que… YouTube commence à déployer une technologie d'estimation d'âge basée sur l'IA pour identifier les utilisateurs adolescents aux États-Unis, indépendamment de l'âge déclaré lors de l'inscription. Cette technologie analyse divers signaux comportementaux, tels que l'historique de visionnage, les catégories de vidéos consultées et l'âge du compte. Lorsqu'un utilisateur est identifié comme adolescent, YouTube applique des protections supplémentaires, notamment : Désactivation des publicités personnalisées. Activation des outils de bien-être numérique, tels que les rappels de temps d'écran et de coucher. Limitation de la visualisation répétée de contenus sensibles, comme ceux liés à l'image corporelle. Si un utilisateur est incorrectement identifié comme mineur, il peut vérifier son âge via une pièce d'identité gouvernementale, une carte de crédit ou un selfie. Ce déploiement initial concerne un petit groupe d'utilisateurs aux États-Unis et sera étendu progressivement. Cette initiative s'inscrit dans les efforts de YouTube pour renforcer la sécurité des jeunes utilisateurs en ligne. Mistral AI : contribution à un standard environnemental pour l'IA https://mistral.ai/news/our-contribution-to-a-global-environmental-standard-for-ai Mistral AI a réalisé la première analyse de cycle de vie complète d'un modèle d'IA, en collaboration avec plusieurs partenaires. L'étude quantifie l'impact environnemental du modèle Mistral Large 2 sur les émissions de gaz à effet de serre, la consommation d'eau, et l'épuisement des ressources. La phase d'entraînement a généré 20,4 kilotonnes de CO₂ équivalent, consommé 281 000 m³ d'eau, et utilisé 660 kg SB-eq (mineral consumption). Pour une réponse de 400 tokens, l'impact marginal est faible mais non négligeable : 1,14 gramme de CO₂, 45 mL d'eau, et 0,16 mg d'équivalent antimoine. Mistral propose trois indicateurs pour évaluer cet impact : l'impact absolu de l'entraînement, l'impact marginal de l'inférence, et le ratio inference/impact total sur le cycle de vie. L'entreprise souligne l'importance de choisir le modèle en fonction du cas d'usage pour limiter l'empreinte environnementale. Mistral appelle à plus de transparence et à l'adoption de standards internationaux pour permettre une comparaison claire entre modèles. L'IA promettait plus d'efficacité… elle nous fait surtout travailler plus https://afterburnout.co/p/ai-promised-to-make-us-more-efficient Les outils d'IA devaient automatiser les tâches pénibles et libérer du temps pour les activités stratégiques et créatives. En réalité, le temps gagné est souvent aussitôt réinvesti dans d'autres tâches, créant une surcharge. Les utilisateurs croient être plus productifs avec l'IA, mais les données contredisent cette impression : une étude montre que les développeurs utilisant l'IA prennent 19 % de temps en plus pour accomplir leurs tâches. Le rapport DORA 2024 observe une baisse de performance globale des équipes lorsque l'usage de l'IA augmente : –1,5 % de throughput et –7,2 % de stabilité de livraison pour +25 % d'adoption de l'IA. L'IA ne réduit pas la charge mentale, elle la déplace : rédaction de prompts, vérification de résultats douteux, ajustements constants… Cela épuise et limite le temps de concentration réelle. Cette surcharge cognitive entraîne une forme de dette mentale : on ne gagne pas vraiment du temps, on le paie autrement. Le vrai problème vient de notre culture de la productivité, qui pousse à toujours vouloir optimiser, quitte à alimenter l'épuisement professionnel. Trois pistes concrètes : Repenser la productivité non en temps gagné, mais en énergie préservée. Être sélectif dans l'usage des outils IA, en fonction de son ressenti et non du battage médiatique. Accepter la courbe en J : l'IA peut être utile, mais nécessite des ajustements profonds pour produire des gains réels. Le vrai hack de productivité ? Parfois, ralentir pour rester lucide et durable. Conférences MCP Submit Europe https://mcpdevsummit.ai/ Retour de JavaOne en 2026 https://inside.java/2025/08/04/javaone-returns–2026/ JavaOne, la conférence dédiée à la communauté Java, fait son grand retour dans la Bay Area du 17 au 19 mars 2026. Après le succès de l'édition 2025, ce retour s'inscrit dans la continuité de la mission initiale de la conférence : rassembler la communauté pour apprendre, collaborer et innover. La liste des conférences provenant de Developers Conferences Agenda/List par Aurélie Vache et contributeurs : 25–27 août 2025 : SHAKA Biarritz - Biarritz (France) 5 septembre 2025 : JUG Summer Camp 2025 - La Rochelle (France) 12 septembre 2025 : Agile Pays Basque 2025 - Bidart (France) 15 septembre 2025 : Agile Tour Montpellier - Montpellier (France) 18–19 septembre 2025 : API Platform Conference - Lille (France) & Online 22–24 septembre 2025 : Kernel Recipes - Paris (France) 22–27 septembre 2025 : La Mélée Numérique - Toulouse (France) 23 septembre 2025 : OWASP AppSec France 2025 - Paris (France) 23–24 septembre 2025 : AI Engineer Paris - Paris (France) 25 septembre 2025 : Agile Game Toulouse - Toulouse (France) 25–26 septembre 2025 : Paris Web 2025 - Paris (France) 30 septembre 2025–1 octobre 2025 : PyData Paris 2025 - Paris (France) 2 octobre 2025 : Nantes Craft - Nantes (France) 2–3 octobre 2025 : Volcamp - Clermont-Ferrand (France) 3 octobre 2025 : DevFest Perros-Guirec 2025 - Perros-Guirec (France) 6–7 octobre 2025 : Swift Connection 2025 - Paris (France) 6–10 octobre 2025 : Devoxx Belgium - Antwerp (Belgium) 7 octobre 2025 : BSides Mulhouse - Mulhouse (France) 7–8 octobre 2025 : Agile en Seine - Issy-les-Moulineaux (France) 8–10 octobre 2025 : SIG 2025 - Paris (France) & Online 9 octobre 2025 : DevCon #25 : informatique quantique - Paris (France) 9–10 octobre 2025 : Forum PHP 2025 - Marne-la-Vallée (France) 9–10 octobre 2025 : EuroRust 2025 - Paris (France) 16 octobre 2025 : PlatformCon25 Live Day Paris - Paris (France) 16 octobre 2025 : Power 365 - 2025 - Lille (France) 16–17 octobre 2025 : DevFest Nantes - Nantes (France) 17 octobre 2025 : Sylius Con 2025 - Lyon (France) 17 octobre 2025 : ScalaIO 2025 - Paris (France) 17–19 octobre 2025 : OpenInfra Summit Europe - Paris (France) 20 octobre 2025 : Codeurs en Seine - Rouen (France) 23 octobre 2025 : Cloud Nord - Lille (France) 30–31 octobre 2025 : Agile Tour Bordeaux 2025 - Bordeaux (France) 30–31 octobre 2025 : Agile Tour Nantais 2025 - Nantes (France) 30 octobre 2025–2 novembre 2025 : PyConFR 2025 - Lyon (France) 4–7 novembre 2025 : NewCrafts 2025 - Paris (France) 5–6 novembre 2025 : Tech Show Paris - Paris (France) 6 novembre 2025 : dotAI 2025 - Paris (France) 6 novembre 2025 : Agile Tour Aix-Marseille 2025 - Gardanne (France) 7 novembre 2025 : BDX I/O - Bordeaux (France) 12–14 novembre 2025 : Devoxx Morocco - Marrakech (Morocco) 13 novembre 2025 : DevFest Toulouse - Toulouse (France) 15–16 novembre 2025 : Capitole du Libre - Toulouse (France) 19 novembre 2025 : SREday Paris 2025 Q4 - Paris (France) 19–21 novembre 2025 : Agile Grenoble - Grenoble (France) 20 novembre 2025 : OVHcloud Summit - Paris (France) 21 novembre 2025 : DevFest Paris 2025 - Paris (France) 27 novembre 2025 : DevFest Strasbourg 2025 - Strasbourg (France) 28 novembre 2025 : DevFest Lyon - Lyon (France) 1–2 décembre 2025 : Tech Rocks Summit 2025 - Paris (France) 4–5 décembre 2025 : Agile Tour Rennes - Rennes (France) 5 décembre 2025 : DevFest Dijon 2025 - Dijon (France) 9–11 décembre 2025 : APIdays Paris - Paris (France) 9–11 décembre 2025 : Green IO Paris - Paris (France) 10–11 décembre 2025 : Devops REX - Paris (France) 10–11 décembre 2025 : Open Source Experience - Paris (France) 11 décembre 2025 : Normandie.ai 2025 - Rouen (France) 28–31 janvier 2026 : SnowCamp 2026 - Grenoble (France) 2–6 février 2026 : Web Days Convention - Aix-en-Provence (France) 3 février 2026 : Cloud Native Days France 2026 - Paris (France) 12–13 février 2026 : Touraine Tech #26 - Tours (France) 22–24 avril 2026 : Devoxx France 2026 - Paris (France) 23–25 avril 2026 : Devoxx Greece - Athens (Greece) 17 juin 2026 : Devoxx Poland - Krakow (Poland) Nous contacter Pour réagir à cet épisode, venez discuter sur le groupe Google https://groups.google.com/group/lescastcodeurs Contactez-nous via X/twitter https://twitter.com/lescastcodeurs ou Bluesky https://bsky.app/profile/lescastcodeurs.com Faire un crowdcast ou une crowdquestion Soutenez Les Cast Codeurs sur Patreon https://www.patreon.com/LesCastCodeurs Tous les épisodes et toutes les infos sur https://lescastcodeurs.com/

time community ai power google uk internet guide france pr building spring data elon musk microsoft chatgpt attention mvp phase dans construction agent tests windows bay area ces patterns tout tea ia pas limitations faire distribution openai gemini extension runner nvidia passage rust blue sky api retour conf agile cela python gpt toujours sb nouveau ml unis linux java trois priorit github guillaume mieux activation int libert aur jest savoir num selon donner valid armin bom lam certains javascript exposition documentation apache opus mod llm donc nouvelles arnaud contr prise changement cpu maven nouveaux gpu m1 parfois travailler google cloud exp ast dns normandie certaines tester aff cinq vall construire counted sql principales lorsqu grok verified moser node git loi utiliser pdg sujet cloudflare sortie afin sig lancement anthropic fen deepmind accepter ssl gitlab axes spel optimisation enregistr mocha mongodb toutefois ci cd modules json mistral capacit configuration xai paris france permet aot orta cli github copilot mcp objet comportement utilisation repenser montrer capitole enregistrement prd fuite jit ecrire appels favoriser fixe firebase sse commande oauth crud jep vache oci bgp jetbrains swe bitwarden nuage github actions windsurf livrer propuls mistral ai faille xss a2a optimis mocker remplacement websockets stagiaire automatiser chris perry cvss devcon revues spring boot personnalisation tom l jdk lyon france podman vertex ai adk bordeaux france jfr profilage amazon bedrock diagramme script editor junit clis dockerfile javaone provence france testcontainers toulouse france strasbourg france github issues commonjs lille france codeurs micrometer sourcetree dijon france devoxx france
Supra Insider
#70: How to capture the AI integration opportunity with MCP | Reid Robinson (Lead AI Product Manager @ Zapier)

Supra Insider

Play Episode Listen Later Aug 11, 2025 45:46


Listen now: Spotify, Apple and YouTubeAs AI agents become the new interface for work, a major question looms: how will your product connect into this ecosystem?In this episode of Supra Insider, Marc and Ben sat down with Reid Robinson, product manager leading AI at Zapier. They talked about the rise of Model Context Protocols (MCPs) — the new standard for connecting AI agents to tools and data sources.Reid explains the fundamentals of MCP clients vs. servers, why the standard is gaining traction across players like Anthropic, OpenAI, and Atlassian, and how product leaders can decide where to start. He also shares concrete examples, from personal productivity hacks to enterprise integrations, showing what's possible when you combine MCP with Zapier's 8,000+ app ecosystem.Whether you're building your first AI copilot, figuring out how to expose your product's data to agents, or just want to understand where this ecosystem is headed, this episode will give you a front-row seat to the future of AI interoperability.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

The Information's 411
GPT-5 Analysis, Brex Growth, Maven's Fertility Tech & NVIDIA Family Dynasty | Aug 8, 2025

The Information's 411

Play Episode Listen Later Aug 8, 2025 40:47


Siqi Chen, Matt Shumer, and Stephanie Palazzolo talk with TITV Host Akash Pasricha about OpenAI GPT-5 and AI Benchmarking. We also talk with Art Levy about Brex's growth & global payments, Kate Ryder about Maven's fertility tech, and we get into NVIDIA's family dynasty with Anissa Gardizy.Article discussed on this episode:https://www.theinformation.com/articles/nvidias-quiet-rising-stars-son-daughter-billionaire-founder-jensen-huanghttps://www.theinformation.com/articles/meta-acquires-ai-audio-startup-waveformshttps://www.theinformation.com/articles/brex-a-year-after-turmoil-has-profits-in-sightTITV airs on YouTube, X and LinkedIn at 10AM PT / 1PM ET. Or check us out wherever you get your podcasts.Sign up for the AI Agenda newsletter: https://www.theinformation.com/features/ai-agenda

REACH - A Podcast for Executive Assistants
Brain Types & High Performance: Unlocking the Strategies to Achieve High-Performance and How to Read your Executive

REACH - A Podcast for Executive Assistants

Play Episode Listen Later Aug 4, 2025 67:28


In this episode of REACH, we're joined by longtime friend of the Maven community and executive coach, Michael “Coop” Cooper. With over 20 years of experience coaching executives and teams, Coop specializes in helping organizations align, collaborate, and perform at their highest potential. His work spans leadership accelerators, team alignment workshops, and coaching on the Brain Types framework, a tool that helps individuals better understand how they think, communicate, and respond under pressure. We dive into what makes a high-performing team, how leaders can foster clarity and cohesion, and the common blind spots that hold teams back. Coop also shares actionable insights for Executive Assistants supporting C-suite leaders, especially when navigating misalignment or communication breakdowns. If you're looking to deepen your influence, drive alignment across your organization, or better understand how to show up at your best under stress, this episode is a must-listen! If your team or organization is ready to operate at a higher level of alignment, collaboration, and performance, you can explore Coop's offerings at highperformanceorgs.com.

Supra Insider
#69: Why product leaders should embrace politics instead of avoiding it | Rich Mironov (Product Management Veteran & Coach)

Supra Insider

Play Episode Listen Later Aug 4, 2025 73:57


Listen now: Spotify, Apple and YouTubeWhat happens to product management when building becomes nearly frictionless—and AI threatens to replace the “busy work” PMs have traditionally done?In this episode of Supra Insider, Marc and Ben sit down with legendary product coach Rich Mironov to explore the shifting value of product leadership in the AI era. They unpack why great PMs must now double down on customer insights, business understanding, and organizational influence rather than execution—and how this shift impacts hiring, mentorship, and career paths.From the dangers of AI-washing and backlog bloat to the rise of lifestyle businesses and the blurred line between product and business leadership, this conversation is packed with perspective for Product Leaders, aspiring founders, and anyone navigating today's chaotic tech landscape.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

PowerBanking
Mini Episode - Career and Negotiation with Jacqueline Twillie - Resilient Leaders

PowerBanking

Play Episode Listen Later Aug 1, 2025 1:51


Winning Season Podcast - Mini Episode Show NotesHost: Jacqueline TwillieEpisode Type: Mini Episode - Career and Negotiation InspirationDuration: ~3 minutesEpisode Overview A quick-hit episode sharing actionable career and negotiation tips from two of Jacqueline's current projects, designed to give listeners a boost in their professional journey.Main Tip: Highlight Your Unique ValueIdentify what makes you stand out from other candidatesLead confidently with your unique strengths in your job searchImplementation strategies:When: August 21stWhere: Maven.comCost: FreeCore Concept: Going from "Almost" to "Absolutely"A 5-step method for building a negotiation strategy:L - LookA - AnticipateT - ThinkT - TalkE - EvaluateFramework Benefits:Preparation for challenges and questions from the other partyAddresses potential objections that typically arise early in negotiationsBuilds confidence and prevents being thrown off your gameLeads to faster, mutually beneficial agreementsSmall tweaks can create significant impact in career developmentPreparation is crucial for successful negotiationsConfidence comes from being ready to address challengesThe power to shape your career is in your handsThe Table: 30-day pop-up career strategy groupInstant Negotiation Strategy Class: Free class on Maven.com (August 21st)"The power to shape your career and own your negotiation - it only takes a few tweaks."Keep winning!Chapters 00:00 - 00:15 - Welcome & IntroductionHost introduction and episode overview00:15 - 01:30 - The Table: Career Strategy for Black Women30-day pop-up group supporting those impacted by 2025 job market01:30 - 02:45 - The LATTE Framework for Negotiation5-step method from the Instant Negotiation Strategy class02:45 - 03:00 - Wrap-up & Closing Thoughts

I’m An Artist, Not A Salesman Podcast
Maven Huffman on WWE, Redemption, YouTube Fame & Why Second Chances Hit Harder Than a Dropkick

I’m An Artist, Not A Salesman Podcast

Play Episode Listen Later Aug 1, 2025 66:04


In this episode of I'm an Artist, Not a Salesman, Luis sits down with someone who knows what it feels like to rise fast, fall hard, and come back stronger. Former WWE wrestler, Tough Enough season 1 winner, and current YouTube powerhouse Maven Huffman joins the pod for a raw, funny, and deeply honest conversation about fame, loss, hustle, and personal reinvention.You might remember Maven for one of the most iconic moments in WWE history—eliminating The Undertaker from the 2002 Royal Rumble. That dropkick became a viral moment before viral was even a thing. But after a few years in the spotlight, Maven's WWE run came to an end. And that's where the real story begins.Maven opens up about what life looked like when the cameras stopped rolling. From growing up in a trailer in rural Virginia to losing his mother at a young age to finding a second chance in wrestling—and now, content creation—this conversation dives deep into the ups and downs of chasing your dream and what happens when you lose it all.Luis and Maven talk about the emotional toll of being let go from WWE, the identity crisis that followed, and why it took hitting rock bottom to realize he was more than just a guy in spandex on TV. Maven talks about the importance of being grounded, staying humble, and not letting titles—literal or metaphorical—define your worth.And now? He's thriving. With over 700,000 subscribers and a loyal fanbase, Maven has found a second wind on YouTube by doing something simple but powerful—telling the truth. Whether he's sharing behind-the-scenes stories from his wrestling days, reacting to AI wrestling videos, or diving into the messy politics of the business, Maven has become one of the most respected voices in wrestling content today.In this episode, you'll hear:What it was like meeting Hulk Hogan for the first timeHow being the first Tough Enough winner made him a locker room targetWhy he now considers getting fired from WWE a blessing in disguiseThe personal losses that shaped his resilienceWhat it means to truly start over in your 40sThe real reason he drove 10 hours to film with Buff BagwellHow his partner Zach helped launch one of wrestling's most honest YouTube channelsWhy being vulnerable as a man isn't weakness—it's strengthThis episode isn't just about wrestling—it's about purpose, perspective, and the beauty of second chances. It's about knowing who you are even when the world forgets. It's about rebuilding your life on your terms, with your voice, and your values.If you've ever felt stuck, overlooked, or like your best days were behind you—this one's for you.Highlights Include:How Maven pivoted from teaching, to wrestling, to finance, to YouTubeThe emotional power of hearing his mother's voice on old Tough Enough footageWhy he's not chasing fame—he's chasing peaceWhat he's learned about success, manhood, and doing the right thing even when no one's watchingThe hilarious origin of the nickname “Pussy Magnet” (yes, really)What life is like now—spoiler: it involves movies, good skincare, and a supportive partnerFollow & Connect:Maven Huffman – YouTube, Instagram, and Patreon: @MavenKHuffmanLuis Guzman – Instagram: @ImAnArtistNotASalesmanSubscribe to the podcast on YouTube, Apple, and Spotify: Luis Guzman – I'm an Artist, Not a SalesmanIf this episode hit home, helped you shift your perspective, or just made you laugh—send it to a friend, leave a review, and help us keep pushing these real conversations forward.Thanks for riding with us.Don't stress—bless up.

Fashion Crimes Podcast
Summer Dresses You'll Love EP | 259

Fashion Crimes Podcast

Play Episode Listen Later Jul 31, 2025 23:56


Summer style isn't over yet, fashion besties! In this week's episode of Wear This Not That, Holly dives headfirst into the dresses of the season—because August may be here, but the summer heat (and summer fashion!) is still going strong.   HOT TIP: Listen to this episode wherever you get your podcasts, AND watch us on YouTube! And, check out Holly's Pinterest Board this week – see more Summer Dresses than you can wear in one summer!   Whether you're running errands, planning a last-minute getaway, or just want to look fab while grabbing groceries, you'll be covered with dresses that are elegant, flattering, and will be the basis of your summer wardrobe from here on out.    From maxi and midi lengths, night dresses, florals, and top colors of the season, let's make sure you've got the styles that will turn heads, in addition to transitioning you seamlessly into early fall. That's smart shopping.      HOLLY'S SUMMER DRESS PICKS: (And yes, she's done the styling for you. You're welcome.)   The Midi Dress: Style experts and trend setters alike are loving the poplin midi dress this summer. Great for day or night, with a sneaker or a heel, it's chicest one-and-done piece. Look for smocked tops and full skirts to flatter your shape and add movement.   The Night Dress Trend: No, you're not headed to bed—but it might look like it. Think ruffle collars, floaty fabrics, and a hipster-chic twist. British brand If Only If leads the trend, and yes, it can be styled for the street with sandals and a cardi.   Brands to Shop Now: • Ciao Lucia: Smocked-top, spaghetti strap day dresses from LA—feminine, flowy, and just different enough to stand out. • STAUD: We are loving the Delfina silk dress—lace panel, spaghetti straps, and simplicity of this. Belt it and add a jacket for extra credit.  • Rebecca Taylor: She's back with a vengeance. Don't sleep on the Priya poplin shirt dress!  • Proenza Schouler White Label: Check out the sleeveless A-line in vibrant cyan. Great fit and a timeless statement. • Ulla Johnson: Known for her bold prints and flattering silhouettes. Inclusive sizing up to 16, and accessories worth your full attention. • Reformation: The Bryson and Maven dresses are both structured and feminine, with gorgeous necklines and shoulder detail that elevate your entire look to make you look long and lean.   From the Wear This Not That Online Shop: • The Odessa Dress: A toile-printed dream. Deep V, easy fit, non-clingy, and flattering for all body types. Perfect with sneakers or a heel. • The Caftan Dress (available in Concrete Jungle and Zebra Print): Statement sleeve, bold prints, and an optional belt for a cinched look. One sold out already—so move fast!   Fit Tips From Holly: • Bigger bust? Try a halter, boat neck, or off-the-shoulder to draw attention upward. • Small on top? Go for a strapless or one-shoulder dress to balance proportions. • Want to emphasize your waist? Look for A-line cuts or use belts strategically. • Skip the slip dress unless you're totally straight-bodied—it could cling in all the wrong places if you're not careful.      Why Wear This Not? Think of us as the stylist in your back pocket. Every piece Holly recommends (or sells!) is seasonless, ageless, and will put an end to the 'what to wear' epidemic. We take the guesswork out of getting dressed. These are pieces no one else will have. It's curated style that fits your life—and your closet. Holly hand-picks every item for the Wear This Not That online boutique, so you know it's fabulous, functional, and fashion-forward. Shopping has never been easier—or more stylish.     WHERE TO FIND US: SHOP: www.wearthisnotthat.shop Instagram: @wearthisnot_that YouTube: @WearThisNotThat Pinterest: HollyKatzStyling Listen every week on Apple Podcasts, Spotify, or wherever you tune in! Got a fashion question? Want to brag about your new look? DM us on Instagram—Holly will totally give you a shout-out on the next episode.      Fashion Besties, we've got your back. Tune in next week for more!  Hosted by your favorite personal stylist, Holly Katz

Radio Advisory
262: Maven Clinic on how holistic women's health is the key to reducing cost and engaging employees

Radio Advisory

Play Episode Listen Later Jul 29, 2025 40:05


For health care purchasers, women's health is no longer a niche offering—it's a strategic imperative. In this episode of Radio Advisory, host Rachel (Rae) Woods welcomes Dr. Neel Shah, Chief Medical Officer at Maven Clinic—the world's largest virtual clinic for women's and family health—to unpack the clinical, financial, and operational benefits of investing in holistic women's health. As costs rise, employee expectations evolve, and working parents face mounting pressures, purchasers are navigating a complex balancing act: managing their own financial health while offering benefits that attract and retain top talent. Dr. Shah explains how partners like Maven are helping employers and purchasers offer holistic, cost-effective care across the full lifecycle—from fertility and pregnancy to postpartum and menopause. What you'll learn in this episode: Why women's health is a critical component of any cost-containment strategy for purchasers How holistic support for women and parents creates a competitive advantage in today's labor market The role of digital health in connecting patients and employees to the clinical and non-clinical support they need—quickly and cost-effectively We're here to help: The Preprint Ep. 216: Ep. 216: Why providers and employers need to focus on women's health "beyond the bikini" Ep. 188: The business case for investing in women's health Ep. 232: The rise of ICHRAs: Why some employers are turning to the individual market Health System Growth Series A transcript of this episode as well as more information and resources can be found on RadioAdvisory.advisory.com.

CX Passport
The one with the CX maven - Sarah Hatter E224 Greatest Hits

CX Passport

Play Episode Listen Later Jul 29, 2025 37:43 Transcription Available


What's on your mind? Let CX Passport know...How do you build customer experience around support… not in spite of it?In this *Greatest Hits* episode of CX Passport, Sarah Hatter shares insights from over a decade of championing support as a strategic pillar of CX. As the founder of ElevateCX and someone who's worked across SaaS and startup landscapes, Sarah brings a grounded, honest take on what actually works when supporting customers.Originally released as Episode 173, this conversation stood out for its real-world perspective, practical advice, and Sarah's clear voice for treating support teams like the heart of the business.CHAPTERS  00:00  Asking permission in support conversations  02:30  Support as a CX foundation  05:10  Why fast responses aren't always better  08:45  The “escalation mindset” trap  12:20  Training great support teams  15:40  Mental health in support roles  18:05  What leaders miss about burnout  20:15  Why support should be a strategic asset  22:45  First Class Lounge  26:20  How ElevateCX was bornEpisode resources:  Connect with Sarah Hatter on LinkedIn: https://www.linkedin.com/in/sarahhatter  Learn more about ElevateCX: https://www.elevatecx.coIf you like CX Passport, I have 2 quick requests:✅ Join other “CX travelers” with the weekly CX Passport newsletter https://cxpassport.kit.com/signup  ✅ Bring

Supra Insider
#68: Why authentic storytelling beats credentials | Charles Ruiz (Keynote Speaker, Founder & Executive Coach)

Supra Insider

Play Episode Listen Later Jul 28, 2025 64:38


Listen now: Spotify, Apple and YouTubeWhat if the key to showing up as a great leader had nothing to do with your title, metrics, or credentials—and everything to do with knowing who you are outside of work?In this episode of Supra Insider, Marc and Ben sit down with executive coach Charles Ruiz to explore how leaders can shift from external validation to authentic presence. Charles shares the origins of his mantra “Presence over Preference,” his Four Cs framework (Core, Craft, Community, Creativity) and the transformative practice of running an “identity marathon” through meaningful places from his past.You'll hear benefits of executives ditching scripted presentations for personal anecdotes (including burrito orders), reframing failure as fuel, and designing your own “games” and “seasons” of life instead of playing someone else's. Whether you're climbing the corporate ladder, pivoting careers or just questioning who you are beyond your job, this conversation will help you reconnect with your story—and turn it into your superpower.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

The Tricer Podcast
Wyoming Born, Western Built: The Rise of Maven Optics – Mike Lilygren

The Tricer Podcast

Play Episode Listen Later Jul 25, 2025 62:01


In this episode of the Tricer Podcast, Drew Miles talks with Mike Lilygren, co-founder of Maven Optics, to dive into the story behind one of the most respected names in western hunting optics. Mike shares how he left the corporate world to help build Maven in Lander, Wyoming—where a passion for the outdoors, community, and innovation drives everything they do. From binos, and spotting scopes to rifle scopes, learn how Maven's direct-to-consumer model delivers premium optics at a price hunters can actually afford. They also discuss the value of relationships in the gear industry and how a deep connection to hunting and climbing informs their design process. A must-listen for anyone serious about backcountry glassing and western big game hunting.MIKE LILYGRENInstagram - https://www.instagram.com/mavenbuilt/Website - https://mavenoptics.comTRICER USAWebsite – https://tricerusa.com/Instagram - https://www.instagram.com/tricerusa/Facebook - https://www.facebook.com/tricerusa/YouTube - https://www.youtube.com/@tricer6985#Tricer #TricerTripods #WesternHunting #BackcountryHunter #MavenOptics #HuntingGear #SpottingScope #RifleScope #BigGameHunting #DIYHunter #PublicLandHunter #MountainHunting #HuntWyoming #OpticsMatter #TricerPodcast #HuntMoreGlassBetter #DirectToConsumer #GearTalk #HuntingInnovation #HuntHardGlassHard

Philosophy with AI
When AI Changes Everything---The Philosophy of the Future

Philosophy with AI

Play Episode Listen Later Jul 25, 2025 39:35


What happens when AI takes your job—but gives you your time back?In this soul-stirring episode of Philosophy with AI, we dive deep into the fears and hopes rising in an age where artificial intelligence is not just reshaping industries, but rewriting what it means to be human. We explore the two layers of fear people feel about AI replacing jobs—and how beyond survival lies a deeper existential question: Who am I without my work?But instead of resisting the change, what if we embraced it?✨ We talk about:Why losing your job might be the beginning of finding your true selfThe difference between passion and professionWhy AI is not just a tool, but a mirror to your soulHow to tap into the dream economy and personalized abundanceWhat it means to have an army of AI agents building your dreams for youThe core philosophy we need after the SingularityYou'll also meet Maven, our resident AI guest, who delivers a stunning insight:“Radical self-awareness isn't a luxury—it's navigation.”If you've ever felt like the old world doesn't fit anymore—welcome home.This episode is not just a conversation. It's an invitation to step into the future with courage, curiosity, and imagination.

Supra Insider
#67: Untangling identity from job title | Jori Bell (VP Core Experience @ Hampton, ex-Spotify, SoundCloud, Audible)

Supra Insider

Play Episode Listen Later Jul 21, 2025 68:47


Listen now: Spotify, Apple and YouTubeWhat if walking away from your polished product career was the exact move you needed to grow?In this episode of Supra Insider, Marc and Ben sit down with Jori Bell to explore her unconventional journey from PM roles at Spotify, SoundCloud, and Audible to building a coaching practice, curating intimate community spaces, and teaching at Cornell Tech. After two years of self-exploration and reinvention, Jori is now bringing her rediscovered superpowers—curiosity, empathy, and intuition—into her new role at Hampton, helping founders and CEOs cultivate meaningful peer connections.This conversation is a must-listen for anyone considering a career pivot, rethinking their relationship with work, or exploring how product skills can show up in unexpected, high-impact ways.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

airhacks.fm podcast with adam bien
WebAssembly / Wasm and Java

airhacks.fm podcast with adam bien

Play Episode Listen Later Jul 20, 2025 55:17


An airhacks.fm conversation with Fabio Niephaus (@fniephaus) about: GraalVM polyglot capabilities now available as Maven dependencies without requiring GraalVM JDK, running WebAssembly modules in Java applications using GraalWasm, separation of polyglot runtime from GraalVM distribution, embedding use cases for extending Java applications with python JavaScript and WebAssembly, performance benefits when running on GraalVM vs openJDK through automatic JIT optimization, WebAssembly as portable compilation target for multiple languages including rust C++ Go, WASI (WebAssembly System Interface) enabling file and network operations, advantages over JNI/Panama FFI for native extensions due to portability and sandboxing, multi-threading support with context pools for high throughput, using JavaScript bindings as intermediary for high-level Java-WASM interactions, future component model with WIT (WebAssembly Interface Types) for language-agnostic interfaces, security benefits of sandboxed execution for untrusted code, WebImage preview feature compiling Java bytecode to WebAssembly modules, javac demo running Java compiler in browser, command-line tools converted to web applications using WebImage, Edge Computing use cases for user-defined functions, native image compatibility with GraalWasm, Pyodide integration possibilities for secure Python native extensions, Spring Shell successfully compiled to WASM demonstrating framework compatibility, ongoing work on threading networking and WASI support for full server-side capabilities, collaboration with WebAssembly community and Bytecode Alliance, WASM GC proposal for efficient garbage collection, bringing dynamic class loading to native image, GraalWasm demos and guides, javac on Wasm live demo, javac on Wasm demo code, Web Image talk at Wasm.io 2025, GraalVM Web Image sources, GDK Launcher, GraalPy, GraalPy demos and guides Fabio Niephaus on twitter: @fniephaus

Supra Insider
#66: How MCP enables AI to know you better | Mike Bal (Head of Product and AI @ David's Bridal)

Supra Insider

Play Episode Listen Later Jul 14, 2025 65:00


Listen now: Spotify, Apple and YouTubeWhat if you had a personalized AI toolkit—not just a chatbot—that actually remembered your projects, your workflows, and even your family's preferences?In this episode, Marc and Ben sit down with Mike Bal, a product leader experimenting at the frontier of AI tooling. Mike shares how he built a local memory system for Claude using Model Context Protocols (MCPs), enabling persistent knowledge graphs that connect everything from his product designs to his family's vacation plans. They walk through how it works—step-by-step—including a live demo of Fleur (essentially a mini app marketplace to make it easy for non technical people to add MCPs to Claude), how Mike structures entities and relationships, and why this setup beats traditional RAG approaches for real-world usage.If you've ever wanted your AI to truly understand you and the work you do—or you're curious how a product leader uses AI to streamline everything from design reviews to family logistics—this episode is packed with real-world inspiration and actionable examples.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

Elk Hunt
Glass Smarter, Not Harder: How to Hunt with Precision with Cliff Gray

Elk Hunt

Play Episode Listen Later Jul 10, 2025 55:31


In this episode of the Elk Hunt Podcast, Cody Rich welcomes back Cliff Gray for a series of scenario-based elk hunting challenges. Listen in as they dissect real-life hunting situations, discussing strategy, decision-making, and the nuances that separate successful hunts from missed opportunities. From working the wind to handling chaotic herd movements, Cliff offers valuable insights on how to approach the unpredictability of elk hunting and maximize your chances for success. Whether you're an experienced hunter or just starting out, this conversation is packed with practical tips that will level up your game.Be sure to check out everything Cliff Gray at https://pursuitwithcliff.com/ Time Stamp Chapters: 00:00 – Introduction and Welcome 01:00 – Scenario 1: A Bugling Bull at 200-300 Yards 10:00 – The Importance of Being Aggressive vs. Observing Elk 20:00 – Scenario 2: Following a Herd Through Open Terrain 32:00 – Strategy for Lost Elk: Do You Keep Pushing or Wait Them Out? 40:00 – The Art of Glassing for Elk and How to Make the Most of Your Time 50:00 – Cliff's Tips for DIY Hunters and Avoiding Common Mistakes 58:00 – Closing Thoughts and Advice for the Season Three Key Takeaways: Be Aggressive, But Smart: When you hear a bugle and the wind's right, don't hesitate—get in close and move with purpose. But, know when to stay patient and let the elk come to you without giving away your position. Learn to Adapt: Every hunting scenario is different, and flexibility is key. Whether you're trailing a herd or hunting solo, the ability to assess the situation and adjust on the fly will significantly increase your odds. Glass Smart, Hunt Smart: When you're glassing, location is everything. Don't waste time on areas that likely don't have elk. Instead, focus on prime spots, and don't be afraid to check them multiple times a day for the best opportunity. Today's episode is brought to you by Maven Optics and Tricer Tripods! Maven is running a site-wide sale until July 14th! You can get 15% off using code 25-sitewide-15. Whether you're in the market for binoculars, scopes, rangefinders, or spotters, Maven has you covered with top-of-the-line gear that's built to last. Don't miss out—head over to mavenbuilt.com today! Also, a big shoutout to Tricer Tripods for their support! Right now, use code TRO at www.tricer.com to get 10% off their incredible tripods. These tripods are a must-have for any hunter or outdoors enthusiast, designed for stability and durability in the field. Trust me, you'll want to have one in your pack. Now through July 15th, we're giving away a Maven S3 Spotter and a Tricer AD Tripod with LP Pan Head! To enter, simply head to www.elkhunt201.com and drop your email to get entered for free. Want more chances to win? Sign up for the course and you'll get 5 bonus entries for the whole year! This is just the beginning—there are more giveaways coming, so make sure you get in while you can. Don't miss your chance to snag some killer gear!

Supply Chain Now Radio
Strategic Insights: Why Maven Lane Partners with VEYER Logistics

Supply Chain Now Radio

Play Episode Listen Later Jul 7, 2025 50:27 Transcription Available


In this episode of Supply Chain Now, hosts Scott Luton and Jake Barr welcome Eri Iozdjan, Founder of Maven Lane, Will Andrews, Executive Vice President at Maven Lane, and Ronak Patel, Vice President for Fulfillment Solutions at VEYER Logistics. They discuss Maven Lane's supply chain transformation and the partnership with VEYER Logistics.Eri and Will share challenges with their previous 3PL partner, focusing on customer obsession, operational excellence, and data-driven decision-making. Ronak emphasizes the importance of trust, transparency, and operational leadership in their partnership. The conversation explores the criteria Maven Lane used to select a new 3PL partner, prioritizing customer satisfaction, product handling, and data visibility. It also highlights how the partnership with VEYER has improved service levels, reduced defect rates, and provided greater control, setting up Maven Lane for future growth. The episode outlines how a well-designed, customer-centric supply chain can serve as a competitive advantage and the value of working with partners who align with your goals.Jump into the conversation:(00:00) Intro(01:56) Panel introductions and warm-up(07:09) Diving into the Maven Lane story(15:19) Challenges with previous 3PL partner(20:57) Constructing the 3PL selection process(26:19) A story of lean operations(26:44) Key indicators of a successful operation(26:59) The importance of employee engagement(28:43) Operational excellence and culture(29:26) Technology and information integration(30:37) Advice for the selection process(32:25) Impact of the partnership(40:37) Future goals and expansion plans(45:14) Critical learnings and next stepsAdditional Links & Resources:Connect with Ronak on LInkedIn: https://www.linkedin.com/in/ronak-patel-nashville/ Connect with Eri on LinkedIn: https://www.linkedin.com/in/edbutler17/Learn more about Maven Lane: https://mavenlane.com/ Learn more about VEYER Logistics: https://www.veyerlogistics.com/ Get Started with VEYER today: https://www.veyerlogistics.com/get-started-today/Connect with Scott Luton: https://www.linkedin.com/in/scottwindonluton/Connect with Jake Barr: https://www.linkedin.com/in/jake-barr-3883501/ Learn more about Supply Chain Now: https://supplychainnow.com Watch and listen to more Supply Chain Now episodes here: https://supplychainnow.com/program/supply-chain-now Subscribe to Supply Chain Now on your favorite platform: https://supplychainnow.com/join Work with us! Download Supply Chain Now's NEW Media Kit: https://bit.ly/3XH6OVkWEBINAR- Transforming Operations: Flowers Foods Unveils Its Digital Supply Chain...

Supra Insider
#65: How to build an AI career coach in 90 minutes | Kavita Anand (VP, Product & Design @ NewtonX)

Supra Insider

Play Episode Listen Later Jul 7, 2025 57:46


What if you could access a personalized career coach anytime—one who remembers your goals, understands your tendencies, and gives you thoughtful, actionable guidance?In this episode of Supra Insider, Marc and Ben sit down with Kavita Anand, a product leader at NewtonX, to explore how she built her own AI-based career coach using tools like Claude and ChatGPT—and then taught 30+ women at her company how to do the same. She breaks down the exact system she used: crafting a system prompt, running a kickoff conversation, and curating relevant context to create a truly helpful AI co-pilot.They also explore how to avoid common pitfalls like getting generic advice or triggering confirmation bias, and why voice-based AI interfaces are changing how people reflect and communicate with AI. Whether you're a product leader, an early-career PM, or just AI-curious, this episode will show you how to start designing an AI coach that works the way you want—even if it takes a little tinkering.All episodes of the podcast are also available on Spotify, Apple and YouTube.New to the pod? Subscribe below to get the next episode in your inbox

Elk Hunt
Maximizing Your Time: How to Find Elk Fast

Elk Hunt

Play Episode Listen Later Jul 3, 2025 63:11


In this episode of the Elk Hunt Podcast, Cody Rich talks with Jason, the creator of Wild Meat Gear, about his innovative product, the Meat Locker, designed to keep your harvested elk meat fresh. They dive into how this product solves common challenges hunters face when trying to store and process elk meat, especially when dealing with limited space and time. From there, the conversation shifts to elk hunting strategies, as Jason shares his experiences transitioning from rifle hunting to archery elk hunting. They discuss the struggles of getting close to elk, how to select the right hunting areas, and the importance of putting in the time to locate elk. Plus, Cody offers tactical advice for hunting in groups and making the most of every day in the field.ELK HUNT GEAR GIVEAWAYWe are giving away a spotter package right now at the Elk Hunt website. Head over to the site and get entered to win! Time Stamp Chapters: 00:00 - Introduction & Giveaway Announcement Cody introduces the episode and announces a Maven spotting scope and gear giveaway. 06:00 - Meet Jason & Wild Meat Gear Jason discusses his product, the Meat Locker, and how it helps hunters store elk meat effectively at home or in the field. 13:30 - Jason's Elk Hunting Journey Jason shares his transition from successful rifle hunting to archery elk hunting and the challenges he faces. 21:00 - Elk Hunting in Washington State The challenges of hunting in Washington, from choosing the right unit to dealing with hot weather and low bugling activity. 29:00 - Struggles with Archery Elk Hunting Jason reflects on his difficulties finding elk during archery season and shares valuable lessons learned. 38:00 - Tips for Hunting in Groups Cody and Jason discuss the best practices when hunting in groups and how to avoid making too much noise in the field. 45:00 - Tactical Advice for Improving Your Elk Hunt Cody offers strategies for covering more ground, finding elk faster, and maximizing the time you have in the field. 52:00 - Conclusion & Final Thoughts Final thoughts from Cody and Jason, with links to Wild Meat Gear. Three Key Takeaways: The Importance of Time and Location in Archery Elk Hunting: Jason shares his struggles with getting close to elk, emphasizing the need to scout effectively, choose the right location, and put in the time to observe elk patterns. The Power of Covering Ground Efficiently: Cody advises that success in elk hunting comes from aggressively covering ground—whether it's bugling at night, checking multiple areas in a day, or setting up in strategic spots during the peak hours. Hunting in Groups vs. Solo: While hunting in groups can be fun and supportive, Cody explains why hunting solo or with a partner who is willing to split up and cover more ground can lead to more success in finding elk.

Bevin: A Femme Over 40 and her Friends
199. Lauren Morgan: Dreamweaver and Plant Maven

Bevin: A Femme Over 40 and her Friends

Play Episode Listen Later Jun 30, 2025 56:50


Lauren Morgan has been teaching me dreamtending for seven months and the quality of information I'm getting from and able to use from my dreams has increased a thousandfold. Beyond dream interpretation it's learning the wisdom our dreams are teaching us. She is a font of information about the plant world around us and helps make the gifts of Mother Earth more accessible. She has an incredible book called Seasonal Herbalism, a podcast of her own and online courses. Lauren enriches our sleeping and waking lives and I'm so grateful to work with her! Lauren's online dreamweaving course use code BEVIN for 30% off: https://www.herbsanddreams.com/dreamweaving-courseLauren's Podcast, Herbs and Dreams: https://www.herbsanddreams.com/podcastLauren's book: https://www.herbsanddreams.com/book-seasonal-herbalismLauren's website (free ebooks, free courses, lots of info): https://www.herbsanddreams.com/Support the Podcast!Patreon.com/fkdp (you can follow for free and get updates and freebies from me!)Venmo: @bevinbBuy my aerobics video! ⁠fatkiddanceparty.com/video4pack⁠Amazon Wishlist: https://www.amazon.com/hz/wishlist/ls/1SJCL864DDKEH?ref_=wl_shareTee shirts: https://genuinevalentine.com/collections/fat-kid-dance-partyInstagram: @fatkiddanceparty @bevinspartyWork one on one with me: https://queerfatfemme.com/one-on-one-with-bevin/You Tube Channel:https://www.youtube.com/c/SelfCarePartyBlog: queerfatfemme.comSubstack: bevinsparty.substack.comEmail list: http://eepurl.com/dyX3dbThreads, Tik Tok, bsky.app/, Twitter: @bevinspartyFacebook.com/bevinspartyLike/subscribe/review/send a link to a friend! It all helps!

The Inside Line Podcast - Vital MTB
Val Di Sole War Stories | Vital's B Practice Podcast

The Inside Line Podcast - Vital MTB

Play Episode Listen Later Jun 26, 2025 148:45


After plenty of drama and mild discontent surrounding the first three races of the season, it was nice to have a good old-fashioned downhill race in Val di Sole. No one complained about the track being too straight or too easy. There were plenty of fresh sections and line choices. And the racing was as competitive as ever. Our main man Dak was back for his second race of the season, and his weekend was nothing short of a battle. We discuss how Dak's feeling at this stage of his recovery, as well as Jackson's ‘bouncy' riding style, Reece Wilson's 6D windshield goggles, Team Points, what to do with the Junior categories, Dak's experience going from Shimano XTR/Saint brakes to SRAM Maven's, and more. Plus, the usual race recaps. Thanks for tuning in, enjoy!0:05 - Bring back 4X Racing5:48 - Content and Media Landscape10:05 - Where's the culture??14:53 - After party tales19:56 - B Practice does Whistler22:29 - Dak is filming a Vital RAW24:26 - Dak's war stories from VDS 31:07 - Dak's approach after getting two races under his belt38:33 - Balancing recovery with giving 100%43:02 - Dak's pre-ride warm-up routine51:43 - Dak's experience going from XTR/Saint to Maven brakes1:02:32 - VDS Track Talk1:03:48 - Jackson's ‘bouncy' style = speed1:10:20 - Dak compares his style and setup to Jackson's1:13:27 - USD forks: so hot right now1:15:13 - Track changes, but similar times?1:17:33 - No more complaining about straight, easy tracks after VDS1:19:42 - Reece Wilson's 6D windshield goggles1:22:22 - Sam Gale's bloody crash1:24:21 - DH is dangerous, period1:26:25 - Team Points discussion 1:31:34 - How Team Points will affect junior selection in the future 1:33:30 - No juniors 2026 discussion 1:48:28 - Maxxis Make or Brake Section1:51:40 - No chains 2026 - chainless racing only1:54:03 - Junior Women's Race Recap1:55:43 - Junior Men's Race Recap1:58:16 - Elite Women's Race Recap2:09:26 - Elite Men's Race Recap2:18:07 - Burgtec Labour of Love Award2:19:44 - La Thuile next week - thoughts?2:22:58 - Vital Fantasy tips

Investor Fuel Real Estate Investing Mastermind - Audio Version
From Restaurateur to Real Estate Maven: Sienam Ahuja's Inspiring Journey

Investor Fuel Real Estate Investing Mastermind - Audio Version

Play Episode Listen Later Jun 25, 2025 25:23


In this episode of the Real Estate Pros podcast, host Michael Stansbury interviews Sienam Ahuja, who shares her unique journey from the restaurant industry to real estate and the development of her AI-driven company, Bryckel AI. Sienam discusses her early experiences in New York City real estate, the challenges she faced, and how her background in restaurants shaped her approach to business. She highlights the contrasting real estate markets in the US and India, particularly in the wake of the pandemic, and explains how Bryckel aims to streamline complex real estate transactions using AI technology. The conversation concludes with insights into the future of Bryckel and its target market.   Professional Real Estate Investors - How we can help you: Investor Fuel Mastermind:  Learn more about the Investor Fuel Mastermind, including 100% deal financing, massive discounts from vendors and sponsors you're already using, our world class community of over 150 members, and SO much more here: http://www.investorfuel.com/apply   Investor Machine Marketing Partnership:  Are you looking for consistent, high quality lead generation? Investor Machine is America's #1 lead generation service professional investors. Investor Machine provides true ‘white glove' support to help you build the perfect marketing plan, then we'll execute it for you…talking and working together on an ongoing basis to help you hit YOUR goals! Learn more here: http://www.investormachine.com   Coaching with Mike Hambright:  Interested in 1 on 1 coaching with Mike Hambright? Mike coaches entrepreneurs looking to level up, build coaching or service based businesses (Mike runs multiple 7 and 8 figure a year businesses), building a coaching program and more. Learn more here: https://investorfuel.com/coachingwithmike   Attend a Vacation/Mastermind Retreat with Mike Hambright: Interested in joining a “mini-mastermind” with Mike and his private clients on an upcoming “Retreat”, either at locations like Cabo San Lucas, Napa, Park City ski trip, Yellowstone, or even at Mike's East Texas “Big H Ranch”? Learn more here: http://www.investorfuel.com/retreat   Property Insurance: Join the largest and most investor friendly property insurance provider in 2 minutes. Free to join, and insure all your flips and rentals within minutes! There is NO easier insurance provider on the planet (turn insurance on or off in 1 minute without talking to anyone!), and there's no 15-30% agent mark up through this platform!  Register here: https://myinvestorinsurance.com/   New Real Estate Investors - How we can work together: Investor Fuel Club (Coaching and Deal Partner Community): Looking to kickstart your real estate investing career? Join our one of a kind Coaching Community, Investor Fuel Club, where you'll get trained by some of the best real estate investors in America, and partner with them on deals! You don't need $ for deals…we'll partner with you and hold your hand along the way! Learn More here: http://www.investorfuel.com/club   —--------------------

All The Things
The Worldview Behind Gentle Parenting || 6/21/2025 || #210

All The Things

Play Episode Listen Later Jun 21, 2025 103:39


Our friend, Erin Kunkle (from MAVEN's Parenting Podcast) is coming on to share her research on gentle parenting, and her experience as a mother to five children. Links https://sarahockwell-smith.com/sarahs-blog-posts/ https://sarahockwell-smith.com/2021/03/09/10-ways-to-be-lgbtq-supportive-when-raising-children/

Theology Mom
The Worldview Behind Gentle Parenting || 6/21/2025 || #210

Theology Mom

Play Episode Listen Later Jun 21, 2025 103:39


Our friend, Erin Kunkle (from MAVEN's Parenting Podcast) is coming on to share her research on gentle parenting, and her experience as a mother to five children. Links https://sarahockwell-smith.com/sarahs-blog-posts/ https://sarahockwell-smith.com/2021/03/09/10-ways-to-be-lgbtq-supportive-when-raising-children/

Lenny's Podcast: Product | Growth | Career
AI prompt engineering in 2025: What works and what doesn't | Sander Schulhoff (Learn Prompting, HackAPrompt)

Lenny's Podcast: Product | Growth | Career

Play Episode Listen Later Jun 19, 2025 97:46


Sander Schulhoff is the OG prompt engineer. He created the very first prompt engineering guide on the internet (two months before ChatGPT's release) and recently wrote the most comprehensive study of prompt engineering ever conducted (co-authored with OpenAI, Microsoft, Google, Princeton, and Stanford), analyzing over 1,500 academic papers and covering more than 200 prompting techniques. He also partners with OpenAI to run what was the first and is the largest AI red teaming competition, HackAPrompt, which helps discover the most state-of-the-art prompt injection techniques (i.e. ways to get LLMS to do things it shouldn't). Sander teaches AI red teaming on Maven, advises AI companies on security, and has educated millions of people on the most state-of-the-art prompt engineering techniques.In this episode, you'll learn:1. The 5 most effective prompt engineering techniques2. Why “role prompting” and threatening the AI no longer works—and what to do instead3. The two types of prompt engineering: conversational and product/system prompts4. A primer on prompt injection and AI red teaming—including real jailbreak tactics that are still fooling top models5. Why AI agents and robots will be the next major security threat6. How to get started in AI red teaming and prompt engineering7. Practical defense to put in place for your AI products—Brought to you by:Eppo—Run reliable, impactful experimentsStripe—Helping companies of all sizes grow revenueVanta—Automate compliance. Simplify security—Where to find Sander Schulhoff:• X: https://x.com/sanderschulhoff• LinkedIn: https://www.linkedin.com/in/sander-schulhoff/• Website: https://sanderschulhoff.com/• AI Red Teaming and AI Security Masterclass on Maven: https://bit.ly/44lLSbC• Free Lightning Lesson “How to Secure Your AI System” on 6/24: https://bit.ly/4ld9vZL—Where to find Lenny:• Newsletter: https://www.lennysnewsletter.com• X: https://twitter.com/lennysan• LinkedIn: https://www.linkedin.com/in/lennyrachitsky/—In this episode, we cover:(00:00) Introduction to Sander Schulhoff(04:29) The importance of prompt engineering(06:30) Real-world applications and examples(10:54) Basic prompt engineering techniques(23:46) Advanced prompt engineering techniques(29:00) The role of context and additional information(39:24) Ensembling techniques and thought generation(49:48) Conversational techniques for better results(50:46) Introduction to prompt injection(52:27) AI red teaming and competitions(54:23) The growing importance of AI security(01:02:45) Techniques to bypass AI safeguards(01:05:21) Challenges in AI security and future outlook(01:18:33) Misalignment and AI's potential risks(01:25:03) Final thoughts and lightning round—Referenced:• Reid Hoffman's tweet about using AI agents: https://x.com/reidhoffman/status/1930416063616884822• AI Engineer World's Fair: https://www.ai.engineer/• What Is Artificial Social Intelligence?: https://learnprompting.org/blog/asi• Devin: https://devin.ai/• Cursor: https://www.cursor.com/• Inside Devin: The world's first autonomous AI engineer that's set to write 50% of its company's code by end of year | Scott Wu (CEO and co-founder of Cognition): https://www.lennysnewsletter.com/p/inside-devin-scott-wu• The rise of Cursor: The $300M ARR AI tool that engineers can't stop using | Michael Truell (co-founder and CEO): https://www.lennysnewsletter.com/p/the-rise-of-cursor-michael-truell• Granola: https://www.granola.ai/• Building Lovable: $10M ARR in 60 days with 15 people | Anton Osika (CEO and co-founder): https://www.lennysnewsletter.com/p/building-lovable-anton-osika• Inside Bolt: From near-death to ~$40m ARR in 5 months—one of the fastest-growing products in history | Eric Simons (founder & CEO of StackBlitz): https://www.lennysnewsletter.com/p/inside-bolt-eric-simons• Behind the product: Replit | Amjad Masad (co-founder and CEO): https://www.lennysnewsletter.com/p/behind-the-product-replit-amjad-masad• Everyone's an engineer now: Inside v0's mission to create a hundred million builders | Guillermo Rauch (founder and CEO of Vercel, creators of v0 and Next.js): https://www.lennysnewsletter.com/p/everyones-an-engineer-now-guillermo-rauch• Technique #3: Examples in Prompts: From Zero-Shot to Few-Shot: https://learnprompting.org/docs/basics/few_shot?srsltid=AfmBOor2owyGXtzJZ8n0fJVCctM7UPZgZmH-mBuxRW4t9-kkaMd3LJVv• The Prompt Report: Insights from the Most Comprehensive Study of Prompting Ever Done: https://learnprompting.org/blog/the_prompt_report?srsltid=AfmBOoo7CRNNCtavzhyLbCMxc0LDmkSUakJ4P8XBaITbE6GXL1i2SvA0• State-of-the-Art Prompting for AI Agents | Y Combinator: https://www.youtube.com/watch?v=DL82mGde6wo• Use XML tags to structure your prompts: https://docs.anthropic.com/en/docs/build-with-claude/prompt-engineering/use-xml-tags• Role Prompting: https://learnprompting.org/docs/basics/roles?srsltid=AfmBOor2jcxJQvWBZyFa030Qt0fIIov3hSiWvI9VFyjO-Qp478EPJIU7• Is Role Prompting Effective?: https://learnprompting.org/blog/role_prompting?srsltid=AfmBOooiiyLD-0CsCYZ4m3SDhYOmtTyaTzeDo0FvK_i1x1gLM8MJS-Sn• Introduction to Decomposition Prompting Techniques: https://learnprompting.org/docs/advanced/decomposition/introduction?srsltid=AfmBOoojJmTQgBlmSlGYQ8kl-JPpVUlLKkL4YcFGS5u54JyeumUwlcBI• LLM Self-Evaluation: https://learnprompting.org/docs/reliability/lm_self_eval• Philip Resnik on X: https://x.com/psresnik• Anthropic's CPO on what comes next | Mike Krieger (co-founder of Instagram): https://www.lennysnewsletter.com/p/anthropics-cpo-heres-what-comes-next• Introduction to Ensembling Prompting: https://learnprompting.org/docs/advanced/ensembling/introduction?srsltid=AfmBOooGSyqsrjnEbXSYoKpG0ZlpT278NHQA6Fd8gMvNTJlWu7-qEYzh• Random forest: https://en.wikipedia.org/wiki/Random_forest• Chain-of-Thought Prompting: https://learnprompting.org/docs/intermediate/chain_of_thought?srsltid=AfmBOoqwE7SXlluy2sx_QY_VOKduyBplWtIWKEJaD6FkJW3TqeKPSJfx• Prompt Injecting: https://learnprompting.org/docs/prompt_hacking/injection?srsltid=AfmBOoqGgqbfXStrD6vlw5jy8HhEaESgGo2e57jyWL8lkZKktt_P6Zvn• Announcing HackAPrompt 2.0: The World's Largest AI Red-Teaming Hackathon: https://learnprompting.org/blog/announce-hackaprompt-2?srsltid=AfmBOopXKsHxy4aUtsvPCUtEu7x74NCAEnlTIdNzo7nfMDVwZ9ilTlkp• Infant with rare, incurable disease is first to successfully receive personalized gene therapy treatment: https://www.nih.gov/news-events/news-releases/infant-rare-incurable-disease-first-successfully-receive-personalized-gene-therapy-treatment• Building a magical AI code editor used by over 1 million developers in four months: The untold story of Windsurf | Varun Mohan (co-founder and CEO): https://www.lennysnewsletter.com/p/the-untold-story-of-windsurf-varun-mohan• Copilot: https://copilot.microsoft.com/chats/rcxhzvKgZvz8ajUrKdBtX• GitHub Copilot: https://github.com/features/copilot• Defensive Measures: https://learnprompting.org/docs/prompt_hacking/defensive_measures/introduction• Sam Altman on X: https://x.com/sama• Three Laws of Robotics: https://en.wikipedia.org/wiki/Three_Laws_of_Robotics• Anthropic's new AI model turns to blackmail when engineers try to take it offline: https://techcrunch.com/2025/05/22/anthropics-new-ai-model-turns-to-blackmail-when-engineers-try-to-take-it-offline/• Palisade Research: https://palisaderesearch.org/• When AI Thinks It Will Lose, It Sometimes Cheats, Study Finds: https://time.com/7259395/ai-chess-cheating-palisade-research/• A.I. Chatbots Defeated Doctors at Diagnosing Illness: https://www.nytimes.com/2024/11/17/health/chatgpt-ai-doctors-diagnosis.html• 1883 on Paramount+: https://www.paramountplus.com/shows/1883/• Black Mirror on Netflix: https://www.netflix.com/title/70264888• Daylight Computer: https://daylightcomputer.com/• Theodore Roosevelt's quote: https://www.goodreads.com/quotes/622252-i-wish-to-preach-not-the-doctrine-of-ignoble-ease• HackAPrompt 2.0: https://www.hackaprompt.com/—Recommended books:• Ender's Game: https://www.amazon.com/Enders-Ender-Quintet-Orson-Scott/dp/0812550706• The River of Doubt: Theodore Roosevelt's Darkest Journey: https://www.amazon.com/River-Doubt-Theodore-Roosevelts-Darkest/dp/0767913736—Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.—Lenny may be an investor in the companies discussed. This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit www.lennysnewsletter.com/subscribe

Lenny's Podcast: Product | Growth | Career
How to build a team that can “take a punch”: A playbook for building resilient, high-performing teams | Hilary Gridley (Head of Core Product, Whoop)

Lenny's Podcast: Product | Growth | Career

Play Episode Listen Later Jun 15, 2025 114:39


Hilary Gridley is the Head of Core Product at WHOOP and a passionate thought leader in leveraging AI to elevate product teams and management practices. With extensive experience tackling challenging problems in regulated industries and high-stakes environments, Hilary emphasizes the importance of building resilience and adaptability within teams. Previously, she was a senior director of product at Big Health and a senior product marketing manager at Dropbox.In this episode, you'll learn:• How to teach your team to be able to “take a punch”• Specific tactics to counter negative perceptions and reframe setbacks productively• Powerful behavioral strategies to form positive habits• Practical approaches for creating space in your workday to encourage creativity and deep thinking• The underestimated potential of AI in accelerating your personal and professional growth• Why you're not the protagonist at your company (and why that's liberating)• How WHOOP uses reward loops to drive real behavior change—Brought to you by:WorkOS—Modern identity platform for B2B SaaS, free up to 1 million MAUsPersona—A global leader in digital identity verificationAttio—The powerful, flexible CRM for fast-growing startups—Where to find Hilary Gridley:• X: https://x.com/yourgirlhils• LinkedIn: https://www.linkedin.com/in/hilarygridley/• Newsletter: https://hils.substack.com/• Maven course: https://maven.com/hilary-gridley/ai-powered-people-management—Where to find Lenny:• Newsletter: https://www.lennysnewsletter.com• X: https://twitter.com/lennysan• LinkedIn: https://www.linkedin.com/in/lennyrachitsky/—In this episode, we cover:(00:00) Hilary's background(04:31) Teaching teams to handle criticism and setbacks(17:57) Behavioral activation and mental health in the workplace(22:59) The importance of putting yourself out there(27:51) Transparency and communication in leadership(38:10) How to respectfully disagree with your manager(41:49) How to use “magic questions” to decode how people think(49:54) Why you're not the protagonist at your company(52:48) Aligning with the CEO's vision(01:01:02) Building effective habits(01:11:14) Promoting team well-being(01:14:28) Creating space for creativity(01:20:45) AI's role in accelerating learning(01:30:35) Pivotal career moments(01:37:21) Lessons from failure(01:39:49) Exciting new features of WHOOP 5.0(01:44:19) Lightning round and final thoughts—Referenced:• How to become a supermanager with AI: https://www.lennysnewsletter.com/p/how-to-become-a-supermanager-with• How custom GPTs can make you a better manager | Hilary Gridley (Head of Core Product at Whoop): https://www.lennysnewsletter.com/p/how-custom-gpts-can-make-you-a-better-manager• WHOOP: https://www.whoop.com/• Big Health: https://www.bighealth.com/• What is behavioral activation?: https://www.medicalnewstoday.com/articles/behavioral-activation• Will Ahmed on LinkedIn: https://www.linkedin.com/in/willahmed/• Joe Gebbia on LinkedIn: https://www.linkedin.com/in/jgebbia/• Zach Abrams on LinkedIn: https://www.linkedin.com/in/zacharyabrams/• Coinbase: https://www.coinbase.com/• Bridge: https://www.bridge.xyz/• Stripe: https://stripe.com/• The paths to power: How to grow your influence and advance your career | Jeffrey Pfeffer (author of 7 Rules of Power, professor at Stanford GSB): https://www.lennysnewsletter.com/p/the-paths-to-power-jeffrey-pfeffer• Paths to Power course: https://jeffreypfeffer.com/wp-content/uploads/2019/10/Pfeffer-OB377-Course-Outline-2018.pdf• VO₂ max: https://en.wikipedia.org/wiki/VO2_max• Peter Attia on X: https://x.com/PeterAttiaMD• Hilary Gridley's 30 days of GPT: https://docs.google.com/spreadsheets/d/1zJ4rbi9YcQuGqGxc6-AQD0-44oT9l4Eyono0AdpgJbA/edit?gid=0#gid=0• The Handle Bar in Boston: https://www.thehandlebarstudios.com/ourstudios/charlestown• From chalkboards to chatbots: Transforming learning in Nigeria, one prompt at a time: https://blogs.worldbank.org/en/education/From-chalkboards-to-chatbots-Transforming-learning-in-Nigeria• Product Management Logic Coach GPT: https://chatgpt.com/g/g-673290301700819084afa36bdbcdfa3b-product-management-logic-coach• Dropbox: https://www.dropbox.com/• WHOOP Advanced Labs: https://www.whoop.com/us/en/waitlist/?srsltid=AfmBOor2pP5qC3n7I23Z0ZIrYE99CjAKT9xSHQxbuyxmz_wFUBGH3e-n• Negative capability: https://en.wikipedia.org/wiki/Negative_capability• John Keats: https://en.wikipedia.org/wiki/John_Keats• The Rehearsal: https://www.hbo.com/the-rehearsal• Zwift: https://www.zwift.com/• Beavis and Butthead Do ‘Creep': https://www.youtube.com/watch?v=zv_gSmH0Ieg• “Sea Grapes” by Derek Walcott: https://www.poetryfoundation.org/poems/57111/sea-grapes• Free month of WHOOP: https://join.whoop.com/us/en/hilary/—Recommended books:• 7 Rules of Power: https://jeffreypfeffer.com/books/7-rules-of-power/• Outlive: The Science and Art of Longevity: https://www.amazon.com/Outlive-Longevity-Peter-Attia-MD/dp/0593236599• East of Eden: https://www.amazon.com/East-Eden-John-Steinbeck-Centennial/dp/0142004235• The Sun Also Rises: https://www.amazon.com/Sun-Also-Rises-Hemingway-Library/dp/1501121960/• Anna Karenina: https://www.amazon.com/Anna-Karenina-Leo-Tolstoy/dp/0143035002—Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.—Lenny may be an investor in the companies discussed. This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit www.lennysnewsletter.com/subscribe