• 0 Posts
  • 175 Comments
Joined 10 months ago
cake
Cake day: July 22nd, 2024

help-circle








  • I tried cursor, claude, copilot. They’re not good.

    Like, they can sometimes generate 10 lines of perfectly reasonable code, but they constantly completely misunderstand my intention or simply produce garbage. But the garbage looks just good enough, that you actually have to read and understand it, which slows me down.

    Maybe we’re operating in completely different worlds, but even for the junior devs in my company, typing speed was never an issue. I’m sure, within a few years LLMs can generate much better code, but I don’t see widespread unemployment. They need way too much babysitting and result in worse code.


  • leisesprecher@feddit.orgtoTechnology@lemmy.worldThere Is No AI Revolution
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    3 months ago

    No, I fully understand your point, I just think it’s shit, and since your first reaction to being challenged is a shitty attempt at belittling, I have to assume you’re about as valuable as your point.

    Why would I trust the judgement of someone who can’t even fathom the concept of “someone else might have a valid point”?


  • You’re right in your analysis, but the prediction is wrong, I’m afraid.

    The next “big thing” is taking over the government. See Musk and his gang. He’s not alone and the US isn’t the only country this is happening in. Corporations inject themselves into each and every transaction, every aspect of life and politics. That way they have essentially infinite money at their hands.





  • leisesprecher@feddit.orgtoTechnology@lemmy.worldThere Is No AI Revolution
    link
    fedilink
    English
    arrow-up
    11
    arrow-down
    2
    ·
    3 months ago

    Translation on a level an AI could do is already pretty cheap, nobody’s gonna throw a nuanced legal document at an AI and rely on it.

    Junior devs are much smarter than any current AI, because they know what they want to achieve and why. There’s a reason why all the demos are toy examples. Actual code is messy and full of quirks because of weird requirements.



  • Thing is, it doesn’t replace workers. And it won’t for the foreseeable future. Even Microsoft itself had to admit that their studies show AI assisted coding to be bad and making developers worse.

    There is hardly any market where these systems can reasonably compete with exploited humans. It’s just that the tech bros have nothing left to invest in. The same idiots that pushed crypto, NFTs and the Metaverse are now pushing for AI. There is hardly any innovation anymore, so the only ways to make line go up are rent seeking and investing in bubbles in the desperate attempt, that something might stick.


  • Let’s say you open Youtube (or any other site) in your browser. Normally, that connection is encrypted end2end, so only Youtube and you see what data is being sent. An outside observer (your employer, your ISP, etc) might deduce from the network traffic that you’re accessing YT, and how long/how much data, but nothing else.

    This encryption is based on SSL/TLS, in a small nutshell, that works by having a chain of cryptographically signed certificates, that proof to you, that YT is really YT, and not someone else (your employer, for example). Attacks like this are called Man in the Middle (MITM). The certificate chain however, needs an anchor. Somewhere to start. These are called Root CA (certifying authorities). Typically these are dedicated companies or large ISPs. Their certificates (the public parts) are stored on your device from the factory (more or less). And thus your device can verify the entire chain of trust from the certificate YT send you down to the RootCA…

    Now, if someone would install a new RootCA certificate on your device, than that entity could become a Man in the Middle, it acts as a relay for all of the traffic going out of your device, can read everything send over the wire - and your device wouldn’t even know it. If that entity would be part of a US company, they would be legally forced to hand over all their data to NSA, FBI, etc. even if the actual data transfer woud happen completely within Europe.

    This is exactly what Twingate seems to do. Crowdstrike and ZScaler are similar products.

    The underlying problem here is that IT security in large organizations doesn’t mean “How can we be secure?”, but “How can we make a legal argument that we did nothing wrong?”. So security clusterfucks like this can be implementend, since the CTO can claim not to have been negligent.

    PS: The description above is obviously very simplified, the Wiki articles for SSL/TLS are much better.