this post was submitted on 19 Mar 2024
1299 points (98.9% liked)

Programmer Humor

19147 readers
1169 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 87 points 5 months ago (3 children)

Smalltalk would probably make more sense than C++.

[–] [email protected] 49 points 5 months ago (3 children)

I was Haskalling for that one. I need to Go and shake off the Rust, maybe work on my Lisp to make sure people React well.

Node what I'm saying?

[–] [email protected] 19 points 5 months ago

Not Ruby sure what you're saying, but I dream of getting strangled by a Python that can't C#. 🤤

[–] [email protected] 3 points 5 months ago

If the devs are really exhausted and sad you can't go wrong with bringing them a Java while they're dealing with their latest Brainf**k . Knowing various languages helps you to C#, as long as you take good care of your eyes!

[–] [email protected] 3 points 5 months ago

React well

That can only be some sort of evil Scheme, a rather Basic one. I can't even Assembly the proper words to describe the Brainfuck

[–] [email protected] 9 points 5 months ago

But it’s less cruel to students.

[–] xmunk 6 points 5 months ago (1 children)

C++ is still the far and ahead leader in game programming. All the tools are written in it and everyone is used to it.

[–] [email protected] 15 points 5 months ago (4 children)

C++ is an awful candidate for a first programming language to learn, at least nowadays - it is very powerful, but it's also full of foot-guns and past a certain point the learning curve becomes a wall

[–] [email protected] 15 points 5 months ago (3 children)

it's a great candidate. It was my first "real" languages (i.e. the first language, that is not php/js)

you have a text file. then call the compiler on it, and then you have a exe file, that you can run. It does exactly what it is supposed to do without thinking about the browser, the webserver, the JVM, or some other weirdness.

I get, that doing "good cpp" is difficult. And using all the weird languages features is difficult. But as long as you use strings, ints, ifs, fors, you should be fine. Just don't use generics, templates, new (keep everything on the stack), multi-inheritance, complex libraries, and it's a nice beginner language.

[–] [email protected] 6 points 5 months ago

Yeah. My intro programming classes used C and C++ and they were great for illustrating the fundamentals. Plus I think it's important to learn the building-blocks/history

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

Maybe it's C that's a good first language, though I would admit that the basic ouputting of values to stdout is more intutive in C++.

[–] [email protected] 9 points 5 months ago (2 children)

this std::cout << "hello world" bullshit is in no way intuitive. You're using the bit-shift operator to output stuff to the console? WTF? Why 2 colons? What is cout? And then these guys go on to complain about JS being weird...

No, C is where it's at: printf("hello world"); is just a function call, like all the other things you do in C.

[–] [email protected] 5 points 5 months ago* (last edited 5 months ago) (1 children)

For non-programmers (who most definitelly don't know that >> and << are bit shift operators) shoving something into something else is more intuitive than "calling a function with parameters".

Also don't get me started on the unintuitiveness of first passing a string were text is mixed with funny codes sgnaling the places were values are going to be placed, with the values passed afterwards, as opposed to just "shove some text into stdout, then shove a value into stdout, then shove some more text into it".

Absolutelly, once you are used to it, the "template" style of printf makes sense (plus is naturally well-suited for reuse), but when first exposed to it people don't really have any real life parallels of stituations were one first makes the final picture but leaving some holes in it and later fills-in the holes with actual values - because in real life one typically does it all at once, at most by incremental composition such as in C++, not by templating - so that style is not intuitive.

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

shove some text into stdout

That's not what this operator does normally, and if you try to "shove" something into anything else (an int into a variable? a function into an object?) you'll get surprises... Basically it's "special" and nothing else in the language behaves like it. Learning hello world in C++ teaches you absolutely nothing useful about the language, because it doesn't generalize.

C, in contrast, has many instances of complex functions like printf (another commenter mentioned variable arguments), and learning to call a function is something very useful that generalizes well to the rest of the language. You also learn early enough that each different function has its own "user manual" of how to use it, but it's still just a function call.

[–] [email protected] 4 points 5 months ago

C is no beginner heaven either, printf is its own can of "why can this function have any number of arguments and why does the compiler have to complain about the formatting every 25 milliseconds" worms

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

Go is just as easy. Install the compiler, write a file, compile it, get an exe. And a lot less foot-guns.

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

I actually found it alot easier once I had learnt C. That way I know where all of the problems are and can use the high-level stuff to get around them, while still fundamentally understanding what is going on

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

Oh yeah, if you know C can be way more convenient depending on the language features you care about (as long as you thread very carefully when doing type punning, which you would rarely want to).

[–] [email protected] 2 points 5 months ago

Basic C++ isn't really confusing (if you are not handwriting makefiles). It starts to get fucky when you get into memory handling, templates, etc. I'm assuming they are only using C++ over C for basic OOP (class/structs inheritance etc).

[–] xmunk -4 points 5 months ago (2 children)

Not really. Pointers are almost always a bad idea - just use const refs and you'll be fine.

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

If using pointers is out of the question, then why choose to learn a language with explicit memory access before anything else?

I have yet to learn Rust, but from what I hear it's simpler and (mostly?) memory-safe – implying that it's generally a better first language to learn.

[–] xmunk 1 points 5 months ago

Pointers are almost always a bad idea - but you'll probably get a lot of mileage out of having a handful of them in a large project... there's an impulse with new C++ devs to do everything with pointers and use complex pointer arithmetic to do weird array offset and abuse predictable layouts to access stack variables etc.... pointers are fine when used with moderation.

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

What do you mean? Pointers are the best thing ever. It either works, or you manage to make fireworks!