programmer job in a nutshell

robocall@lemmy.world to Programmer Humor@programming.dev – 1295 points –
54

You are viewing a single comment

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.

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

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++.

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.

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.

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.

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

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