this post was submitted on 20 Jul 2023
168 points (94.2% liked)

Fediverse

27517 readers
584 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).

If you wanted to get help with moderating your own community then head over to [email protected]!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy

founded 1 year ago
MODERATORS
 

Across this vast Fediverse, I have encountered a trend of people answering questions with esoteric programming language speaking in tongues that I don't understand, including under my own posts. I am a Boomer when it comes to coding and I am only 27. I don't even know where I would start to learn it because programming is so diverse. I want to feel like I know what's going on but I don't. Coding is the future and the future is now and I am lagging severely behind. I guess I'm asking where a bumbling novice like me can learn more about where to start when it comes to programming.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 14 points 1 year ago

Software engineering nowadays is really complex. There is no way you're going to know what's going on, nobody is.

It's just the more experience you have, the easier it is to figure out what's going on. If you want to learn coding, just start coding.

I will start from something no one mentioned - start with Linux. Windows has its own very "special" ways of compiling stuff, while Linux is very simple. If you start on Windows, you'll probably use IDE which will set up everything for you (cause setting up thing in Windows is messed up), and it will still be a black magic for you how the code transforms into binary.

Many people recommend python, but I would start with C (not C++, C++ sucks). It will give you the understanding of basic concepts like memory management.

Then start using something like javascript, which will get you wide range of libraries, which you can use to build anything.

Then at the end learn how infrastructure works, how are services communicating with each other, how to put your server to the public, learn Docker, set up reverse proxy, run stuff in cloud.