this post was submitted on 26 Oct 2023
80 points (90.8% liked)
Programming
17308 readers
244 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
What's your age? Ideally, you'll want at least some knowledge about logic and logical operations: TRUE, FALSE, AND, OR, etc.
Following that, "which language" might be a rather tricky question. Python and Javascript are "good starters", but they might also "teach" you some bad habits. They're also highly sought after if you're looking into possible future jobs.
Personally, I'd recommend starting with either Java or Go. Both have lots of learning material and plenty of jobs, but they should also put you in the "proper" mindset of programming.
I don't think boolean logic is a necessary prerequisite for coding, if you don't know it yet it makes more sense to learn about it when you come across a programing problem where you'll want to use it imo
I second Java. It's easy to get into, has a lot of materials online, and is statically typed which is great for teaching. Most people who start with Python or JS didn't have a good grasp of variable types and often make more mistakes.