I’ve been learning on and off about programming for 3 years now. Mostly front-end, html/css/js, for school projects. My degree isn’t in CS or IT, so projects that give the opportunity to code are scarce and often short. So I get that I may simply may not have enough hours in coding.

So I’m delighted to be taking CS50 as a Minor at the moment, this has given me the chance to sink a lot of hours in coding, and currently I am in week 5 Data Structures.

But every time I start on the problem sets, I feel overwhelmed and feel like I don’t understand anything. I have to Google/GPT the most basic of things. Even though I’ve been programming regularly the past 6 weeks, I don’t feel as if I have improved and I’m starting to doubt if this is a career for me.

In a year I would like to find a career in development. Have any of you felt this way? And what has helped you get rid of this imposter syndrome?

  • Lmaydev@programming.dev
    link
    fedilink
    arrow-up
    2
    ·
    9 months ago

    I see new developers say this all the time but how do you expect to know things without looking them up?

    6 weeks really isn’t a lot of time at all.

    As you code more you’ll start to notice patterns in code that you can apply elsewhere.

    Once you’ve been doing it a long time it’s basically a matter of combining things you’ve done 1000s of times in different ways.

    Stick with it, often it’ll “click” after a while.

  • onlinepersona@programming.dev
    link
    fedilink
    English
    arrow-up
    2
    ·
    9 months ago

    That’s the great thing, you never get rid of imposter syndrome! The thing that helped me was the mantra “there’s always someone better than you”. It’s true for everything, so I can focus on just having fun and delegating to those that know more (which is also an important skill since nobody knows everything).

    As for improving skills, practice makes perfect. 6 weeks is pretty much nothing. If you work out on one muscle group for 6 weeks, the chances of you seeing significant gains is minimal. You’ve gotta stick with it for months or years. Just look at the weight-loss journeys of people - it takes some years to lose their weight.

    Don’t be hard on yourself, find interesting tasks or sites with challenges you consider interesting and try to solve them. https://exercism.org/ is OK, but there are many different ones out there. I can definitely recommend watching videos that explain data structures visually. They’ll make much more sense.

    Good luck!

  • Obscerno@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    9 months ago

    I to this day still have to Google tons of stuff, even very simple things; sometimes it’s just hard to remember that function’s name or whatever, it’s no big deal.

    Programming didn’t click for me until I actually built something. Just a little command line game. Eventually after a certain point I realized: oh my god I can do anything! (with enough time)

    You’ll get there, but try working on something bigger with zero stakes where you can feel out how code you write in one place ripples out to other places.

  • tun@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    9 months ago

    Don’t rely too much on chatgpt before you understand the basic concept.

    You should also read the books. E.g. pick axe book(i.e. programming with ruby). You could also find the recommended books in your CS50 course. Also ask your online course buddies and instructors for help.

    If you only have exp in html, css and js, don’t regard yourself as you are already familiar with programming. Learn as a beginner. Go back to the earliest topics you have trouble with. Try to get the concept and work your ways to the situation where you feel overwhelmed.

    Good luck!

    • Lmaydev@programming.dev
      link
      fedilink
      arrow-up
      2
      ·
      9 months ago

      I personally disagree with this massively. ChatGPT is really good at explaining concepts.

      Don’t ask it to write your code though.

      • atheken@programming.dev
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        9 months ago

        LLMs aren’t going to give you a roadmap or prioritize concepts. They also frequently produce contradictory information.

        They’re good tools if you already have some experience and vocabulary in the field, but a more structured approach to building some projects and acquiring skills is better.

        • Lmaydev@programming.dev
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          9 months ago

          Indeed. But you just have to learn to use them like any tool.

          Most things that used to be a Google followed by skimming articles can now be a question to them.

          They are also remarkably good at explaining code snippets. If you drop a line of code in there and ask it what it is it’ll explain it piece by piece with correct terminology and answer any follow up questions really well.

          That gets around the not knowing terminology problem that many beginners have

          I do this frequently with the legacy SQL I have to deal with at work. It can handle some really nasty stuff very well.