Brought to you by Michael and Brian - take a Talk Python course or get Brian's pytest book

#431: Nerd Gas

Published Mon, May 5, 2025, recorded Mon, May 5, 2025
Watch this episode on YouTube
Play on YouTube
Watch the live stream replay

About the show

Sponsored by NordLayer: pythonbytes.fm/nordlayer

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.

Michael #1: pirel: Python release cycle in your terminal

  • pirel check shows release information about your active Python interpreter.
  • If the active version is end-of-life, the program exits with code 1. If no active Python interpreter is found, the program exits with code 2.
  • pirel list lists all Python releases in a table. Your active Python interpreter is highlighted.
  • A picture is worth many words

Brian #2: FastAPI Cloud

  • Sebastián Ramírez, creator of FastAPI, announced today the formation of a new Company, FastAPI Cloud.
  • Here’s the announcement blog post: FastAPI Cloud - By The Same Team Behind FastAPI
  • There’s a wait list to try it out.
  • Promises to turns deployment into fastapi login; fastapi deploy
  • Side note: announcement includes quote from Daft Punk: Build Harder, Better, Faster, Stronger
    • I just included this in a talk I’m gave last week (and will again next week), where I modify this to “Build Easier, Better, Faster, Stronger”
    • Sebastian and I are both fans of the rocket emoji.
  • BTW, we first covered FastAPI on episode 123 in 2019

Brian #3: Python's new t-strings

  • Dave Peck, one of the authors of PEP 750, which will go into Python 3.14
  • We covered t-strings in ep 428
  • In article
    • t-strings security benefits over f-strings
    • How to work with t-strings
    • A Pig Latin example
      • Also, I think I have always done this wrong
      • Is it the first consonant to the end? or the first consonant cluster?
      • So… Brian → Rianbay? or Ianbray?
      • BTW, this is an example of nerdgassing
    • What’s next once t-strings ship?
  • On thing that’s next (in Python 3.15, maybe, is using t-strings in shlex and subprocess)

Michael #4: zev

  • A simple CLI tool to help you remember terminal commands.
  • Examples:

    # Find running processes
    zev 'show all running python processes'
    # File operations
    zev 'find all .py files modified in the last 24 hours'
    # System information
    zev 'show disk usage for current directory'
    # Network commands
    zev 'check if google.com is reachable'
    # Git operations
    zev 'show uncommitted changes in git'
    
  • Again, picture worth many words:

Extras

Brian:

Michael:

Joke: Can my friend come in?

Episode Transcript

Collapse transcript

00:00 Hello and welcome to Python Bytes, where we deliver Python news and headlines directly to your earbuds.

00:05 This is episode 431, recorded May 5th, 2025.

00:10 And I am Brian Okken.

00:11 And I am Michael Kennedy.

00:12 And this episode is sponsored by NordLayer.

00:15 Listen to their spot later in the show.

00:17 And if you'd like to connect with us, you can, or suggest topics, please feel free to send us an email or head on over to either Mastodon or BlueSky and the links to both of us and the show are in the show notes.

00:32 And you can join this episode live or join it live usually Mondays at 10, but sometimes other times.

00:39 But head on over to pythonbytes.fm/live to sign up and see the schedule for the next one.

00:45 But also you can, that's on YouTube, so you can watch them later if you'd like.

00:50 And I'd also like to encourage people to sign up for the newsletter.

00:53 We send out a weekly email with all the links from the show.

00:57 plus background information.

00:58 It's a lot of fun.

00:59 So check that out.

01:00 Also, I think it'd be cool to have a cool first topic, Michael.

01:04 What you got?

01:06 This was a nice, easy one, easy to adopt, easy to appreciate, I think.

01:11 So you and I, we spend a lot of time talking about, here's the new things for this, and here's the new thing for Python, and here's the new features, the next version, and test the alpha, test the beta.

01:20 And we also talk about when they go out of support, but I don't know how you feel.

01:24 I often, that sneaks up on me.

01:27 I mean, the fact that 3.8 is out of support seems wrong.

01:30 But it is, you know what I mean?

01:32 Yeah.

01:32 And so you might be sitting at your terminal just going, what's that status again?

01:36 And so I present to you Pyrel, P-I-R-E-L.

01:41 And what it is, is it's the release cycle of Python at your fingertips.

01:45 Ooh, cool.

01:46 Yeah, so there's a little graphic here, I suppose.

01:49 I could open up the image full size, perhaps.

01:52 And you just type whatever, doesn't matter how you have Python active.

01:56 if it's the system one or if it's a virtual environment one, you can write Pyrelle check and it'll give you a nice summary of what's going on here.

02:06 You can say you're using Python 3.13, which is actively maintained, and it will be this good for this long.

02:13 You can say Pyrelle list and it'll give you a list of all of the last 10 or so versions when they came and when they went.

02:23 So it's pretty cool.

02:24 I mean, that's more or less what it does, but it tells you that you can get, you know, go get a new Python version if yours is getting older.

02:31 And the status as well, is it still getting feature updates?

02:34 Is it in bug fix level?

02:36 Is it security fixes or is it YOLO?

02:38 I just can't be bothered.

02:41 Anyway, that's what this is.

02:43 What do you think?

02:43 I think that's pretty fun.

02:45 Yeah.

02:45 Also, yeah.

02:46 Yeah.

02:47 And it uses the rocket emoji, which will make a reappearance, right?

02:51 Yeah.

02:52 I do like the rocket emoji.

02:54 Indeed.

02:54 So there's a little bit else you can do with it, though it does not particularly interest me as a tool, nonetheless.

03:03 You can also type Pyroguess, and it will do things like give you various trivia about the release history of Python.

03:12 So, for example, it might ask, when was Python 3.11 released?

03:15 Or who is the release manager for 3.6?

03:18 And it gives you a multi-choice select, and you can pick, and it'll tell you if you're right or wrong.

03:22 So if you like Python release history and seeing the details, you can do that.

03:27 But I think the payroll list and the payroll check is pretty cool.

03:31 Yeah, I like it.

03:32 Neat.

03:32 Yeah, that's it.

03:33 All right.

03:34 Well, I want to cover something that we've covered before, kind of.

03:39 Back to the future.

03:41 Back to, we're going to go back in time.

03:43 This is episode 123, which, when was that?

03:46 That was like in May 26, 2019.

03:50 We recorded it and it came out on the 29th.

03:53 Right.

03:53 And we had no idea.

03:55 Things were different back then, 2019.

03:57 2019, different world.

03:59 But one of the things that started in that was when we announced, well, we didn't announce it, but we covered it on the show way back in 2019.

04:09 The introduction of FastAPI.

04:12 So we talked about it.

04:13 This new cool web framework called FastAPI.

04:16 Well, FastAPI has been growing and it's now the number one web framework, not just across Python, but across everything.

04:24 So it's been an incredible thing to watch and some great work out there.

04:29 Well, today, Sebastian Ramirez, the dude that created FastAPI in the first place, he announced that he is forming FastAPI Labs, a new company, and that they are, the FastAPI Labs is a new company and they're building a fast api cloud so we're going to take a look what does this mean it kind of means that you just get to build your fast if you do this the promise is you build a fast api application and you can just deploy it with um fast api deploy just a single line and and then they'll they'll host it on their um like a subdomain of the fast api cloud.dev so um kind of interesting. I'm intrigued. So I've definitely joined the wait list. There is an announcement blog post of by the same team behind FastAPI. So this is, this is kind of an incredible, he's built FastAPI up and it's not just, not just Sebastian. Now there's other people working on it.

05:30 It's built on top of Pydantic and a couple of cool things that I can't remember. But, But the team is, the blog post talks about the problems of deploying to the cloud.

05:43 Now, there is documentation on the FastAPI.

05:47 We've often commented that the FastAPI documentation is excellent.

05:51 They've done a great job with documentation.

05:53 But it is not trivial to really deploy anything anymore, aside from maybe a static site.

06:01 But you have to get concerned with a lot of stuff, especially if you start growing with security.

06:07 And so they are looking at that security bit.

06:11 So it's so far, it looks like Patrick Armino, Alejandro Sanchez, Sophie Van Langen, sorry, and Sebastian.

06:25 And probably more.

06:27 I'm not sure if that's part of the team or if that's just anyway.

06:30 They might be, I don't know how many people are in the company right now, but he's promising to keep FastAPI open source.

06:37 And to also, interesting in this is that he doesn't want to have vendor lock-in.

06:44 So whatever processes they build up, it won't make it so that you're stuck with FastAPI with their hosting.

06:53 So essentially this is hosting for FastAPI.

06:55 So kind of neat.

06:56 Yeah, congratulations, Sebastian and crew.

06:59 That's awesome.

07:00 Yeah.

07:00 It is a hassle to deploy things.

07:02 And presumably these folks know the best way to host FastAPI.

07:07 FastAPI might be tuned for the infrastructure that they choose over time.

07:12 You know, I'll have to look more into this.

07:13 Like how do you host a database and things like that.

07:16 But presumably you can do things like use a CNAME for your app at fastapicloud.com and you'll get your own domain name and all that sort of stuff.

07:26 But very interesting.

07:28 Yeah, it is.

07:29 Also, like for, interestingly, that was the first thing I thought is like, well, I probably don't want to use their domain.

07:35 But for, you know, for an API endpoint for some internal tools and stuff, I might not care.

07:42 So I think some people.

07:43 That's a good point.

07:44 You would care a whole lot less, right?

07:46 If it's just an API and it's not like your landing page or whatever.

07:51 Yeah.

07:52 Yeah.

07:52 Anyway.

07:53 Cool.

07:53 Cool stuff.

07:54 Absolutely.

07:55 Well, what else is cool, Brian?

07:57 What?

07:57 NordLayer. Let me tell everyone about our sponsor and NordLayer here. So NordLayer is actually a pretty neat product. And this episode of Python Bytes is brought to you by NordLayer. So it's a toggle ready network security platform for modern businesses and combines VPNs like you would expect, of course, from the parent company, Nord. However, it's also access control, threat protection, visibility into what's happening in case you spot some sort of malware. All of those in one easy use platform. There's no hardware, no complex setup, just secure connections and full control in less than 10 minutes. So it's easy to start with quick deployment, step-by-step onboarding 24-7 support. It's easy to combine. It works with existing setups in all major platforms.

08:44 And NordLater is easy to scale. Just add users, features, servers in a few clicks. SSO and provisioning included. If you want zero trust network access, you got it. It provides those network zero trust solutions. It adds threat protection to keep malware, ransomware, and phishing from reaching your endpoints, including servers. How cool is that? Increases your threat intelligence to spot threats before they escalate and helps businesses achieve like HIPAA compliance and stuff. So if you're responsible for security of your software or data science team, you should definitely give NordLayer a look. As Python Bytes listeners, you get an exclusive offer of up to 22% off NordLayer yearly plans plus 10% off the top with a coupon. And that coupon is Python Bytes dash 10. If you visit the link in your show notes, there's a landing page and it gives you the code right there. So Python Bytes dash 10. Try NordLayer risk-free with their 14-day money-back guarantee.

09:44 Visit pythonbytes.fm/nordlayer to get started.

09:48 Link is in your podcast player show notes.

09:49 Thank you to Nordlayer for supporting the show.

09:51 All right.

09:52 Next, we, you know, going back in time, a little less in time.

09:58 This is just a couple episodes ago in episode 428.

10:02 We covered T-strings.

10:04 So T-strings are going to come in 3.14 in the Py release.

10:09 So there is one of the authors, Dave Beck, or Dave Peck, sorry, Dave.

10:14 wrote an article about the Python's new T-strings.

10:18 And I'm kind of excited about it because when we talked about it on the show, I'm excited about them, but I also, they're like template strings.

10:25 But how are they different than F-strings?

10:28 When would I use one over the other?

10:30 And I got all these answers in this blog post.

10:35 So he talks about what's the big idea of T-strings.

10:39 And interestingly enough, We've loved f-strings so much that they're used inappropriately.

10:46 And I didn't really realize that there's security problems.

10:49 So there's like comments on using f-strings to take user data, user input, and fill in like maybe a SQL statement.

11:00 Don't do that.

11:02 You want to clean your user input first.

11:06 So people have been using it and or possibly to use it to generate a web page.

11:12 So you've got a possibility of somebody inserting cross-site scripting or other bad things that you don't expect by just sticking user data into HTML.

11:24 So misusing F-strings is one of the reasons why T-strings are kind of a cool thing.

11:29 So the template strings are a generalization of F-strings, and they keep things separate.

11:35 So f strings actually create a string, but t strings don't create, when you create a t string, you don't get a t string, you get a, or a string, you get a template object.

11:46 And this template object has these two separate things.

11:49 You've got, it's got a, I'm going to scroll down, it's got a strings section and a values.

11:57 And so it keeps, they're both tuples of things, of what's inside of it.

12:04 And you can iterate through them.

12:05 There's all sorts of cool stuff you can do with templates, these template strings.

12:09 But this is a nice, really good walkthrough of kind of what's inside and why they're different than f-strings.

12:15 They're very different now.

12:16 And but talking about there's inside, there's a what's the value?

12:23 There's a interpolations are a thing that's in there.

12:26 So you might have it might be a string.

12:29 It might be other.

12:30 It might be something else.

12:32 And the interpolations have all the pieces in place.

12:35 And you can even dive really deep into it and have things like what's the value of the variable that you passed in, the expression name, the conversion, the format specifier, even if you've got format specifiers on it.

12:51 And this is all sorts of nitty gritty detail.

12:54 But the gist I'm taking away is they're just really kept separate.

12:58 So you've got like the template and the things you're passing into the template as completely separate things.

13:04 Why is that great?

13:05 Well, one of the great things about that is you can, like in the example of SQL or HTML, you can take the user data and check all of that and run things over it.

13:17 So if you've got user data and you expected a string, you expected people to not be nefarious about it.

13:24 You can do like a safe HTML or something, convert like the brackets into something else, strip out SQL statements so that they're not, it's not a, you know, escape things, escaping things and making them cleaner.

13:39 One fun example in this, I love this.

13:42 A fun example is how to create PigLatin using template strings.

13:48 And so there's like this PigLatin converter that takes a template and returns a string.

13:53 So you're able to have like a hello world and then you run PigLatin on the template and it converts the template into, we've got these converter functions.

14:04 You can convert into actual string.

14:07 And I kind of, okay, I went down a rabbit hole on this because this example says to convert, I kind of forgot the rules of PigLatin because it's been a while since I've been a kid.

14:18 But it says essentially if the first character is a vowel, if the words in the word, the first character is a vowel, then you append yay on the end.

14:30 But if it's not a vowel, you take the rest of the word and take the first character and put it at the end and say a.

14:38 And I don't think that's correct.

14:40 Or I think it might be correct, but I forgot the rules.

14:43 So I looked it up.

14:45 And Pig Latin, sorry about this, but Pig Latin, it says that it's not just the first constant, but it's the first constant cluster.

14:53 So I don't think this is the correct implementation.

14:57 Well, it might be one that fits on one screen.

15:00 Yeah.

15:01 So Brian would translate into Ian Bray, not Ryan Bay.

15:07 You know, anyway.

15:08 Okay.

15:09 The diversion.

15:10 But anyway.

15:11 So there's some great ideas for when we finally have T-strings and we ship Python 3.14, we can do things like possibly having everything more safer and more flexible.

15:25 One of the things that's coming up possibly is, oh, where'd it go?

15:30 787.

15:31 So there's a proposal for safer subprocess usage with like Schlex and Subpros, which I love Schlex.

15:39 But you could use a, if those could be implemented with T-strings, they'd be a lot safer.

15:45 So there are some security vulnerabilities in these things.

15:49 So it could simplify the implementation.

15:51 You don't want to ampersand, ampersand, do other thing as part of your command, right?

15:55 Yeah.

15:56 So this, and then, so having a lot of things that to take user input and create other things, Having them use T-strings might, and having like some quick, safe conversions, instead of having to convert user data ahead of time, you just grab the user data and stick it in a template string.

16:15 And then later in your pipeline, clean up the user data.

16:18 Those are pretty cool things.

16:20 So there's also some attribute things.

16:23 There's other ways you can, since they're separate, all the way until you do the conversion, you can do like some cool attribute things that he covers in the article too.

16:31 So anyway.

16:32 Yeah, looks like a great article.

16:33 Thanks, Dave.

16:34 Ryan.

16:35 I'm going to have Paul Everett on Talk Python, not this week, next week, to talk about T-strings.

16:42 Oh, perfect.

16:43 Yeah.

16:43 We're going to be diving into it some more.

16:44 Yeah, it should be fun.

16:45 Nice.

16:46 Indeed.

16:47 Let's go back to the terminal.

16:49 And this one, I think, is also pretty interesting, especially if you're learning the terminal or you're just like, how do I do that again?

16:57 Zev.

16:57 Have you heard of Zev?

16:58 No.

16:59 It's a simple CLI tool that helps you remember terminal commands.

17:03 So if you're sitting here and you're like, you know, I don't really know what I'm doing with this stuff.

17:09 I can type Zev and it says, what do you want to do?

17:11 It says, show all files in this directory with human readable sizes.

17:15 And it says, okay, great.

17:16 Here are a couple of things you could do.

17:18 And it gives you a select list like ls-lh or I think it was find is one of the options.

17:25 But basically it gives you a bunch of options to do those types of things.

17:28 And up it goes.

17:30 Pretty cool, right?

17:30 Yeah.

17:31 Yeah.

17:32 So this project runs on top of LLM APIs like OpenAI, Google Gemini, or local Olama.

17:41 So basically it sends that command over and then it looks at all the responses.

17:45 But it probably does a bunch of work to format it for you.

17:48 But more importantly, it puts it right there in your terminal where you can just select the answer and hit enter.

17:53 You don't have to go to chat, copy it, move it back over, run it.

17:57 You know, like that sort of round tripping.

17:59 Yeah.

18:00 Okay.

18:01 Yeah, so suggestions that you might use are like show all running Python processes, find all Python files modified in the last 24 hours, show disk usage for the current directory, check if google.com is reachable, etc, etc.

18:15 So yeah, pretty neat.

18:17 It does say everything's generated by LLMs, so careful.

18:23 Because you know how it goes, right?

18:25 It could be delete all files like this in this directory, and in this directory part gets forgotten.

18:32 rm-rf star, okay.

18:36 Slash star, slash star.

18:39 Anyway, super simple, but you set up an LLM provider.

18:41 I recently wrote a really cool program that I'm, program, utility, simple tool, that I use that I'm thinking of making public somehow, but I also don't need another thing to babysit.

18:52 But basically, if you're in a Git repository, you can just hit a command and it will look at all the new files, the change files, and then correlate that with a local LLM, coding-based LLM.

19:04 It says, create me a Git summary of everything, like the header, and then actually a detailed summary, and what happened if you forgot all the things you did.

19:13 A little bit like this, but that's not out yet.

19:15 But this is cool.

19:15 I like to see this.

19:16 Like, what did I do on Friday to run on Monday?

19:19 Yeah, exactly.

19:20 You could totally do it.

19:21 And it improves it in this way.

19:23 You're like, oh, gosh, I did improve it in that way.

19:25 Look at this show.

19:25 Aren't I smart?

19:29 And before we carry on looping back to your topic, the T-strings, Henry Schreiner writes, I've been wondering if this could be supported in the logging module.

19:39 Since it's an actual type, it could be detected.

19:41 Yeah.

19:42 That would be cool, right?

19:43 maybe have a slightly different output with more information about the parts of the string.

19:48 Yeah.

19:49 Indeed.

19:49 All right.

19:50 Well, we're back to extras.

19:53 I really should have put up.

19:55 So one of the things I didn't cover about the T-strings, we'll get to my extra first or second, but in the T-string article, there is a link to a whole bunch of examples of other non-silly examples of T-strings.

20:12 So he does Pig Latin in the article, but there's a bunch of others too.

20:16 And one of them is a treatment of logging with T-strings.

20:20 So check that out.

20:22 My extra really is I kind of went – speaking of rabbit holes, found out Monty Python and the Holy Grail turns 50 this year.

20:32 So 50 years ago, Monty Python.

20:34 I can't believe that.

20:35 Bring out the holy hand grenade.

20:39 But one of the comments in here, which is, this is, I'm linking to an Ars Technica article.

20:46 And I learned a new word today because there were, it says they were, Monty Python and the Holy Grail were nerd gassing before it was cool.

20:54 So they were talking about nerd gassing.

20:57 And one of the wonderful discussions in the movie is using coconuts.

21:05 Because they're supposedly riding horses.

21:07 They don't have, yeah.

21:09 Yeah, there's just some guy banging coconuts.

21:11 And somebody stops and says, like, where did you get the coconuts?

21:14 Oh, we found them.

21:16 No, you couldn't have found them because, like, they're not native to England.

21:19 They're tropical.

21:21 So great discussion about coconuts.

21:23 And apparently that is nerd gassing.

21:25 I didn't know the term.

21:27 So I looked that up.

21:28 Nerd gassing was coined in 2008 by John Scalzi, a sci-fi author and blogger.

21:38 And nerd gassing is the venting nerd, venting, the venting that nerds emit when some often minor detail of a book or movie or TV show, comic book, et cetera, either conflicts with canon or hand waves through some suspect science.

21:56 And so I was totally nerd gassing in the, in one of our topics when I went off on what the correct rules for pig Latin

22:03 are.

22:04 So, yes, that's, you were.

22:07 And I do the same thing when people mess up that quote from Captain Picard about may the force be with you.

22:14 Okay, so let's go on to the next.

22:17 Nice.

22:18 Okay.

22:18 Please write us and tell me that that's wrong.

22:20 All right.

22:21 This is it for your extras?

22:22 Yeah.

22:23 I would like to also point out for those as a follow-up who don't know, because Python, the community has done a poor job of this.

22:30 All the logos for Python are snakes, but the name Python came from Monty Python, which is why it's relevant on this show.

22:37 yes yes and that's why we have wheels because they're wheels of cheese because

22:42 they used to the cheese shop for pipey and yeah the cheese skit i mean if you haven't seen the cheese skit from monty python you have to go watch the cheese skit because it's

22:51 awesome the rabbit part is my favorite by far okay here's a quote this is not the joke this is actually a real thing so it has a picture of firefox and it says you either die a hero or you live long enough to see yourself become a villain. And underneath it, it shows the preferences in Firefox for website advertising.

23:10 Allow websites to perform privacy preserving ad measurement. This helps the site understand how their ads perform, et cetera, et cetera. Like this is built into Firefox now. And there was like some terms and use changes about how the stuff you submit in Firefox is now being used and being shared and so on and oh right firefox was like one of the last bastions of privacy like real privacy the antithesis of chrome which is you know tracking and correlating and reselling everything

23:44 so both you brian and me we care about these things and for example brian use vivaldi i use vivaldi quite a bit but i also started using zen zen browser that's what's actually on the screen right now. And I love Zen Browser because of it's such a clean, nice little layout. And it's based on Firefox as well. So when this stuff got announced 10 months ago or whenever it was, there was over on the Zen Browser GitHub repo, there was like, so what is Zen going to do about this? And at the time there wasn't a lot of clarity, but now Zen 1.2.1 is out and it's got some features. One of the things it says, if you go read the full release notes, it's got some new But in response to recent privacy concerns, bracket about Firefox, we've significantly strengthened Zen's privacy measures.

24:37 Previously, we only disabled telemetry, but other things were being done.

24:41 Now Firefox telemetry has been completely stripped out of this.

24:45 Basically, they've, much like Vivaldi de-Google-ifies Chrome, Zen has had to go to the step of actually de-Mozilla-fying.

24:56 I don't know, whatever, what is the term here?

24:58 Extracting evil.

25:00 Extracting the in poopification of, yeah.

25:06 And I don't necessarily blame Firefox.

25:09 They are in a tough spot.

25:10 They've squandered their position quite badly for quite a long time, such that if the ruling against Google goes through, they lose 90% of their revenue overnight.

25:21 That's a problem.

25:21 But they're also doing good things like starting to create like docs alternatives that we've covered before.

25:27 But, you know, I guess things must be, people must be resold and ads must be put upon people.

25:33 And that's the way it seems to be.

25:35 I don't know.

25:35 I don't agree with it, but that's how it is.

25:37 Anyway, I'm happy to see Zen Browser do this.

25:39 Yeah.

25:39 There's also a ton of cool, well, there are a handful, at least, of cool pytest plugins that I use that started in Mozilla.

25:50 So, yeah.

25:51 There's lots of great people that have worked there over the years.

25:54 And I'm sure still do.

25:55 A lot of people do.

25:56 And I'm...

25:57 suspect not all of them are super psyched about turning on all the ad stuff, right?

26:01 Just like I'm sure there's people that still work at Google that don't think they should have removed don't be evil from their tagline.

26:08 Yeah, but those people are evil.

26:09 Okay, let's keep going.

26:11 Just kidding.

26:12 Just kidding.

26:13 Please don't email me.

26:13 Yeah, email him.

26:15 It's Michael at...

26:20 Testandcode.com.

26:21 Okay.

26:23 Next, or you go to jail.

26:24 That was such a fun episode that we did last week.

26:28 Yeah.

26:28 But I pulled up this episode, not because I care about that, but I've changed the way that transcripts work.

26:35 So previously we had transcripts are every word spoken for 30 minutes or however long the show is.

26:42 And I thought, well, that should go on its own page.

26:44 You can go and check it out.

26:45 But I'd like you to be able to come to the page and hit Command-F and let you know what we said about, I don't know, AI or...

26:53 We'll just pick the sponsor because it doesn't show up too many times.

26:56 But now the transcripts show up on the main page just as a section farther down.

27:02 You can collapse them if you like.

27:04 But it lets you click on the time link anywhere and play it back as you go.

27:08 So if you find something in the transcript and you're like, I just want to hear it, you just click right there and boom, off it goes.

27:14 Put tons of effort into making these transcripts accurate and good.

27:18 They're not perfect.

27:19 Please, again, don't email me.

27:20 There is an imperfection.

27:22 I have discovered you were wrong.

27:24 But we make a lot of effort to say things like PyPI are spelled correctly.

27:29 And other words are correct in here so that when you search for them, they show up.

27:33 It also powers our search engine that you can just search and even add to your browser that we've talked about before.

27:39 But transcripts are slightly better.

27:41 And the pages are slightly more useful.

27:42 So visit the website.

27:43 Yeah.

27:44 And that helps us track every part of your life because we know we don't do that.

27:50 just we need just one cookie to get it started no just kidding we have no cookies okay that's it for my extras joke yeah this is a this is a re-envisioning a re-envisioning of an old joke i think it's pretty good there's this person running a china shop and there's a big sign that says china shop and then above it my code base and there's a character here holding a giant angry looking bull by a nose ring. And the person holding it says, mind my friend comes in with me and the bull is labeled cursor. Welcome to the error of AI, huh? Just add that one feature.

28:29 Sure. We only need 27 changes. You don't mind if we do, do we?

28:34 Interesting. That's funny.

28:35 So why is this a flashback? This joke actually comes from, this is the original one from when George W. Bush was president in the US and the China shop was not code-based. The China shop was social security.

28:48 Okay.

28:48 Yeah.

28:49 Something like that.

28:50 That's, I don't know, somewhere down here in this thread people talk about stuff.

28:53 I don't know.

28:53 Anyway, I think it's a pretty appropriate joke.

28:55 It's pretty good.

28:56 Yeah.

28:56 Yeah.

28:57 It's funny.

28:58 Good, good, good point.

28:59 Yeah.

28:59 Indeed.

29:00 Indeed.

29:01 All right.

29:01 Well, that's what I had for our joke.

29:03 Not absolutely hilarious, but amusing, I think.

29:06 If you want hilarious, you got to go back to 430, episode 430 last week.

29:09 Yeah.

29:10 Yeah.

29:10 Yeah.

29:11 And if you haven't listened to that, you have to watch that video because it's excellent.

29:13 That's right.

29:14 That's right.

29:15 or you go to jail.

29:17 Or you go to jail.

29:18 Listen to it or you go to jail.

29:22 Well, once again, wonderful episode.

29:24 Thanks everybody for listening and we'll see everybody next week.


Want to go deeper? Check our projects