• 2 Posts
  • 92 Comments
Joined 11 months ago
cake
Cake day: August 9th, 2023

help-circle
  • There was a demo for a technology put out recently that circumvents this. I don’t remember the exact mechanisms, but it obscured DNS such that your ISP couldn’t see the DNS record you requested, and then used a proxy to route traffic before it hit the final endpoint eliminating exposing the IP to your ISP. It worked very similar to a VPN, but without the encrypted connection, and had some speed focused optimizations including the proxy being proximate to your ISP. It was pretty interesting.




  • Not that they’re the same, but this feels like not letting people be strippers because some people may feel degraded by it. I could understand having legislation that provides protections for employees through employer obligations to ensure a safe environment, but ultimately it’s the choice of the individual if they’re okay with the work or not. I don’t have a dog in this fight, but this feels like Chinese conservatism forcing “modesty” on women.




  • JDubbleu@programming.devtoMemes@lemmy.mlYes, but
    link
    fedilink
    arrow-up
    11
    arrow-down
    3
    ·
    3 months ago

    I don’t necessarily agree. If a brand makes high quality stuff I’m not gonna avoid them just because they put their logo on their stuff. I have a kickass Adidas backpack from 2014 that is by far my favorite, and I’ll be damned if I’m gonna get rid of it just because it has an Adidas logo on it.

    I also have perfectly good clothes with various brands on them, and I’m not just gonna throw them away because that’s wasteful as hell. I don’t go out of my way to buy stuff with brands on them, but that won’t stop me from buying something I genuinely like and find to be high quality.


  • Aggregate data doesn’t mean no client side data. It’s possible they’re collecting aggregate level client data too. They could go further and collect data on individuals that is not identifiable or useful to law enforcement in any way. I can think of a few ways to get anonymous usage data that allows you to improve your service while protecting your users. I don’t know their scheme but they clearly don’t need overly invasive forms of analytics as they have a solid service.




  • JDubbleu@programming.devtoMemes@lemmy.mlWorst day
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    3 months ago

    I often use that as a source of encouragement rather than defeat. My two favorite sports are snowboarding and muay thai which are filled with people who’ve been practicing before they formed memories. If a child is better than me then I’m almost certainly capable of becoming that good with continued practice. Even if it takes years it’s something to aspire to regardless of the relative age difference. I was one of those kids who was way better than a lot of people on a dirt bike. I was put on a dirt bike at the age of 4 and don’t even remember learning, so it’s not like it’s a fair comparison. Just run your own race and aspire to be like those around you.




  • I don’t think it’s diminishing the work of the Yuzu devs, but more so a strong belief in the capabilities of the open source community. They worked their asses off and are extremely talented, and I’m sure there are others who will hop in and carry the torch.

    I’m also curious if there’s a programmatic way to circumvent the argument Nintendo made about bypassing DMCA by separating the emulator from the code that utilizes the keys such that you can use tool A to bypass DMCA, and tool B (Yuzu with game decryption removed) to run the circumvented game. In this case tool A already exists, and tool B could be a fork of Yuzu.


  • I’ve noticed it’s less common in the city and more common in rural areas. I live in SF and people here don’t call them gas stations unless they have gas, but in the Central Valley this is extremely common.

    I grew up there and I always forget how much more “proper” I speak at home vs where I grew up. My partner sometimes struggles to understand what I’m trying to say a lot of the time when I slip back into it when speaking with my family. Gas station is just one of the many overly generic terms. Another one is “Vallarta” which doesn’t necessarily mean the chain grocery store Vallarta, but a Mexican grocery store usually selling produce and with a meat counter.





  • That was a pretty interesting read. However, I think it’s attributing correlation and causation a little too strongly. The overall vibe of the article was that developers who use Copilot are writing worse code across the board. I don’t necessarily think this is the case for a few reasons.

    The first is that Copilot is just a tool and just like any tool it can easily be misused. It definitely makes programming accessible to people who it would not have been accessible to before. We have to keep in mind that it is allowing a lot of people who are very new to programming to make massive programs that they otherwise would not have been able to make. It’s also going to be relied on more heavily by those who are newer because it’s a more useful tool to them, but it will also allow them to learn more quickly.

    The second is that they use a graph with an unlabeled y-axis to show an increase in reverts, and then never mention any indication of whether it is raw lines of code or percentage of lines of code. This is a problem because copilot allows people to write a fuck ton more code. Like it legitimately makes me write at least 40% more. Any increase in revisions are simply a function of writing more code. I actually feel like it leads to me reverting a lesser percentage of lines of code because it forces me to reread the code that the AI outputs multiple times to ensure its validity.

    This ultimately comes down to the developer who’s using the AI. It shouldn’t be writing massive complex functions. It’s just an advanced, context-aware autocomplete that happens to save a ton of typing. Sure, you can let it run off and write massive parts of your code base, but that’s akin to hitting the next word suggestion on your phone keyboard a few dozen times and expecting something coherent.

    I don’t see it much differently than when high level languages first became a thing. The introduction of Python allowed a lot of people who would never have written code in their life to immediately jump in and be productive. They both provide accessibility to more people than the tools before them, and I don’t think that’s a bad thing even if there are some negative side effects. Besides, in anything that really matters there should be thorough code reviews and strict standards. If janky AI generated code is getting into production that is a process issue, not a tooling issue.



  • I mean if you have access but are not using Copilot at work you’re just slowing yourself down. It works extremely well for boilerplate/repetitive declarations.

    I’ve been working with third party APIs recently and have written some wrappers around them. Generally by the 3rd method it’s correctly autosuggesting the entire method given only a name, and I can point out mistakes in English or quickly fix them myself. It also makes working in languages I’m not familiar with way easier.

    AI for assistance in programming is one of the most productive uses for it.