this post was submitted on 10 Feb 2026
196 points (95.0% liked)

Programming

25477 readers
401 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
[–] sping@lemmy.sdf.org 2 points 1 day ago

I gained a lot of understanding noodling with extreme low-level memory access etc, but in reality almost all the coding I ever did early on was in C with stdlib etc, which is shaped more by low-level realities of the CPU, but is still full of abstractions. Abstractions that were often opaque to us as well, because this was before Linux and ubiquitous open source.

Sure everything is a few more layers removed from the simple hardware these days, but once it's a black box, it's a black box. A lot of the feeling of being closer to the hardware is pretty meaningless.

Sure a variable in C is really just a way of referring to a piece of memory, while in Python it's some sort of data structure in a mapping most of us don't really know the exact nature of, but in the end the difference is rarely is of any significance and most of us only have a similarly vague idea of how the compiler works it out for us in C.