• 0 Posts
  • 152 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle




  • I’ve been playing around with the disabled GIL build and though I use threads fairly extensively in my projects, it’s been smooth sailing so far. I feel like my GUI scripts might be a bit more responsive now? (I tend to farm out user events to dedicated threads, so this is entirely possible.)

    But overall, everything is stable and awesome! I’m so excited! This has been a long time coming for Python.


  • My most common use case is probably looking up stuff that may or may not be in a dict.

    if (val := dct.get(key)) is not None:
        # do stuff with val
    

    I guess that’s pretty similar to what you were doing?

    Sometimes I also use it in some crazy list comprehension thing when I get backed into a corner, though it’s hard to think of an example off the top of my head? It usually happens when I’m in a rush and desperate to get something working, but it has an uncanny way of being just the thing you need at that point.


  • I guess the central premise of capitalism is that while every society has its haves and have nots, capitalism is supposed to encourage the haves to invest in the economy rather than hoarding their wealth. In return, they stand to get even wealthier, but a stronger economy ought to generate more employment and generally improve the lives of commoners as well.

    Unfortunately, in a never-ending quest to make wealth-generation more efficient and streamlined, employment is being eliminated through automation, outsourcing, etc. and the system is eating itself out from the inside. I doubt it can persist much longer, but what will replace it remains unclear. I pray that it will be something sensible that ensures everyone has their basic needs met and can still find rewarding pursuits in life. But there are so many ways it could go very wrong, and that includes staying on the current course.





  • I’ve actually been having more trouble with Apple Maps lately.

    My last trip was to perform at a country fair type thing and it couldn’t locate the venue. So I thought maybe if I put on the satellite view, I could spot it and drop a pin? But the whole area was behind a cloud. Wow.

    Then later, when we were returning, it tried to send me on a shortcut through a mall parking into an overgrown field.


  • When I was first looking into IPv6, people were talking about how you can self-assign an address by simply wrapping an IPv6 address around your MAC address. But that practice seems to have fallen out of favour, and I’m guessing the reason is, as you say, the whole privacy thing? There’s a lot of pushback these days against any tech that makes it easier to fingerprint your connection.




  • Yeah. My wife is always wanting to go on a cruise and I’m having none of it.

    One thing I will add regarding the nature of this curse is that it only manifests when I am the sole occupant of the bedroom. For example, I used to share a bedroom with my older sister, but within a week of her moving out and rejoicing at having the whole place to myself, the ceiling opened up.

    So I suppose I would be safe on the ship as long as my wife is there with me? In our current home, she was my sole protection, but has recently taken to sleeping on the basement cot due to hot flashes. This leaves me staring nervously at the ceiling. It’s now or never, curse!





  • There were breaking changes between C and C++ (and some divergent evolution since the initial split) as well as breaking changes between different releases of C++ itself. I am not saying these never happened, but the powers that be controlling the standard have worked hard to minimize these for better or worse.

    If I took one of my earliest ANSI C programs from the 80s and ran it through a C++23 compiler, I would probably need to remove a bunch of register statements and maybe check if an assumption of 16-bit int is going to land me in some trouble, but otherwise, I think it would build as long as it’s not linking in any 3rd party libraries.


  • I think the thing with C++ is they have tried to maintain backward compatibility from Day 1. You can take a C++ program from the 80s (or heck, even a straight up C program), and there’s a good chance it will compile as-is, which is rather astonishing considering modern C++ feels like a different language.

    But I think this is what leads to a lot of the complexity as it stands? By contrast, I started Python in the Python 2 era, and when they switched to 3, I was like “Wow, did they just break hello world?” It’s a different philosophy and has its trade-offs. By reinventing itself, it can get rid of the legacy cruft that never worked well or required hacky workarounds, but old code will not simply run under the new interpreter. You have to hope your migration tools are up to the task.