Programmer jokes

Thank God for Java! :slight_smile:

Mike

@derail on
And this is why I gave up on C++ after a few days of learning.
Well, didn’t because of this exact example but because everything felt hacky, there was always 3-4 approaches to a single problem and there was constant debate over which option is better for the XYZ compiler, always pay attention to pass pointers and references instead of objects because they’ll get passed by value by default, manage header and source files separately, etc. Ouch… It just felt so yesterday (no jokes, can’t really describe it any better than that :stuck_out_tongue: ) compared to modern languages like Java or Python. :clue:
Don’t get me wrong, I can see it’s benefits too but I don’t think the extra amount of work you put in is worth that extra performance. Not for most of us at least. And if you want to go low-level (eg. to write drivers) you don’t really have any other option to go with.
@derail off

Java and C++ attempted a test in class.

P.S. This is my own creation.

The E-- confused me for a minute until I realized that was a grade :stuck_out_tongue: In the US the lowest letter grade you can receive in primary education is a F.

I didn’t know that. Here, our grades go from A to G. I’ve added ++ and – just because it’s related to languages.

(Sorry to start this thread up again)

Why did the Integer drown?
Because he couldn’t [icode]float[/icode]!

If only someone had [icode]cast[/icode] him a lifeline

Acronyms
CD-ROM: Consumer Device, Rendered Obsolete in Months
PCMCIA: People Can’t Memorize Computer Industry Acronyms
ISDN: It Still Does Nothing
SCSI: System Can’t See It
MIPS: Meaningless Indication of Processor Speed
DOS: Defunct Operating System
WINDOWS: Will Install Needless Data On Whole System
OS/2: Obsolete Soon, Too
PnP: Plug and Pray
APPLE: Arrogance Produces Profit-Losing Entity
IBM: I Blame Microsoft
MICROSOFT: Most Intelligent Customers Realize Our Software Only Fools Teenagers
COBOL: Completely Obsolete Business Oriented Language
LISP: Lots of Insipid and Stupid Parentheses
MACINTOSH: Most Applications Crash; If Not, The Operating System Hangs

Source: http://www.devtopics.com/best-programming-jokes/

CopyableCougar4

Here’s another one from Fox Trot.

http://assets.amuniversal.com/5a3768d019b201329b8e005056a9545d

“Knock, knock.”
“Who’s there?”
very long pause….
“Java.”

http://www.cubewallpaper.com/wp-content/uploads/2014/07/internet-meme_faces-wallpaper.jpg


Why did the programmer quit his job? Because he didn’t get arrays.

Q: “Whats the object-oriented way to become wealthy?”

A: Inheritance

Why programmers like UNIX:

unzip, strip, touch, finger, grep, mount, fsck, more, yes, fsck, fsck, fsck, umount, sleep


Notes for people who don’t know UNIX commands/think the above is a dirty irrelevant joke:
UNIX: fsck
UNIX: finger
UNIX: grep

Last joke overboard? :persecutioncomplex:
I’ll delete or make a spoiler that’s marked as 18+

:persecutioncomplex:

Not really a joke, but this is valid code:


// the face of disapproval
public static void ಠ_ಠ(String s) {
    throw new Error(s);
}

Useful for all your exception handling needs!

You can replace some semicolons (:wink: in a project with greek question marks (;) and watch people try to hunt down the syntax errors they cause.

(Source: https://twitter.com/peterritchie/status/534011965132120064)

404 Bad programming joke not found!

Links:
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke
http://www.devtopics.com/best-programming-jokes/

Snippet from the second link:

[quote]There are three kinds of lies: Lies, damned lies, and benchmarks.
[/quote]
CopyableCougar4