this post was submitted on 29 Jan 2025
34 points (88.6% liked)
Programming
17984 readers
213 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 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Aside from what everyone else is saying, don't use dependencies that you don't have to. Particularly don't use big "frameworks". If you use any dependencies, use tiny, focused ones that do one thing. The more code there is underneath what you're writing, the more likely it will cause problems that you will internalize. I've seen it many times. Spring (Java), for instance, will do something not as advertised, and devs will think they're bad coders because they "can't write code that works as it's supposed to." Avoiding that vicious cycle will make you a better coder in the long run.
Also, when things aren't working with your dependencies, do google for fixes, but don't google too long. If you haven't got a solution after an hour of no progress, look at your dependencies' source code until you understand why and how to fix it.