I have a sneaking suspicion that most memes are from CS students, it all makes sense. People with jobs don’t have time to make memes, get angsty about languages, or syntax issues.
Unfortunately this idea tracks with a lot of online content. People who have time and energy to be extremely opinionated about things generally either don’t have a lot else going on, or have direct personal experience that led to their strong views. As people get older and life gets busier people seem far more likely to just do whatever they need to get by and shut up about it.
Seriously, go look up some of the user demographics polls and analysis that was done against various subs on the old site. Most users are/were college age or younger even. Puts a lot of the “sillier” subs like relationshipadvice into context.
In my opinion this is a problem with the internet in general, younger people tend to crave attention and often receive the most online because of the anonymous platform it gives them.
As I approach 35 I find myself half writing comments and deleting them because I don’t fucking care. This time I will press send
Yeah, if something in my life frustrates me, be it coding or otherwise, I search for solutions online and complain to friends “offline”, If I ever thought of making content, it would be on solutions I found of things that frustrated me,. and I’m not even that old.
After 10 years of doing it for work, I still get frustrated about language issues.
But semicolons? It’s 2023, why does your language have semicolons at all?
If you’re one of those poor sods stuck with Java, still it’s not an issue, all IDEs will warn you, and basically complete half the code for you.
It’s 2023, why does your language have semicolons at all?
Explicitly constructing your intentions are features of a language.
I LOVE types. I LOVE semi colons. I LOVE compiler errors.
Why? Because the ALTERNATIVE is finding (if you’re lucky) unexpected behaviour at run-time.
I promise, I promise SO HARD, that memes about semi colons or “my code doesn’t compile” are GREAT problems to have.if that’s what’s making you sad, your life is good and you’re getting paid 10x too much.
Types give structure to your program, prevent bugs and make team work easier.
Semicolons are an artifact of the times it was thought multiple statements could go on a same line.
Although I do admit, they make language design easier.
Semicolons are optional in JavaScript unless you are combining multiple statements on a single line, which is generally not something you should be doing anyway.
I avoid them whenever possible. It encourages people to write poorly formatted code. But then I’m a python dev so I tend to be opinionated when it comes to whitespace.
Just slap a formatter on there and call it a day. Semicolon or not, IDGAF, let’s just stop with the formatting bikeshedding. There are more important things to think about. They don’t encourage anything if you don’t think about formatting.
I have a sneaking suspicion that most memes are from CS students, it all makes sense. People with jobs don’t have time to make memes, get angsty about languages, or syntax issues.
Unfortunately this idea tracks with a lot of online content. People who have time and energy to be extremely opinionated about things generally either don’t have a lot else going on, or have direct personal experience that led to their strong views. As people get older and life gets busier people seem far more likely to just do whatever they need to get by and shut up about it.
Seriously, go look up some of the user demographics polls and analysis that was done against various subs on the old site. Most users are/were college age or younger even. Puts a lot of the “sillier” subs like relationshipadvice into context.
This guy fucks^
In my opinion this is a problem with the internet in general, younger people tend to crave attention and often receive the most online because of the anonymous platform it gives them.
As I approach 35 I find myself half writing comments and deleting them because I don’t fucking care. This time I will press send
Dude, imagine taking the time out of your day to actually make a meme (like the one posted). I really can’t be bothered.
Yeah, if something in my life frustrates me, be it coding or otherwise, I search for solutions online and complain to friends “offline”, If I ever thought of making content, it would be on solutions I found of things that frustrated me,. and I’m not even that old.
After 10 years of doing it for work, I still get frustrated about language issues.
But semicolons? It’s 2023, why does your language have semicolons at all? If you’re one of those poor sods stuck with Java, still it’s not an issue, all IDEs will warn you, and basically complete half the code for you.
Explicitly constructing your intentions are features of a language.
I LOVE types. I LOVE semi colons. I LOVE compiler errors.
Why? Because the ALTERNATIVE is finding (if you’re lucky) unexpected behaviour at run-time.
I promise, I promise SO HARD, that memes about semi colons or “my code doesn’t compile” are GREAT problems to have.if that’s what’s making you sad, your life is good and you’re getting paid 10x too much.
Semicolons are not at all comparable to types.
Types give structure to your program, prevent bugs and make team work easier. Semicolons are an artifact of the times it was thought multiple statements could go on a same line. Although I do admit, they make language design easier.
Semicolons are optional in JavaScript unless you are combining multiple statements on a single line, which is generally not something you should be doing anyway.
I avoid them whenever possible. It encourages people to write poorly formatted code. But then I’m a python dev so I tend to be opinionated when it comes to whitespace.
Just slap a formatter on there and call it a day. Semicolon or not, IDGAF, let’s just stop with the formatting bikeshedding. There are more important things to think about. They don’t encourage anything if you don’t think about formatting.
This is one of the things I like most about Go. Formatting is already defined and handled by
go fmt
. Takes out all format arguments before they start.That would also explain all the memes complaining about lack of comments.
Or worst, hobbyists…