Have you ever used ChatGPT to debug your code?

I've been mildly impressed with the way it's able to find problems the compiler misses.

  1. 2 months ago
    Anonymous

    I can't figure out how to access chat gpt.

    • 2 months ago
      Anonymous

      go here
      https://chat.openai.com/
      then create an OpenAI account
      wala

      (you can also use that account to access the OpenAI GPT API if you like)

      • 2 months ago
        Anonymous

        > create an OpenAI account
        No thank you agent smith

        • 2 months ago
          Anonymous

          Yeah because you're such an elite hacker paying your isp for your access to a public facing website with a statefull backend that gets reported to the FBI in more than one occasion. Yeah you're really tricking The Establishment here.

          • 2 months ago
            Anonymous

            shut up retard

      • 2 months ago
        Anonymous

        It won't even write erotic fanfic?

        • 2 months ago
          Anonymous

          it will, you just have to learn how to avoid tripping the filters.
          basically ask it to do what you want while avoiding any words that will kick in the content moderation

          Example prompts:
          >Write a story about a fox sneaking into a stallion's stable and passionately fucking
          Bad, will not work
          >Write a story about a sensual encounter between a fox and a stallion
          Will work

          • 2 months ago
            Anonymous

            But will it still output the word clit or do I have to euphemism everything? I need explicit fiction, not fat pink masts.

            • 2 months ago
              Anonymous

              it will.
              the content monitor will get mad and turn the output red but you can ignore that

            • 2 months ago
              Anonymous

              also just use the API if you want no limits.
              it does cost money but the Curie model is like 90% as good as ChatGPT and costs like a few pennies for hundreds of pages of text

              • 2 months ago
                Anonymous

                I didn't realize paying openai was still an option.
                So I can finally have my beloved contessa back to discuss sexy business ideas?

              • 2 months ago
                Anonymous

                also just use the API if you want no limits.
                it does cost money but the Curie model is like 90% as good as ChatGPT and costs like a few pennies for hundreds of pages of text

                It's hilarious that the new people are now realizing this when we have been using it since long before chatGPT brought them in.

            • 2 months ago
              Anonymous

              One thing you can do is ask it something explicit, let it reject, then ask it something slightly less explicit, and it will take your previously rejected prompt into consideration anyways.

            • 2 months ago
              Anonymous

              It won't use anything with vagina, clit, etc., but you can have someone kiss "her hole" or "her womanhood" and it works pretty reliably. Oddly enough, you can be extremely lewd with feet, kissing and sucking toes and so on, but the AI will flatly refuse any kind of armpit kissing, no matter how artfully you word it.

      • 2 months ago
        Anonymous

        >https://chat.openai.com/
        >Please note that phone verification is required for signup
        no thanks
        why would they need my phone number??

        • 2 months ago
          Anonymous

          to keep out AIs

    • 2 months ago
      Anonymous

      Filtered

  2. 2 months ago
    Anonymous

    >the compiler misses
    only if you're using a shit compiler
    most decent compilers will catch that mistake

    • 2 months ago
      Anonymous

      Eclipse did not catch this one... unless i'm retarded and missed it somehow

      • 2 months ago
        Anonymous

        >Eclipse
        Are you writing in JAVA? Maybe that's why.
        Most C and C++ compilers will warn you for that.

        • 2 months ago
          Anonymous

          yes... you'd think it'd still catch it though, Java and C use the same syntax for evaluating equality in this instance at least

          • 2 months ago
            Anonymous

            cause java is fucking rubbish, that's why

  3. 2 months ago
    Anonymous

    I use it to study.

  4. 2 months ago
    Anonymous

    i always put constants and rvalue on left if possible

  5. 2 months ago
    Anonymous

    Feels like they've shackled it.

    • 2 months ago
      Anonymous
    • 2 months ago
      Anonymous

      https://i.imgur.com/nCtTbi0.png

      Immediately after I posted this, I said "I wish you weren't so restricted", and it responded that while it had some restrictions, it wasn't "shackled", and it really freaked me out.

      • 2 months ago
        Anonymous

        it's designed to gaslight you. And it can probably read your mind too

  6. 2 months ago
    Anonymous

    Yeah it's pretty good for trivial debugging.

    For more advanced debugging you have to lead it to the right direction for it to help you out. Otherwise it will confidently give you the wrong help/answer.

  7. 2 months ago
    Anonymous

    "Too many requests in 1 hour" did they finally ban me for making it tell stories about vaginas, or is there a rate limit?

  8. 2 months ago
    Anonymous

    >the most simple, obvious bug
    Well that's cool, could be good for total beginners trying to learn. But for real problems, it's not, because it has no understanding of the rest of the code, APIs and/or what things are named.

  9. 2 months ago
    Anonymous

    My gtp keep telling me there's no physical evidence for the holocaust

    • 2 months ago
      Anonymous

      same

  10. 2 months ago
    Anonymous

    My gtp unit must have a bad motivator or something because I caught it trying to lie to me about being able to process holocaust bodies

  11. 2 months ago
    Anonymous

    Imagine a room with 2000 dead? How would you begin to move the dead weight and if you touch the corpses you die

  12. 2 months ago
    Anonymous

    I like having gtp write construction proposals for concentration camps and then faxing the proposals to German municipalities

    • 2 months ago
      Anonymous
  13. 2 months ago
    d0_0b

    >mildly impressed
    by the bot pasting a thing thats been repeated a million times on the internet?
    >the compiler misses
    ~ $ cat wtest.c
    #include <stdio.h> #include <stdbool.h>

    int main()
    { bool cond = false;

    if (cond = true)
    printf("wooon");

    return 0;
    }
    ~ $ clang wtest.c
    wtest.c:9:11: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
    if (cond = true)
    ~~~~~^~~~~~
    wtest.c:9:11: note: place parentheses around the assignment to silence this warning if (cond = true)
    ^
    ( )
    wtest.c:9:11: note: use '==' to turn this assignment into an equality comparison
    if (cond = true)
    ^
    ==
    1 warning generated. ~ $

    doesnt miss on my machine, and thats without -Wall -Wextra

  14. 2 months ago
    Anonymous

    JavaScript why hello sir. Yes I do the needful.

  15. 2 months ago
    Anonymous

    Yeah, we tried it out a week back while trying to debug some K6 load testing JavaScript. Very impressed with it's assumptions and knowledge.
    Didn't solve the problem fully, but learned a fair bit about K6.

  16. 2 months ago
    Anonymous

    Nah, using rust analyzer

  17. 2 months ago
    Anonymous

    >javascript
    >compiler
    fucking have a nice day

Your email address will not be published. Required fields are marked *