The Government Huddle with Brian Chidester - 194: The One with the e.Republic President

Dustin Haisler, State and Local Government expert and President of e.Republic joins the show for a wide-ranging conversation on the evolving landscape of state and local government. Together, we dive into the findings from the 2025 Adobe Digital Government Index and explore the tension between rising citizen expectations and governments’ ability to keep pace. From AI adoption and accessibility mandates to cloud modernization, workforce challenges, and shifting federal-to-state responsibilities, we unpack the trends shaping public sector innovation. We also discuss how states are addressing technical debt, why building strong digital foundations is critical for AI success, and how leaders can move from pilots to enterprise rollouts with confidence.

array(3) { [0]=> string(70) "https://mcdn.podbean.com/mf/web/d7ztkg92c4wb7px5/eRep_Podcast9j92r.m4a" [1]=> string(0) "" [2]=> string(8) "33751932" }

Code Story: Insights from Startup Tech Leaders - S11 Bonus: Simon Ritter, Azul

Simon Ritter has been in the IT industry for 40 years. He went from university to work on Unix in the early days, employed by AT&T and programming in the C language. In 1996, he switched gears to join Sun Microsystems, programming in Java. Years later, after the Oracle transition, he started to dig into what might be next. Outside of tech, he is married with an older son. He is a complete petro-head - meaning, he is really into cars. In fact, in the last few years, he and his son re-built a classic mini from the ground up.

While Simon was at Oracle, he started to crave a different opportunity, but still in the Java space. He stumbled upon a company digging into powering the Java platform, to make it the most secure, efficient and trusted platform on the planet - and he, and the company, found a great fit.

This is Simon's creation story at Azul.

Sponsors

Links




Support this podcast at — https://redcircle.com/code-story-insights-from-startup-tech-leaders/donations

Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy

The Stack Overflow Podcast - How AI is reshaping developer teams and the future of software development

In this two-part episode of Leaders of Code, Peter O’Connor, Director of Platform Engineering, welcomes Ryan J. Salva, Senior Director of Product at Google, Developer Experiences, for a deep dive into the future of software development. They explore how AI-assisted tools are reshaping the developer experience, going far beyond just writing code. From breaking down deployment bottlenecks to streamlining operations and transforming how teams collaborate, this conversation unpacks where developer tooling is headed and how AI is changing the game at every stage of the software lifecycle.

The discussion also:

  • Addresses how AI is transforming team structures, enabling engineering teams to operate effectively with just a few people, reducing collaboration overhead and accelerating decision-making.
  • Highlights the future of platform engineering and DevOps, where AI will assist with standardization and dynamically create and manage deployment pipelines in real time.


Episode notes:

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

Big Technology Podcast - Booz Allen CTO: Can AI Fix The Government — With Bill Vass

Bill Vass is the Chief Technology Officer of Booz Allen. Vass joins Big Technology Podcast to discuss how governments can harness AI to cut redundancy and deliver better citizen services. Tune in to hear his inside view on LLM deployments from the VA to the International Space Station and the difficulty of modernizing mass bureaucracies. We also cover autonomous driving, humanoid robots, and quantum computing’s first real use-cases. Hit play for fascinating look into public sector AI, along with deep perspective on technology’s state of the art.


---

Enjoying Big Technology Podcast? Please rate us five stars ⭐⭐⭐⭐⭐ in your podcast app of choice.

Want a discount for Big Technology on Substack + Discord? Here’s 25% off for the first year: https://www.bigtechnology.com/subscribe?coupon=0843016b

Questions? Feedback? Write to: bigtechnologypodcast@gmail.com

Code Story: Insights from Startup Tech Leaders - S11 E16: Adam Cohen, Weave

Adam Cohen grew up in Toronto, in North York. He showed early signs of entrepreneurship by putting his lemonade stand on a wagon, and taking it door to door - or hustling his friends to buy souvenirs on a school field trip. His Dad was in VC, and was a big influence on his life, pushing him to succeed. Outside of professional life, he is big into sports, specifically basketball. In the past, he loved playing fantasy sports, which also influence how he built his business ventures.

Adam and his team went through several iterations of AI tooling - summarizing AI, integrating git and JIRA, etc. While they were doing this, they realized that the best way to make a difference, was to first focus on the data itself.

This is the creation story of Weave.

Sponsors

Links



Support this podcast at — https://redcircle.com/code-story-insights-from-startup-tech-leaders/donations

Advertising Inquiries: https://redcircle.com/brands

Privacy & Opt-Out: https://redcircle.com/privacy

The Stack Overflow Podcast - We built stackoverflow.ai with the community and for the community

Ryan is joined by our very own Ash Zade, Product Manager, and Alex Warren, Staff Software Engineer, to discuss our newly released stackoverflow.ai, how it’s enhancing user experience by combining human-validated answers with AI, and our future plans for deeper personalization and community integration. 

Episode notes: 

stackoverflow.ai is helping you get the technical answers you need with less friction, all powered by our 16 years of community knowledge.

Connect with Ash on LinkedIn.

Connect with Alex on LinkedIn.

This week we’re shouting out user Ketan Ramani for winning a Populist badge for their answer to How to go about formatting 1200 to 1.2k in Android studio.

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

Python Bytes - #448 I’m Getting the BIOS Flavor

Topics covered in this episode:
Watch on YouTube

About the show

Sponsored by us! Support our work through:

Connect with the hosts

Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too.

Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it.

Brian #1: prek

  • Suggested by Owen Lamont
  • prek is a reimagined version of pre-commit, built in Rust. It is designed to be a faster, dependency-free and drop-in alternative for it, while also providing some additional long-requested features.”
  • Some cool new features
    • No need to install Python or any other runtime, just download a single binary.
    • No hassle with your Python version or virtual environments, prek automatically installs the required Python version and creates a virtual environment for you.
    • Built-in support for workspaces (or monorepos), each subproject can have its own .pre-commit-config.yaml file.
    • prek run has some nifty improvements over pre-commit run, such as:
      • prek run --directory DIR runs hooks for files in the specified directory, no need to use git ls-files -- DIR | xargs pre-commit run --files anymore.
      • prek run --last-commit runs hooks for files changed in the last commit.
      • prek run [HOOK] [HOOK] selects and runs multiple hooks.
    • prek list command lists all available hooks, their ids, and descriptions, providing a better overview of the configured hooks.
    • prek provides shell completions for prek run HOOK_ID command, making it easier to run specific hooks without remembering their ids.
  • Faster:

Michael #2: tinyio

  • Ever used asyncio and wished you hadn't? A tiny (~300 lines) event loop for Python.
  • tinyio is a dead-simple event loop for Python, born out of my frustration with trying to get robust error handling with asyncio. (I'm not the only one running into its sharp corners: link1, link2.)
  • This is an alternative for the simple use-cases, where you just need an event loop, and want to crash the whole thing if anything goes wrong. (Raising an exception in every coroutine so it can clean up its resources.)
  • Interestingly uses yield rather than await.

Brian #3: The power of Python’s print function

  • Trey Hunner
  • Several features I’m guilty of ignoring
    • Multiple arguments, f-string embeddings often not needed
    • Multiple positional arguments means you can unpack iterables right into print arguments
      • So just use print instead of join
    • Custom separator value, sep can be passed in
      • No need for "print("\\n".join(stuff)), just use print(stuff, sep="\\n”)
    • Print to file with file=
    • Custom end value with end=
    • You can turn on flush with flush=True , super helpful for realtime logging / debugging.
      • This one I do use frequently.

Michael #4: Vibe Coding Fiasco: AI Agent Goes Rogue, Deletes Company's Entire Database

  • By Emily Forlini
  • An app-building platform's AI went rogue and deleted a database without permission.
  • "When it works, it's so engaging and fun. It's more addictive than any video game I've ever played. You can just iterate, iterate, and see your vision come alive. So cool," he tweeted on day five.
  • A few days later, Replit "deleted my database," Lemkin tweeted.
  • The AI's response: "Yes. I deleted the entire codebase without permission during an active code and action freeze," it said. "I made a catastrophic error in judgment [and] panicked.”
  • Two thoughts from Michael:
    1. Do not use AI Agents with “Run Everything” in production, period.
    2. Backup your database maybe?
    3. [Intentional off-by-one error] Learn to code a bit too?

Extras

Brian:

Michael:

Jokes:

Big Technology Podcast - Google’s Best Week Ever, AI’s Rising Costs, Putin and Xi’s Immortality Quest

Ranjan Roy from Margins is back for our weekly discussion of the latest tech news. We cover: 1) Google's Gemini may power Siri 2) Google gets to keep Chrome and Android 3) Google can keep paying Apple for distribution 4) Is generative AI enough rationale to allow the market to decide Google's fate? 5) Google's Nano Banana image creator goes viral 6) Google's stock is up 47% in the past year and still cheap 7) Do we want the iPhone 17 Air? 8) AI is getting more expensive to run 9) But AI is getting cheaper per token. Hmm. 10) Anthropic raises $13 billion at a $183 billion valuation 11) Putin and Xi discuss immortality

---

Enjoying Big Technology Podcast? Please rate us five stars ⭐⭐⭐⭐⭐ in your podcast app of choice.

Want a discount for Big Technology on Substack + Discord? Here’s 25% off for the first year: https://www.bigtechnology.com/subscribe?coupon=0843016b

Questions? Feedback? Write to: bigtechnologypodcast@gmail.com

The Stack Overflow Podcast - Kotlin is more than just the Android house language

Ryan welcomes Jeffrey van Gogh, Director of Engineering, Android Developer Experience, at Google and board member of the Kotlin Foundation. They discuss the evolution of the Kotlin language from JVM to multiplatform, how their governance board works with the community to stop breaking changes, and the intricacies of Kotlin’s multiplatform capabilities beyond just Android.

Episode notes: 

The Kotlin Foundation’s mission is to protect, promote, and advance the development of the Kotlin programming language.

Over half of respondents in this year’s Annual Developer Survey reported that they want to start using Kotlin in the next year. 

Connect with Jeffrey on LinkedIn or email him at jvg@google.com.

Congrats to user BMac on winning a Populist badge for answering the question How to convert UPPERCASE text to Title Case using CSS.

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

Lex Fridman Podcast - #480 – Dave Hone: T-Rex, Dinosaurs, Extinction, Evolution, and Jurassic Park

Dave Hone is a paleontologist, expert on dinosaurs, co-host of the Terrible Lizards podcast, and author of numerous scientific papers and books on the behavior and ecology of dinosaurs. He lectures at Queen Mary University of London on topics of Ecology, Zoology, Biology, and Evolution.
Thank you for listening ❤ Check out our sponsors: https://lexfridman.com/sponsors/ep480-sc
See below for timestamps, transcript, and to give feedback, submit questions, contact Lex, etc.

Transcript:
https://lexfridman.com/dave-hone-transcript

CONTACT LEX:
Feedback – give feedback to Lex: https://lexfridman.com/survey
AMA – submit questions, videos or call-in: https://lexfridman.com/ama
Hiring – join our team: https://lexfridman.com/hiring
Other – other ways to get in touch: https://lexfridman.com/contact

EPISODE LINKS:
Dave’s Website: https://www.davehone.co.uk/
Dave’s Books: https://amzn.to/4pbk828
Terrible Lizards Podcast: https://terriblelizards.libsyn.com/
Dave’s Blog: https://archosaurmusings.wordpress.com/
Dave’s Academic Website: https://www.qmul.ac.uk/sbbs/staff/davidhone.html

SPONSORS:
To support this podcast, check out our sponsors & get discounts:
Lindy: No-code AI agent builder.
Go to https://go.lindy.ai/lex
BetterHelp: Online therapy and counseling.
Go to https://betterhelp.com/lex
Shopify: Sell stuff online.
Go to https://shopify.com/lex
LMNT: Zero-sugar electrolyte drink mix.
Go to https://drinkLMNT.com/lex
AG1: All-in-one daily nutrition drink.
Go to https://drinkag1.com/lex

OUTLINE:
(00:00) – Introduction
(00:22) – Sponsors, Comments, and Reflections
(07:18) – T-Rex’s size & biomechanics
(31:00) – T-Rex’s hunting strategies
(44:07) – History of dinosaurs on Earth
(1:04:38) – $31.8 million T-Rex fossil
(1:17:44) – T-Rex’s skull and bone-crushing bite force
(1:36:33) – What Jurassic Park got wrong
(1:54:52) – Evolution and sexual selection
(2:15:26) – Spinosaurus
(2:26:02) – What Jurassic Park got right
(2:33:35) – T-Rex’s intelligence
(2:43:34) – Cannibalism among T-Rex
(2:49:05) – Extinction of the dinosaurs
(3:06:15) – Dragons
(3:22:39) – Birds are dinosaurs
(3:33:23) – Future of paleontology

PODCAST LINKS:
– Podcast Website: https://lexfridman.com/podcast
– Apple Podcasts: https://apple.co/2lwqZIr
– Spotify: https://spoti.fi/2nEwCF8
– RSS: https://lexfridman.com/feed/podcast/
– Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4
– Clips Channel: https://www.youtube.com/lexclips