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

Fediverse

27517 readers
644 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] 67 points 1 year ago (5 children)
[–] [email protected] 15 points 1 year ago (1 children)

Don't mind me, just saving this comment too.

[–] [email protected] 14 points 1 year ago (2 children)

Lemmy allows you to save a comment without commenting btw. Just click on the three dot menu and then click the star.

[–] [email protected] 7 points 1 year ago (1 children)

Oh, I know. I was just saying that to tell them that their post helped another person.

[–] [email protected] 5 points 1 year ago (1 children)

Oh my bad then, ignore me hahaha.

[–] [email protected] 1 points 1 year ago

We could never ignore you bro!

[–] [email protected] 6 points 1 year ago (1 children)

Do you know how to do this on Memmy?

[–] [email protected] 5 points 1 year ago

Also on Memmy and don’t see an option for this yet. Would be a great addition

[–] [email protected] 12 points 1 year ago

Okay, C# is a music note which links with my fondness of music theory. Kewl.

[–] [email protected] 9 points 1 year ago (7 children)

Is C# really that nice to work in? I'm looking to expand my horizons past JS now that I feel fairly comfortable with one language.

[–] [email protected] 12 points 1 year ago* (last edited 1 year ago)

It’s a genuinely nice language with tons of syntactic sugar. It’s fast, flexible and runs everywhere. Honestly my favorite language.

Other nice things about it is you can write object oriented code as well as functional style with it, so it even handles the style of code you prefer which is a lot harder to do with other languages. Finally it’s open source but also has deep pockets behind it so the language is constantly being pushed forward.

[–] [email protected] 5 points 1 year ago (1 children)

Yes, it's nice and worth learning, especially if you try at both highly abstracted code and performance sensitive projects. Don't get stuck thinking in c# though. Its brand of strict oop seems to be getting less popular these days.

[–] [email protected] 1 points 1 year ago

You can write fully functional code in C#! I pretty much made the switch over and it works great

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago)

I always prescribe learning Python over basically any other language (unless you're gonna start doing some real low-level computing). It's a much more relevant and popular language. C# isn't irrelevant, you'll just see Python used way more often. Python will also compliment JS much more.

[–] [email protected] 3 points 1 year ago

I absolutely loved learning C# a few years ago. I haven't touched programming since my last C# class and I'm probably going to relearn it later this week.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

It's basically a cleaner, more concise version of java. It's a good choice to study if you want to learn something very different from JS but with some familiar syntax. These days you can also run C# anywhere, so it's very useful for app development.

If you learn C# you'll be able to learn java very quickly as well.

[–] [email protected] 3 points 1 year ago

C# is my primary language, so I'd certainly recommend it. It can be a little daunting to get into because it is a large ecosystem of tools, so you might want to watch some videos and keep things simple for a while.

For work I mostly use it for APIs for web sites, that might be a good place to start if you're familiar with JS/TS front-end work. From there you might want to try Razor or Blazor for handling web UI work in C#. I'm not very experienced with that aspect of it, but it's mostly been a positive experience (TBH I kind of prefer React, but I'd need to spend more time on the Razor/Blazor side to have a strong opinion).

The desktop development side in C# is kind of a mess at the moment. Maybe stick with web until you're feeling pretty comfortable with the language.

[–] [email protected] 3 points 1 year ago

I'd go with Kotlin. It's a really nice language, easy to learn if you already know JS (or even better, TS), and with KMM and Compose Multiplatform you can write apps which run natively on smartphones, browsers and PC/Mac.

[–] [email protected] 7 points 1 year ago (1 children)

Smh, you're not even dumping them into Linux from scratch to learn C++ yet!

[–] [email protected] 2 points 1 year ago (1 children)

The first language I learned is C# and it sparked that interest that got me the job I'm in now!

I see other people recommending Python for beginners because of the simpler syntax (the way you write the code) but I'd still recommend C# because although the learning curve is a little steeper you'll find it MUCH easier to learn pretty much any other language you choose. And even if you don't choose to learn another language, you'll still know a good (and fast) general-purpose language!

[–] [email protected] 2 points 1 year ago

This. I love me some python, but it’s so unstructured (and by that I mean more how the structure is based off spacing), I actually think it makes it harder to learn vs. easier.

“Bracket” languages let the learner get a feel for when a piece of logic ends, which I think is important to learn at first. Also, C type languages, ESPECIALLY C#) are everywhere, depending on the field you end up specializing in you probably have a 90+% chance of needing to know one of these languages.

Seriously, there is nothing wrong with python, but I think the easiness of it actually works against learning to code (imho)