this post was submitted on 29 Aug 2024
905 points (97.6% liked)

Programmer Humor

32024 readers
796 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
top 47 comments
sorted by: hot top controversial new old
[–] [email protected] 55 points 2 weeks ago (1 children)

It's amazing what modern game engine's can render. That looks almost real, kudos to the creators

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

It’s fine but have you seen starfield?

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

*chef's kiss, followed by vomiting*

[–] [email protected] 12 points 2 weeks ago (1 children)
[–] [email protected] 8 points 2 weeks ago

That looks almost real, kudos to the nightmare machine creators

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

C++ is fiiiiine. Just use the modern variant of the language, don't bother with hand-optimizing your memory allocators, and generally avoid anything involving pointer arithmetics. So, basically, use it like you would use Python.

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

So, basically, use it like you would use Python.

That's a great way to get performance as shitty as python's.

[–] [email protected] 41 points 2 weeks ago (3 children)

C++ can do a lot of things but one thing it can't do is perform as poorly as python.

[–] [email protected] 5 points 2 weeks ago
[–] [email protected] 3 points 2 weeks ago

Not quite, but smart pointers in the wrong location can be quite wasteful in terms of CPU cycles.

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

This is a very "yes but still no" thing in my experience. Typically, I find that if I write "naive" C++ code, where I make no effort to optimise anything, I'll outperform python code that I've spent time optimising by a factor of 10-30 (given that the code is reasonably complex, this obviously isn't true for a simple matrix-multiplication where you can use numpy). If I spend some time on optimisation, I'll typically be outperforming python by a factor of 50+.

In the end, I've found it's mostly about what kind of data structures you're working with, and how you're passing them around. If you're primarily working with arrays of some sort and doing simple math with them, using some numpy and scipy magic can get you speeds that will beat naive C++ code. On the other hand, when you have custom data structures that you want to avoid unnecessarily copying, just rewriting the exact same code in C++ and passing things by reference can give you massive speedups.

When I choose C++ over python, it's not only because of speed. It's also because I want a more explicitly typed language (which is easier to maintain), overloaded functions, and to actually know the memory layout of what I'm working with to some degree.

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

I guess I should have clarified in my original comment that I was exaggerating - obviously, C++ doesn't get as bad as python, not even into the same ballpark.

My emphasis was on "don't use C++ like you would python" because that's not good advice imo.

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

I love C++ I love C++ I love C++ I love C++

>does big something with C++

I hate C++ I hate C++ I hate C++ I hate C++

[–] [email protected] 4 points 2 weeks ago

Honestly that's most things in life.

The more complex your project, the more likely you are to run into the rough patches or quirks of whatever it is you're working with.

[–] [email protected] 19 points 2 weeks ago (2 children)

I also enjoyed this album by Incubus.

[–] [email protected] 7 points 2 weeks ago (1 children)
[–] [email protected] 6 points 2 weeks ago (2 children)
[–] [email protected] 4 points 2 weeks ago (1 children)

A Momentary Lapse of Reason

[–] [email protected] 4 points 2 weeks ago* (last edited 2 weeks ago) (1 children)
[–] [email protected] 4 points 2 weeks ago (1 children)
[–] [email protected] 2 points 2 weeks ago (1 children)
[–] [email protected] 1 points 2 weeks ago
[–] [email protected] -2 points 2 weeks ago
[–] [email protected] 1 points 2 weeks ago

What programming language is Afungus Amongus?

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

It's so we can recreate that, but with like laser beams and stuff.

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

When you first saw C++ were you blinded by its majesty?

[–] [email protected] 2 points 2 weeks ago

(with lasers): "How about now?"

[–] [email protected] 17 points 2 weeks ago

My favorite project was C++; it was big, it was complicated, there was a massive team working on it, I got to work with high level abstractions while occasionally dealing with really low level concerns.

It was really hard, but now writing code in every other language I've worked in has been really easy.

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

I feel the same every time I see JavaScript. C++ is one of those ugly but also elegant languages you should try at least once.

[–] [email protected] 8 points 2 weeks ago* (last edited 2 weeks ago)

You know, in that case, the blame doesn't fall on the guy that made it. Shit on the people that made the development deadline a couple weeks, and then decided to keep the product in place for decades.

[–] [email protected] 13 points 2 weeks ago

The people who invented C++ never went outside, otherwise they would have never invented C++.

[–] [email protected] 11 points 2 weeks ago

What if we didn't want more sea, just spikier? C#

I look out acroth the thea, and thee what I can thee. I can't pronounth that thtupid language; I'll write in lithp.

Ocean + traversing a desert => Ocaml?

I improved the C! It is greater! More potent! But what is this? I look at at my poor boat, upon which I traverse the waves of the C++ 7; now it is degraded. Now its beautiful metal hull has oxidised. Oh, the dangers of the C. ...Wait, that gives me an idea...

[–] [email protected] 7 points 2 weeks ago

and then they had the audacity to put that picture on the cover of the textbooks

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

That's why Rust had to be developed! Oxidize all those computers and stuff back to nature.

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

What's with the downvotes on a silly joke? Is the Linux kernel team on Lemmy?

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

its even worse that they hat to ruin a beautiful existing language to do it.

[–] [email protected] 5 points 2 weeks ago (1 children)
[–] [email protected] 3 points 2 weeks ago (1 children)
[–] [email protected] 2 points 2 weeks ago* (last edited 2 weeks ago)

Burn the heathen.

Sorry, I mean

START PROGRAM BurnTheHeathen
Burn&
the heathen !.
END PROGRAM

/s

[–] [email protected] 6 points 2 weeks ago

Yes, a perfect thing of beauty.

[–] [email protected] 3 points 2 weeks ago

Directx 9000

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

The issue is not aesthetic. It is that the feel doesnt match up to the look

[–] [email protected] -2 points 2 weeks ago (1 children)
[–] [email protected] 5 points 2 weeks ago (1 children)

What's wrong with embedded C? Would you rather write assembly?

[–] [email protected] 1 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

Hey assembly is good in the sense you are only dealing with one language but in embedded C you get bad parts of both C and assembly. You have to follow weird C99 or even C89 syntax and on top of that for each micro controllers you have to sift through several hundred pages of data sheet. Each one needing separate registers to be setup in a particular way for every single operation and so much more stupid ass shit.

[–] [email protected] 2 points 2 weeks ago* (last edited 2 weeks ago)

All of the quirks you said are true, yet they still established the "okay" ecosystem of hobby-grade microcontrollers like Arduino, IoT devices, and other small scale robotics systems. None of them would have happened without the "okay" abstraction C/C++ provides as opposed to assembler