this post was submitted on 09 May 2025
39 points (93.3% liked)
Programming
20077 readers
60 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 !webdev@programming.dev
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
I don't remember being that impressed with HTDP but it's been a while and I didn't look much. I'd say read SICP first in either case.
The Java thing sounds totally uninteresting and if your next language after Lisp isn't a a mainstream one, I'd say try Haskell.
Regarding math: it can help but it's not that important for pure programming. If you're good at languages and writing, that's helpful in the same way. If you're good at music, that is at least a helpful mindset.
I actually read that HTDP was written to be read before SICP, because they thought that for a beginner, some of the core fundamentals in SICP may be missed.
Again, about fundamentals. I actually wanna do python since is seems more "fun" but I wanna get all the basics down. And I did read after you have learned the harder languages, learning other languages comes much easier.
But I'll look into Haskell. Thank you!
Java isn't exactly hard, and it's not particularly fundamental. It's just bureaucratic, and Python will be both more enjoyable and more useful. Java was trendy in the 1990s and lingers on because so much Java code is still around. If your goal is to use a serious type system (Lisp and Python don't have that), Haskell will be far more enlightening than Java. If you want to use the JVM for some reason, Clojure (a Lisp dialect that run in it) might interest you.
For low level fundamentals, you want assembly language! That gives you almost no assistance and you have to do EVERYTHING yourself, organizing the program in your own head. For old fashioned imperative programming with lots of organizational assistance, try Ada.
You will probably have to learn C at some point, but save it for later when it will be easier for you to spot the weaknesses.
Good tips, thanks!
In university we had c++ and python courses alongside each other, and I currently get paid to write python. I honestly believe my knowledge of c++ (and of course the rest of the courses which went deeper into cpu architectures and data structures and whatnot) makes me a better python programmer, because of the deeper understanding of what goes on under the hood.
Great points. Thanks!