Bro I’m in final year and literally know NOTHING, am I doomed? 😭
-
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
---
wrote last edited by [email protected]Lots of advice here but I haven’t seen anyone mention coding boot camps. There are free ones like FreeCodeCamp or lots of paid options. You can do these to learn or validate what you have been taught.
My company hires associate-level software engineers directly out of college programs and boot camps. They don’t expect people from these to know everything; you may not have ever even used the language that you will be expected to code in! But by completing a program you’re showing you understand the logic of programming and that is applicable knowledge.
Look for entry-level jobs and you’ll be fine. Even better, look for companies that intentionally hire from programs like yours. They’re more likely to have internal programs to help teach new-to-career folks.
-
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
---
wrote last edited by [email protected]"Gifted" but not quite genius kid here. I managed to coast through the first year of University, but then I hit a wall, where discipline and good study habits would have served me well.
Eeexcept I'd never needed to do that before and I had undiagnosed but pretty blatant and crippling ADHD which meant that I couldn't do that even if I tried. (I occasionally did try. No dice.)
Repeated the second year. Barely scraped through it. The decline continued. The final year I was just showing up because that's all I knew how to do and was too scared to up and quit.
Spent most of my time in the computer labs interacting on the early WWW. It was an excellent distraction from the absolute stress I was under.
Didn't graduate, but heard you could get a diploma for having passed the first two years. Requested and got that. No ceremony. No fanfare. It's in a picture frame in a pile of stuff somewhere around here. Too many painful memories to display it on a wall. I still have nightmares.
What I did do was go out and get a job. This was pre- turn-of-the-century so getting a job was way easier than it is now, but it still took six months. Ended up working for what is now a fairly big US-based company that shall remain nameless. (I was ousted long before they made it big.)
My advice would be to do similarly. If you don't think you can knuckle down and do what you need to in order to pass this course, get out now, or else at the end of the school year when there's a natural end to things.
BUT: Do at least try to knuckle down first. Lots of other good advice here. Maybe you're not in as bad a state as I was. Maybe you do in fact "got this". Getting and doing a job is different, but it's not necessarily easier. (But for me that's another story.)
-
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
---
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.
-
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
---
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:
- 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.
- 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.
- Add another piece of interactivity: Make the rendered text of a to-do entry editable.
- Add another piece of interactivity: Make the list resettable, so your edits and cross-offs vanish.
- Add another piece of interactivity: Make it possible to add entries to the list.
- Add another piece of interactivity: Make it possible to turn the list green.
- Add another piece of interactivity: Make it possible to remove entries from the list.
- Keep adding visible features until the frontend is the best goddamn to-do list you can make.
- Create a backend. Your backend has a database (such as MySQL). It has one table, which contains every to-do.
- 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.
- 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.
- Congratulations, you've built a rudimentary real-world application!
-
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
---
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.
-
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
---
Start it all over. Do things right the second time.
-
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
---
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.
-
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
---
wrote last edited by [email protected]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. -
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
---
Sounds like it's time to start some basic code camp / code academy / Udemy courses in your off time to catch up.
-
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
---
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.
-
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
---
wrote last edited by [email protected]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:
-
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.
-
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.
-
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.
-
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.
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.
-
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
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.
-
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
---
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.
-
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
---
wrote last edited by [email protected]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
-
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
---
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.
-
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.
Open source projects are a great resource. My understanding of good software development practices skyrocketed after contributing to a couple.
-
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.
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.
-
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.
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.
-
Open source projects are a great resource. My understanding of good software development practices skyrocketed after contributing to a couple.
Definitely. Also looks good on a resume.