Transcript #421: 22 years old
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:04 This is episode 421, recorded February 24th.
00:10 And I'm Brian Okken.
00:11 I'm Michael Kennedy.
00:12 And this fabulous episode is sponsored by all of you folks that support us at,
00:18 like maybe taking a course over at Talk Python Training or heading to pythontest.com,
00:24 learn about pytest, maybe taking a course.
00:26 We also love our Patreon supporters, so thank you.
00:28 If you'd like to connect with us, of course, you can check.
00:31 There's six links in the show notes for the show and me and Michael over at Blue Sky or Fostadon or Mastodon.
00:40 So keep in track of both of those.
00:42 And if you'd ever like to jump into the show live, you can head to pythonbytes.fm/live
00:48 and check out when the next recording will be and you can be with us and ask questions and stuff.
00:56 And it's fun.
00:57 And finally, the newsletter is still going out.
01:00 And Michael's made some improvements to it.
01:02 So we're making some neat things.
01:06 And I think it's a really cool resource now.
01:09 If you're, especially if sometimes you listen to the show and you're like,
01:13 that seems like a cool topic, but I don't quite know much about that thing that they're talking about.
01:19 We're including some background information.
01:21 So if you'd like to learn more about the topic, we're including a lot of links and that's really cool.
01:26 Yeah.
01:26 Super fun.
01:26 Yeah.
01:27 Speaking of super fun, what's your first topic for us, Michael?
01:31 You know what is super fun?
01:32 Debugging is super fun.
01:34 Because testing is sometimes fun, but debugging, that's where the mysteries really live.
01:38 You never know.
01:39 And if you don't do much testing, you might do more debugging.
01:42 You never know.
01:42 Anyway, I want to talk about debugging HTTP calls.
01:45 Now, one way in which you might do this is you might say, I have this well-factored piece of code over here.
01:52 And I can call this function and we can, in isolation, test how it talks to some part, something else in the world.
01:59 Right.
02:00 And maybe we'll mock the HTTP later out.
02:03 We talked about REST, RSPX, which was a cool way to mock out HTTPX.
02:09 And, you know, there's VCR and other things like that, which you might do.
02:12 But this kind of allows you to intercept what's actually happening.
02:18 You could use it during tests or you could use it just when your app is running.
02:21 All the HTTP calls coming out of your Python app and then gives you a UI for understanding them.
02:27 Pretty darn cool, I think.
02:28 Yeah.
02:28 Okay.
02:29 So what you do is the thing is called HTTP DBG for debug because those two vowels are hard work, folks.
02:37 And so HTTP debug tool is for Python developers to easily debug HTTP or HTTPS client requests in a Python program.
02:46 All you got to do to use it is instead of saying Python, my app, you say, hi, HTTP debug, my app.
02:54 And it will sort of wrap and mock out all of the stuff.
02:58 Mock is maybe not quite the right word because it still does the action.
03:01 sort of put an adapter or an intercepting layer on top of all your behaviors, right?
03:07 Okay.
03:07 So you get, yeah, it's pretty cool.
03:09 So you get this UI and it shows you all the requests that your app has made.
03:14 And then you can click on them.
03:15 You can put them side by side and compare them.
03:17 All those kinds of stuff.
03:19 Which for the grand total effort of pip install and then run your code slightly differently.
03:25 But it's, you know, that's a lot of benefit and a lot of visibility into your app.
03:30 So if you're doing things like maybe using Postman or something like that to kind of test out the calls and you try to replicate it over there and you're like, why is it not
03:30 quite the same?
03:38 Well, you put this thing on it and see what happens.
03:40 Yeah, I can also see this like as a learning tool while you're just learning how all of this stuff gets put together.
03:46 Like, how does the request get, what does the data look like and what's going on here?
03:52 Yeah.
03:52 It's pretty neat.
03:53 Absolutely.
03:53 Yeah, yeah, absolutely.
03:55 And the other thing you can do is it's not just your direct HTTP calls, like say HTTPX or requests or something.
04:03 If something else, a library you're using is then calling the API and it's not your library, you still get visibility into what that thing's doing.
04:12 Because it's anything the application does, not anything that your code does, which is pretty cool.
04:16 So if you're using, say, the Sentry API and you're like, why is it failing to talk to this thing?
04:21 Like, what is it even doing?
04:22 You know, you just say capture exception.
04:24 But, you know, somewhere along the way, HTTP request is being done.
04:27 So you could intercept that as well, like all the traffic.
04:30 And I guess if you're like, is my thing spying on me?
04:33 Is this library that I'm using reaching out to something that I'm not aware of that's happening?
04:37 You could also catch that theoretically.
04:39 But it supports requests, URL, HTTPX, my fave these days, AIO HTTP, PIP, pytest, UnitTest, and your package.
04:50 Yes, if you include it.
04:51 Anyway, there's, then when you run it, you get a web interface that gives you some behaviors in the UI.
04:56 You can change the strategy to group requests.
04:59 You can hide the scheme, the network URL.
05:01 You can group rows, tags, all these different things.
05:03 So there you have it, folks.
05:04 HTTP.
05:05 I think you're supposed to just say the initials like HTTP.
05:12 This is hard.
05:14 HTTP.
05:15 DBG.
05:16 Yeah, that's.
05:17 Yeah, possibly.
05:18 Anyway.
05:18 Okay.
05:21 Something a little easier to pronounce.
05:23 PyPI now supports iOS and Android wheels for mobile Python development.
05:28 This is cool, I think.
05:30 This is very cool.
05:31 Yeah.
05:31 This is very cool.
05:32 So this is brought to us by Sarah Gooding.
05:35 And so the announcement really is there's been some work.
05:39 Russell Keith McGee has been a longtime advocate to try to push this ball forward and get Python directly on devices better.
05:50 So there's a couple of PEPs, 730 and 738, to talk about adding iOS and Android as a supported platform.
05:58 So now they are their wheels supported there.
06:02 So how do we take advantage of this?
06:05 Well, there are some information in the article that we're linking to.
06:11 But also, let's see.
06:13 There is, there's some tools that I've heard of Beware and we've covered Beware and Kivi before.
06:19 And then Chakopi, Chakopi, maybe?
06:22 I don't think, I don't know if we've covered that.
06:25 But that's another one for Android.
06:27 Yeah, that sounds new to me as well.
06:28 I haven't, I don't remember that one.
06:29 So, however, so you're going to either use these.
06:33 But I was curious about like, so for pure Python stuff, if I want to be able, like, if I'm not doing anything too fancy,
06:39 and I want to be able to have it be installable on one of these, what would I could possibly do?
06:45 And CI Build Wheel is one of the tools that people have used before for other operating systems.
06:53 And apparently that's not ready yet, but that is in the works.
06:57 So CI Build Wheel updates are in progress to simplify iOS and Android wheel creation.
07:03 So soon, more and more third-party little libraries might be in, possibly big libraries might be available for.
07:13 Yeah, that's awesome.
07:14 I'm very excited for this.
07:15 I think this is, you know, there's two areas of Python that are very troublesome, right?
07:22 If someone comes to you and says, hey, I want to do some programming.
07:25 What language should I use?
07:26 Python, that's a great one.
07:27 Yeah.
07:27 So I'm looking to build a mobile app like this.
07:29 Hold on, hold on, hold on.
07:30 I totally retract my statement.
07:31 You can't even, don't do that.
07:33 It's the one.
07:33 And then the other is like Vue, React, other front-end JavaScript-y things, right?
07:38 And what's cool is that the folks at Anaconda are actually really working hard to address both of those.
07:45 And part of what we're seeing here is some of the work from them.
07:48 I actually had, bumping over this way, I had Russell Keith McGee on, the guy behind Beware,
07:55 to talk about the state of Python on mobile just, YouTube helped me out, five days ago.
08:02 Wow.
08:02 To talk about this.
08:03 And he's been working, employed by Anaconda, as part of their open source team for a couple
08:08 years, solving these problems.
08:10 Getting him and a guy named Malcolm are getting peps to have Python officially be, to have iOS
08:18 and Android an official build target of CPython, which is pretty interesting, right?
08:22 Yeah.
08:23 We expect, as part of the core developer process, we should be able to build it so that it runs
08:28 on those platforms.
08:30 And those peps, I believe, are accepted, but not necessarily in yet.
08:33 So that's upstream in a lot of the work that Russell has done.
08:37 And they're using CI Build Will to make this happen.
08:40 So a lot of interesting stuff happening there.
08:42 Yeah.
08:43 Yeah.
08:43 Cool.
08:44 Yeah.
08:44 I wasn't planning to talk about that episode, but since you brought it up, it sounds like
08:48 if you guys are like, wait, what, what is all this about?
08:50 You know, listen, I don't know that much, but Russell gives us the whole rundown last week.
08:55 So you can check that out.
08:55 Can't wait to listen.
08:57 Yeah, definitely.
08:58 Should be out soon.
08:58 Okay.
08:59 No joke.
09:00 How about a game, though?
09:01 Yeah.
09:02 I like games.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:03 I'm ready for the joke.
09:04 But the game.
09:04 So we got a notification from, I can't remember.
09:10 Oh, yes.
09:10 Mayak Simering, who's working on Arcade, the game platform, and it hasn't had any major updates
09:19 for a while until now.
09:21 They just released 3.0 of Arcade.
09:23 So if you are a huge fan of Mario Brothers type of 2D scrolling games, or you want to build
09:30 something like Asteroid, you know, the game from the 70s, that kind of UI, well, this
09:35 is a really great platform for it.
09:37 So what are the changes?
09:38 Breaking changes.
09:40 But, you know, I guess that's expected after a while.
09:42 Drop Python 3.8.
09:43 Seems fine after, you know, the world has moved on from there.
09:47 But texture management completely changed.
09:50 And they used to cache everything.
09:52 Apparently it was too much.
09:53 But now you can reload and probably things are fast enough that you don't need caching.
09:57 It works better.
09:58 Like, keep working memory.
10:00 In the graphics card or something better.
10:01 Remove some stuff.
10:03 Fixed Arcade context and so on.
10:05 But, you know, mostly, I want to put this out there as if you've been thinking of building,
10:09 like a 2D game type of thing.
10:11 And you're like, well, Arcade's interesting, but it hasn't gotten a lot of love.
10:14 Well, now it has, right?
10:15 Last update yesterday.
10:17 Pretty cool.
10:17 You know, actually.
10:18 If you want an example, there's some examples.
10:20 Sorry, Brian.
10:20 There's some examples you can link to off of the Arcade Academy website.
10:24 Go ahead.
10:25 No, I just, you said it hasn't had a lot of love in a long time, but it's still been,
10:29 I mean, I don't know if they needed to fix some things to get it to work on modern Python.
10:33 Okay.
10:34 Yeah, I'm not sure if they, I don't know that they necessarily did, but it just hasn't had
10:37 any major releases, you know?
10:39 Well, I'm noticing, so I've been doing that top pytest plugin thing and investigating a
10:44 lot of the plugins.
10:45 And there's a lot of stuff, I'm noticing there's a lot of stuff that used to be updated a lot.
10:50 And for, just to say, like in the trove classifiers to say, I support, you know, 3.8, 3.9, 3.10.
10:57 And then they just sort of stop.
10:59 But a lot of, I guess, try stuff out because Python has been pretty stable for a lot of
11:07 things.
11:07 And it's been, even though we've gotten some really cool things, it's still very backwards
11:11 compatible.
11:12 So there's a lot of old packages that don't say that they work on modern Python, like 3.13
11:19 or something, but still do.
11:21 So don't dismiss a package just because it hasn't been updated for a while.
11:25 Try it out.
11:26 It might be fine.
11:27 So that's good advice.
11:28 There's one thing where I can't remember if it, was it Rust or some other platform, their
11:34 equivalent of PyPI was they were automatically putting security warnings or something like
11:40 that onto packages that had not had a Git commit in two years.
11:44 But, you know, it might be done.
11:46 There's a thing that could just completely do what it's supposed to do and not need to
11:50 change anyway.
11:51 Yeah.
11:51 Yeah.
11:52 So you can check out the different kinds of games.
11:53 I got some, a bunch of example games that you can play.
11:56 And try on.
11:58 They look, they look pretty cool.
11:59 Like if you're looking for a, I don't want to use Unreal Engine and go completely down the
12:03 higher team of a hundred people to build a game.
12:05 Yeah.
12:05 That's the fun.
12:06 That looks pretty cool.
12:07 It does look pretty cool.
12:08 Yeah.
12:08 Yeah.
12:08 And I think it's, I think it's OpenGL based.
12:11 Pretty sure.
12:11 Is that right?
12:12 Yeah.
12:13 Yeah.
12:13 It's built on top of Piglet and OpenGL.
12:15 Yeah.
12:16 So use your graphics card for all sorts of fun stuff.
12:18 Yeah.
12:19 Yeah.
12:20 I guess I'm, I'm on tangent mode right now.
12:23 I guess I was thinking about games and a lot of people think, I think a lot of kids get
12:27 into like want to get into programming because they think game programming would be fun and
12:32 game programming is hard.
12:34 And I mean, there's a lot of programming that's hard, but, but big game programming, there's
12:38 a lot of stuff going on.
12:40 And, and it doesn't necessarily, I just don't get frustrated if you start game programming
12:45 and it, it, it's a little difficult and that's, there's a lot of programming that's pretty, pretty
12:49 straightforward.
12:50 Yeah.
12:51 So yeah, I totally agree.
12:52 I, I did some of my first programming was 3d simulators in OpenGL and it was not the easiest
12:58 thing ever in C++.
12:59 Yeah.
13:00 Nice.
13:01 Okay.
13:04 Well, other things to not do, is don't, okay.
13:10 I'm, I think I'm going to have too many negatives here.
13:12 I just, I guess one to announce that PEP 765 has been accepted and PEP 765 is to disallow
13:21 return, break, and continue, that exit a finally block.
13:25 That's a lot of terms.
13:27 So what am I saying?
13:28 it's that there's the keywords return, break, and continue shouldn't show up.
13:34 In a finally block.
13:35 And, when I first saw this, I'm like, why would I do that anyway?
13:39 I, I just don't, I usually put pretty simple stuff in finalies and I wouldn't ever think
13:44 to do a, I might think to do a return or anyway, that the, the, the, it's just bad.
13:50 And the behavior apparently is surprising.
13:52 So, so they really would hope to not have that in there.
13:56 So apparently this was rejected once before, but now it's accepted slightly different.
14:01 There's a, the, I guess there's some, cost benefit analysis of the change that was
14:06 done and it will be better for everybody if we do this.
14:10 However, because of some backwards compatibility stuff, it will not be a syntax error.
14:17 It will be a syntax warning.
14:18 So I guess, we'll, we'll rely on, people running with dash W a or having rougher
14:27 like eight or pilot or something.
14:29 Check this stuff for us, but basically don't, don't do it.
14:32 Just don't.
14:33 So it's not good.
14:34 Not good.
14:35 Yeah.
14:35 I can sure.
14:36 I can sure.
14:36 I can sure see return in it.
14:37 Finally.
14:37 That makes a lot of sense to me.
14:39 I, it's a little, I'm not sure why return is pulled out, but like break and continue
14:44 and other looping.
14:45 And I can see why that's all right, but yeah.
14:47 Yeah.
14:47 Whatever.
14:48 I mean, it's not hard to work around.
14:49 Just that.
14:52 Yeah.
14:52 So this isn't a big topic.
14:53 Just, just to be aware if you're doing something fancy within your finally blocks,
14:58 pay attention to this.
14:59 Stop.
15:00 Stop.
15:00 Stop.
15:01 Stop.
15:01 Apparently.
15:01 Yeah.
15:01 All right.
15:02 Well, we're going to stop with our items, aren't we?
15:04 Yeah, we are.
15:04 We got some extras.
15:05 We sure do.
15:06 So exciting.
15:07 Let me fire some up.
15:09 So remember our teapot episode for 18.
15:12 I'm a teapot.
15:13 Well, we had our joke about the teapot and, I think the person who created the joke that
15:19 we covered felt that he didn't get enough love or something like that.
15:23 Cause we pulled up a post somebody had on Mastodon, Mastodon, Blue Sky, Blue Sky, I think that
15:29 said, Hey, funny joke.
15:30 Person shared it.
15:31 Well, Nikita says important correction.
15:34 we, I think it's, I, I created this joke.
15:36 So anyway, thank you, Nikita for, creating this joke.
15:40 It was very funny.
15:41 So I'll, I'll link to that to give him a little bit of credit.
15:44 Next up, Brian.
15:45 Oh, it's just like a slightly different name.
15:47 So Nikita reported it.
15:48 It was a joke by Nikki Tonsky, a different person.
15:52 Oh, different.
15:53 Okay.
15:54 All right.
15:54 Perfect.
15:55 Well, thanks for the correction.
15:56 So I have something really surprising.
15:58 So check this out.
15:59 I had a Mac mini M1, the very, very first.
16:03 Apple Silicon Mac that came out, the Mac mini.
16:06 I got it in 2020.
16:07 And I remember, I think we talked about this at the time in 2020.
16:11 I'd already ordered the new MacBook pro, which was still the Intel.
16:15 Then I saw the Apple Silicon stuff come out and I actually canceled it and like reordered
16:19 the mini.
16:19 And it was best decision ever.
16:21 Well, good decision and worked out great, but it's just been chilling around here.
16:26 I've had my Mac mini M2 pro that's all maxed out and it's been laying around at that.
16:31 You know, I'm not doing a lot with the other one, but I wanted to set it up so I could do
16:34 easier recording.
16:34 And I'm like, starting to get a little slow, but you know what?
16:37 I'll just, I'll just live with it.
16:39 I don't really need to buy a new mini.
16:40 Like I don't need to waste the money just for that.
16:42 And then for some reason I start, I saw the, that Apple started having refurbished ones that
16:47 you could buy.
16:47 And it turns out to not be a very good deal.
16:49 It's like, Hey, the refurbished one's like 579.
16:51 The new one's 599.
16:53 And I go, wait, I'll just take the new one.
16:55 I looked at what would my old 2020 Mac mini trade in for?
17:00 Well, first of all, how much is a new Mac mini with the M4 10 core, 10, pretty much the same
17:06 specs except for the hard drive.
17:07 Oh, and it's the brand new way, way faster computer.
17:10 599, 600 bucks us.
17:12 Wow.
17:12 My old mini from five years ago traded in for 425.
17:16 What?
17:17 So I got a brand new Mac mini M4 for $175.
17:23 I want to point out anyone else before any of this stuff changes, you might also want to get a new
17:28 mini for $175.
17:29 If you have a five-year-old one, how awesome is that?
17:32 Yeah.
17:32 I think mine's only a couple of years.
17:34 I should check it out, but it might be worth checking out.
17:37 And I ran it through geek bench here.
17:39 And even against my M2 pro, which is way faster than my old mini, it is this new one that was $175,
17:47 a lot faster than even the M2 pro single core is like 40% faster.
17:53 Even multi-core is something like 20% faster for that little bit of money.
17:59 So, hey, that's just putting it on the radar.
18:01 Y'all might want to check that out.
18:03 That's a pretty good trade, in my opinion.
18:05 Nice.
18:06 All right.
18:07 That's all for my extras.
18:08 But yeah, I just thought that that was a really surprising thing.
18:11 I'm like, you know, all right.
18:13 Okay.
18:14 I'll do the trade.
18:15 I'll trade the mini.
18:16 A couple extras.
18:17 Also, I just really love using the mini to record with because it's always silent.
18:22 It's always silent.
18:24 And it's...
18:24 Yeah.
18:25 And they're pretty cheap, even go big.
18:28 So I just went for a bottom-end one.
18:30 I think I spent $400 on this or something.
18:32 Ridiculous.
18:33 Well, you probably can trade it and get one for like another $20.
18:35 Yeah, maybe.
18:36 So I have mentioned before that I'm not a fan of Scheme and Lisp.
18:42 And I guess I just want to hit a nerve for at least one person.
18:50 Philip.
18:50 And I'm sorry, Philip.
18:52 I'm not going to try to pronounce your last name.
18:54 But it looks cool.
18:55 Lisiak?
18:55 Something like that?
18:56 Okay.
18:57 Lisiak?
18:58 Nice.
18:59 I'll probably mess it up, but we'll see.
19:00 Okay.
19:00 But he decided to...
19:04 And we interacted on the...
19:07 I think Fosstodon or Blue Sky or something.
19:09 And just kind of...
19:13 He said, you know, basically, what do you got against it?
19:15 I'm like, I don't have anything against Scheme, really.
19:18 I just...
19:18 Personally, me, I didn't find a lot of use for it.
19:21 And we talked about it.
19:21 And I actually wrote up this big conversation with him that I need to make into a blog post.
19:26 Because I do appreciate that I learned Scheme.
19:29 I just haven't used it a lot.
19:30 So...
19:31 And he said, there's a lot of uses.
19:33 And I said, I'd love to hear some.
19:35 And he's like, oh, okay.
19:36 Well, then I'm going to have to write a blog post.
19:38 So he wrote My Land of Scheme in 2025.
19:42 So we're going to link to a blog post of all the cool stuff that Scheme does lately.
19:49 At least from his perspective.
19:50 So that's cool.
19:51 And then...
19:52 Actually, I really enjoy his writing style.
19:56 So I really like good long-form blog posts.
20:00 But anyway, good writing style.
20:01 Thanks, Philip.
20:02 And he also just recently released another article, Exposing Flaky Tests with pytest Rerun Failures.
20:09 And it's a plugin that I've used a lot too.
20:12 So cool writing.
20:14 So keep up the blogs, people.
20:16 Like it.
20:16 And I'm really sorry if I have offended anybody that likes Scheme or...
20:22 Or what else?
20:23 Who else can I offend?
20:24 Pearl writers?
20:27 C-sharp.
20:27 C-sharp.
20:28 I just don't enjoy writing C-sharp in Scheme.
20:31 It isn't anything against the language.
20:32 It's just not for me.
20:33 So anyway.
20:35 All right.
20:35 Well, I can see why it's tough, Brian.
20:37 I can see why it's tough.
20:38 I actually pulled this joke up when I thought of...
20:41 I can see why it's tough.
20:42 And I thought of you when I said...
20:44 So, question.
20:45 This is like you being too logical or you may be a tester.
20:49 When I was four, my sister was two.
20:51 I'm now 44.
20:52 How old is my sister?
20:54 Programmer.
20:54 Easy.
20:55 44 minus four, but minus two from that.
20:58 And all that.
20:58 That's two years difference in the gap.
21:00 So, 42.
21:00 Tester.
21:01 Well, you see.
21:03 This is a tough one.
21:04 She might be 42, but she could be 41 or 43 also.
21:08 Since you didn't say when your birthday is and her birthday is.
21:11 Also, she could be dead.
21:12 Finally, I thought she was your sister.
21:15 You might have thought she was your sister, but actually your mom had an affair with another
21:19 man and a woman who was one.
21:21 And it turns out it's not your sister.
21:23 So, with that...
21:24 You know, and on and on it goes.
21:26 Give it away your real sister.
21:27 You don't know how old she is.
21:28 Finally, what if you think your sister is dead, but she actually has become an astronaut on
21:32 a secret government project and she's been traveling at near light speed.
21:36 Now, her time is going much more slowly.
21:38 She could actually be younger than 41.
21:41 You see, it's hard to be a tester, right?
21:42 Yeah, I like it.
21:47 I like Anthony's answer.
21:49 Two is half of four.
21:50 So, if...
21:52 Oh, my God.
21:53 Hey, Anthony.
21:53 Shout out in the audience there.
21:54 You are absolutely right.
21:55 And if you go to the YouTube comments, it's...
22:00 Duh.
22:01 She's 22.
22:02 Then it says...
22:04 Someone else says, a fellow McDonald's graduate, I see.
22:07 Yeah, that was an easy one.
22:08 Oh, follow up.
22:10 That's a chat GTP answer.
22:12 Chat GPT answer.
22:13 Last time she was half your age.
22:15 Oh, my gosh.
22:16 Okay.
22:16 Oh, and nice inside joke there.
22:20 Anthony making fun of AI since he's pretty much an AI pimp these days, as far as I remember.
22:27 But anyway.
22:31 Anyway, the comments are pretty funny as well.
22:34 And then someone just responds green.
22:36 Green.
22:36 Awesome.
22:37 Awesome.
22:40 Well, it's great to have people in the audience to chat with and be part of the show.
22:45 And, Brian, great to be here with you, right?
22:47 It's good to be with you.