• 3 Posts
  • 68 Comments
Joined 1 year ago
cake
Cake day: July 2nd, 2023

help-circle





  • I’m in the US, and I can assure you the amount of effort that would go into breaking that system would be 1000+ fold.

    Here’s the thing… your computer/phone, just to run programs, is sitting on somewhere around 40-50 million lines of code in the operating system. It’s got another 20-30 million for all the supporting user space libraries. People want to vote from any device, and operating systems have become walled gardens. Now we need to interact with browsers. That’s another 30 million lines. You know how many bugs I need to find to compromise a system? 1. It’s not necessarily a skill issue. It’s an attack surface issue.

    And this is assuming the bug was an accident. There are much more insidious vulnerabilities out there (see the recent exploit found in xz). Along that same vein, there could be exploit generators in the compilers (that’s 15 million lines) that build all these systems.

    We won’t have online voting until we fundamentally change how we compute. I don’t see that happening any time in the near future. None of these corporations are going to be breaking down their walls anytime soon.








  • 100% this. The base algorithms used in LLMs have been around for at least 15 years. What we have now is only slightly different than it was then. The latest advancement was training a model on stupid amounts of scraped data off the Internet. And it took all that data to make something that gave you half decent results. There isn’t much juice left to squeeze here, but so many people are assuming exponential growth and “just wait until the AI trains other AI.”

    It’s really like 10% new tech and 90% hype/marketing. The worst is that it’s got so many people fooled you hear many of these dumb takes from respectable journalists interviewing “tech” journalists. It’s just perpetuating the hype. Now your boss/manager is buying in =]




  • jas0n@lemmy.world
    cake
    toProgrammer Humor@programming.devC++
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    20 days ago

    Just watched this. Thank you. I think I’d agree with most of what he says there. I like trying languages, and I did try rust. I didn’t like fighting with the compiler, but once I was done fighting the compiler, I was somehow 98% done with the project. It kind of felt like magic in that way. There are lots of great ideas in there, but I didn’t stick with it. A little too much for me in the end. One of my favorite parts C is how simple it is. Like you would never be able to show me a line of C I couldn’t understand.

    That said, I’ve fallen in love a language called Odin. Odin has a unique take on allocators in general. It actually gives you even more control than C while providing language support for the more basic containers like dynamic arrays and maps.



  • jas0n@lemmy.world
    cake
    toProgrammer Humor@programming.devC++
    link
    fedilink
    arrow-up
    2
    ·
    21 days ago

    Hahaha. I knew I was wrong about the polymorphism there. You used big words and I’m a grug c programmer =]

    We use those generic containers in c as well. Just, that we roll our own.

    Move semantics in the general idea of ownership I can see more of a use for.

    I would just emphasize that manual memory management really isn’t nearly as scary as it’s made out to be. So, it’s frustrating to see the ridiculous lengths people go to to avoid it at the expense of everything else.