Okay so… I just entered my final year and ngl I’m lowkey panicking. I wasted my last 3 years doing basically nothing. I don’t know programming properly, never built a single real-world project, and now placements are around the corner.

Like fr, is there still any chance for me to pick up a skill, actually build stuff, and somehow get job-ready before it’s too late? Or should I just accept my fate lol.

Also random question (pls don’t roast me): is there even a platform where you can:

  • buy projects (so I can at least see how things work)
  • get mentorship/teaching from people who know their stuff
  • and later maybe even sell my own projects when I get better

Basically like a one-stop place to learn + build + get guidance. Does that even exist or am I just daydreaming here?

Any advice would be a lifesaver 🙏—

  • Kiernian@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    21 days ago

    Find an open source project that’s coded in your language of choice that you both care about (edit – or that looks interesting to you, at least) and want to add functionality to.

    Download a working copy, then, since you’re learning with this, pretend the repo doesn’t exist anymore and you’re on your on with your self-imposed assignment.

    Figure out what functionality you want to add, start with changing or augmenting something simple, and figure out where that would go in the existing code, and make it happen.

    See if you can manage to Google search your way past any errors you run into, preferably alternating between ai answers and things like stack overflow posts, only instead of copy-pasting the code that errors out (or the solution code you get from ai or posts) actually step through things and figure out what the “solution” code is doing differently and ask yourself why and how that makes a difference or has a different effect from the code that generated the error in the first place. Then decide whether it’s actually likely to fix the error or not. If you think it’s going to? Try using it.

    If it works, make sure you understand why.

    If it doesn’t, try to figure out why not.

    Keep going until you have a working new feature.

    Then try a more complicated feature.

    After a few of those, try tackling some of the bugs in the repo.