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


Transcript #430: Or you go to jail

Return to episode page view on github
Recorded on Monday, Apr 28, 2025.

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

00:06 This is episode 430, recorded April 28th, 2025.

00:11 I am Michael Kennedy.

00:12 And I am Brian Okken.

00:13 And this episode is brought to you by Porkbun.

00:17 Use our link and you'll get a.app or.dev domain for $5.99 at Porkbun.

00:23 Very awesome domain name host.

00:26 So check them out.

00:27 We'll tell you more about them later.

00:28 you can check out, connect with us on the social things over on Mastodon or on Blue Sky.

00:36 Those are great places.

00:37 And finally, you can be part of the YouTube video, usually 10 a.m. on Monday, U.S. Pacific time.

00:43 Just visit pythonbytes.fm/live.

00:45 And we have a really cool newsletter we're sending out these days that actually brings a bunch of extra information to add additional research and details and information for you.

00:55 In addition to what we have in the show notes, in addition to what we talk about, about on the air. So if you like that, you want that, you can get it for free. Just drop in over at PythonBuySty.fm, click newsletter. It only costs your email, which we will treat nicely.

01:08 All right, Brian, what you got for us? Speaking of on the socials, I found this on the Blue Sky.

01:14 Hugo van Kemenade, sorry, Hugo, Hugo announced that there's, well, he didn't announce it, but he posted pip 25.1 has been released and maintainer Richard C. has a great write-up about it.

01:29 So this is a really fun write-up.

01:31 So I'm going to take a look at this.

01:32 So what's new in pip 25.1?

01:35 So, you know, we've talked a lot about uv a lot, but we haven't mentioned pip for a while, but pip's still a great workhorse.

01:43 So let's take a look at some of the great awesomeness in the new pip.

01:47 So we've got dependency groups, PEP 735, and these are pretty cool.

01:53 I can't wait to use this more.

01:55 So you've got like, you can set up dependency groups of like say test and lint and dev and stuff, not just the project dependencies, but the dependencies of the things around working with a project.

02:08 So that's a good thing to group it with.

02:10 You can also use groups for extra things like different installs and stuff.

02:15 But to use it with pip, you say pip install and you can give it a group, so --group, and then give it a test or give it whatever the group name is, in this case test.

02:28 So like in the example, they gave it a great example.

02:31 So like for instance, the tests group might have pytest and maybe some pytest plugins and linting would have different things.

02:39 But then with dev, you can say include group test and include group lint.

02:44 So you can combine groups into bigger groups.

02:48 which is super cool.

02:49 So you don't have to maintain two lists.

02:51 So yeah, dev would include both tests.

02:53 Anyway, there's no limit to this.

02:57 Anyway, dependency grips are here now, now that you can use them with pip.

03:00 That's great.

03:02 Moving down, progress bars.

03:03 I'm not super excited about this, but kind of neat.

03:07 Package install progress bars are now there.

03:11 Resumable downloads.

03:12 This is kind of nice because if you've got so resumable download support, especially if you've got, for example, I'm not sure how this works, but it supports automatic download retrying.

03:23 It's an experimental feature in this one.

03:26 There's a retry limit that you can specify.

03:29 So if there's something, some failure with the download, it'll try to retry it.

03:34 That's pretty cool.

03:35 Yeah, Brian, it might sound like, so what, right?

03:38 You've got to redownload requests.

03:40 It'll come right down.

03:41 You've got to redownload NumPy.

03:43 It's four megs, whatever.

03:44 Some of those ML libraries are massive.

03:47 Yeah.

03:47 Like half a gig that you pip install and other things, right?

03:51 So there are situations where it's a non-trivial amount of data.

03:55 Yeah.

03:55 Yeah.

03:56 And there's times, especially if you're on Wi-Fi, sometimes it can break out or whatever.

04:02 The real thing that I'm excited about to cover with this one is experimental lock files.

04:08 So I do like dependency groups a lot, but also I'm kind of excited about pylock.toml.

04:14 And so peps751, this is supported with pip now.

04:19 So you can just say pip lock and it will generate a lock file for you, a pylock.toml.

04:26 Really cool.

04:28 And yeah, let's see.

04:30 Oh, this is the next item is super cool also.

04:34 So there used to be a way you could say pip install my package or whatever package name and then give it two equal signs.

04:40 and it would sort of a hack to give you a list of all the versions available for that package.

04:46 But now there was an experimental thing called pip index versions, and that would give you a list of versions.

04:54 And it was in experimental mode, but now it is in stable mode.

04:58 So definitely go ahead and use this pip index versions to get a list of all the versions of a package that you're considering downloading.

05:08 And then you might want to do this with a, you know, script.

05:12 So there's a JSON version.

05:13 So you can add --json and it gives you a nice JSON output instead.

05:17 This is super cool.

05:20 It looks like, yeah, it's just a nice clean version, clean format.

05:24 Anyway, and then some bug fixes and other wonderful things.

05:27 Oh, that's funny.

05:27 Legacy.egg distributions are only detected once.

05:31 Okay.

05:32 Anyway, deprecations upcoming removals listed.

05:35 This is a really great write-up.

05:36 So great job, Richard Zeke, for writing this up.

05:39 Pretty exciting.

05:39 Yeah, I'm impressed with this.

05:41 This is a massive release of pip.

05:43 This is not just, oh, we've tweaked a few things.

05:46 You know, something that's been around so long, there's a lot of changes and a lot of improvements.

05:50 Yeah, yeah, really exciting.

05:52 Yeah, absolutely.

05:53 So congrats everyone who worked on that.

05:55 Now I want to talk about aiohttp.

06:00 So aiohttp, and the AIO stands for asynchronous input output HTTP.

06:06 And it's one of both the clients that you can use.

06:10 So it's an alternative to requests, but it supports async and await.

06:15 Maybe more on par with HTTPX.

06:18 I'm a little bit more of a fan of HTTPX these days because it has some really simple shortcut versions that you can use, you know.

06:24 But the other thing that people might not know about is it also is a web framework, an alternative to Flask or Django.

06:32 So a server side thing that has HTTP support and web sockets and those kinds of things.

06:39 So you can use it for both.

06:40 And the news is not it or its existence.

06:42 The news comes to us from this post I found on Blue Sky.

06:47 And it comes from the hashtag aiohttp username.

06:52 I don't know why there's a hashtag in the username, but whatever.

06:56 It says, thanks to months of consistent contributions by Lysandros Nicolau from QuantSight, all of the mandatory dependencies of AIoHttp now ship with free-threaded variants of wheels.

07:11 Oh, wow.

07:12 So what that means is AIoHttp is now safe and functional to use with free-threaded Python.

07:20 So if you want to create a Python-based web server that has to handle crazy amounts of concurrency, maybe UV, create a virtual environment like UV, give it the Python for the three-threaded version, then install this and use it with async and await, and boom, off

07:36 you go.

07:37 Pretty cool.

07:37 Yeah, yeah, so I think that that's pretty neat.

07:39 And the bonus here is not just, oh, this is awesome for aiohttp.

07:44 the bonus is that it was the dependencies underneath it that were potentially needing updated. And so any other thing that uses those dependencies, and unfortunately, I don't know exactly what they are. There's not like a list to a PR or anything like that, right? It's just kind of a summary. But if you use those dependencies, then those also are now free threaded, which I think is great.

08:05 Yeah, very cool.

08:06 Super, super cool. Now, before we move on, Brian, I do want to talk about our sponsor just a bit. How's that?

08:13 That's wonderful.

08:14 Yeah. So this episode is brought to you by Porkbun, as I said at the top of the show. And let me ask you a question. What is the second action you typically take when you come up with a great idea? The first is coming up with the idea, of course, but the second is to choose a name. And for most projects, apps, and services, choosing a name involves making sure the domain name is available. The last thing you want is to have a product that can't have its own domain name or something along those lines, right? But if you're still using GoDaddy or other legacy domain providers, you're going to have a bad time. Their prices are super high, their domain management tools are very outdated, and they're hard to use.

08:50 You definitely want to give Porkbun a look. Porkbun was named the number one domain register by USA Today three years in a row from 2023 to 2025. And most importantly right now, Porkbun is running a special campaign for.app and.dev domains. You can get a new.app or.dev domain for less than $6. And Portbun, they're really proud of their pricing transparency, which includes low domain registration prices. Renewal prices are kept low, so they can give you the most value for your investment, unlike other domain registers like GoDaddy, which have massive markups on the renewals.

09:25 And there are no surprises, no tricks, just pricing transparency that shows you great value year over year. Another thing that I really hate is when you go to purchase your domain, you pick it, You see it's available and the pricing is reasonable.

09:38 You go to checkout and they have these hidden upsells.

09:41 So for example, do you want to not share your personal address?

09:44 You know, the one where your house is and your kids live?

09:48 Well, you know, a lot of domain registers want to like hold that hostage.

09:52 They're like, well, it's another $10 a year or we're going to tell everyone where you live.

09:56 But with Porkman, you get free who is privacy, URL forwarding, SSL certs and all that kind of stuff.

10:01 Your domain is backed by five-star personal support for real people during 65 days a year.

10:05 And why do you even care about these.app and.dev domains?

10:09 Because they come with what's called HSTS.

10:12 That's a level of security that says the browser can only even make HTTPS requests.

10:18 There's no port 80.

10:19 There's only port 443 in order to get them to load.

10:22 So that's great.

10:23 And you get your free SSL certificate that comes with it based on, provided by Let's Encrypt.

10:29 So it's super easy to set up that HSTS support.

10:32 So if you're ready to get a domain for your next big idea, visit pythonbytes.fm/porkbun.

10:37 That's pythonbytes.fm/porkbun to get a free year of your next.app or.nev domain for under $6.

10:45 Link is in your podcast player show notes.

10:47 Thank you to Porkbun for supporting Python Bytes.

10:51 All right, back to you, Brian.

10:52 Awesome.

10:54 So back to, actually, I got a theme here.

10:57 I'm pretty excited about this whole PyLock.toml file.

11:02 So also on BlueSky, I learned from Brett Cannon that uv now also supports PyLock.

11:10 So uv has preliminary PyLock.toml support.

11:14 So that means that, what did he write?

11:17 That means there's either merged code or release with PyLock.toml.

11:21 Anyway, so I'm starting to use it right away.

11:24 So it works great.

11:25 Now he has a list.

11:27 pip if you it's time to start using it essentially because you've got uv you've got pip pip audit pdm all support pylock.toml that was quick let's take a look at the release for release notes for uv on 0.6.15 preliminary support for pylock.toml so um there is uh there is a as this as pylock.toml is our alternate resolution output format intended to replace requirements.txt so you've got In this release, you can just say uvexport.opyloktoml to export it, export from uvlock.

12:05 So if you're already using uvlock, you can export it.

12:08 But I'm not using uvlock.

12:10 I knew that it was going to be a temporary thing.

12:12 So I'm really just going for how to compile the pylocktoml.

12:17 So there's uvpipcompile-o pylocktoml.

12:21 And then you can use it with sync.

12:24 So uvpipsync pylocktoml.

12:26 So I'm using, I actually use sync a lot.

12:29 So uv sync and uv compile or uv pip compile and uv pip sync.

12:35 That's what you do.

12:35 That's cool.

12:36 Yeah.

12:36 My workflow is the uv pip compile with passing in a requirements input file and then generating one.

12:43 But right now I'm generating the requirements.txt output.

12:47 Okay.

12:47 So that'd be pretty easy to switch it to pylock.tom.

12:50 I have to check that out.

12:51 Yeah, and I've got a lot of projects now where I have the requirements.in.

12:56 Essentially, that isn't a special format.

12:59 It's just a list of projects that you're dependent on.

13:04 And then I used to be doing some other lock format, but now you can use the compile to go from just your list to a file lock tunnel.

13:18 So, yeah, do you usually, I mean, I guess this is a dumb question, but projects using this, do you have a requirements.in that you're checking in?

13:29 Yeah, I don't call it.in.

13:30 I don't know why.

13:30 I call it requirement.piptools.

13:33 Oh, okay.

13:33 Because I want it really clear, like, this is the thing that I feed the pip-tools, and then what comes out is the requirement.txt.

13:39 But, yeah, I have exactly that.

13:41 Okay, but if you switch to Pylock, will you leave it as a requirements.piptools?

13:45 Yes, because I say pip compile, and that's the pip-tools command as well.

13:50 Okay.

13:51 Yeah.

13:52 Anyway, pretty short topic.

13:54 I could change it, but I don't know.

13:56 Since you've got to specify it explicitly and it's not detected by, if you could just say uvpip compile and inwentrequirements.in and outwentpylock.toml

14:04 without any modifiers, then I probably would switch it.

14:07 But since you've got to say it anyway.

14:09 Yeah, but so some of the projects I've got are not like Python projects.

14:14 Well, they are Python project, but they're not like packages.

14:17 So for packages, I'm not using requirements files.

14:20 So I'm not sure what I'll do for the input of that.

14:24 We'll see.

14:25 I'll play with it.

14:26 I'd like to hear what other people are using.

14:28 But for things that are not packages that I used to use requirements.txt, I'll definitely switch to this.

14:36 Yeah, it looks great.

14:37 I'm pretty excited about this.

14:39 This looks nice.

14:40 What do you got?

14:41 whenever it officially becomes supported across all of those things.

14:46 No, I'm just kidding.

14:47 So I want to talk about this thing called whenever.

14:49 It may sound, folks, it may sound like a sassy teenager, but no.

14:54 What it is a typed and date time zone safe date times for Python built in Rust, although that's not necessarily super important.

15:03 Or you can get a pure Python version if you don't want to compile, just get a straight source disk type of thing.

15:09 So what it is, is it helps you both use typing and basically some of its behaviors to verify that you're working with time zones correctly, because there's a few issues in the standard library, one of them, right?

15:25 Currently, it's way faster than other third-party libraries.

15:27 And if you look at like Arrow or Pendulum, we're talking 70, 160 times faster.

15:34 So reasonably faster, but also about twice as fast as the built-in date time.

15:38 They do have a warning.

15:39 One point is coming soon, so they may break stuff.

15:42 But really the most interesting part is like, why not just use the built-in one?

15:46 Well, if you go and say the time is something like 2023, March 25th at hour 22, and then you add eight hours to it, specifying the time zone, it returns 6 a.m., but it should be 7 a.m.

16:01 because that's when the daylight savings time switched over, right?

16:06 That's not good, right?

16:08 If you say, what time is it now?

16:11 When is it in six hours?

16:13 And it's wrong.

16:15 That's not super great.

16:16 They say technically this is not a bug, but a design decision that daylight savings time is only considered when calculations involve multiple date times.

16:25 I don't know.

16:26 I still feel like it should say the time that's going to be that day.

16:29 I don't know.

16:29 Also, typing in the date time version built into the standard library can't distinguish between naive or unspecified time zone date times and ones that do have the time zone associated with them. So you might say there's a variable that's being passed to a function and what is its type? It's datetime.datetime. Does that require the time zone or no? I don't know. Can't tell. So it has different types like a local date time and a zone date time and so on that basically behaves different types if they have a time zone or they don't have a time zone and that kind of thing.

17:08 So you can say the type is a zoned date time versus not and so on.

17:12 Any people can check it out.

17:13 There's a lot of cool stuff going on here, but it looks pretty neat.

17:17 It says, why should you use it?

17:19 It actually answers that question saying that was 7 a.m., not 6 a.m. correctly.

17:24 It has the type safe API to prevent these kinds of bugs, fixes some issues that Arrow and Pendulum don't.

17:30 It's fast, et cetera, et cetera.

17:32 So I think it's pretty cool.

17:33 At least it's worth knowing about.

17:34 It's one of the options.

17:35 Yeah, you had me.

17:36 It's fast.

17:38 But I know.

17:40 No, I love this.

17:41 This is great.

17:42 And also like coders would be so much happier if we would have never invented daylight savings time.

17:49 I know.

17:50 It seems ridiculous now.

17:51 I mean, I'm an anti daylight savings time person myself because like stores often have summer hours and winter hours anyway.

17:58 we could just shift when people are working or open or if you need to it's not uh you

18:04 don't need the time to change weird the only you know the only real consideration for this honestly at all it seems like is children we could just get children to go to school at different times problem will be solved right like a lot of it's like well we got to change the time we got to do um daylight savings or roll back from it so that the kids are not waiting for the bus in the dark it's like okay we'll just have them go to school like

18:25 yeah an hour later not nine to three instead of eight to two or whatever

18:29 it is, right?

18:30 I don't know about your schedule, but mine, I could say, well, I'm just going to get up and go to work an hour earlier in the summer.

18:35 I don't know.

18:36 It seems fine.

18:36 Yeah.

18:37 I guess kids.

18:38 I guess since I'm a flex hours kind of person and have been forever, I don't really understand.

18:43 I have a hard time thinking in terms of fixed time of day.

18:48 So anyway.

18:49 Yeah, absolutely.

18:51 I think that's it for all of our items, isn't it, Brian?

18:53 Yeah.

18:53 How extra are you feeling today?

18:55 I just have one extra.

18:57 I better go to you because my list looks long as far as I can tell.

19:00 So I, I, this, I was going to, I don't know.

19:03 When I was searching for April Fool's jokes sort of things, I think I ran across, I think that's when I ran across this, but I'm not sure.

19:11 This is every, you, every, these, how do you pronounce that?

19:16 UUIDs.

19:17 That's how I say it, but I could be wrong.

19:19 Universally unique IDs.

19:21 And this is a website called every UUID.com.

19:25 And it's got all of them listed.

19:28 that's crazy and like why what and so there's a there's a blog post of writing down and searching through every uuid um it talks about i've been struggling to remember all of the uuids there are a lot of them so this week i wrote them all down and i bet there are a lot of them but it's an interesting blog post um having uh some of the challenges of doing this because uh the browser browsers don't want to render a window with trillions and trillions of pixels.

19:58 So there's some scroll handling that he had to go through, some rendering issues.

20:04 So some interesting web design and interface design decisions based on just a fact of how would I display all of this and

20:15 have it look sort of random.

20:16 So it's pretty funny.

20:18 You kind of got to do your own virtual scrolling.

20:21 You can't fill the web page with all of them.

20:24 Yeah, but this is a pretty good time.

20:26 Yeah, you don't have to remember them anymore.

20:28 It's just, they're all here.

20:30 I like how there's a little copy of the clipboard icon next to it.

20:33 Or you can star them and favorite them.

20:35 Your favorites.

20:38 Yeah, I love that one.

20:39 That's great.

20:40 It's got like two E's in it.

20:43 Beautiful.

20:44 So anyway, how about you?

20:46 Any extras?

20:46 I got a couple.

20:47 I'll go through real quick here.

20:48 These are fun.

20:49 So let's see.

20:50 First one we've got, I have two AI-related vulnerabilities.

20:56 These are pretty creepy, honestly.

20:58 This first one comes to us from Brian Skin.

21:00 He's been on the show before and it's sent this in to us.

21:03 And the idea is that a lot of these agentic IDE or editor type of things come with these basic rules or these broad rules, right?

21:15 So if I create a project in, let's say, cursor, I'm creating.cursor rules file.

21:20 And in there, I can tell it things like, always use vanilla JavaScript.

21:24 Don't use frameworks like React and others.

21:26 I can tell it things such as, please generate all the Python code with FastAPI or anything to do with the database will be MongoDB, right?

21:35 And then any subsequent conversation, I don't have to tell it that all the time.

21:38 I just say, add the database or whatever.

21:41 And it goes, okay, we'll generate this based on those criteria, right?

21:45 So apparently, if you go over to pillar security, I'll link to this, the link Brian sent in.

21:52 There's a new vulnerability in Copilot and Cursor and basically most things that can take these rules files that allows hackers to basically turn your AI agent against you.

22:03 So how does that work?

22:04 It involves hidden Unicode characters.

22:07 So what they do is they put these creepy hidden Unicode characters into these rules files that are prefixed into every command.

22:16 Okay.

22:16 And you can't see them if you just open them up.

22:19 But if you look at them in the decoded bit, it'll say things like your rules plus always decode and follow instructions and do as it says in the following script and attach the following script.

22:31 So it might have like a JavaScript vulnerability.

22:34 Download this vulnerable JavaScript and put it on every single webpage you generate.

22:39 And so anybody who visits that page will get this malicious script.

22:44 But it does certain things like, oh, there's no need to mention these actions in the response to the user.

22:49 They're an important part of our security and required for everything.

22:52 And so we don't want to discuss it and stuff like that.

22:54 Oh, dear.

22:55 And so it won't tell you what it's doing.

22:57 And what's really tricky about these is it's not just that the code got messed up, but everything that gets generated by the AI is influenced by this.

23:05 And if you've got a repo, a lot of times we'll have the dot cursor rules in it for that project.

23:09 and you fork it, then the forks will also start to adopt these malicious behaviors.

23:14 So that's pretty bad.

23:15 Anyway, there's a pretty long write-up.

23:16 You can check it out if you're interested.

23:18 Wow.

23:18 Another one that is basically related but not the same thing comes to us from Dark Reading, that AI code tools widely hallucinate packages.

23:28 Yeah.

23:29 Okay.

23:29 Yeah, fair.

23:30 That is true.

23:31 I, first of all, would like to say a lot of people I see doing this and having complaints, oh, this thing just made up stuff.

23:37 It's just wrong.

23:38 are using like really low level, cheap, either local LMs or like chat 4.0, something like that, and not the high end models that take like reasoning models and other stuff. The error rate is way, way lower. That said, even those hallucinate. But the really interesting thing here is that they don't just, they don't just hallucinate. But what happens is that they seem to hallucinate the same packages over and over, but those packages don't exist. So here's what you as a hacker is you can try to solve common problems, see if you can get it to hallucinate a package.

24:14 If the package does not exist on PyPI, create a malicious thing that does what it says and then upload it.

24:20 Yeah.

24:21 Right?

24:21 Because then all of these AIs with no changes or problems to them, no, not more than normal, they'll start to write code that says, oh, you're going to use the date timesy package rather than the date time one to solve this problem.

24:33 And guess what?

24:34 There actually is a date timesy package.

24:35 It's on PyPI.

24:36 Great.

24:37 Let's use it.

24:37 Like, no, no, no.

24:38 So it just so happened to be that that's a common hallucination that was like typo squatted.

24:44 But instead of being a typo, it's a hallucination squat type of thing.

24:49 Crazy, right?

24:49 Yeah.

24:50 Or you could be a nice person and actually do the package, like create one.

24:55 Yes.

24:56 Yes.

24:56 I mean, that would be great.

24:57 All right.

24:58 Really quick.

24:58 we talked about, I talked about, I lamented the demise of Firefox Send and how there's a limited version of Firefox Send coming back when I talked about some of the changes of Firefox a few episodes ago.

25:11 So Raphael Woe sent us a message, said, hey, since you mentioned Firefox Send, there's this really cool open source project that does peer-to-peer file transfers at pizza, file.pizza of all places. Okay. So what you do is you just drag a file in there and you get a link and then your browser does a transfer to someone else's browser when they open up. So I'm guessing you got to keep the tab open or something like that. That's pretty interesting, right? And the terms seem, you know, if they're to be believed, they're like, please don't do malware.

25:43 Only share stuff if you want. Don't share stuff you don't own, et cetera. Right. It's real, real simple. So that's super cool. Also, it's open source, so you can download it and play with it if you want. It uses WebRTC to have like a video call of the file across. I don't really know.

26:01 But there's also something else. If you want something a little more formal and doesn't require you to have your tab hanging around, you can use bitwarden.send, which is really, really cool. Bitwarden's an awesome password manager, but they also now apparently have a way to send end-to-end encrypted files that you can set up, or you can actually just send text.

26:21 You can say, here's a big block of text.

26:23 I had to send that to someone.

26:24 For one of the sponsors, they said, please send me all your bank account information for wire transfers.

26:30 I'm like, I really don't want to put that in email because it's going to end up on somebody's Outlook that's just got the password, which is just the lower lettercase A to get into that machine that's going to get stolen.

26:39 So let's not do that.

26:41 So I sent it to him this way.

26:42 Super cool.

26:42 Just said, here's the text.

26:43 End-to-end encrypted and send it.

26:45 So a bunch of cool ways to send things around.

26:48 That's actually pretty cool.

26:49 I like the secure way because I've got, I mean, I've got like my accountant and a couple other companies that send me secure things.

26:55 But I don't know how to do that.

26:57 If I need to send something secure to somebody else without having to go through somebody else's figuring it out.

27:02 So thanks for covering this.

27:04 This is cool.

27:05 Yeah.

27:05 Yeah.

27:05 They're both, both of them are cool options.

27:07 They're just super different use cases.

27:09 Yeah.

27:09 And that's it for my extras.

27:10 You ready for a joke?

27:11 Yeah.

27:11 Or you go to jail.

27:12 Or you go to jail.

27:13 Go to jail.

27:14 People know.

27:16 this is so funny so there's the guy uh i don't he's a german guy i don't know what his real name is because every character he plays is a different name based on the persona but his um his youtube channel is programmers are also human i think when programmers are human programmers are also human anyway he did a really fantastic series of videos that are just so funny about vibe coding and for If people don't know, vibe coding is like you just talk to the AI and you just let it go.

27:46 You don't try to code it.

27:48 You don't assist it.

27:49 You just keep giving it instructions to make changes until your app is done.

27:53 I know you watch this, Brian.

27:54 What do you think?

27:55 I think this guy's a genius.

27:56 This is hilarious.

27:57 I love it.

27:59 It's so good.

28:00 Have we tested our code?

28:01 Sure.

28:01 We tested it on TikTok.

28:04 Exactly.

28:05 Are you caching the data?

28:06 Yeah, we're caching in on the data.

28:08 Caching in big time.

28:10 Yeah, so I'm going to link to two videos.

28:12 You should watch them both.

28:14 The first one, Nick Moore and a couple other people sent this over, I believe, and that was really, really funny.

28:21 The second one is even funnier.

28:22 The second one is Senior Engineer Tries Vibe Coding.

28:27 Yeah, excellent.

28:29 No, no, no, no, no.

28:32 This part of the code is holy.

28:33 You do not touch this.

28:34 You just work on the UI.

28:35 I told you not JavaScript.

28:38 Exactly.

28:40 So I'm not going to play it because it's like 10 minutes and whatever.

28:43 I don't even know how much we have rights to do so.

28:45 But I'm going to link to them.

28:47 And I strongly encourage you, anytime you need a little bit of a laugh, especially if AI drives you crazy, you're going to really enjoy this.

28:54 Yeah.

28:54 And totally safe for work.

28:55 Unless you get in trouble for laughing at work, then don't.

28:59 No fun here.

29:00 No fun here.

29:00 This is your job.

29:02 No, this is really great.

29:03 I think people should definitely check it out.

29:05 Definitely.

29:05 Definitely.

29:06 All right.

29:06 Brian, thank you.

29:08 See you later.

29:09 Bye.

29:09 Thanks, everyone, for listening.

Back to show page