Title before edit: I hate programming, why did i choose this field

TL;DR: Stupid mistake, made by hours waste.

Basically, I was extracting date from the SQL db, and it was not displaying. I tried everything, heck I even went to chatgpt, and copilot. Two and half hours of trying every single thing under the sun, you know what was the issue?

SELECT task, status, id FROM mainWorkSpace WHERE user_id = @user_id

I FUCKING FORGOT TO ADD ‘date’ TO THE DAMN QUERY. TWO AND HALF HOURS. I was like, “Ain’t no way.” as I scrolled up to the query and there it was, a slap in the face, and you know what was the fix?

SELECT task, status, date, id FROM mainWorkSpace WHERE user_id = @user_id

Moral of the story, don’t become a programmer, become a professional cat herder instead.

  • atzanteol@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    55
    ·
    15 days ago

    The best advice I can give to new developers is “question your assumptions”.

    “But I set that variable” - did you?

    “It should default to 0” - is it?

    Remember - if things were working as you think they are then your code would be working.

    • 0ops@lemm.ee
      link
      fedilink
      arrow-up
      3
      ·
      14 days ago

      Basically how I do rubber duckie debugging

      See? It should work because I initialize it as this and iterate doing this and this which gives me a data structure like this and … wait … oh hell that clearly doesn’t produce the data structure I want. 🤦

      We tend to see what we want to see, not what actually is.

    • corsicanguppy@lemmy.ca
      link
      fedilink
      arrow-up
      3
      ·
      14 days ago

      I have great colleagues who still bust out this kind of cross-examination when we’re trying to figure out why my code is a bag of poo. I have some friends I’ve known 25 years who will do this, and it’s every bit as annoying and infuriating as it’s invaluable help.

  • Redacted@lemmy.world
    link
    fedilink
    English
    arrow-up
    80
    arrow-down
    26
    ·
    15 days ago

    You didn’t add the date field to your query and couldn’t work out why it didn’t return the missing field for over 2 hours?

    Perhaps SQL isn’t for you as things get waaaaay more finicky than that.

    • ArbiterXero@lemmy.world
      link
      fedilink
      arrow-up
      85
      arrow-down
      4
      ·
      15 days ago

      You’ve never made a silly mistake where you “can’t see the forest for the trees”?

      It happens to the best of us

      • Gutek8134@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        14 days ago

        One time I’ve been trying to force UE5 to let me edit TArray<TPair>, an hour later I realized I could just use TMap

      • Redacted@lemmy.world
        link
        fedilink
        English
        arrow-up
        18
        arrow-down
        21
        ·
        edit-2
        14 days ago

        Yes of course, but it’s not the sort of thing I’d make a rant post criticising the entirety of programming about.

        It’s like going to a mathematics forum and declaring “Guyz I forgot to carry a 1, screw Maths.”

        • ArbiterXero@lemmy.world
          link
          fedilink
          arrow-up
          13
          arrow-down
          2
          ·
          14 days ago

          Because developers are all logical and don’t EVER show anger at the systems they’re working on…. Hahahaha…

          I mean I personally wouldn’t post about it, but I’d probably rant over lunch at my stupidity…

          • corsicanguppy@lemmy.ca
            link
            fedilink
            arrow-up
            2
            arrow-down
            1
            ·
            14 days ago

            The best devs Ive worked with are all “barn cats”. They yell, they challenge, they curse, they gesticulate, but they never offend.

            (The f’n Workplace Sensitivity thing I just took outlawed so many behaviours that I know would exclude every superhero I know. What’s happened to the industry?)

          • Redacted@lemmy.world
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            12
            ·
            14 days ago

            There’s a difference between ranting to your coworkers at lunch about a stupid mistake and typing out a full rage essay.

            Imagine the state of the sub if we all did that… Wait…

            • BatmanAoD@programming.dev
              link
              fedilink
              arrow-up
              6
              ·
              14 days ago

              This “full on rage essay” is nine sentences, including the tl;dr and the sentence fragments. There’s really not a big difference between telling your coworkers a story like this and posting about it on social media.

              • Redacted@lemmy.world
                link
                fedilink
                English
                arrow-up
                3
                arrow-down
                2
                ·
                edit-2
                14 days ago

                Did you read it before the edits? If it’s written like that I think I’m entitled to exaggerate back slightly to make a point by calling it a rage essay.

                Anywho I wouldn’t choose to rant like this to my coworkers or online. A quick 🤦 in chat usually does the trick.

            • ArbiterXero@lemmy.world
              link
              fedilink
              arrow-up
              5
              arrow-down
              2
              ·
              14 days ago

              Oh I’m not encouraging it, personally I just ignore the rants like that….

              But at the same time, I can identify the emotion that drew the person to do it.

              • Redacted@lemmy.world
                link
                fedilink
                English
                arrow-up
                3
                arrow-down
                5
                ·
                edit-2
                14 days ago

                Ah yes here you are successfully ignoring it.

                Might not be encouraging it but you seem to be defending it.

                • ArbiterXero@lemmy.world
                  link
                  fedilink
                  arrow-up
                  3
                  arrow-down
                  3
                  ·
                  14 days ago

                  I ignored OP’s statements, not yours.

                  You’ll find I replied to you and not them, but I appreciate your condescension in the midst of being wrong.

                  Ranting about problem you had and being dramatic about it? No problem, I get it. I’m here to be supportive of your struggles. I’ll absolutely defend someone that is being dramatic over their own mistakes, we’re all our own biggest critics. Beyond that, I’ll ignore it and let them get through their own emotions.

                  Feeling the need to judge someone over it? Yeah, YTA here and you’ll find that coworkers don’t like you for it. It’s unpleasant, and unnecessary.

                  Do you enjoy it when people point out your faults and say “maybe the tech world isn’t for you?”

                  …… but you’re not going to see it that way at all. You’ll create some meaningless “but it’s different” argument because you feel the need to defend your actions rather than reflect on them.

                  Have a nice day, I’m done.

        • It’s like going to a mathematics forum and declaring “Guyz I forgot to carry a 1, screw Maths.

          You may think you’re joking, but as a Maths teacher I can tell you I have seen a lot of posts where someone makes a mistake with their signs, then uses their wrong answer to declare “The rules of Maths are wrong! Look - different answer!”. Yeah umm, try working on getting your arithmetic right first before claiming to have “proved” something. 😂

    • theredknight@lemmy.world
      link
      fedilink
      arrow-up
      23
      arrow-down
      4
      ·
      15 days ago

      Seriously. If this broke him it gets so much worse… but honestly op, this is how you learn what to do and what not to.

      • MrOzwaldMan@lemmy.mlOP
        link
        fedilink
        arrow-up
        10
        ·
        15 days ago

        I know that, my anger has manifested this post, and I shouldn’t have criticized the entire field

        • corsicanguppy@lemmy.ca
          link
          fedilink
          arrow-up
          3
          arrow-down
          1
          ·
          14 days ago

          I think anyone who’s been in the field for long enough knows you weren’t really slamming all of it. Beaking off is totally okay.

        • Redacted@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          14 days ago

          Fair play. SQL is pretty different from traditional programming and errors often aren’t very descriptive.

          You’ll need to get very familiar with fields you have included or not in your queries when using more advanced stuff like group functions as including or excluding them can alter the number of rows returned.

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      11
      arrow-down
      1
      ·
      15 days ago

      You don’t know the circumstances. They might have only seen the query results after several processing steps…

      • Redacted@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        15 days ago

        You are correct I don’t know the circumstances so all we can go on is what OP wrote…

    • MrOzwaldMan@lemmy.mlOP
      link
      fedilink
      arrow-up
      8
      ·
      15 days ago

      it’s indeed a new language for me and I haven’t developed that ability to know where the bug is happening but I am going to get there.

      • justaderp@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        14 days ago

        Assuming you’re coming from a linear programming and OOP background, then data (incl. SQL) kinda sucks because it’s not always clear how to apply existing concepts. But, doing so is absolutely critical to success, perhaps more so than in most OOP environments. Your post isn’t funny to me because I’d be laughing at you, not with you.

        If a variable is fucked, the first questions you should answer are, “Where’d it come from?” and “What’s its value along the way?”. That looks a lot different in Python than SQL. But, the troubleshooting concept is the same.

        If object definitions were replaced by table/query definitions in planning then you’d probably not have made the initial error. Again, it looks different. But, the concept is the same.

        • MrOzwaldMan@lemmy.mlOP
          link
          fedilink
          arrow-up
          3
          ·
          14 days ago

          Assuming you’re coming from a linear programming and OOP background, then data (incl. SQL) kinda sucks because it’s not always clear how to apply existing concepts. But, doing so is absolutely critical to success, perhaps more so than in most OOP environments. Your post isn’t funny to me because I’d be laughing at you, not with you.

          That’s correct, I have done a lot of OOP in Java and C#, and the internship I’m doing is with C# and ASP.Net.

          If a variable is fucked, the first questions you should answer are, “Where’d it come from?” and “What’s its value along the way?”. That looks a lot different in Python than SQL. But, the troubleshooting concept is the same.

          You see, I wasn’t thinking clearly at the time, wasn’t looking at the right place, and like the post says, I’ve finally looked at the right place and made me feel frustrated. The frustration was at myself not at programming.

      • 4am@lemm.ee
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        15 days ago

        Yeah don’t beat yourself up - when you are new to SQL it fucking let’s you know.

        It’s easy to get distracted thinking about all the ways shit fits together., where you could have just gone wrong. And now, next time, you’ll know.

  • ShaunaTheDead@fedia.io
    link
    fedilink
    arrow-up
    41
    ·
    15 days ago

    In those kinds of situations you need to remember to try to break the problem down into simpler sections to identify where the problem lies. One of the first steps would be to run SELECT * FROM mainWorkSpace WHERE user_id = @user_id and see if that returns anything.

    • Enoril@jlai.lu
      link
      fedilink
      arrow-up
      15
      ·
      15 days ago

      Was going to say that.

      @OP:

      One of the main skill a developer must have is being able to troubleshoot properly how their code behave.

      Break your code in small pieces, check all of them with unitary test (formal or not) to validate their behavior then move to the next step. Never test everything in one shot or you will be overwhelmed by side effect bugs whom will distract you from the real root cause.

      Being a programmer is not just coding but also testing and deploying (even locally).

      That won’t avoid you being blocked by a silly mistake for hours, everybody did that at some point in their career, but that will reduce your frustration against yourself when you discover why the bug existed.

      Do a pause, go walk, change the topic and the next time you look at your code, you will spot the obvious bug :-)

    • MrOzwaldMan@lemmy.mlOP
      link
      fedilink
      arrow-up
      9
      ·
      15 days ago

      In those kinds of situations you need to remember to try to break the problem down into simpler sections to identify where the problem lies.

      Learned that the hard way.

      One of the first steps would be to run SELECT * FROM mainWorkSpace WHERE user_id = @user_id and see if that returns anything.

      It’s one of those situations where if i write something, i forget it because it is doing its thing and about selecting everything, i should’ve done that and it’s my mistake.

    • morbidcactus@lemmy.ca
      link
      fedilink
      arrow-up
      10
      arrow-down
      1
      ·
      14 days ago

      If you’re not familiar with the table, use a select top 10 * from table if you’re on sqlserver, postgresql uses limit and oracle has fetch.

      Don’t recommend select * without limits or conditions unless you absolutely know the table, you can very quickly make a DBA unhappy

  • Potatos_are_not_friends@lemmy.world
    link
    fedilink
    arrow-up
    26
    ·
    14 days ago

    The difference between experienced devs and non experienced devs is that we have hundreds of stories like that under our belt. Hundreds of “Ah I wasted all this time because of a typo”, and now we know to check for it.

    It never stops. And after a while, a dev will share this exact scenario and you’ll look back and share the same bit to them.

    • MrOzwaldMan@lemmy.mlOP
      link
      fedilink
      arrow-up
      4
      ·
      14 days ago

      Thanks for sharing your experience, who knew a frustrating post written by me would give me lessons which i am going to take to heart.

    • vrek@programming.dev
      link
      fedilink
      English
      arrow-up
      4
      ·
      14 days ago

      I had that experience last week. I half blame the language though cause the way it works is you don’t initialize a variable, first time you use it the language automatically makes the variable and default value is 0.

      I had a variable countoot that I had a formula calculate. Then a simple if countoot > 0 do this else do that. The program kept doing that. I knew countoot should be 2. I manually did the formula … The answer was two.

      I did the same formula in 3 other programs and it worked correctly. I spent between 1.5 to 2 hours a day for like 3 days banging my head on the desk trying to figure out why it would work. Fourth day me and 2 other guys were trying to figure it out when I finally really looked closely. I realized the formula result was stored in ccountoot(notice 2 c) and the if statement was based on countoot(notice 1 c)…yeah I felt so stupid when correcting the typo fixed the problem.

      • leftzero@lemmynsfw.com
        link
        fedilink
        arrow-up
        1
        ·
        14 days ago

        first time you use it the language automatically makes the variable and default value

        Now, that’s just evil. 😨

    • leftzero@lemmynsfw.com
      link
      fedilink
      arrow-up
      1
      ·
      14 days ago

      The difference between experienced devs and non experienced devs is that when seeing “the experience that made me hate programming” and “date” in the same post experienced devs just stop reading (mostly due to the PTSD hit) and assume it must have been some date format issue or shudder timezone shenanigans between the database and the programming language…

  • Quicky@lemmy.world
    link
    fedilink
    arrow-up
    25
    arrow-down
    1
    ·
    15 days ago

    I’ve been a SQL dev for years. Last week I spent half an hour reading up on why wrapping a bunch of queries in a transaction was giving me incorrect results compared to when they were separate committed statements. I was investigating locking or what might be happening in the execution plan that was throwing it off.

    Turns out I just fucked up the where clause. I didn’t even consider the schoolboy stuff. This kind of shit happens all the time.

  • 𝒍𝒆𝒎𝒂𝒏𝒏@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    13
    arrow-down
    1
    ·
    15 days ago

    This kind of stuff happens all the time IMO, we’re human and not perfect 🤷‍♂️

    I don’t know how much of a help ChatGPT would be in this situation without access to your schema, at least with Copilot you can write a comment in the code explaining what you’re trying to do and get some usable pointers in the generated suggestion (which takes your codebase into account).

    I usually try to get a second pair of eyes on my code if something that seems relatively simple isn’t working as expected… As you gain more experience these mistakes will become less common, and easier to spot

  • hperrin@lemmy.world
    link
    fedilink
    arrow-up
    11
    ·
    15 days ago

    No worries. I’ve wasted more time on lesser mistakes than this. I also once made everyone an admin by forgetting a single ampersand. That was a fun eight hours.

  • FizzyOrange@programming.dev
    link
    fedilink
    arrow-up
    13
    arrow-down
    3
    ·
    14 days ago

    Real moral of the story: STATIC TYPING!

    Seriously so many people think it’s a waste of time, and then stuff like this happens.

      • leftzero@lemmynsfw.com
        link
        fedilink
        arrow-up
        6
        ·
        edit-2
        14 days ago

        Thinking about C# and Dapper here 'cause they’re what I’m used to, but, for example…

        result = await connection.QueryAsync<ResultType>(QUERY); (where ResultType is a statically typed record, class, or struct shaped like the data you want returned.)

        Given a query that doesn’t return something that matches any of ResultType’s constructors, the code’ll throw an exception at runtime complaining it needs a constructor that matches whatever it’s returning, whereupon you’ll notice it isn’t asking for it to have a date parameter, so the query must not be returning it.

  • SatouKazuma@programming.dev
    link
    fedilink
    arrow-up
    12
    arrow-down
    2
    ·
    14 days ago

    You want to hate programming? Try using JS. It’s anarchy.

    “Why is this the way to do things?”

    “Because it just is.”

      • SatouKazuma@programming.dev
        link
        fedilink
        arrow-up
        3
        ·
        14 days ago

        Sure, but they use ersatz methods that are so incredibly obscure and removed from the standard library that expecting one to know them is beyond foolhardy.

        • treadful@lemmy.zip
          link
          fedilink
          English
          arrow-up
          1
          ·
          14 days ago

          No clue what that means. I was thinking more along the lines of how there’s 3+ techniques for async functions. Or that there’s a handful of syntax implementations, versions, and supersets of the language. Or that there are many interpreters all with different standard libraries and quirks.

          It’s an annoyingly flexible language.

          • SatouKazuma@programming.dev
            link
            fedilink
            arrow-up
            3
            ·
            14 days ago

            It just feels like anarchy to me. Why is anything the way it is in JS? Maybe I’m learning it wrong, but starting from zero, I now feel like I understand less than nothing.

            • Thomrade@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              14 days ago

              Mostly its this way because the language has evolved over time and relies heavily on several similar but competing interpretations of how things should be done. Similar thing happened to PHP, back in the web1 days.

              • SatouKazuma@programming.dev
                link
                fedilink
                arrow-up
                1
                ·
                13 days ago

                That makes sense. Every time I try to learn it, or am asked to do something in it only to reply “I can’t”, I feel so fucking stupid. How am I supposed to move up to senior SWE if I can’t do JS?

  • slazer2au@lemmy.world
    link
    fedilink
    English
    arrow-up
    9
    ·
    14 days ago

    Get yourself a debug rubber ducky mate, talk to it when you are troubleshooting might fire off a coupe more pathways to identify the problem sooner.

        • barsquid@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          14 days ago

          Tech support duck looks like he’s checking out some delicious bread crumb photography on that palmtop.

    • pantyhosewimp@lemmynsfw.com
      link
      fedilink
      arrow-up
      2
      ·
      14 days ago

      Long before the duck gained popularity – and I still can’t talk to a toy – I walk around and explain things to a phantom off in the corner of my mind, and I use bold hand gestures.

      • Solemarc@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        14 days ago

        Bruh, I do this all the time! Can’t solve a problem? Get up and walk around the house while I explain the issue to imaginary people!

    • Elias Griffin@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      4
      ·
      14 days ago

      So this is the second mention of a rubber duck. I’m trying to fiercely convince myself that talking to a toy on your desk was absolutely not a real thing for adults and that this is some satire I’m missing.

      If it’s true, that’s beyond shameful for an adult. I would quit if I were next to that person’s office/cubicle so that they didn’t infect me.

      In fact, if this was a real thing, don’t even tell me. I don’t want to live with that kinda shame for my species.

      • slazer2au@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        14 days ago

        I feel as though you are missing a key part. Some people are verbal debuggers, we speak what we wrote to understand it better. Now in an office environment what is more acceptable, talking to yourself or talking to a toy on the desk?

        https://en.m.wikipedia.org/wiki/Rubber_duck_debugging

        I have done this where you read the problem in your internal monologue but nothing new sparks, yet when you speak what is going on it activates different parts of your brain for the debugging process.

  • ulkesh@beehaw.org
    link
    fedilink
    English
    arrow-up
    8
    ·
    14 days ago

    We’ve all done stupid stuff like this. The trick is to pad time into estimates to account for it :D

    • barsquid@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      14 days ago

      For me rubber ducking a coworker solves a lot of these things instantly, but walking just gets me further entrenched in my own stupid ideas.

      • corsicanguppy@lemmy.ca
        link
        fedilink
        arrow-up
        1
        ·
        14 days ago

        When you walk, the risk is you’re still confirming and not asking those questions. The duck is awesome.