• 0 Posts
  • 14 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle




  • thebestaquaman@lemmy.worldtoTechnology@lemmy.worldThe Copilot Delusion
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    4
    ·
    4 days ago

    They’re getting downvoted because they’re missing the point. It’s not about whether or not I can choose to do things the way I prefer. It’s about how newcomers exposure, and thus opportunity to get into these things, is limited. The arguments about cars or calculators don’t hold up for that exact reason: The existence of cars and calculators does not severely limit people’s exposure to the experience of walking or doing arithmetic.





  • I would say that the “bad part of town” usually has overlap with the poorer part of town, regardless of what skin colour people have there. Of course, especially in the US, there’s significant overlap between economic status and skin colour. I just hate how the typical American view on “race” is projected onto other countries.

    Americans typically have this hang-up on “race” that you really don’t find anywhere else. A lot of places you have talk about “ethnicity” or similar, but the American fascination with categorising people by their skin colour and then using that to make generalisations is pretty unique.


  • With all the AI rollout in customer support, I’ve essentially built up a habit of almost immediately trying to get in touch with a human if the bot doesn’t give me what I’m looking for right away. My experience is that in most cases, the bot will try to walk me in circles, recommending that I try stuff I’ve already tried (that’s why I’m contacting support). In all those cases, the bot isn’t saving the company any time, it’s just wasting my time and making me irritated.

    In some cases it does save them support capacity, if only because I eventually give up on getting any support and just quit the service.


  • Someone who actually believes in their own message, and honestly believes that the political agenda they’re working for are important, to the point of putting this things ahead of themselves.

    When you lose, you can choose to lie down and give up, or you can pick yourself up and keep fighting. I’m not an ardent critic of Harris, but she clearly chose the former. The same goes for Hillary Clinton. Both these people had/have huge platforms that they could use to front politics and help build up other candidates for future elections, not only presidential, but local, senate and house elections too. They have chosen to disappear from politics instead.


  • I definitely have a hangup on students I teach saying something along the lines of “I don’t know how to get started on this, I asked GPT and…”. To be clear: We’re talking about higher-level university courses here, where GPT is, from my experience, unreliable at best and useless or misleading at worst. It makes me want to yell “What do you think?!?” I’ve been teaching at a University for some years, and there’s a huge shift in the past couple years regarding how willing students are to smack their head repeatedly against a problem until they figure it out. It seems like their first instinct when they don’t know something is to ask an LLM, and if that doesn’t work, to give up.

    I honestly want shake a physical book at them (and sometimes do), and try to help them understand that actually looking up what they need in a reliable resource is an option. (Note: I’m not in the US, you get second hand course books for like 40 USD here that are absolutely great, to the point that I have a bunch myself that I use to look stuff up in my research).

    Of course, the above doesn’t apply to all students, but there’s definitely been a major shift in the past couple years.


  • I write a lot of Python. I hate it when people use “X is more pythonic” as some kind of argument for what is a better solution to a problem. I also have a hang up with people acting like python has any form of type safety, instead of just embracing duck typing.This lands us at the following:

    The article states that “you can check a list for emptiness in two ways: if not mylist or if len(mylist) == 0”. Already here, a fundamental mistake has been made: You don’t know (and shouldn’t care) whether mylist is a list. These two checks are not different ways of doing the same thing, but two different checks altogether. The first checks whether the object is “falsey” and the second checks whether the object has a well defined length that is zero. These are two completely different checks, which often (but far from always) overlap. Embrace the duck type- type safe python is a myth.