Transcript #423: Traveling the Python Universe
Return to episode page view on github00:00 Hello and welcome to Python Bytes, where we deliver Python news and headlines directly to your earbuds.
00:05 This is episode 423, recorded March 10, 2025.
00:09 And I am Brian Okken.
00:11 And I'm Michael Kennedy.
00:12 And thanks everybody again for supporting us through training courses at pythontest.com and at talkpython.fm.
00:23 So lots of great courses there.
00:25 And our Patreon supporters, of course.
00:28 Thank you.
00:28 And for people that'd like to get a hold of us, we'd love to get here.
00:31 If you've got a suggestion for the show or have a question about it or correction, you can reach the show at pythontest.fm.
00:40 And there's also in the show notes, there's links to our Blue Sky and Mastodon links.
00:48 And you can also sign up at pythontest.fm.
00:51 You can go to live to see when the next live show is going to go on.
00:56 Or you can sign up for the newsletter and get everything we talked about sent directly to your inbox, which is cool.
01:03 Yeah.
01:04 And they can crush that bell on YouTube, too.
01:06 Oh, yeah.
01:07 Subscribing on YouTube.
01:08 That would be great.
01:09 Yeah.
01:09 Yeah.
01:11 So speaking of subscribing or scribing, what are we talking about first?
01:16 Well, how's your SQL game, Brian?
01:20 A little weak, actually.
01:22 Yeah.
01:22 Mine's a little weak as well.
01:23 It's atrophied a bit.
01:24 You know, I've got its table and I got another table and I want to do a join on that table.
01:29 And then maybe I want to use an aggregation function.
01:31 How do I do that again?
01:32 Well, there's a lot of cool tools and libraries around there to solve that.
01:37 For example, you can use SQLAlchemy or SQL Model and then you just talk in Python terms and classes and stuff.
01:44 And then somehow magically deep down when it docs the database, it'll do that kind of stuff for you.
01:49 You still kind of got to know the queries.
01:51 So it's not perfect, but it doesn't perfectly solve it for you.
01:55 But I want to introduce everyone to a new tool called PySQL Scribe.
02:00 And the idea here is similar to that, except for you use it for real SQL.
02:04 So, for example, if you want to know how to do one of these joins or you want to get some support doing that and you're not already using SQLAlchemy, it's not reasonable to say, well, let me re-implement everything I'm doing in SQLAlchemy.
02:17 So I can ask it a question to get a simple SQL statement that I just want to use outside of SQLAlchemy.
02:23 Right.
02:23 Okay.
02:24 So that's kind of what this is.
02:24 So you can take this thing and you teach it about different things, which database you're using.
02:30 Because even though SQL is a general query language, it does not generally work against any database.
02:37 Right.
02:37 Each database has its own dialect.
02:41 Right.
02:41 So the way you say, for example, specify parameters for MySQL is different than the way you do for Microsoft SQL Server.
02:47 And while they are similar, they're not the same.
02:50 So what you do is with this is you say, I'm working with this particular database.
02:53 And then you say, you give it information about your tables.
02:57 Right.
02:57 So here's a table name.
02:59 Here it's columns and so on.
03:01 And then you can just say, create a little builder and say, builder.select this column, that column from this table build.
03:08 And what it builds is it outputs a select or a SQL statement of some sort.
03:13 So in this case, select the various columns from the table.
03:16 Cool, right?
03:17 Yeah.
03:18 Yeah.
03:18 But you can do more than that.
03:21 You can, let's see, you can create your own class by creating a class that is decorated.
03:28 And then it will know that, you know, basically you can create either your own queries or you can create your own dialect.
03:35 So for example, here's a MySQL table.
03:38 So you don't have to specify the dialect because it's a MySQL table.
03:41 It knows the dialect.
03:42 And if you go further down here, you can see it understands more complicated things like join.
03:49 Like first I want to select this thing.
03:50 Then I want to join on that table on this thing and then build and it'll write the join statement for you.
03:56 Just pretty neat.
03:58 You can also do, like I said, functions.
04:00 Let me scroll down a tad to that.
04:02 So for example, if you wanted to write something that did, you know, uppercase in the select statement or max of some value out of there, right?
04:11 And a group by type of thing.
04:13 So you could just go and write that in terms of the SQL scribe, the PySQL scribe, and then it will actually generate all that for you.
04:22 So that's pretty neat.
04:23 And finally, you can combine them if you have one builder inside of another builder type of thing.
04:29 And it'll join.
04:30 It's a more complicated thing.
04:32 So the more you do with the SQL, you know, probably the more helpful this is.
04:36 If you're just doing real simple select and where statements, maybe not that helpful.
04:40 But that is my first item.
04:42 I think it might help some folks.
04:43 Yeah.
04:43 Yeah.
04:44 I guess you're probably the wrong person to ask, but I was just curious about the use case.
04:49 So like, for instance, I guess if you had an application that the user could select which database they're connecting to, and then you could create the different features based on that and just, I guess.
05:03 Yeah.
05:03 I don't think it's operational in a sense.
05:06 I think it's more, because if you're doing it operationally, just use an ORM.
05:09 Okay.
05:09 Because it does that, right?
05:11 I think it's, I would like this thing to help me write the queries because I'm, sometimes I forget.
05:18 Like if you're doing data science, you might be connecting to different data sources.
05:21 You might be going, oh, I want to ask this question, but oh, that's probably a join.
05:25 How do I do that again?
05:26 And so on.
05:27 Okay.
05:27 Yeah.
05:28 I was actually, because I was just thinking about putting an application together and I was like, it's pretty lightweight.
05:33 I don't really want an ORM.
05:34 So I was going to do raw SQL, but then I.
05:38 Yeah.
05:38 So what you might do is you might run this one, you might give it your specification, run it one time, and then hard code the responses as parameterized queries in your Python code.
05:49 And don't revisit it again until you might need to change the query in a sufficiently complicated way that you can't just like type another column or something.
05:56 You know what I mean?
05:57 Yeah.
05:57 Okay.
05:57 Yeah.
05:58 Interesting.
05:58 Cool.
05:59 One addition that I added here, added sort of an idea I added, I guess, is I, I just, as getting ready for this, I'd thought, you know what?
06:08 This is like typing in the names of the columns and the available tables seems like that should be automated.
06:16 So I don't know if Daniel, the guy who created it, is any, has any interest in this, but I said, Hey, wouldn't it be cool if you could give it a create script?
06:23 You know, you can go to your database and say, create an entire create script for the entire database with all the columns and the relationships and indexes and all that kind of stuff.
06:32 If you could just point it at that, and then it could generate all the tables as an thing you pull in by table name.
06:40 And then it just automatically knows the structure of everything of all your tables.
06:45 Right. So I said, Hey, maybe you can make it pars a SQL data, create a data definition language, create script sort of thing.
06:51 So I gave a little example of something that you might be able to do there.
06:54 So who knows if that comes around, if he likes the idea or not, but I think there's some cool ways to expand this.
07:00 Cool. Nice.
07:01 Yeah. All right.
07:01 Over to you.
07:03 Well, I'm going to add, I'm going to look at a map of Python.
07:08 So I ran across this article.
07:12 It's kind of cool.
07:14 So the idea is around looking at PyPI has got tons of packages there, but there's a lot of dependencies between them.
07:24 And visualizing kind of how, what would it look like if we visualize all of this?
07:30 So there's a couple of visualizations here.
07:33 And I actually got a little lost in trying to interpret this, but it's pretty dots.
07:40 But you can, you know, you can zoom in a little bit on, on some of these, the scroll wheel works on this to zoom in.
07:47 And I'm not, I couldn't figure out what the spacing meant, but anyway, I, the, why I'm okay.
07:53 So since I don't really know what this is doing, why am I covering it?
07:56 One of the things I thought was great was it was just sort of a discussion around dealing with large data.
08:02 And, you know, the, the big, the data set of PyPI is a pretty big data set.
08:08 There is big, there's copies in BigQuery so that you can query that instead of, instead of querying PyPI all the time, which is something that I've done with the Python or pytest plugin list as well.
08:22 But the, it's, but then there's some discussions.
08:27 Well, there's, there's some junk in there.
08:28 There's, there's, there's packages that don't have like source code listed or there's, you know, other things that make them really not,
08:38 they're not really open source.
08:39 They're just utilizing PyPI or something.
08:41 Sometimes companies do that.
08:43 Anyway, so there's some discussion around filtering that, which is an interesting discussion.
08:48 And then a little bit of discussion about deciding what graphing mechanism to use and, and how to visualize it.
08:55 So I, I just really appreciated the discussion.
08:57 So if you're into visualizing data, I think this might be an interesting thing.
09:02 Plus it's just a really fun visualization.
09:04 And then at the end, there's a link that said, oh yeah, by the way, there's a better UI for this.
09:09 I'm like, oh, okay.
09:10 Let's take a look at that.
09:11 And this is just cool.
09:12 It's the spaceship, I don't know, spaceship operating manual.
09:16 Wow.
09:18 So this is like the galaxy of Python.
09:20 And let's see if we have W and S for forward and back.
09:23 Yeah.
09:23 The first one was kind of like, I don't know, old school maps.
09:26 It was really cool.
09:27 But old school maps and like, you know, the days of like sailing and exploring.
09:31 And this is like Hubble.
09:33 Yeah.
09:33 So look, look at this.
09:35 We move forward and back.
09:36 Oops.
09:36 Let's see.
09:38 W.
09:38 See if we can get this to go.
09:40 This is great.
09:41 So for people listening, I'm zooming in and it's like you're going through a star field.
09:45 And these are, these are Python dependencies that we're going around in.
09:49 It's just, it's, it's a fun, I don't know, video game, video visualization thing.
09:54 So.
09:54 I'm going to play with, I haven't seen this before.
09:56 I'm going to play this later.
09:57 Thanks.
09:57 You're just wasting like a half an hour of my day.
09:59 You're welcome.
10:00 Yeah.
10:01 And so this, this is, this is all on, on GitHub also.
10:07 So if you want to take a look at how he did the filtering and I'm, I'm linked to this because
10:12 I'm going to take a look at how he's doing.
10:13 So even a reproduction guide said there's the SQL query.
10:18 So if you, if you'd like to do some big query stuff for around PyPI, there's an example.
10:23 There's a process Jason.
10:25 So how he's using the filters and stuff and then converting it to a graph.
10:29 So some great, nice open source or nice examples of how to do data and visualization and stuff.
10:37 So.
10:37 Yeah.
10:38 I love it.
10:39 It's beautiful.
10:39 Very, very cool.
10:40 Yeah.
10:40 You all have to follow the links to explore it.
10:43 Yeah.
10:44 And play with, play with the, the space one.
10:47 That's fun.
10:48 So.
10:48 Yeah.
10:48 The space one is the one I was thinking of.
10:50 Awesome.
10:51 I want to talk Rust, C++ and Python.
10:53 I heard Bjorn was saying that C++ is under attack, Brian.
10:57 How do you feel about that?
10:58 It's under attack.
10:59 I think so.
11:00 I heard people say that I've heard a lot of, we really, you know, new software should be
11:06 written in a memory safe language.
11:07 And that's, you know, that doesn't work with C++.
11:10 Anyway, that's not the point of this.
11:12 Yeah.
11:12 The point is.
11:13 I'll have a comment later that we'll have to add.
11:15 So.
11:15 Yeah.
11:15 Okay.
11:16 I'm here for it.
11:17 I'm here for it.
11:18 But that's not what it's about.
11:19 This is by Martin Otsiak.
11:21 And it is Rust, C++ and Python trends in jobs on Hacker News.
11:27 Interesting.
11:28 Yeah.
11:29 So there's, I don't know how he found this data, but somehow, hey, look, maybe just conversations
11:34 on Hacker News might serve as a proxy for programming language job demand.
11:40 So there's two questions, you know, ask Hacker News who is hiring and ask Hacker News who
11:46 wants to be hired for February, 2025.
11:49 And then there's graphs of how many times those appear for Python, Rust and C++.
11:55 So if you look at it and this data actually goes back, I don't know what, I guess it's
12:00 as of February, but this goes all the way back to 2021.
12:03 So this is pretty long-term data, five years, four years.
12:08 And so if you look at Python, it's trending downward pretty sharply.
12:12 So are C++ and Rust, although they're starting to take up, I guess they're all a little bit
12:18 starting to take up here at the very end.
12:19 But the Python one is trending downward faster than the other two.
12:24 So what does that mean?
12:25 Like that people more and more at a higher rate of speed, people are not asking who is
12:31 hiring in a particular language, right?
12:33 Now, if you look at the other one, the inverse, who wants to be hired?
12:37 Hey, we need people.
12:38 We need people in this.
12:39 They're all going up a little bit generally, but Python is going up way faster.
12:44 So fewer people asking to be hired.
12:45 More and more people are going, where do I find Python people?
12:48 It looks like there's more demand for Python people over time.
12:54 There's still more demand for C++ and more demand for Rust people, but at a slower rate
12:58 of speed.
12:59 Interesting, huh?
13:00 Yeah.
13:00 Yeah.
13:00 And I was totally depressed for a while looking at this graph because of the sharp downward
13:08 trend of all programmers, at least for C++, Rust and Python.
13:11 I'm like, oh no.
13:12 But it looks like if you just look at it from 2021 to now, it's a downward slope.
13:20 But if it's kind of...
13:22 Which one though?
13:23 Who's hiring or who wants to be hired?
13:25 Well, I guess I don't get it.
13:27 Like the who's hiring.
13:28 If that's individuals trying to find a job or don't have a job, they either have or want.
13:34 Okay.
13:34 Right.
13:35 They don't have a job at all, or they have a job that they don't want.
13:37 They want one in that technology.
13:40 Okay.
13:40 Who's trying to hire Python?
13:42 Oh, right.
13:42 Okay.
13:43 So the fact that that's going down means fewer people are not in a job that they want, right?
13:48 They're like, they're employed.
13:49 That's a good thing.
13:50 And they're employed kind of happily.
13:51 So the fact that that goes down is good.
13:52 And then you look at the next one.
13:53 I don't know if this is good or bad, but there's fewer people per...
13:57 They're not easily filling the jobs.
13:58 It's getting harder and harder to fill the Python jobs at a faster rate than it is for the others.
14:03 That means basically there's more employer demand, I'm pretty sure.
14:06 That makes sense.
14:07 Per candidate, I guess, if you can somehow...
14:10 That's more optimistic then.
14:11 Yeah, I think it's optimistic on both graphs.
14:13 It just depends how you read it.
14:14 Yeah.
14:15 Yeah.
14:15 I mean, it's hacker news, right?
14:17 But it's still an interesting angle, you know?
14:19 Yeah.
14:20 I guess my take on the C++ versus other things or the demise of C++ or whatever, I don't think
14:29 we're going to see a demise of C++.
14:30 But there's a lot of stuff.
14:33 It is difficult to learn.
14:35 No doubt about it.
14:38 Rust, I think, is difficult to learn too.
14:40 But it's, I think, more manageable for people to come up to speed on a small project with
14:46 Rust than Python.
14:47 But maybe I'm wrong about that.
14:49 But I think one of the gains of Rust is we need a way...
14:57 It's around Python.
14:58 We have this great Python project, but there's a little bit of it here that needs to be sped
15:03 up.
15:03 What do we do?
15:04 Do we jump into C++ that we don't know about or Rust that we don't know about?
15:07 And I think people are choosing Rust.
15:09 So anyway, that's my take on that.
15:12 Yeah, I listen to a couple of cybersecurity, computer security podcasts.
15:16 And there's some really interesting conversations about like, if you're going to, you know, they
15:21 just did one of them just did an analysis and said, I think 70% of all, 70 or 80% of all security problems with
15:30 iOS were memory corruption, memory failure issues, right?
15:36 Off by one on an array, use after free, right?
15:40 Like the whole category of like things that happen because you're in a memory unsafe language.
15:44 Microsoft was something like in the 60 to 70% of all security problems with the software
15:49 has to do with memory issues.
15:51 Oh, yeah.
15:52 And he goes, you can just go through them like one after another.
15:54 And they're all, they've all got that flavor, if not the exact same numbers.
15:58 You know what I mean?
15:58 Yeah.
15:59 And so if you're choosing new, you're choosing new projects to start from scratch and you're
16:05 picking some systems level language like C, C++, Rust, whatever, and you don't choose
16:11 a memory safe language, you're basically choosing to have, you know, two and a half times as
16:16 many vulnerabilities in your software.
16:19 And that, I think that's what the, my language is under attack feel is.
16:25 It's like, yeah, but that fact is still a fact that I'm sorry, but it is, you know?
16:29 Yeah.
16:30 And you can do stuff, you can do stuff in say C++, right?
16:33 Right.
16:33 And you need like smart pointers and things that will automatically free them and so on, but
16:37 probably not for C, but it's still present, you know?
16:40 There's still S print F that was, you know, print F that was wrong or whatever.
16:43 Yeah.
16:44 And I guess I've spent so much of my life in the low level world of like device drivers
16:49 and stuff that that's one of the beautiful things about C++ is a memory mapped hardware
16:55 access system is really easy to put together in C++ and I don't know how to do it somewhere
17:00 else.
17:00 I mean, I'm sure there's ways, but so, and we're always going to have software talk to
17:05 hardware.
17:06 So unless it gets really easy to do that in another language, we'll have C++.
17:11 Yeah.
17:12 Or someone builds a little layer.
17:14 Well, it probably already is.
17:16 We just don't know.
17:17 I don't know Matt.
17:17 Yeah.
17:18 Yeah.
17:18 Yeah.
17:18 I don't either.
17:19 I don't live, I don't live in that world these days.
17:21 Anyway, that's pretty interesting stuff.
17:23 Yeah.
17:23 Yeah.
17:23 All right.
17:24 Over to you for your final thing.
17:26 Well, so there is help and it is only a keyword away.
17:30 So I, you know, occasionally I forget about this.
17:35 So it's so tempting if you have a question about the world of Python or anything is to just
17:40 Google something more.
17:41 I mean, what am I using now?
17:43 Not Google, something else, some Google alternative.
17:47 And, but there's help there and it's pretty good.
17:50 So linking to Trey Hunter's article, features of Python's help function.
17:55 And help is, is really pretty good with Python.
17:59 And it's part of built in.
18:00 I don't know if it was built in from the language at the beginning, but it's been there for as
18:03 long as I've been using it.
18:04 But if you say help, you can give it a string and you can give it a, you can say help on
18:09 a function.
18:09 You can say help on a module, symbols, keywords, topics, objects, and there's useful stuff that
18:16 often comes out.
18:16 So this article is talking through some of the things you can do.
18:20 One of the things that I like is looking at meta help.
18:23 The meta help is pretty interesting.
18:24 You can have basically there's a, if you say help and give it the quote topics, you get a
18:31 list of available topics and you've got stuff like strings.
18:35 I looked up strings.
18:36 I'm like, well, I don't use strings, but I looked it up.
18:38 And one of the things that strings has is all these scapegoats.
18:41 So like, what is a, what does the line feed code look like?
18:45 And what's a, you know, all of those, those are in the.
18:49 Like the backslash T, the backslash N, but there's got to be some that I don't know.
18:52 Yeah.
18:53 There's a bunch of others.
18:54 And so there's, there's a lot of interesting information in here.
18:58 And I think I remember looking at, I don't know, like literals and some of the, some of
19:05 the other things in here.
19:06 Namespaces is a good one.
19:07 Just probably a really good discussion around none and, and numbers and objects.
19:13 And there's a lot of great information around, around Python just available with the help
19:17 utility.
19:18 So here we go.
19:20 Help symbols.
19:21 So here's all the symbols of Python.
19:23 So if you're curious what all the keywords, oh yeah, you can just have a list of all the
19:28 keywords there.
19:28 There's really not that many Python keywords.
19:30 Wow.
19:31 That's pretty interesting.
19:32 Anyway.
19:32 Yeah.
19:33 Don't forget help.
19:34 And those keywords are things that you can't use as variables or functions or let's say symbols
19:40 more broadly in Python.
19:42 I just realized that from this PySQL scribe, I was like, why do you have to say select thing
19:47 than dot from underscore.
19:49 Oh.
19:50 And I, and I knew that the old parser, that would probably be the case, right?
19:54 Yeah.
19:54 Because it's just looks for the word from, but with the new like peg parser forward looking
19:58 thing, I thought, oh, it's going to be smart enough to know that this is being used in an
20:01 expression and not keyword.
20:02 No.
20:03 So you can say help symbols and keywords.
20:05 And those are the things you can't name symbols at all.
20:09 Yeah.
20:10 You don't really have to memorize them though, because Python will not let you.
20:13 Like it's just.
20:14 It's going to be like, Hey, that's a keyword.
20:15 Yeah.
20:16 Don't do that.
20:17 Can't do that.
20:17 Yeah, for sure.
20:19 For sure.
20:19 All right.
20:20 Extras.
20:20 What do you think?
20:21 Yeah.
20:22 Extras would be great.
20:22 Do you got any?
20:23 Got any?
20:23 Yeah.
20:24 Yeah.
20:24 I got one quick, quick, quick.
20:25 So last week I mentioned that granion, granion is going strong.
20:32 How many stars?
20:33 3,200.
20:34 This is the rust based one.
20:36 Oh yeah.
20:37 That is based.
20:37 That basically is like a handy wrapper around hyper, right?
20:43 Which hyper is a rust HTTP engine.
20:46 And that has 15,000 stars.
20:48 So quite popular.
20:49 But that they released 2.0 and that meant FastAPI and probably a lot of starlet stuff as
20:56 well.
20:56 Just stopped working categorically.
20:58 Whoops.
20:59 Well, the next day out rolls patch release 2.0 and that was a good idea.
21:11 And FastAPI makes heavy use of any IO.
21:16 So that seems like that was probably the problem.
21:18 Give it another go.
21:20 And all the FastAPI things are happy again.
21:22 Cool.
21:22 So just as a follow up from last week, really.
21:25 Yeah.
21:25 I wouldn't point it out that normally, but because since I said it didn't work, I'll put it back
21:29 on the checkbox.
21:30 If now it works again.
21:31 All right.
21:31 That's all I got.
21:32 Quick and easy.
21:33 I got no extras.
21:34 Although it just reminded me, I guess I don't have a page for this, but looking at dependencies,
21:39 I had to pull up.
21:42 I was looking for like I had a big, large, large set of packages that work together, internal
21:48 thing.
21:49 And something was using Greenlit.
21:51 And I'm like, what is using Greenlit?
21:53 And I pulled out pip dep tree.
21:57 So I love pip dep tree to quickly take a look at what, if you run that, if you just pip install
22:05 it and run it, and it'll show you in a tree form what all you have installed and what dependencies
22:11 there are.
22:12 And so I searched, easily searched through that and found out that Playwright was using
22:17 Greenlit.
22:17 And I'm like, oh, well, I'll trust them that they have a good reason to use it.
22:21 So I just needed to update my Playwright and we were good to go.
22:25 Excellent.
22:26 Yeah.
22:27 I've used that a lot.
22:28 It's really nice.
22:28 I use the UV pip compile thing, which now embeds that information into the requirements.txt file,
22:36 which is nice as well.
22:38 Oh, yeah.
22:38 Okay.
22:39 Yeah.
22:39 Yeah.
22:39 So I haven't used it that much lately.
22:41 But yeah, if you're in any project that doesn't have one of those generated files, then it's...
22:46 And another problem you can run into with just having it generate the stuff is, I don't know
22:51 about you, but when you add stuff to your requirements file, it'd be that piproject.toml
22:55 or requirements.txt equivalent or whatever.
22:58 It's easy to put stuff in there and then not take it out because it's like, I don't think
23:02 I've used it anymore, but it could break stuff and let's just...
23:05 What's it hurting in there?
23:06 You know, like it can become real easy for that to become stale.
23:09 So, you know, you get a little better look of it from piped up tree maybe.
23:15 Anyway, how about a joke?
23:17 Sounds good.
23:18 I brought a series of battling conspiracy theories to do with technology here.
23:23 That sounds fun, right?
23:24 Yeah.
23:25 So here's a flat earther.
23:27 I'm all here for making fun of flat earthers.
23:30 I'm a computer engineer and I affirm that the earth is flat.
23:34 But apparently John Davis, the secretary of the Flat Earth Society, you are not alone, Brian.
23:40 Just because no one else around you thinks the earth is flat, that doesn't mean there's not
23:45 a whole hive of people on the internet.
23:48 All over the globe.
23:49 All over the globe.
23:50 So what is the response?
23:53 Okay.
23:53 I'm a geologist and I say that computers work because there are very small people inside
23:58 doing all the work.
23:59 Yeah.
24:00 I gotcha.
24:01 I think right back atcha.
24:03 And then the subtitle, or if this is not, but if it weren't, XKCD, the hover, whatever that
24:08 is, says this earth is flat versus computers work because there are very small people inside
24:13 doing all the work.
24:14 Was the geologist inspired by Amazon's just walk out technology?
24:19 Remember, do you know the story behind that?
24:22 No.
24:23 You know the Amazon walk in, pick up wherever you want, you register your card, pick up
24:27 wherever you want, you walk out and they just charge you?
24:29 Yeah.
24:30 I'm pretty sure that, I don't have any good sources off the top of my head right now,
24:35 but that that was actually, instead of being super smart AI, which is what it was billed
24:40 as there were just people in countries where it was cheap enough, just paid to sit there and watch
24:45 a camera and just like mark down what you got.
24:47 And then like, and someday maybe it was supposed to eventually become powered by AI and video
24:56 recognition.
24:56 But the working versions were just people watching you on camera and marking it down
25:01 as you picked up and put down stuff.
25:03 Yeah.
25:03 Interesting.
25:04 Okay.
25:05 Anyway, I think that's the reference there.
25:06 That is funny.
25:07 There was a, somebody posted the other day about some studies that people are doing.
25:14 So a lot of people are using AI for stuff and I'm using it for some things as well, but the,
25:19 but for some things companies are doing like they're putting together lists of tasks and having
25:25 like, if they were going to like hire a person to do this, a person should be able to do this
25:30 task and this is kind of the output they should get.
25:33 And, and then putting that, those tests to AI, like agents and just other ways to use AI
25:40 and rating them that way.
25:42 And if you do that and have, have domain experts come up with these tests, like AI is not doing
25:49 well.
25:49 And, and, but one of the results was about like 16% correct on a lot of these.
25:55 And if the comment was, while impressive and that went on and I'm like, while impressive,
26:01 that's just not, I've never got a 16% score in, in school and had somebody say, wow, that's
26:07 impressive, but you need to grade on a good curve there.
26:10 There you go.
26:12 Business Insider.
26:12 Oh, go away cookies.
26:14 Amazon's just walk out technology relies on hundreds of workers in India watching you
26:18 shop.
26:19 That, that is ridiculous.
26:23 Yeah.
26:24 I thought it was RFID or something like that.
26:26 No, it's magic.
26:28 It's magic.
26:29 Yeah.
26:31 What a boring job or maybe interesting.
26:33 I don't know.
26:34 Watching people shop.
26:35 Yeah.
26:36 Maybe.
26:37 Anyway.
26:40 All right.
26:40 Well, good episode as usual.
26:43 good to talk with you.
26:44 Thanks to everybody for tuning in and we'll see you next week.
26:47 Yeah.