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

#443: Patching Multiprocessing

Published Mon, Aug 4, 2025, recorded Mon, Aug 4, 2025
Watch this episode on YouTube
Play on YouTube
Watch the live stream replay

About the show

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: rumdl - A Markdown Linter written in Rust

  • via Owen Lamont
  • Supports toml file config settings
  • Install via uv tool install rumdl.
  • ⚡️ Built for speed with Rust - significantly faster than alternatives
  • 🔍 54 lint rules covering common Markdown issues
  • 🛠️ Automatic fixing with -fix for most rules
  • 📦 Zero dependencies - single binary with no runtime requirements
  • 🔧 Highly configurable with TOML-based config files
  • 🌐 Multiple installation options - Rust, Python, standalone binaries
  • 🐍 Installable via pip for Python users
  • 📏 Modern CLI with detailed error reporting
  • 🔄 CI/CD friendly with non-zero exit code on errors

Brian #2: Coverage 7.10.0: patch

  • Ned Batchelder

  • Actually up to 7.10.2 as of today

  • patch allows coverage to run better when a covered project uses

    • subprocesses
    • os._exit()
    • execv family of functions
  • Looking at subprocess

    • “Coverage works great when you start your program with coverage measurement, but has long had the problem of how to also measure the coverage of sub-processes that your program created. The existing solution had been a complicated two-step process of creating obscure .pth files and setting environment variables. Whole projects appeared on PyPI to handle this for you.”
  • From release notes

    for 7.10.0

Michael #3: aioboto3

  • via Pat Decker
  • Wrapper to use boto3 resources with the aiobotocore async backend
  • aiobotocore allows you to use near enough all of the boto3 client commands in an async manner just by prefixing the command with await.
  • With aioboto3 you can now use the higher level APIs provided by boto3 in an asynchronous manner.

Brian #4: You might not need a Python class

  • Adam Grant
  • This is an important periodic reminder to everyone coming into Python from other languages.
    • Many other languages lean on classes a lot more than we need to in Python
  • Adams suggestions
    • Simple Data Containers: Use Named Tuples or Data Classes
    • Stateless Utility Functions: Just Use Functions
    • Grouping Constants: Use Modules
    • Managing State with Simple Structures: Use Dictionaries or Lists
    • Simple One-off Operations: Use Lambdas or Comprehensions
      • I’ll add “just use functions”
    • Avoiding Complexity: Built-in Libraries
    • When You Actually Need a Class
      • I’ll add
        • You probably don’t
        • If you think you do, ask a friend. Friends don’t let friends create extraneous classes in Python.
        • If you think your case is an exception, it probably isn’t
        • If you think dataclasses aren’t right for you, check out attrs

Extras

Brian:

Michael:

Joke: Default text editor

Episode Transcript

Collapse transcript

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

00:04 This is episode 443, recorded August 4th, 2025.

00:09 And I'm Brian Okken.

00:10 And I'm Michael Kennedy.

00:11 And you can reach us on the socials on Blue Sky or Mastodon.

00:17 Check out the show notes or the website, pythonbytes.fm, to find all those links.

00:23 And if you'd like to watch us live, you can check out pythonbytes.fm/live.

00:30 and it's usually Mondays at 10 a.m. Pacific time.

00:33 But you can go there for all the older, to link to the YouTube channel to get all the older episodes as well.

00:39 And this episode is sponsored by you guys, by the offerings that both Michael and I have.

00:48 And you're supporting us through that really helps us going to getting courses, buying books.

00:54 That's pretty much it.

00:55 Also Patreon.

00:56 So thanks Patreon people.

00:57 Let's kick it off.

00:58 What you got, Michael?

00:59 I have something sent in from Owen Lamont.

01:04 And so, Owen, thank you for sending this in.

01:06 I believe we've talked about Markdown formatting stuff before, but I want to look at this one because it's got some rough vibes.

01:15 R-U-F-F, not R-O-U-G-H.

01:19 Rough vibes in that it's a formatter written in Rust, seems insanely fast.

01:25 And even though it's a general purpose thing and it's written in Rust, it has special love for the Python people.

01:33 So there's a PyPI wrapper, basically a wheel that wraps up the commands going to it.

01:39 So you can pip install it, uv pip install it, more importantly, uv tool install.

01:45 It also has a pre-commit hook and pyproject.toml support.

01:50 Pretty neat, right?

01:50 Very cool, yeah.

01:51 I just ran it on a project I'm working on.

01:53 And apparently, what did it say?

01:55 How many errors?

01:56 14, 14 errors I found in my, and it will fix them in the similar way if you do a --fix, I believe.

02:03 So that's pretty cool.

02:04 High performance markdown formatter.

02:07 So you can install it in lots of ways, but I would just uv tool install it.

02:12 It has 54 linting rules, which are apparently common markdown issues.

02:18 Like if I have a heading, there should be a line break between the heading and the content of that section.

02:23 You can fix most of them with --fix, like I said, which is beautiful.

02:27 No dependencies, single binary.

02:29 Highly configurable, which is great because a lot of the warnings I get when I run it are this line length of 102 exceeds the 80 character limit.

02:37 I don't know, like when do people, when do we move on from the 80 character limit in like things, Python and other?

02:45 I have a 4K monitor, 32 inch 4K monitor.

02:47 If I put stuff in 32 or 80 columns, it's like on the left and the 80 columns is like, well, that's the default size of a terminal.

02:54 Like, okay, is that where most of our markdown is done?

02:57 Probably not, but I don't know.

03:00 I'd say make it long and let it wrap.

03:02 The reason I don't like that rule, particularly for markdown is I use type-ora, which I love.

03:07 But type-ora, it keeps a little more of the formatting visually there.

03:13 So even if I was to like do the markdown and render it to a webpage or to a PDF, the line breaks would disappear 'cause you have to have two line breaks, right?

03:22 Like a blank line.

03:23 But in Typeora, while you're editing it, you see them.

03:25 And so you would see like chunks.

03:27 So if I make my editor wider, it like stops going.

03:31 If I make it skinnier though, then it like has like weird half line breaks because it's wrapping the 80 lines to like 60 and then there's 20 more.

03:39 And like, it's just, I hate that rule.

03:42 So why am I ranting so much?

03:44 Well, because I rant apparently.

03:45 But it's also super configurable.

03:47 So you can go to a Tommel file down here.

03:51 And once you find it in here, it has a bunch of examples.

03:55 I think up at the top here, there.

03:57 And you can go in here and it gives you examples.

04:00 Like I can say disable rule MD013.

04:03 Or in my case, yes, that's the one.

04:06 Of course it's 13.

04:07 It's unlucky.

04:07 But you can also configure the rules.

04:09 Like say rule seven is about indentation.

04:12 How many characters, how many spaces do you want to indent by?

04:15 Or different things, right?

04:17 Don't apply the line length considerations to code blocks or tables, but override the line length to be 100.

04:24 Again, I'm turning that off.

04:25 But still, I guess I could set it to infinity.

04:29 That would be fine.

04:30 But isn't this cool?

04:31 Yeah, it is really cool.

04:33 I want to jump on the line length bandwagon a little bit here, though.

04:36 Let's do it.

04:38 I agree.

04:39 I'm glad this is configurable.

04:40 Because in writing a book or something or a tutorial, I'm going to have long paragraphs.

04:46 And I'd rather have those just wrap, and I don't want to limit my line length.

04:51 So I would turn that off if I'm writing long form stuff.

04:54 Yeah, I'm thinking my blog posts and things like that, right?

04:57 Which are all marked down.

04:58 But for the markdown in a project, even if it's a documentation project in maybe, I guess, I can see it for readmes or something or things that are changing a lot because you're doing diffs more.

05:11 You do have to be aware of the diffs.

05:14 But I think diff tools deal with word wrap fine now.

05:18 So anyway, I don't know.

05:20 Yeah, that's a fair issue.

05:21 Fair point.

05:22 But if you got long form writing, it doesn't make sense.

05:25 Yeah, it doesn't make sense at all.

05:26 Yeah, that's weird.

05:27 It's not like in Word or Google Docs.

05:30 Like, where do you want to break your lines?

05:31 Like, no, I want it to just go across the page.

05:33 Can we just let me write?

05:35 Yeah.

05:36 All right.

05:36 But it's super cool.

05:37 You can, like I said, uv tool install it.

05:40 It even has instructions for uv.

05:42 Or you can use uvtool run.

05:45 And so you could run it without even actually installing it just to test out how it might go.

05:48 Yeah.

05:49 So what's the big, do you know what the biggest mistake is you usually make for Markdown?

05:54 I haven't done enough messing with it yet, but I can report back to you.

05:58 Okay.

05:59 Mine, I haven't even used the tool yet, but I'm looking forward to trying it because the thing that always trips me up is a space before unordered list.

06:08 So if you write a sentence with a colon and then you do a new line, and then you start like, you know, do the asterisks or dash or something like that and start a list.

06:17 Some tools will automatically understand that you intended it to be a list, and some of them don't, and you just get a bunch of asterisks in a paragraph.

06:27 So, yeah, I need something to fix that for me.

06:30 Definitely.

06:32 All right.

06:33 On to the next topic.

06:35 We are, I want to talk about coverage because Ned Batchelder released, This is a blog post from the end of July, July 24th.

06:45 Coverage 7.10.0 with patch.

06:48 So we're actually up to 7.10.2 now, but it's the patch that's like the super cool news.

06:55 And I just read about this, and I am like really excited about it.

07:00 So one of the things, it adds three things.

07:03 So if we go to the changelog, It's adding patch subprocess, patch execv, and patch exit or underscore exit or something.

07:14 And I'll do the weird ones first.

07:17 I don't really see execv around.

07:20 But the issue with execv and exit is that that's a way, like something happens and your stuff gets torn down before coverage has a chance to write its stuff.

07:32 It just like processes stop.

07:34 And that's not cool.

07:36 But with this, you can fix that.

07:39 And there have been workarounds for these other things.

07:42 And so that's not really the big news.

07:44 The big news, I think, is subprocess.

07:46 Because there were ways to, if you're trying to run coverage on a project that has subprocesses, you have to have some way to cover all of those processes and then combine them later.

07:57 And there were ways to deal with it, but it was a little clunky.

08:00 Now, we've got a way to do it built in.

08:04 You just say patch equals subprocess and coverage does it for you.

08:09 How cool is that?

08:09 And multiprocessing.

08:11 It'll count multiprocessing execution for coverage.

08:14 That's, yes.

08:15 Thank you, thank you, thank you, Ned.

08:17 So I'm really excited about this.

08:19 It's pretty cool.

08:20 Anyway, that's it, really.

08:22 Awesome.

08:22 Yeah, it's a really good one.

08:24 Short and sweet.

08:25 This one comes to us from Pat Decker, I believe.

08:28 I hope I'm remembering that right because I forgot to write it down.

08:31 So someone else sent it in.

08:33 I apologize.

08:33 I'm pretty sure it's Pat sent this over and it's AIO Bodo 3.

08:38 So Bodo 3 is the Python package to talk to things like S3 and other stuff in Amazon.

08:47 Okay.

08:47 And AWS.

08:48 Don't get me started on Bodo 3.

08:50 It's a bit of a insane package the way it's created.

08:53 But what I want to talk about is AIO Boto3, which is a wrapper on top of Boto3 resources that leverages the AIO Boto core async backend.

09:04 So what's going on from here?

09:06 It's a package by Terry Kane, and she created, I think, to basically make higher level operations, which you would use from the Boto3 level instead of the Boto core, which is more low level detailed interaction with AWS.

09:20 us. But there was an async low-level one, but not an async high-level one. And so now there's an async high-level one. So for example, do you want to work with S3 contents asynchronously? Well, here you go. So you can do things like create a session and then say async with, go to a resource for S3, then await getting a bucket, and then loop over asynchronously with an async for across all the items in that bucket. So if you want to do a bunch of S3 type of work or DynamoDB or Kinesis, whatever, then you want to do that asynchronously. Well, here you go. Also, she has an example of working with a DynamoDB table and reading and writing objects into it, which is pretty sweet.

10:07 What's Kinesis? What is Kinesis? Good question. Is that an AWS thing? Yeah, looking that up.

10:13 this. That's not how you spell it, but luckily. I just thought it was keyboard.

10:17 It's a family of services provided by AWS for processing and analyzing real-time streaming data at a large scale.

10:23 I'm glad you asked, because this is what I've been working for a long time around.

10:27 Okay. Sorry. No.

10:29 Apparently, like, data streaming, data lake, data processing, analytics.

10:33 Okay. Got it. Cool. That's it.

10:35 That's all I got to say about it, but if you're basically if you're using Boto3 and you want to do async, AIO Boto3.

10:41 Alright. Well, I Sorry for the distraction, but I wanted to...

10:46 Anyway, I have a Kinesis keyboard.

10:48 That's why I'm like, what?

10:49 Yes, you do, don't you?

10:51 Tell people what it like.

10:52 Here, put one up on the screen.

10:56 Yeah, I was trying to look for one.

10:57 Kinesis keyboard images.

10:59 Oh, here we go.

11:00 Did you find one?

11:02 No.

11:02 No.

11:03 There we go.

11:04 They are wild.

11:04 I had one for a while.

11:05 I'm like, I'm not sure I can do this.

11:07 Oh, I love it.

11:08 So I just did the image search.

11:11 um yeah they're split like this uh and it's in there and also your your keys are in little

11:18 little divots yeah like maybe if i could describe it for people ryan like imagine you took an orange you cut the orange in half you took out the orange fleshy bit and you lined the inside of the orange peel with keys that's what typing on is like you type into like these round holes okay but i would

11:37 say like coconuts maybe because it's bigger but we're like a coconut where you just work with like the lower third and the top third yeah but one of the things that's cool about these is they're in

11:47 uh do you remember the men in black movie oh yeah yeah they're well i did till they flashed me but

11:52 you know well the men in black movie had um if you the office scene in the first first uh one

12:00 um everybody's weren't using kinesis it's pretty cool were they okay how awesome all right um i i'm

12:07 I wasn't going to talk about keyboards, but what am I talking about?

12:11 I'm going to talk about You Might Not Need a Python Class by Adam Grant.

12:15 So I think we've probably talked about this before, but it's worth reminding people because there's a lot of people that come in to Python from other languages and classes are used a lot in other languages and you don't really have to use them here so much.

12:30 So I'm just going to run through some of the options.

12:32 One is for simple data containers, think about named tuples, which are great, or data classes.

12:39 Actually, probably data class first, and then if it's not quite right, named tuple.

12:44 But here's an example of somebody doing a custom class with point.

12:48 And also, the intending is wrong here, Adam, but oh well.

12:53 Anyway, examples of how to use that with a named tuple or just a data class.

12:58 So it works pretty good.

13:00 You don't usually have to create your own classes.

13:02 - All right, I don't really see that.

13:04 - Also, if you're creating a class with a static variable, there's a really good chance that should just be a module level variable.

13:12 Like modules themselves often can behave in the same way that people do classes.

13:17 Like I wanna group the functions together and have some shared data.

13:20 - That's a module.

13:21 - Exactly, exactly.

13:23 - Yeah, so that's one thing that's not in this, but one of the things I've taught people for a long time is if you think you need a singleton pattern in python it's just a module just do a module 100 and there isn't any really and if you're afraid of global data in python it's not really global it's just global to the yes it's accessible to anything but it's just module global it's not a big not a big deal anyway uh examples with points uh but there's some surprising stuff in here uh stateless utility functions just use functions and here's a yeah this is somebody that must have came from if you if you if everything's just that like you said if everything's a static method then it doesn't need to be there just make it a function um grouping constants also use modules um well there's also enums that you can do but uh but anyway um yeah if you're just having some constants and you're trying to group them together just put them in a module um for some reason this freaks people out sometimes and i think it's just the people that are new to python but yeah i think

14:25 I mean, I came from C-sharp, which had a lot of class, very much.

14:29 Like, everything had to be in a class at the time when I was doing it.

14:31 Like, literally everything.

14:33 So I was very much in that space, but I've moved on.

14:36 Also, on the constants, I agree.

14:39 But maybe throw in a typing final of type.

14:42 So they've got, like, a host and a port.

14:44 You could have a typing.final bracket str and a typing.final bracket int.

14:48 Oh, yeah.

14:49 Yeah, so then at least the editors and stuff go, yeah, like, don't edit this.

14:52 Don't edit it, yeah.

14:53 unless you're meant to but the way they say the word constant that probably means not so much

14:57 changing yeah but also having it in a class and it stopped people from changing it either

15:02 no at least you get a warning yeah tells you you're bad if you want to be bad uh managing state with

15:08 uh simple structures use dictionaries or lists definitely um what the a lot of this the gist is python is a lot of built-in stuff that you can just you know learn how to use dictionaries and lists well. It'll take care of a lot of stuff. This one is surprising to me. Simple one-off operations. Use lambdas or comprehensions. I mean, sure, the example works for a lambda and comprehension, but also you could just use a function. If you're going to grab a lambda, you could just write a function. Yeah, lambdas are great. Avoiding complexity. Use built-in libraries. Don't reinvent the wheel. There's probably something that is an example with config parser or json they usually they they can do a lot um yeah uh and then this is this is i'm glad we tie into your first uh first topic when you actually need a class well there's a bulleted list but they didn't do a new line so it i'm pretty sure it was a markdown that didn't get converted correctly so um yeah anyway uh and i'd like to add what are my additions if you think you need a class, you probably don't. If you really do think you do ask a friend because friends don't let friends create extraneous classes in Python. And then if you think you're the exception, it probably isn't an exception. But, and then finally, I'd like to say, if you, if you think you need data classes, but data classes aren't quite cutting it for you, check out adders. Adders

16:37 is still around and adders is awesome. So yeah. Or pydantic. Yeah. Or pydantic. Yeah. When the when you actually need a class yeah i'm i agree with this i like it yeah well so what did

16:47 he say he said um uh you if you need to encapsulate state or behavior yes but also uh you can use a data class or a module yeah um you if your objects have clear behavior method behavior slash methods associated with their data and you're modeling complex hierarchical stretch structures yeah i'm

17:08 I'm thinking the middle one.

17:09 If you have data that is tied to an instance of the class, you need to have multiple ones of those and the methods operate on that particular data.

17:19 I mean, that's when you need it, right?

17:20 Not for all the other jumps and hoops people used to use it for.

17:23 And as far as inheritance hierarchies go, since I've been using Python, I have multiple times created class hierarchies and then regretted it.

17:34 I don't think I have any that were legitimate reasons to use a class hierarchy.

17:40 But also, after using Python so much, I don't create class hierarchies in C++ much anymore either because I like using containment instead of inheritance, I think is a cleaner model.

17:56 So anyway.

17:57 Yeah, composition over inheritance indeed.

18:00 That's it.

18:01 It's a long way.

18:02 All right.

18:02 Those are our topics.

18:03 Do you have any extras?

18:06 I have at least one extra.

18:08 Let's see what I can do about that.

18:10 So this Thursday, as in three days from now, eight o'clock Pacific time, I will be doing a live webcast

18:19 with Will Vincent from PyCharm.

18:21 Yeah, so we're talking about basically uv, what is uv, all the way that you can apply to your projects.

18:27 Should be a lot of fun.

18:28 I'm really looking forward to it.

18:29 I wasn't entirely sure what we were going to cover.

18:31 Will and I talked about it today.

18:33 I have a bunch of great ideas.

18:34 Cool.

18:34 So if you want to see uv in action, we talked about that post from Armin Roeneker, I don't know, a few months ago or whatever.

18:41 Why are you not using UV?

18:43 If you're not, why?

18:44 A lot of people are like, what's UV?

18:45 Or it's too hard to move from, or it doesn't, whatever.

18:48 We'll kind of address all that kind of stuff.

18:50 Plus, maybe some fun Docker things, some performance things, all over the place.

18:55 Awesome.

18:56 Yep.

18:56 I have a couple extras.

18:58 All right.

18:59 So first off, this was sent to us by listener John Hagan.

19:06 The PyPI blog has an incident report about a phishing attack.

19:10 So apparently there was some targeted phishing emails.

19:16 There were some, and I didn't read this that closely, but it's creepy because it was a phishing attack that involved a fake PyPI that had like a phishing domain that was in the middle.

19:30 So if somebody clicked on the link, it all behaved just like PyPI, but there was somebody in the middle capturing stuff.

19:40 That's really creepy.

19:42 What was it?

19:42 It involved, and it involved like the fact that in some fonts, INJ look identical.

19:49 So it was a pypj.org domain.

19:54 Yikes.

19:54 Anyway, I just wanted to have people aware of that.

19:57 It was apparently found and fixed relatively quickly.

20:01 There were, I guess, four user accounts successfully phished.

20:07 They're either disabled.

20:08 So there's some recommendations, takeaways, calls to action.

20:13 If you have a dormant PyPI account, so if you have a PyPI account you're not really using, consider removing it.

20:19 You can always create another one if you need to later.

20:22 If you have an older PyPI account and you're not using 2FA yet, please sign up for that.

20:28 Even if you only pop in once a year, make it more secure.

20:31 Be good.

20:33 And use web often via browser hardware security or hardware security keys.

20:38 Wow.

20:39 I don't even know.

20:40 Is that just web authentication?

20:41 I don't know.

20:42 I don't know what this is.

20:43 I think it's like YubiKey type stuff.

20:45 Okay.

20:46 I don't do it though.

20:47 So I don't know that well.

20:48 I'm all about the 2FA.

20:50 And I'm all about the 45 character password, but I'm not doing web often.

20:55 45 characters?

20:56 Wow.

20:57 Or whatever.

20:58 Like, I'm so frustrated.

20:59 There's so many websites out there that you'll set.

21:02 Like, I used to have a default.

21:03 I think it maybe was 36 and one password for randomly generating a password.

21:08 I'm like, that should pretty much stop it.

21:10 You know what I mean?

21:11 Yeah.

21:11 Right?

21:13 And God forbid there's like a moment or two where you've got to type it in.

21:16 Like, for example, on Windows, If you get a new system, you got to log into your Microsoft account before you get into the system, the first boot or something.

21:25 Like, oh, God, I got to type it.

21:27 So you don't want it to be like, you know, paragraph.

21:31 But so many websites go, no, your characters have to be, your passwords have to be less than 16 characters or less than 12 characters.

21:39 I think my bank would limit it to like less than 10.

21:42 I'm like, my bank, what is wrong with you people?

21:44 if anybody should accept that, you know, a big password, but it's a tech support.

21:49 They're like, well, somebody is going to say they're locked out of their account because somebody put a long password and they can't type it in or, you know,

21:54 there's all these crappy reasons.

21:56 What gets me is when people like passwords get, when they exclude common characters like colon or quote mark or like really your system is not able to handle colons and a password.

22:10 That's just like insane.

22:12 Anyway, or so.

22:13 Yeah, I agree.

22:14 Yeah, I agree.

22:15 But anyway, okay.

22:16 So phishing attack, I've got a couple other quick extras.

22:20 I do have some, I'm not dedicated to the weekly testing code, but lately it's been weekly.

22:26 So testing code, I got a couple, had an interview with Adam Johnson that was two topics.

22:31 We split it into two episodes.

22:33 Both are now available.

22:34 We had pytest Django that we talked about.

22:36 And then we talked about get tips for testing.

22:40 And the top, especially some of the stuff on the get diff, get stash, and get bisect sections are pretty interesting.

22:49 So some good stuff there.

22:51 Yeah, very nice.

22:52 And those are my extras.

22:54 All right.

22:54 Do you have a joke?

22:55 I do.

22:56 But this joke, you know how they say jokes are not funny if you've got to explain them.

22:59 I'm going to explain this anyway.

23:01 But not the joke itself.

23:03 I'm going to explain the foundational information people need to know.

23:07 So a lot of times people say these days, Brian, they say, Visual Studio, I'm using, like, what editor do you use?

23:12 Oh, I use Visual Studio.

23:14 They're not using Visual Studio.

23:15 They're using something called Visual Studio Code or VS Code, right?

23:18 Yeah.

23:19 There is, there has been, since the 90s, an editor called Visual Studio.

23:24 It is not Visual Studio Code.

23:25 It is a beast of a beast.

23:27 Like, it's like a five gig download.

23:30 It manages Azure.

23:33 It does database.

23:34 It does team foundation server.

23:37 It does like all this stuff.

23:38 It's like a really heavyweight editor.

23:41 And VS Code was basically created to make a lightweight little editor that is not Visual Studio proper, right?

23:48 Yeah.

23:48 All right, so I got to just set that because I know a lot of people, especially younger folks, Visual Studio is Visual Studio Code.

23:54 But now are you ready for the joke?

23:56 Yeah.

23:56 All right, let's do it.

23:57 So there's a nurse talking to a guy.

24:00 Do you have any history of mental illness in your family?

24:04 The guy looks over as well.

24:06 My brother uses Visual Studio 2022 as a default text editor.

24:17 Yeah, that's good.

24:18 Yeah.

24:18 It's pretty good, right?

24:19 Pretty good.

24:20 Because that thing is big and it's slow to start and it's like ridiculous.

24:25 Default text file editor.

24:26 Yeah.

24:27 That's the joke.

24:27 That's what I got you.

24:29 So I haven't had to use Visual Studio for a while, but we did used to i was using it for compiling stuff and i i can't remember what the short code was for compiling it was like f7 or f11 or f2 one of the f keys was just to compile and so whenever anybody asked me or do you use visual studio i'm like just as a really big uh thing to hit f7 with um or whatever yeah yeah yeah yeah um so yeah and that it's true i would i would edit in way back in the day.

25:02 It was before Visual Studio or VS Code. So I was probably editing it in Vim or Sublime or something like that. And then I'd have Visual Studio off to the side and I would just go over to it and hit the key to compile and then go back to my day.

25:21 This is what it is.

25:22 This is a good one. I like it.

25:24 I do too. I used to use Visual Studio and I enjoyed it. I thought it did cool stuff.

25:28 as a default text editor for just simple files.

25:31 It is not what it was for.

25:32 Yeah, I had people like composing their email in Visual Studio.

25:37 Oh my gosh.

25:38 Really? This is what you know?

25:40 Okay.

25:41 All right. Fair.

25:43 Well, I mean, they probably do have a history of mental illness then.

25:46 I think so.

25:47 Then they open up Outlook and send it and you know for sure there's something going on there.

25:52 Outlook.

25:54 Exactly.

25:54 The only thing on my desktop that if I hit Control-F, it doesn't find stuff.

26:01 It forwards an email.

26:03 Yeah, exactly.

26:06 So, well, excellent episode again.

26:09 Thanks, Michael.

26:10 Thanks, everybody, for listening.

26:11 You bet.

26:11 See you later.

26:12 Bye, everyone.

26:12 Bye.


Want to go deeper? Check our projects