Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Ask Lemmy
  3. Bro I’m in final year and literally know NOTHING, am I doomed? 😭

Bro I’m in final year and literally know NOTHING, am I doomed? 😭

Scheduled Pinned Locked Moved Ask Lemmy
asklemmy
62 Posts 42 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H [email protected]

    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 🙏---

    sorghum@sh.itjust.worksS This user is from outside of this forum
    sorghum@sh.itjust.worksS This user is from outside of this forum
    [email protected]
    wrote last edited by
    #26

    Eh, I thought I was OK going into my career out of college only to find out I learned more 3 months on the job than I did in the classroom. About the only practical experience I got in college was in labs setting up environments. So don't sweat not knowing. You'll get direction in an entry level position, then you can work on your own stuff, or you can find a topic that interests you and work on it on the side like a video game or tool or website. My current side projects usually help me in my current career. So I picked up a skill that I never learned when I exited my first career (docker administration) and I feel like a goober for not learning in the past.

    I know why i didn't learn it though. One, two, skip a few, after burnout and changing careers, my skills look like they could come back in fashion for moving stuff back to on premise and I could be useful again (IT) especially for small clusters, networking, and specialized local application support, so at least I have a backup plan for when AI takes over my current line of work.

    I guess my point is the job is kinda like a better one stop shop that pays you to learn the specifics whose bosses should get you the guidance at least with incentivized goals; money.

    1 Reply Last reply
    0
    • H [email protected]

      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 🙏---

      kescusay@lemmy.worldK This user is from outside of this forum
      kescusay@lemmy.worldK This user is from outside of this forum
      [email protected]
      wrote last edited by
      #27

      You're studying to be a programmer, right? You don't mention your comfort language, so I'm going to try to keep this language agnostic.

      Here's what you do:

      1. Figure out the absolute simplest application you could possibly build. I'm going to suggest a to-do app, because it's traditional and it's a dead simple concept.
      2. Figure out the absolute simplest version of that application. I'm thinking it just renders a hard-coded list of to-dos with exactly one piece of interactivity, a button to cross off an entry.
      3. Add another piece of interactivity: Make the rendered text of a to-do entry editable.
      4. Add another piece of interactivity: Make the list resettable, so your edits and cross-offs vanish.
      5. Add another piece of interactivity: Make it possible to add entries to the list.
      6. Add another piece of interactivity: Make it possible to turn the list green.
      7. Add another piece of interactivity: Make it possible to remove entries from the list.
      8. Keep adding visible features until the frontend is the best goddamn to-do list you can make.
      9. Create a backend. Your backend has a database (such as MySQL). It has one table, which contains every to-do.
      10. Your backend should expose a REST API. If you don't know what that is, read up on it. They're very simple. Long story short, it's a means of sending and receiving structured JSON.
      11. Here's where your app gets real: The REST API can read from and write to the database. That means no more hard-coded entries on the frontend. Your frontend will now read from the REST API when it loads, and populate the to-do list from it. When you delete an entry, it will be removed from the database. When you cross one off or turn it green, it will change in the database.
      12. Congratulations, you've built a rudimentary real-world application!
      1 Reply Last reply
      0
      • H [email protected]

        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 🙏---

        B This user is from outside of this forum
        B This user is from outside of this forum
        [email protected]
        wrote last edited by
        #28

        I felt the same way you do when I was in my last year of college. I remember being really nervous about it and thinking that they didn’t give me any real world experience, but you’ll get that when you find a job. The job I got out of college was in a programming language that was so foreign to me (and probably most people) that I had no idea what I was doing, but you end up adapting and using the constructs they’ve taught you.

        I’ve been working in tech for 24 years now and still feel like I don’t know enough for my job most days. The good thing is that it’s a constant learning experience I guess.

        1 Reply Last reply
        2
        • H [email protected]

          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 🙏---

          Z This user is from outside of this forum
          Z This user is from outside of this forum
          [email protected]
          wrote last edited by
          #29

          Start it all over. Do things right the second time.

          1 Reply Last reply
          0
          • H [email protected]

            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 🙏---

            B This user is from outside of this forum
            B This user is from outside of this forum
            [email protected]
            wrote last edited by
            #30

            Keep your mouth shut, and fake it til you make it.

            It's what EVERYBODY does. That is literally the key to life that nobody tells you when you are young.

            1 Reply Last reply
            9
            • H [email protected]

              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 🙏---

              jomiran@lemmy.mlJ This user is from outside of this forum
              jomiran@lemmy.mlJ This user is from outside of this forum
              [email protected]
              wrote last edited by [email protected]
              #31

              Tech executive here. The likelihood of you being able to compete as a developer in the current job market when you cannot demonstrate skills, knowledge, or showcase your previous works is negligible. That said, you have access to the internet, FOSS, Git, presumably test environments at your school, teachers and fellow students to ask when you need help, etc.

              Find a bunch of problems you'd like to solve or features you'd like to see and spend the next year cranking out projects. Make sure you have a portfolio fo projects that required multiple skillsets to achieve.

              Also, there are a lot of free courses and even some certifications out there. AWS, Azure, and GCloud have all sorts of training available for free. Take some and use those skill to run some projects in cloud environments.

              CONTAINERS!!!

              EDIT:
              The best position you can be is one where you don't want a job because you want to build your own thing. Be so good that companies want to compete to hire you away.

              1 Reply Last reply
              13
              • H [email protected]

                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 🙏---

                thepowerofgeek@lemmy.worldT This user is from outside of this forum
                thepowerofgeek@lemmy.worldT This user is from outside of this forum
                [email protected]
                wrote last edited by
                #32

                Sounds like it's time to start some basic code camp / code academy / Udemy courses in your off time to catch up.

                1 Reply Last reply
                0
                • H [email protected]

                  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 🙏---

                  hurlingdurling@lemmy.worldH This user is from outside of this forum
                  hurlingdurling@lemmy.worldH This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #33

                  Senior UI architect here. I didn't know shit about crap when I graduated college as far as programming, and I was on the fucking Dean's List and graduated with honors. 95% of what I know I learned it on the job after college. Today I work from home and have a comfortable income so don't let your fears take hold. You still have to study on your own creating personal projects which will teach you way more programming than what you learned in college.

                  1 Reply Last reply
                  0
                  • H [email protected]

                    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 🙏---

                    S This user is from outside of this forum
                    S This user is from outside of this forum
                    [email protected]
                    wrote last edited by [email protected]
                    #34

                    The fact that you are questioning yourself means that you have the ability to introspect. I work at a major university and hire/manage people of all ages--as young as 15 and as old as 65. I have seen all kinds from the super smart and motivated to those who will sit in their position and do the minimum until they retire or those who are so incompetent or incapable of learning that they wash out of their own careers.

                    You probably compared yourself to that small number of people who did robotics club in high school, got into the elite CS/CE program, and already have a job offer from Meta for $150k. Don't do that, those people aren't normal and have never learned to just live. They also tend to experience constant and unending anxiety, which is why they drive themselves so hard. Do you really want to live that way?

                    I am always looking for that person who questions themself. If you are concerned about your ability to do something, you will put in the time to make sure that you do it well. If you have a Dunning-Kruger thing going on, then you're going to be a terrible employee and I will eventually resent you and find a way to get you out of my department.

                    My advice:

                    1. accept that you will suffer some form of imposter syndrome for life. This is fine--it is better to be a bit insecure than a bit overconfident. You will constantly work to make sure that what you output is the best quality it can be simply because you are worried that it isn't.

                    2. accept that you have little experience in your industry. You're not supposed to as a new graduate. The whole point of your training has been in learning how to think professionally and approach a problem academically. Once you have that basis, you can learn the details.

                    3. be kind to yourself. You're your own person and you don't need to use others as a metric. Avoid the "I'm supposed to have..." sort of thinking and just do the best you can.

                    scrubbles@poptalk.scrubbles.techS 1 Reply Last reply
                    12
                    • T [email protected]

                      I don't know your industry, but you probably know more than you think. In my job I learned so much in my first two years out if school.

                      H This user is from outside of this forum
                      H This user is from outside of this forum
                      [email protected]
                      wrote last edited by
                      #35

                      Yeah that’s actually reassuring to hear 🙏. I keep hearing people say the real learning happens once you’re on the job, but the scary part is getting that first break. That’s why I was thinking — if there was a space where you could practice by picking up real projects (even buying ready-made ones just to see how things are structured), get some guidance/mentorship, and then slowly start putting out your own work… it would make the jump way less intimidating. Feels like that kind of model could really help students like me who are starting late.

                      1 Reply Last reply
                      0
                      • G [email protected]

                        Assuming it's programming because why else would OP randomly say they dont know it...

                        Which is terrible because that's a practical skill you can't really fake and you need the foundational knowledge from school.

                        OP is gonna need to look at something like HR or office drone where a general degree is "good enough".

                        Not the end of the world, they just coasted thru a degree for a very competitive field. So now they need to pivot. Even people who paid attention and know their shit can't get a job programming these days anyways

                        H This user is from outside of this forum
                        H This user is from outside of this forum
                        [email protected]
                        wrote last edited by
                        #36

                        Yeah, true — programming isn’t really something you can fake, especially in a competitive market. If the fundamentals are weak, it shows during interviews. And you’re right, a lot of people with decent knowledge still struggle to land jobs these days, so for someone who coasted through college it feels extra overwhelming.

                        That said, I don’t think it always has to mean a hard pivot away from tech. I’ve seen people catch up when they start small: buying or downloading existing projects, breaking them apart to see how things actually work, then slowly tweaking/building their own. Pair that with mentorship or guidance from people in the industry, and it creates a shortcut compared to trying to figure out everything alone. Even if it doesn’t guarantee a job, it at least gives you a portfolio and confidence to back yourself.

                        For those who decide to pivot — HR, ops, etc. like you said — fair enough. But I feel like having an option in between (learn + build + guidance in one place) could really help students who don’t want to give up on tech completely.

                        G 1 Reply Last reply
                        0
                        • H [email protected]

                          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 🙏---

                          M This user is from outside of this forum
                          M This user is from outside of this forum
                          [email protected]
                          wrote last edited by
                          #37

                          Does your area have any tech meetups? Maybe get out there and talk to people?

                          For our area, there are makerspaces that curtail to such events. And if you are still lost, there are places like freecodecamp that help out with building your first projects. It has a discord if I recall as well.

                          GL! Its a VERY hard market right now.

                          1 Reply Last reply
                          1
                          • H [email protected]

                            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 🙏---

                            N This user is from outside of this forum
                            N This user is from outside of this forum
                            [email protected]
                            wrote last edited by [email protected]
                            #38

                            learn to pass a coding interview. practice the common data structures, focus on one language. hackerrank, leetcode, pluralsight.

                            they don't care about what you learned in school. school is where you learn to think, and prove you can work hard. i never graduated

                            1 Reply Last reply
                            0
                            • H [email protected]

                              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 🙏---

                              lumelore@lemmy.blahaj.zoneL This user is from outside of this forum
                              lumelore@lemmy.blahaj.zoneL This user is from outside of this forum
                              [email protected]
                              wrote last edited by
                              #39

                              I just recently graduated with a CS bachelors. Honestly I didn't learn too much in college either. Most stuff that was taught in college was stuff I already knew from learning Java on my own so I could make Minecraft mods as a tween.

                              I wish that modern and widely used frameworks, libraries, etc were something that were taught at college but unfortunately you have to teach yourself this stuff. Right now I am working on and nearly finished with a Spring Boot + React project to add to my portfolio and I had to teach myself both of those. Whatever it is you want to learn, there should be docs and plenty of tutorials out there for it.

                              H 1 Reply Last reply
                              2
                              • diplomjodler3@lemmy.worldD [email protected]

                                If you got through 3 years of university without flunking out, you can't be doing that badly. If you want projects to look at, try GitHub. Only has a few million of them.

                                I This user is from outside of this forum
                                I This user is from outside of this forum
                                [email protected]
                                wrote last edited by
                                #40

                                Open source projects are a great resource. My understanding of good software development practices skyrocketed after contributing to a couple.

                                diplomjodler3@lemmy.worldD H 2 Replies Last reply
                                3
                                • H [email protected]

                                  Yeah, true — programming isn’t really something you can fake, especially in a competitive market. If the fundamentals are weak, it shows during interviews. And you’re right, a lot of people with decent knowledge still struggle to land jobs these days, so for someone who coasted through college it feels extra overwhelming.

                                  That said, I don’t think it always has to mean a hard pivot away from tech. I’ve seen people catch up when they start small: buying or downloading existing projects, breaking them apart to see how things actually work, then slowly tweaking/building their own. Pair that with mentorship or guidance from people in the industry, and it creates a shortcut compared to trying to figure out everything alone. Even if it doesn’t guarantee a job, it at least gives you a portfolio and confidence to back yourself.

                                  For those who decide to pivot — HR, ops, etc. like you said — fair enough. But I feel like having an option in between (learn + build + guidance in one place) could really help students who don’t want to give up on tech completely.

                                  G This user is from outside of this forum
                                  G This user is from outside of this forum
                                  [email protected]
                                  wrote last edited by
                                  #41

                                  I’ve seen people catch up when they start small: buying or downloading existing projects, breaking them apart to see how things actually work, then slowly tweaking/building their own.

                                  That's trying to teach yourself, when a college education didn't work...

                                  Pair that with mentorship or guidance from people in the industry,

                                  What you want is an internship.

                                  Do not under any circumstances pay someone to "mentor" you, no employer will care. An internship looks so much better, it's at least an institutional scam that people still respect.

                                  But I feel like having an option in between (learn + build + guidance in one place) could really help students who don’t want to give up on tech completely.

                                  This isn't an either/or scenario...

                                  You're thinking you have a year, how many calendar months is it to graduation? You should be applying to jobs after this semester, the market fucking sucks.

                                  You need a solid plan, a backup plan, an "oh shit" plan, and an absolutely last resort plan.

                                  You'll be an adult before you know it, and unless you have a personal safety net, you may not have one.

                                  1 Reply Last reply
                                  0
                                  • libb@piefed.socialL [email protected]

                                    Any advice would be a lifesaver 🙏---

                                    Stop wasting your time would be my first advice.

                                    If you really feel like you've wasted your time for the first 3 years, change. Change now. Not tomorrow, not next year, not after you manage to find the real 'good place that will help you learn something'. Do it now, where you are. Start learning, ask questions, discuss with teachers (and fellow students, too), invest yourself.

                                    It's never too late, no matter how late. But there is no shortcut to doing the work.

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

                                    Like already mentioned, that's the place you're in right now. But, allow me to insist on that, it requires you to put in the work. Like with learning anything new.

                                    The other suggestion I wanted to make was already given to you: since you seem to be into coding, start actually coding stuff. A diploma is not worth much compared to experience you acquire by making stuff and writing you own code for real.

                                    There are plenty open source projects looking for someone to help push them forward if you have no idea on what to work. But if that's the case I would also suggest you question your motivation to study that.

                                    S This user is from outside of this forum
                                    S This user is from outside of this forum
                                    [email protected]
                                    wrote last edited by
                                    #42

                                    CS grads are in the worst position ever. University is often mistaken for vocational education, however that would be a technical college.

                                    I have spent a lot of time crossing between a practical education environment, aimed at production skills, and university, aimed at thinking ability and abstract skills.

                                    Honestly, my experience is that students are much more capable in a production environment after a two week boot camp than after three years of university on a roughly parallel topic. However, the non-idiots in the academic case will be able to understand arguments about the context of what they are doing better.

                                    The point is that a philosophy degree might be more employable than a CS degree in some situations. The dude who cofounded Flickr and Slack was working off of an english degree. Use your degree for understanding and some projects for knowledge.

                                    I also have a humanities degree and work in IT, with a wide range of applied skills I learned from necessity instead of a prof.

                                    So create the necessity for skills by making useful shit, or even just fixing things. Find friends and make a silly app. Volunteer at a nonprofit and improve their CRM database. Build a homelab that you share with roommates. Find the local permacomputing group and help them turn all those shitty win10 obsolete machines into sleek linux machines. Ignore money and employment as task criteria for a few years, or freelance IT gigs.

                                    Solve real world problems for real experience.

                                    1 Reply Last reply
                                    0
                                    • I [email protected]

                                      Open source projects are a great resource. My understanding of good software development practices skyrocketed after contributing to a couple.

                                      diplomjodler3@lemmy.worldD This user is from outside of this forum
                                      diplomjodler3@lemmy.worldD This user is from outside of this forum
                                      [email protected]
                                      wrote last edited by
                                      #43

                                      Definitely. Also looks good on a resume.

                                      H 1 Reply Last reply
                                      0
                                      • L [email protected]

                                        Listen, diploma and knowledge are parallel things. A diploma is a nice document. It opens some doors. But can't substitute knowledge. Just write something useful. You'll learn a lot in the process. Learn a lot of USEFUL things. So just start writing. Writing is useful and fun. Yes, you can drink and write. You can smoke and write. But you must write. Not a stupid artificial book problem solvers. Write something you really would like to have.

                                        H This user is from outside of this forum
                                        H This user is from outside of this forum
                                        [email protected]
                                        wrote last edited by
                                        #44

                                        Facts. Diploma’s just a piece of paper, man. What really counts is the stuff you actually make. Writing, building, whatever — as long as it’s useful and not just textbook bs. Half the time we get stuck solving fake problems no one cares about, instead of creating something we’d actually use ourselves.

                                        Even if it’s messy at first, just grab some project, tear it apart, mess with it, make it your own. That’s where the real learning happens. Guidance helps, sure, but end of the day it’s just you building stuff you vibe with. That’s what actually sticks

                                        1 Reply Last reply
                                        0
                                        • crazi_man@europe.pubC [email protected]

                                          I don't know about the industry specifically, but learning and applying the knowledge takes a certain number of work hours. This is good advice to start putting in hours. OP is asking if there are shortcuts. You can optimise to get the most out of your time, but there's really no way around having to put in the hours. His fate will depend on what assessment/sign-off involves and how soon it will be.

                                          H This user is from outside of this forum
                                          H This user is from outside of this forum
                                          [email protected]
                                          wrote last edited by
                                          #45

                                          Yeah true, no magic hack here — you gotta put in the hours no matter what. Can’t dodge that part. But I feel like there are ways to make those hours hit harder. Like instead of grinding random theory, grab a project that already exists, break it down, mess with it, and learn as you rebuild. Cuts out a lot of wasted time.

                                          Plus if you’ve got someone experienced to point out “yo, focus here, skip that” it saves weeks of trial and error. So yeah, hours are non-negotiable, but you can still optimize the grind so it doesn’t feel like you’re starting from zero.

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups