this post was submitted on 12 Jul 2023
29 points (93.9% liked)
Programming
17313 readers
215 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
Started with C++, definitely wasn't easy. I ended up giving up and revisiting a couple years later and PHP/HTML was a fair bit less to take. I did end up revisiting C++ and making an archive format for my game engine. These days I definitely start by the low level, even libraries I jump to the low level features/long form before going to the nicer abstractions for the sake of understanding what's going on under the hood. It's definitely valuable too.
Just pointing out different styles of learning exists, OP can choose whatever fits better for them. I've known people that good completely demoralized because it was a bit much to take to think about how big an integer is in memory and arrays and whatnot. Especially if you approach it with making games, focusing on player moment and map scrolling can be more intuitive to learn the basics and slowly migrate to lower level things. I have friends that started with 6502 or Z80 assembly (good ol' Ti 83+ calculators) and they liked that way better because it made them appreciate what compilers really do better. Really dependent on the person.
I advocate for whatever works better for the learner, whatever makes them not give up and whatever keeps them going.
I made it about as far as
std::cout << "Hello World!";
and couldn't figure out wtf cout was or progress from there.Eventually, nearly a year later, I started over with a simpler language (Basic) and maybe five after that I realised my IDE just wasn't setup right - so
cout
literally did nothing at all.