• @[email protected]
    link
    fedilink
    344 months ago

    This is what happens when you don’t know what your own code does, you lose the ability to manage it, that is precisely why AI won’t take programmer’s jobs.

  • @[email protected]
    link
    fedilink
    1144 months ago

    Ha, you fools still pay for doors and locks? My house is now 100% done with fake locks and doors, they are so much lighter and easier to install.

    Wait! why am I always getting robbed lately, it can not be my fake locks and doors! It has to be weirdos online following what I do.

  • @[email protected]
    link
    fedilink
    English
    64 months ago

    Devils advocate, not my actual opinion; if you can make a Thing that people will pay to use, easily and without domain specific knowledge, why would you not? It may hit issues at some point but by them you’ve already got ARR and might be able to sell it.

    • @[email protected]
      link
      fedilink
      English
      164 months ago

      If you started from first principles and made a car or, in this case, told an flailing intelligence precursor to make a car, how long would it take for it to create ABS? Seatbelts? Airbags? Reinforced fuel tanks? Firewalls? Collision avoidance? OBD ports? Handsfree kits? Side impact bars? Cupholders? Those are things created as a result of problems that Karl Benz couldn’t have conceived of, let alone solve.

      Experts don’t just have skills, they have experience. The more esoteric the challenge, the more important that experience is. Without that experience you’ll very quickly find your product fails due to long-solved problems leaving you - and your customers - in the position of being exposed dangers that a reasonable person would conclude shouldn’t exist.

    • @[email protected]
      link
      fedilink
      3
      edit-2
      4 months ago

      Yeh, arguably and to a limited extent, the problems he’s having now aren’t the result of the decision to use AI to make his product so much as the decision to tell people about that and people deliberately attempting to sabotage it. I’m careful to qualify that though because the self evident flaw in his plan even if it only surfaced in a rather extreme scenario, is that he lacks the domain specific knowledge to actually make his product work as soon as anything becomes more complicated than just collecting the money. Evidently there was more to this venture than just the building of the software, that was necessary to for it to be a viable service. Much like if you consider yourself the ideas man and paid a programmer to engineer the product for you and then fired them straight after without hiring anyone to maintain it or keep the infrastructure going or provide support for your clients and then claimed you ‘built’ the product, you’d be in a similar scenario not long after your first paying customer finds out the hard way that you don’t actually know anything about your own service that you willingly took money for. He’s discovering he can’t actually provide the service part of the Software as a Service he’s selling.

  • @[email protected]
    link
    fedilink
    1064 months ago

    “If you don’t have organic intelligence at home, store-bought is fine.” - leo (probably)

  • Electric
    link
    fedilink
    584 months ago

    Is the implication that he made a super insecure program and left the token for his AI thing in the code as well? Or is he actually being hacked because others are coping?

    • @[email protected]
      link
      fedilink
      34 months ago

      Doesn’t really matter. The important bit is he has no idea either. (It’s likely the former and he’s blaming the weirdos trying to get in)

    • Ephera
      link
      fedilink
      English
      94 months ago

      Potentially both, but you don’t really have to ask to be hacked. Just put something into the public internet and automated scanning tools will start checking your service for popular vulnerabilities.

    • Mayor Poopington
      link
      fedilink
      English
      274 months ago

      AI writes shitty code that’s full of security holes, and Leo here has probably taken zero steps to further secure his code. He broadcasts his AI written software and its open season for hackers.

      • @[email protected]
        link
        fedilink
        English
        114 months ago

        Not just, but he literally advertised himself as not being technical. That seems to be just asking for an open season.

    • @[email protected]
      link
      fedilink
      84 months ago

      He told them which AI he used to make the entire codebase. I’d bet it’s way easier to RE the “make a full SaaS suite” prompt than it is to RE the code itself once it’s compiled.

      Someone probably poked around with the AI until they found a way to abuse his SaaS

  • @[email protected]
    link
    fedilink
    6
    edit-2
    4 months ago

    If I were leojr94, I’d be mad as hell about this impersonator soiling the good name of leojr94—most users probably don’t even notice the underscore.

  • @[email protected]
    link
    fedilink
    English
    454 months ago

    Reminds me of the days before ai assistants where people copy pasted code from forums and then you’d get quesitions like “I found this code and I know what every line does except this ‘for( int i = 0; i < 10; i ++)’ part. Is this someone using an unsupported expression?”

      • @[email protected]
        link
        fedilink
        7
        edit-2
        4 months ago

        for( int i = 0; i < 10; i ++)

        This reads as “assign an integer to the variable I and put a 0 in that spot. Do the following code, and once completed add 1 to I. Repeat until I reaches 10.”

        Int I = 0 initiates I, tells the compiler it’s an integer (whole number) and assigns 0 to it all at once.

        I ++ can be written a few ways, but they all say “add 1 to I”

        I < 10 tells it to stop at 10

        For tells it to loop, and starts a block which is what will actually be looping

        Edits: A couple of clarifications

      • @[email protected]
        link
        fedilink
        414 months ago

        It’s a standard formatted for-loop. It’s creating the integer variable i, and setting it to zero. The second part is saying “do this while i is less than 10”, and the last part is saying what to do after the loop runs once -‐ increment i by 1. Under this would be the actual stuff you want to be doing in that loop. Assuming nothing in the rest of the code is manipulating i, it’ll do this 10 times and then move on

        • @[email protected]
          link
          fedilink
          64 months ago

          I would also add that usually i will be used inside the code block to index locations within whatever data structures need to be accessed. Keeping track of how many times the loop has run has more utility than just making sure something is repeated 10 times.

      • @[email protected]
        link
        fedilink
        124 months ago

        @[email protected] posted a detailed explanation of what it’s doing, but just to chime in that it’s an extremely basic part of programming. Probably a first week of class if not first day of class thing that would be taught. I haven’t done anything that could be considered programming since 2002 and took my first class as an elective in high school in 2000 but still recognize it.

    • @[email protected]
      link
      fedilink
      1
      edit-2
      4 months ago

      i <= 9, you heathen. Next thing you’ll do is i < INT_MAX + 1 and then the shit’s steaming.

      I’m cooked, see thread.

        • @[email protected]
          link
          fedilink
          1
          edit-2
          4 months ago

          I mean i < 10 isn’t wrong as such, it’s just good practice to always use <= because in the INT_MAX case you have to and everything should be regular because principle of least astonishment: That 10 might become a #define FOO 10, that then might become #define FOO INT_MAX, each of those changes look valid in isolation but if there’s only a single i < FOO in your codebase you introduced a bug by spooky action at a distance. (overflow on int is undefined behaviour in C, in case anyone is wondering what the bug is).

          …never believe anyone who says “C is a simple language”. Their code is shoddy and full of bugs and they should be forced to write Rust for their own good.

          • @[email protected]
            link
            fedilink
            5
            edit-2
            4 months ago

            But your case is wrong anyways because i <= INT_MAX will always be true, by definition. By your argument < is actually better because it is consistent from < 0 to iterate 0 times to < INT_MAX to iterate the maximum number of times. INT_MAX + 1 is the problem, not < which is the standard to write for loops and the standard for a reason.

            • @[email protected]
              link
              fedilink
              2
              edit-2
              4 months ago

              You’re right, that’s what I get for not having written a line of C in what 15 years. Bonus challenge: write for i in i32::MIN..=i32::MAX in C, that is, iterate over the whole range, start and end inclusive.

              (I guess the ..= might be where my confusion came from because Rust’s .. is end-exclusive and thus like <, but also not what you want because i32::MAX + 1 panics).

                • @[email protected]
                  link
                  fedilink
                  14 months ago

                  Would you be bold enough to write if (i++ == INT_MAX) break? The result of the increment is never used, but an increment is being done, at least syntactically, and it overflows, at least theoretically, so maybe (I’m not 100% sure) the compiler could be allowed to break out into song because undefined behaviour allows anything to happen.

  • @[email protected]
    link
    fedilink
    3024 months ago

    Bonus points if the attackers use ai to script their attacks, too. We can fully automate the SaaS cycle!

    • 1024_Kibibytes
      link
      fedilink
      1244 months ago

      That is the real dead Internet theory: everything from production to malicious actors to end users are all ai scripts wasting electricity and hardware resources for the benefit of no human.

      • @[email protected]
        link
        fedilink
        34 months ago

        That would only happen if we give power to our ai assistants to buy things on our behalf, and manage our budgets. They will decide among themselves who needs what and the money will flow to billionaires pockets without any human intervention. If humans go far enough, not even rich people would be rich, as trust funds, stock portfolios would operate under ai. If the ai achieves singularity with that level of control, we are all basically in spectator mode.

        • @[email protected]
          link
          fedilink
          274 months ago

          Not only internet. Soon everybody will use AI for everything. Lawyers will use AI in court on both sides. AI will fight against AI.

          • @[email protected]
            link
            fedilink
            27
            edit-2
            4 months ago

            I was at a coffee shop the other day and 2 lawyers were discussing how they were doing stuff with ai that they didn’t know anything about and then just send to their clients.

            That shit scared the hell out of me.

            And everything will just keep getting worse with more and more common folk eating the hype and brainwash using these highly incorrect tools in all levels of our society everyday to make decisions about things they have no idea about.

            • @[email protected]
              link
              fedilink
              English
              174 months ago

              I’m aware of an effort to get LLM AI to summarize medical reports for doctors.

              Very disturbing.

              The people driving it where I work tend to be the people who know the least about how computers work.

          • @[email protected]
            link
            fedilink
            94 months ago

            It was a time of desolation, chaos, and uncertainty. Brother pitted against brother. Babies having babies.

            Then one day, from the right side of the screen, came a man. A man with a plastic rectangle.

      • @[email protected]
        link
        fedilink
        English
        174 months ago

        The Internet will continue to function just fine, just as it has for 50 years. It’s the World Wide Web that is on fire. Pretty much has been since a bunch of people who don’t understand what Web 2.0 means decided they were going to start doing “Web 3.0” stuff.

        • @[email protected]
          link
          fedilink
          English
          194 months ago

          The Internet will continue to function just fine, just as it has for 50 years.

          Sounds of intercontinental data cables being sliced

  • Gamma
    link
    fedilink
    English
    104 months ago

    But I thought vibe coding was good actually 😂

    • @[email protected]
      link
      fedilink
      104 months ago

      Vibe coding is a hilarious term for this too. As if it’s not just letting AI write your code.

  • @[email protected]
    link
    fedilink
    English
    1684 months ago

    AI is yet another technology that enables morons to think they can cut out the middleman of programming staff, only to very quickly realise that we’re more than just monkeys with typewriters.

      • @[email protected]
        link
        fedilink
        114 months ago

        I was going to post a note about typewriters, allegedly from Tom Hanks, which I saw years and years ago; but I can’t find it.

        Turns out there’s a lot of Tom Hanks typewriter content out there.

        • r.EndTimes
          link
          fedilink
          English
          74 months ago

          He donated his to my hs randomly, it was supposed to goto the valedictorian but the school kept it lmao, it was so funny because they showed everyone a video where he says not to keep the typewriter and its for a student

      • @[email protected]
        link
        fedilink
        English
        54 months ago

        True, any software can be vulnerable to attack.

        but the difference is a technical team of software developers can mitigate an attack and patch it. This guy has no tech support than the AI that sold him the faulty code that likely assumed he did the proper hardening of his environment (which he did not).

        Openly admitting you programmed anything with AI only is admitting you haven’t done the basic steps to protecting yourself or your customers.

      • @[email protected]
        link
        fedilink
        444 months ago

        But then they’d have a dev team who wrote the code and therefore knows how it works.

        In this case, the hackers might understand the code better than the “author” because they’ve been working in it longer.

  • @[email protected]
    link
    fedilink
    English
    21
    edit-2
    4 months ago

    ITT: “Haha, yah AI makes shitty insecure code!”

    <mad scrabbling in background to review all the code committed in the last year>