this post was submitted on 07 Sep 2024
102 points (99.0% liked)
Programming
17314 readers
71 users here now
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]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Best advice I have:
https://www.youtube.com/watch?v=0FPO4fm4nxc
Keep at it. Do actual projects. Actually use the tools for a while. It will eventually make sense.
I want you to understand how surreal this particular link is for me. Video edits are my hobby, and I've just recently started yet another play-through of Morrowind. I get the whole "do actual projects" thing and that's valid, but I've no clue where to start here. Should I finally learn C#? Is Rust the only way forward? Should I just try to catch back up on Java? I guess what I'm asking here is should I just try to find a FLOSS/OSS project and try to contribute or think of something new?
You can either decide by what is currently in demand in the industry and then pick a project that you can exercise that language with or you can think of a project you'd like to do and then go by what the best language is for a given project.
In the end, languages are just like different wrenches. First you have to learn how to use a wrench, size or features don't matter much at this point (unless you already know that you want to become an expert with one particular wrench).
I think starting a new project is way easier than contributing to an existing one.
All the cool kids right now are mostly on JavaScript/type script. It’s probably a good place to get started since you’ll need it on the front end.
I’m guessing most work on the U.S. side is react. You can probably pick up a bit of node/react native as you go for the backend and for native dev.
Java is the new COBOL. Big corps luuuuuuuuurve it. It’s not what I would expect a single dev to use. C# is similar but smaller, if you forget unity game dev. And you should forget unity game dev.
Rust is basically a less bad C. If you do things you used to do in C, learn rust. If not, don’t.
Python is also still a thing. If you like it you can probably use it for most things, but if not there are other options.
If you do decide to go the web route, I recommend Build Responsive Real-World Websites with HTML and CSS and The Complete JavaScript Course 2024: From Zero to Expert! as a good starting point. Being Udemy, you don't have to pay full price. If they don't have a sale on now, they will fairly soon. The courses are worth full price though!
My heart belongs to Vue.js
I like Vue better than react tbh.
My latest project is alpine.js. It’s not bad, it stays out of the way.
That said, I don’t do front end often enough to keep up.
Mixing js and template like react does with jsx has always rubbed me wrong. I like how Vue separates everything.
{!found && <p>Not Found</p>}
😕<p v-if=“!found”>Not Found</p>
🙂Yes!
But I’ve learned that there are A LOT of people that are incredibly pritective of react, so I generally don’t wade out into that particular debate.
I think for me it is because my background is in the web first, as opposed to having gone to school for general computer science and then entered web apps second. The idea of returning blocks of HTML with JSX makes more sense to them.