Rather than writing something from scratch it would make more sense to maintain an existing application stewarded by the university. There are some universities that work this way but even then they don't have enough projects for everyone to work on
Programming
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
Idk which market you are in. In mine no one cares about your project. Most of companies don’t do innovation. Most of real life projects I saw just moves data around. When I interview people all I care about is knowledge of tech stack and what I call “analytical thinking”.
It's a Google Docs link...
Money and time.
Tons of people build cool projects during their time in university, but the vast vast majority of people don't because they are eating beans and rice and ramen and pizza and studying, not spending 500€-1000€ on iterative prototyping and the equipment to test everything.
Students generally don't have real-world problems that need solving. I think pretending they do makes a lot of assumptions about their life, hobbies, free time...
It's much much much more important to have a co-op program. Everything practical I learned in university was through my co-op work terms.
I am responsible for hiring some devs right now, and there's been a wide spectrum of competence from people who have "real projects". Especially with how prevalent AI is, people can literally just talk to an AI agent and get some kind of app/website spun up with 0 skill and effort. What I am always looking for is people who can work on a team in an existing codebase.
time
it takes quite a big bunch of time to craft anything even remotely useful - the golden era of extreme java programming has long passed
I have bills and student loans to pay. I didn't get a job in my field right out of college so I've been stuck bouncing around min wage to make ends meet. Have very little time to do any projects.
For one: your university might own anything you create while using their resources and facilities.
Tbh University just wants our success to promote their uni. that's why I prefer external projects rather than uni projects.
It's the real world part.
I have written a SMTP-Server in C and some crud services in java, but everything ran on localhost.
If I wanted to expose them on the web I would have to ensure the code is actually secure, ensure compliance with data protection regulations, moderate user generated content, get ssl certificates, a domain and server hosting.
Half those steps are one minor mistake away from a large bill.
Yeah, it's easy to underestimate how big of a leap it is from a toy application to real-world usability. Not just in terms of security, but also:
- useful error messages
- logging / monitoring
- configuration
- building a distribution
- deploying in a reproducible way
- documentation
- integration with existing infrastructure
- data migration strategies
- etc.
This adds a lot of complexity, so you'll need to learn additional complexity to be able to deal with it at all:
- modularization
- version control systems
- software specifications (via unit/integration tests)
- team communication
- helper tooling, like package managers, linters etc.
Learning about all this stuff takes years, especially if no one in your surroundings has much experience with any of it either. Professors don't have the time to gain or retain this experience, since they already have a different full-time job.
My advice would be to get students to do internships or to take a job as a working student in a company/organization. Sometimes, these can be shitty for the students, but they can often provide significantly more real-world context than college ever could.