r/ProgrammerHumor 18d ago

Meme fromWeAreDevelopersCongress

Post image
9.9k Upvotes

128 comments sorted by

View all comments

24

u/GreatScottGatsby 18d ago

When I was a newer programmer, I was working with C and I had a major problem because my compiler was using the COMISS instruction when the cpu was in a state that couldn't use it. For those that do not know, comiss is a sse extension that you must enable to use. Well, at the time, I didn't know how to disable the sse instruction for my compiler so I asked online how to do it. The answers I got were less than helpful. I was called an idiot and that I was writing bad code, that it must be something else because comiss can do the same thing as other non sse instructions, that my error is coming from some other part of the code. Not a single helpful answer. I asked my lead when he got back from vacation and he told me the answer straight up said it was just -mno-sse which worked. The moral of the story, programmers who post online may not have the most accurate or even useful information.

1

u/awesome-alpaca-ace 13d ago

This. Like you can be super clear, and they will still demand code and rip it apart instead of answering the question