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

#451: Databases are a Fad

Published Mon, Sep 29, 2025, recorded Mon, Sep 29, 2025
Watch this episode on YouTube
Play on YouTube
Watch the live stream replay

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.

Michael #1: PostgreSQL 18 Released

  • PostgreSQL 18 is out (Sep 25, 2025) with a focus on faster text handling, async I/O, and easier upgrades.
  • New async I/O subsystem speeds sequential scans, bitmap heap scans, and vacuum by issuing concurrent reads instead of blocking on each request.
  • Major-version upgrades are smoother: pg_upgrade retains planner stats, adds parallel checks via -jobs, and supports faster cutovers with -swap.
  • Smarter query performance lands with skip scans on multicolumn B-tree indexes, better OR optimization, incremental-sort merge joins, and parallel GIN index builds.
  • Dev quality-of-life: virtual generated columns enabled by default, a uuidv7() generator for time-ordered IDs, and RETURNING can expose both OLD and NEW.
  • Security gets an upgrade with native OAuth 2.0 authentication; MD5 password auth is deprecated and TLS controls expand.
  • Text operations get a boost via the new PG_UNICODE_FAST collation, faster upper/lower, a casefold() helper, and clearer collation behavior for LIKE/FTS.

Brian #2: Testing is better than DSA (Data Structures and Algorithms)

  • Ned Batchelder
  • If you need to grind through DSA problems to get your first job, then of course, do that, but if you want to prepare yourself for a career, and also stand out in job interviews, learn how to write tests.
  • Testing is a skill you’ll use constantly, will make you stand out in job interviews, and isn’t taught well in school (usually).
  • Testing code well is not obvious. It’s a puzzle and a problem to solve.
  • It gives you confidence and helps you write better code.
  • Applies everywhere, at all levels.
  • Notes from Brian
    • Most devs suck at testing, so being good at it helps you stand out very quickly.
    • Thinking about a system and how to test it often very quickly shines a spotlight on problem areas, parts with not enough specification, and fuzzy requirements. This is a good thing, and bringing up these topics helps you to become a super valuable team member.
    • High level tests need to be understood by key engineers on a project. Even if tons of the code is AI generated. Even if many of the tests are, the people understanding the requirements and the high level tests are quite valuable.

Michael #3: Pyrefly in Cursor/PyCharm/VSCode/etc

  • Install the VSCode/Cursor extension or PyCharm plugin, see https://pyrefly.org/en/docs/IDE/
  • Brian spoke about Pyrefly in #433: Dev in the Arena
  • I’ve subsequently had the team on Talk Python: #523: Pyrefly: Fast, IDE-friendly typing for Python (podcast version coming in a few weeks, see video for now.)
  • My experience has been Pyrefly changes the feel of the editor, give it a try. But disable the regular language server extension.

Brian #4: Playwright & pytest techniques that bring me joy

  • Tim Shilling
  • “I’ve been working with playwright more often to do end to end tests. As a project grows to do more with HTMX and Alpine in the markup, there’s less unit and integration test coverage and a greater need for end to end tests.”
  • Tim covers some cool E2E techniques
    • Open new pages / tabs to be tested
    • Using a pytest marker to identify playwright tests
    • Using a pytest marker in place of fixtures
    • Using page.pause() and Playwright’s debugging tool
    • Using assert_axe_violations to prevent accessibility regressions
    • Using page.expect_response() to confirm a background request occurred
  • From Brian
    • Again, with more and more lower level code being generated, and many unit tests being generated (shakes head in sadness), there’s an increased need for high level tests.
    • Don’t forget API tests, obviously, but if there’s a web interface, it’s gotta be tested.
    • Especially if the primary user experience is the web interface, building your Playwright testing chops helps you stand out and let’s you test a whole lot of your system with not very many tests.

Extras

Brian:

Joke: Always be backing up

Episode Transcript

Collapse transcript

00:00 Hello, everybody. Welcome to Python Bytes. Let's kick it off. It's a bunch of exciting news today.

00:06 Hello, and welcome to Python Bytes, where we deliver Python news and headlines directly to

00:10 earbuds. This is episode 451, recorded September 28th, 2025. I'm Brian Okken.

00:18 And I'm Michael Kennedy.

00:19 And this episode we have as a sponsor ourselves. So please check out all the fun courses at

00:27 talk python training go to head over to python test.com check out some i test courses there and

00:33 of course thank you to patreon supporters um you rock we don't thank you all the time but we always

00:38 think of you and then um if you'd like to we love topics sent to us and just feedback so um uh please

00:46 check out our our socials uh they're in the show notes but we're on blue sky mastodon and i'm pretty

00:54 sure michael's still on uh x i am i don't i don't do too much there but i i do answer at mentions

01:01 and stuff there so okay yeah um and if you're listening and like to um check out the video

01:07 or check out the live performance uh head on over to pythonbytes.fm/live and you can be a part

01:13 of the audience usually mondays at 10 pacific time and you can also use that link to get to older

01:19 episodes. And finally, hop on the mailing list. We send out all the show notes every week,

01:27 including some background information, all the links to whatever we talk about,

01:31 and links to the joke even. So that's always fun. So check that out. And yeah, let's kick it off.

01:38 I want to talk about databases. Probably a fad, but yeah, some people use databases.

01:43 Databases are a fad.

01:45 We're not over covering things that could be a fad.

01:48 We'll spend a lot of time on some of these new cutting-edge things like Postgres.

01:53 So Postgres 18 releases is a major release.

01:57 And I don't remember the numbers exactly, but if you go look at the PSF slash JetBrains survey results, latest one, it's been Postgres and Mongo as sort of the top two most wanted, most desired ones.

02:10 But Postgres has been pulling ahead and it just keeps pulling ahead.

02:14 It is really far and beyond the most loved, used, and wanted relational database and also

02:21 manga.

02:22 So a release of it is a big deal.

02:24 And their website is not overly dramatic.

02:28 It's fairly just not straight text or whatever.

02:30 But hey, you don't got to be a web designer to build databases.

02:34 So let's not hold that against them.

02:36 So I put in the show notes a bunch of stuff about what is new.

02:42 So let me give you the highlights here.

02:44 So there's a new asyncio subsystem, which speeds sequential scans, bitmap heap scans and vacuum, which I think is cleaning up dead space and sort of compacting and so on by issuing concurrent read because now it can be asynchronous instead of blocking on each request.

03:02 So that's already like, you should be like, hey, maybe I should upgrade it from whatever I'm doing to 18 because I get async and async subsystem for reading, right?

03:14 Async IOSystem.

03:16 And then if you're thinking, well, I don't have a fun upgrade.

03:19 They also did work to make major upgrades smoother.

03:21 So PG underscore upgrade retains planner stats and also does checks for things if you do a dash jobs option.

03:31 And it checks those in parallel now as well.

03:34 And faster cutovers will swap.

03:36 So those are all good things if you want to upgrade.

03:38 It has a smarter query system.

03:41 So performance lands with skip scans on B-trees, better OR optimization, incremental sorts, parallel, other parallel operations.

03:53 It's all good.

03:54 And virtual generated columns are enabled, which is by default, which is great.

04:00 There's also a new unique identifier that it's using, UUIDV4, which is cool because it'll generate time ordered random IDs.

04:11 so if it gets a primary key index based on that i'm guessing like you can sort by that and that's

04:16 the sort that also it went into the database so you don't necessarily need a creative time if all

04:20 you care about is order so that's kind of cool right yeah security gets an upgrade and by both

04:26 throwing out the old and gaining the new adds o off two which is good stops using md5 password auth

04:33 that seems reasonable you know like world's oldest hash that shouldn't really be used for that kind

04:38 stuff and more TLS controls for SSL type things. And finally, last but not least, text operations

04:45 also get a boost through PG Unicode fast collation for faster, upper, lower and caseful helper stuff

04:54 and better like hyper queries. So that's actually a pretty big set of boosts you get just for

05:00 upgrading your database server. Yeah, you might not have to do anything but upgrade. It'll be a

05:04 zippier yeah exactly and not only that wait there's more what does it cost it's free it's open source

05:11 why not upgrade give it a try people come on yeah cool nice um we got uh other other versions

05:18 updating we'll check check in with other new things later in the show but first let's do some testing

05:24 i uh have i gotta cover some testing topics we'll probably cover more testing topics on this

05:29 this podcast more than normal-ish?

05:33 I don't know, maybe, because there's no testing code anymore.

05:36 So I've got to cover it here.

05:37 Anyway, Ned Batchelder wrote a nice article called Testing is Better Than DSA.

05:43 And I didn't understand.

05:45 I didn't know what he meant by DSA.

05:47 Neither do I, but you're going to tell us, right?

05:49 DSA, Data Structures and Algorithms.

05:51 And kind of the point is, there's a lot of people,

05:55 you learn to code, you do maybe a base camp or wait, it's not base camp.

06:01 What are those things called?

06:02 Boot camps.

06:03 Maybe you do a boot camp or you learn in school or something

06:05 or you're trying to find a job.

06:07 It is, he does do a nod to say, hey, if you got to get a job,

06:12 you got to do what you got to do.

06:13 And if grinding through leak code will help you line a position,

06:16 then do it.

06:17 But once you have the job, that's not what you do.

06:20 I have never done a doubly linked list at work.

06:23 If I need one, I use one off the shelf.

06:26 Same.

06:27 Yeah, it's maybe a vague understanding is when I use this one versus that one.

06:31 When is a dictionary versus a set versus a list, but you don't build them.

06:35 Yeah.

06:35 And actually, we've got an extra topic later in the show I want to talk about for complexity.

06:43 Complexity is important, but actually building these algorithms, I don't know.

06:47 So what should you do instead?

06:49 One of the things what he's talking about is, and he did say that time complexity is important.

06:55 You should learn how to test your code because a lot of universities and boot camps and stuff say, you know, when you're on the job, they'll let you know how to test.

07:06 But universities don't really teach testing that much, or at least a lot of them don't.

07:10 A lot of boot camps don't.

07:12 So it's good to pick that up yourself.

07:15 And actually, in my experience, tons of working software engineers are really bad at it.

07:22 And so it can put you above the average coder and stuff, if you understand.

07:30 So he's talking about these testing skills are skills that you'll use constantly.

07:34 Real-world software means writing tests much more than school teaches you to.

07:41 It'll help you in job searching, I think.

07:44 It's obviously, it's not obvious how to test well.

07:47 And that's one of the assumptions a lot of people do is that you'll just,

07:51 the testing will be handed to one of the lower level engineers.

07:55 That's a terrible idea.

07:56 Having a robust test suite and one that's elegant and easy to read is a joy to work with.

08:02 And you got to be an expert at it.

08:04 Jumping in and getting good at this helps you.

08:07 And it'll help any team you land on.

08:09 Anyway, just that's pretty much it.

08:11 It's a shout out to say, hey, you should test more.

08:15 Yeah, excellent article.

08:17 then yeah thanks i'm right i got the one thing i want to add to this is i think uh testing at a

08:24 unit test level is something that there's a lot of tutorials on and that's okay but testing at a

08:30 higher level like at an api level or at a ui level is more how you think about how the system

08:36 works and if you can do that really well you're going to be invaluable even if a bunch of stuff

08:41 is being offloaded at ai you still need to understand the high level tests so that's that's

08:46 Yeah. And I find without a lot of guidance, the AI test creation is not super. It's too fine grained. It's like, oh, we set the value to seven. Test the value of seven. No, we don't need that. Just the whole thing worked. It probably took the seven. You know what I mean? Like, yeah. Yeah. Yeah. Interesting. Okay. So what have I got next? I'm going to set this next one on fire by going back to something that Brian talked about.

09:11 A couple episodes ago, can't remember exactly.

09:14 I want to talk about Pyrefly again, but a different aspect.

09:17 So you mentioned Pyrefly a while ago, six weeks, I don't know.

09:21 Then the folks from the Pyrefly team reached out to me and said,

09:24 thanks so much for talking about it.

09:26 But Michael, you're a little bit misguided and you're a little bit wrong on the features of this.

09:32 I'd love to talk to you more.

09:33 So I ended up having three of the people from Meta who are on the team on Talk Python.

09:37 I had a great conversation.

09:39 I learned a bunch.

09:40 Super neat project.

09:41 So I'm not here to just tell you about Powerfly again, because at best, that would be a follow-up, right?

09:46 But I'm here to tell you more about the yellowish orange button on their home screen.

09:51 Get the VS Code extension and not just VS Code.

09:54 Get the editor integration.

09:56 So I interviewed both Charlie Marsh from ty and the team from Powerfly.

10:01 And what they're doing is really great.

10:02 Both of those projects are amazing.

10:05 If you want to do like CI or on-demand type checking, I think they're very much in parallel.

10:13 But right now, the editor integration, what I learned from talking to the Powerfly guys, girls, is that the team that does Instagram,

10:22 the reason they built this is the team that does Instagram was having a hard time using their editors on the 20 million lines of Python code that Instagram is.

10:33 Like, for example, when you'd open a file to get any squigglies or get any like information about anything, like if you wanted to hover over and see or you hit command B or whatever your hot key is, command click, control click to navigate to an item might not work for five seconds or the hover might take a while to come up with the docs or the autocomplete.

10:52 all those things right it's like just overwhelmed so like we got to have a faster type system

10:56 primarily for a faster type server thing primarily for the editor experience so i said well after i

11:04 talked about that's pretty let me try it on mine so if you go uh over here to the powerfly.org

11:10 there's an install and then you search for um search for pychart node out there where is it

11:18 IDE integration, that's one.

11:20 They've got VS Code.

11:21 It installs into Cursor.

11:24 It has some things that you've got to maybe turn off the default language server

11:28 depending on how things are set.

11:29 So read it because that's already come with Python language servers.

11:34 So you don't want them to fight.

11:35 And there's also a PyCharm version that's a PyCharm plugin that you can get

11:40 as the language server for that.

11:41 Oh, wow. Cool.

11:42 I gave it a try.

11:44 And in there, you've got not a huge code base, right?

11:47 much smaller on Instagram, but still go in there and hit dot.

11:49 And it's like, my experience is the autocomplete is up before you feel the key actually strike

11:55 the bottom of the key throw as you hit the dot.

11:58 You're like, it just is instant and like really satisfying ways.

12:03 So I'm giving this a try.

12:05 It's not like I felt like, oh gosh, it was so slow before, but there's just something

12:08 about like, it feels magical that the editor just knows it knows what you want.

12:14 You know what I mean?

12:14 Like, not like, oh, it figured it out.

12:16 it's already giving you the answer.

12:18 You know what I mean?

12:19 So give it a try.

12:20 You can always disable the plugin slash extension, whatever, and re-enable.

12:26 What is it?

12:28 PyRite.

12:28 I believe it's PyRite or Base PyRite if you're in cursor, depending on...

12:32 Read the instruction.

12:33 Okay.

12:34 I'll check it out.

12:35 Yeah, check it out.

12:35 I mostly...

12:37 And also, look...

12:39 TY has one as well.

12:40 But the ty extension has got a lot...

12:43 I was going to use that one first, maybe, actually.

12:45 But it's got a lot of sort of like, we're not quite ready yet, but you can give it a try sort of thing.

12:50 My feel is like it's super alpha where the Instagram team is using this day in, day out as their autocomplete language server stuff.

12:59 I feel like the editor integration right now at this moment is a little bit better for Pyrefly.

13:04 So that's why I was playing with that one.

13:06 All right.

13:07 Well, if it ever changes, we'll probably hear about it.

13:11 Yeah, I'll be telling you in six weeks how I'm using the TY1 and it's so incredible.

13:15 yeah all right i'm gonna um switch over to you know let's let's talk about testing a little bit

13:23 no um actually so that just uh it is kind of cool that a couple a couple of great testing

13:30 articles came up so uh the what i want to talk about next is from tim shilling and actually we

13:35 don't cover a lot of stuff from tim but um he's got a great looking blog uh so tim is a big in

13:41 the Django community, of course. And he wrote an article called Playwright and pytest Techniques

13:47 That Bring Me Joy. And again, on the topic of, I think more people should be comfortable with

13:53 high-level tests. If your tests have a web UI, you need to have at least some tests covering that.

14:00 And all developers need to understand how to do some of that. It helps out. So in some of that joy,

14:06 These are some cool tricks that he's put together on how to do.

14:10 We've got open new pages and tabs to be tested using a pytest marker to identify playwright

14:17 tests.

14:17 And I really love that.

14:20 That's really simple.

14:21 But you can just set up a marker.

14:24 And that way, you can, on which tests are running playwright, that way you can exclude

14:30 those if you don't want to run your playwright tests, or you can include those.

14:35 And actually, I usually probably use something smaller than the whole Playwright.

14:39 I might do something like web or UI test or something like that.

14:43 But whatever marker you choose, that's an easy way to distinguish them.

14:47 Great technique.

14:48 Using pause and Playwright's debugging tool, we're using page pause.

14:53 So also neat to do.

14:55 If you've got a test you're debugging, you can throw in page pause.

14:59 It's kind of like a breakpoint.

15:01 So it's kind of a cool technique.

15:04 I see. You can give it a look, maybe.

15:06 Yeah, if you keep looking at it.

15:08 That's one of the neat things about testing with Playwright is to be able to,

15:14 if you're not using, I mean, even if you are using headless,

15:17 you can turn on, you can switch to a headed UI so you can watch it.

15:22 So I'll just run through the other stuff he's got.

15:26 He's got using pause, using axe violations to assert axe violations

15:31 to prevent accessibility regressions.

15:34 Oh, that's interesting.

15:35 Yeah, I'll have to check that out more.

15:37 And then using page expect response to confirm a background request occurred.

15:43 That's also nice.

15:44 If you've got a Zippy app and it's refreshing the background request.

15:48 That's cool.

15:50 Anyway, great tips from Tim if you're going to use Playwright

15:54 and testing your UI.

15:57 Yeah, very cool.

15:58 And just bring it home.

15:59 Your app doesn't have to be in Python to use Playwright to test it, right?

16:04 I mean, you're just touching the web.

16:06 Yeah, and also, and that's one of the great things about Playwright

16:09 is it's anything on the web, but also the integration with pytest.

16:15 On my day-to-day job, I'm testing Embedded C with pytest,

16:20 and pytest and Playwright are great across languages.

16:24 Yeah, absolutely.

16:26 All right, your screen's up.

16:27 Why don't you do your extras?

16:28 You got more than me anyway.

16:29 um i did we did talk about dsa data structures and algorithms um one of the things on that topic

16:36 i wanted to bring up was uh sam who has this excellent article called big o and it is probably

16:42 one of the best overviews quick overview of what big o no uh big o notation is and it's just sort

16:48 of general complexity of algorithms and how much looping and based on the size and um it goes through

16:55 goes through a lot of stuff.

16:57 What do we got?

16:58 I think there's like a table of contents here somewhere.

17:00 But anyway, it talks about iterating and going through stuff,

17:06 but he does do finding and searching as well.

17:10 And oh no, sorting.

17:11 So we often talk about sorting algorithms and complexity,

17:15 but the little demos are just awesome because you can just walk through stuff.

17:19 And like this one, you can run, see how long something takes.

17:23 But then there's some examples of, you know, as N increases, you know, if it's an O of

17:31 one, it might be slower, but eventually it'll be faster.

17:34 Those sorts of just, and these are what we want to have every engineer understand about

17:40 big O no-captation and algorithmic complexity is to just get a gut feel for stuff.

17:45 If you've got a nested loop or a multiply nested loop that goes over everything multiple

17:53 times it's going to be really slow if the end gets pretty big so um the uh the demo of uh

18:01 of sorting totally fun to watch the just walk through the code and then see the uh the the

18:08 demo of how things are getting sorted it goes through a bubble sort here um but anyway uh really

18:14 great for complexity kind of went long on this already but if you'd like to understand big o

18:18 consider that python 3.14 uh rc3 the last rc is out it's it's let's see it was out as of september

18:28 18th and that's it folks for the rcs um if we're looking at the schedule uh release candidate

18:35 three is the last one scheduled final is scheduled for october 7th just right around the corner

18:40 so i'm pretty excited about that speaking of uh upcoming releases django 6 is in in the works and

18:48 Django 6 Alpha 1 is available.

18:51 This was posted September 17th, so I'm not sure when it was out,

18:54 but about then, I'm guessing.

18:57 Django 6 Alpha 1.

18:59 There's our in-development release notes, so you can check out what's in there.

19:04 But there's some exciting things.

19:07 I'm excited about template partials in there.

19:10 That'll be fun.

19:10 And background tasks.

19:12 What else?

19:13 The roadmap is a little different for the schedule for Django.

19:18 the final release for Django 6 is scheduled for December 3rd.

19:22 It's still just right around the corner, but not quite as close as Python 3.14.

19:26 The last extra I wanted to bring up is actually almost last.

19:33 Last week, we talked about that Python test is a static site,

19:36 and I was looking at possible alternatives.

19:39 I'm still looking.

19:40 However, I've realized that I think I might be yak shaving,

19:43 and there's other stuff I need to be doing, like writing new content.

19:47 So I'm going to put off changing that for now.

19:50 But the yak is fun.

19:52 But I did want to, the last thing is Pi Bay.

19:55 We had some tickets and we still have a couple of tickets left.

19:59 So how are we going to give those away?

20:00 I think that we decided that the easiest way is if you are available for Pi Bay and want to go, when is it?

20:08 It's October 18th.

20:10 Just let me know.

20:11 So message me on the socials or email, email the show or mostly try to contact me through the social messages.

20:21 First, first couple of people that get in, I'll I'll send you some free tickets.

20:27 Lots of extras.

20:28 How about you, Michael?

20:29 Excellent.

20:29 I had no extras, but then I decided I have an extra.

20:32 So let's talk real, real quick and then we'll do a joke.

20:34 So I know last time I don't know if I have much I went into this, but I'm back of a volley, Brian.

20:40 you know I mentioned that but the you know the thing I really liked about Zen was how I could

20:45 have just little icons down the left and it would give me more room and that would just be like a

20:51 super minimalized view and then I realized like well let me just let me try playing with some

20:56 settings and guess what I knew Vivaldi had side tabs but I'm just they were weird to me but then

21:01 I tried it for a day and I'm like that's actually kind of neat so I'm back and I think it's better

21:06 I think, you know, it's Chromium based and for all the problems of monoculture and all

21:12 the stuff that I wish it weren't that way, the web is a little bit smoother on Chrome.

21:17 Yeah.

21:18 I'm one of, I love Valvaldi or have since I've been using it.

21:21 And I do also appreciate that the world sees it as Chrome.

21:25 Yes.

21:25 You know what?

21:26 You'll hear people say it's not very popular because it doesn't show up in, it doesn't

21:30 even register on the list of like popular browsers.

21:33 Like what percentage does it use?

21:34 It's because it's the only browser that I know of that lies about its user agent, right?

21:40 Like Opera says it's Opera plus Chromium.

21:43 Brave says it's Brave plus Chromium.

21:46 But Vivaldi just says whatever Chrome would be for the one that I'm running on, that's

21:51 my user agent.

21:52 And so it literally just is like a stealth sort of thing.

21:55 I'd also encourage people to check out the themes, like this bright red theme that it

21:59 comes with is like, I don't know, it gets your attention, but it's tiresome to me.

22:03 So there's a bunch of nice themes.

22:04 Check them out.

22:05 And the lying about what you are, I really appreciate that in a work setting

22:10 because there's a lot of internal stuff that just for ease of use,

22:15 they just say, we're going to support Chrome and that's it.

22:18 So they'll check to see what user agent you have.

22:21 And if you don't have Chrome, they'll like not let you in.

22:24 And I hate that.

22:25 It's extra frustrating because it literally is the same Chrome.

22:28 It just identifies itself differently, right?

22:30 Yeah.

22:31 Except for Vulti.

22:32 All right.

22:33 How about something funny?

22:35 So we started with database.

22:36 We talked about big O.

22:38 Let's finish with database and performance.

22:40 Okay.

22:40 Now you could take this joke in a vibe coding.

22:45 You don't really know.

22:46 And you made a mistake and you're sorry.

22:48 Or you could take it in the way of, I'm an experienced engineer and I know I messed up right away.

22:53 Here we go.

22:54 So there's a hamster and the hamster is freaked.

22:58 Ah, what the hamster says is you ran a query, which was supposed to update a single row,

23:03 but it's still running after 10 seconds.

23:06 Yeah.

23:07 You might not have a database anymore.

23:09 It's updating every row.

23:11 That's what it's doing.

23:13 Oh boy.

23:14 Yeah.

23:15 So, I mean, that ties it all together as the end of the show, doesn't it?

23:18 Brian brings the big O notation.

23:20 Yeah.

23:20 And how long does it take to update 10 million records?

23:23 It talks about the database.

23:25 It'll do it faster because there's an asyncioS subsystem now, etc.

23:29 Yeah.

23:29 Scroll up on that guy's face again a little bit.

23:33 Ah, poor guy.

23:34 There he is.

23:35 He knows.

23:37 I'm turning in my resume.

23:38 Why?

23:39 You'll find out soon.

23:40 Yeah.

23:41 All right.

23:41 Poor hamster.

23:42 Poor hamster.

23:43 But not poor listeners.

23:44 It's been a good show.

23:46 Yeah.

23:46 Well, another great show and another week.

23:51 We'll talk to you next week.

23:52 Bye.

23:52 Bye.


Want to go deeper? Check our projects