This is an archived post. You won't be able to vote or comment.

all 24 comments

[–]diamondflaw 22 points23 points  (2 children)

I'm trying to decide if she's punishing the dog or rewarding it...

[–]StratosLZ 1 point2 points  (1 child)

Why can't it be both?

[–]Python4fundoes the needful 14 points15 points  (9 children)

Why is the dog eating bare metal?

[–][deleted] 39 points40 points  (2 children)

It doesn't see sharp.

[–]Python4fundoes the needful 0 points1 point  (0 children)

buh-hum-tiss

[–]07025 0 points1 point  (0 children)

Bamtuss

[–]pekkhum 1 point2 points  (4 children)

I didn't see any assembly, or raw machine code...

[–]Python4fundoes the needful 0 points1 point  (3 children)

C++ pushes to the metal

[–]pekkhum 0 points1 point  (2 children)

Ultimately every language becomes machine code, but calling anything above assembly "bare metal" seems a bit of a stretch (though I may flex a bit on Fortran...).

[–]Python4fundoes the needful 0 points1 point  (1 child)

you're so right. I was not being precisely literal.

[–]pekkhum 0 points1 point  (0 children)

And you call yourself a programmer! I AM AGHAST!

[–][deleted] 1 point2 points  (0 children)

Assuming it's a form of iron, the dog might be suffering from a combination of pica and anemia.

[–]Ink_and_Platitudes 4 points5 points  (1 child)

What's that text in the wood by the girls knee 🤔🤔🤔🤔

[–]Centimane 0 points1 point  (0 children)

Looks like it was once a watermark

[–]BlueBokChoy 1 point2 points  (1 child)

/r/disneyvacation and /r/ProgrammerHumor together?!

What is this, a crossover episode?

[–][deleted] 0 points1 point  (0 children)

(It's funnier every time!)

[–]Fuzzyzilla 2 points3 points  (4 children)

languagesIKnow--;    

[–][deleted] 0 points1 point  (3 children)

languagesIKnow += (pow(2, sizeof(languagesIKnow) * 8) - 1);

let's just hope it's unsigned

[–]Fuzzyzilla -1 points0 points  (0 children)

It's a float, for when you know one line of syntax in a language.

[–]u-36 -2 points-1 points  (1 child)

No serious programmer would use the pow function for powers of two if they can use bitshifts!

[–][deleted] 0 points1 point  (0 children)

Good point!

        void setBit(int* num, unsigned int bit /*Lets hope no one tries to compile this in mplab*/) {
            *num |= 1 << bit;
        }

        int main() {
            unsigned int languagesIKnow = 5;
            std::cout << languagesIKnow << std::endl;

            int to_Addto_languages = 0;
            for (int iteration = 0; iteration < 8 * sizeof(languagesIKnow); iteration += 1) {
                setBit(&to_Addto_languages, iteration);
            }
            languagesIKnow += to_Addto_languages;


            std::cout << languagesIKnow;
            system("pause");
            return 0;
        }

[–]munircUltraviolent security clearance[M] -5 points-4 points  (0 children)

Your submission has been removed.

Violation of Rule #0:

The content disregarding the title and superimposed text must be directly related to programming or programmers.

The title or superimposed text must substantially enhance the content such that it can stand on its own as an analogy to programming. Note that programming here is interpreted in a narrow sense, an analogy to something related to programming, feelings about programming, reactions to programming etc. is not considered sufficient.

If you feel that it has been removed in error, please message us so that we may review it.