What's your favorite "programmer" cartoon?
Asked Answered
I

132

836

Personally I like this one:

P.S. Do not hotlink the cartoon without the site's permission please.

Ibnrushd answered 17/9, 2008 at 15:34 Comment(0)
W
1805

Another one from xkcd Exploits of a Mom

Wilberwilberforce answered 17/9, 2008 at 15:34 Comment(0)
T
1365

​​​​

Transcript answered 17/9, 2008 at 15:34 Comment(0)
L
933

I like this one: http://xkcd.com/149/

alt text

(Proper User Policy apparently means Simon Says.)

Legato answered 17/9, 2008 at 15:34 Comment(0)
V
802

enter image description here

Vrablik answered 17/9, 2008 at 15:34 Comment(0)
S
744

The only valid measurement of code quality: WTFs/minute

So answered 17/9, 2008 at 15:34 Comment(0)
O
676

I wrote a production website that has the path /dev/random/ return 4 because of this comic.

int get_rand_number(){ return 4;}

Osbert answered 17/9, 2008 at 15:34 Comment(0)
R
596

XKCD Comic 303 - "Compiling"

('Are you stealing those LCDs?' 'Yeah, but I'm doing it while my code compiles')

I have this one pinned to the wall facing the entrance to our office :)

Rosas answered 17/9, 2008 at 15:34 Comment(0)
L
543

Ligule answered 17/9, 2008 at 15:34 Comment(1)
Randall Munroe, the creator of xkcd, discusses how he actually tested this theory during a talk at Google: youtube.com/watch?v=zJOS0sV2a24 -- start at 8:26 or so. The talk is also exciting because Donald Knuth asks the first question!Crapulous
X
522

Xerophilous answered 17/9, 2008 at 15:34 Comment(0)
J
484

Oh! There can be only one:

It's sooo funny, because it's true :)

Juice answered 17/9, 2008 at 15:34 Comment(0)
L
474

alt text

Lopes answered 17/9, 2008 at 15:34 Comment(0)
H
387

Religious debates are always fun!

Hylotheism answered 17/9, 2008 at 15:34 Comment(0)
P
329

alt text

Photobathic answered 17/9, 2008 at 15:34 Comment(0)
F
296

Of course, xkcd!

353

Feverous answered 17/9, 2008 at 15:34 Comment(0)
W
279

​​​​​

Winebaum answered 17/9, 2008 at 15:34 Comment(0)
T
261

alt text

Touchwood answered 17/9, 2008 at 15:34 Comment(0)
L
246

I knew it was true. XKCD #224

"We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself."

Lopes answered 17/9, 2008 at 15:34 Comment(0)
C
244

Baseline Expectations

Taken from Dilbert.com, Sept 12 2008

Chicago answered 17/9, 2008 at 15:34 Comment(0)
S
219

I can't believe someone hasn't put this one:

enter image description here

Struve answered 17/9, 2008 at 15:34 Comment(0)
T
213

Pointers

Tirpitz answered 17/9, 2008 at 15:34 Comment(0)
B
208

Estimation

XKCD hits the button every time.

Bedroll answered 17/9, 2008 at 15:34 Comment(0)
C
201

(I hear this is an option in the latest Ubuntu release.)

Calathus answered 17/9, 2008 at 15:34 Comment(0)
L
192

I didn't know...

Listen to Yourself

Lumisterol answered 17/9, 2008 at 15:34 Comment(1)
Apparently, you haven't visited Youtube recently: blag.xkcd.com/2008/10/08/youtube-audio-previewRotunda
A
171

On victory:​​​

Alinaaline answered 17/9, 2008 at 15:34 Comment(0)
M
156

xkcd:

Windows 7

Methodize answered 17/9, 2008 at 15:34 Comment(0)
U
154

Ul answered 17/9, 2008 at 15:34 Comment(0)
M
136

Dilbert is the top favorite, but I've also really enjoyed the xkcd comics the last couple years. I've got a couple of those posted up in my cube... I try really hard to live by this one.

Compiler Complaint

Mcdavid answered 17/9, 2008 at 15:34 Comment(0)
C
129

Terms and Conditions cartoon from brainstuck.com

https://brainstuck.com/2008/08/08/t-c/

I'm guessing that this would probably never happen, as agreeing to the terms and conditions is more important than actually reading them (from the software publisher perspective).

Crawler answered 17/9, 2008 at 15:34 Comment(0)
H
122

Hymnist answered 17/9, 2008 at 15:34 Comment(1)
Here's a good explanation of how to do this sort of problem: sites.google.com/site/resistorgrid/gridBiles
B
111

One of my favourite :)

If androids someday DO dream of electric sheep, don't forget to declare sheepCount as a long int.

Bremsstrahlung answered 17/9, 2008 at 15:34 Comment(0)
V
106

Can't and shouldn't

If all bugs were so easy to close.

Ventriloquism answered 17/9, 2008 at 15:34 Comment(0)
H
102

alt text

http://xkcd.com/518/

Hescock answered 17/9, 2008 at 15:34 Comment(0)
R
102

One more which I liked: No offences.. :)

how it works

alt text

Roundly answered 17/9, 2008 at 15:34 Comment(1)
I shared this one with the guys at my old job, explaining that this is how it feels sometimes. I got some blank looks, and one confused "So all girls are awesome at programming?"Ethyl
F
98

Without a doubt...

State machines

Forbidding answered 17/9, 2008 at 15:34 Comment(7)
@Anheledir: you can't parse arbitrary nested parentheses with classic regexps.Nicholas
Particularly when numbers of opening and closing parentheses don't match :-)Tapping
If I hadn't done some compiler engineering and also some Scheme as part of my degree I'd never get this... however, I personally think it's obscurity is part of what makes it so funny!Forbidding
Well, if you restrict the depth of the expressions to something reasonably large, the automaton can handle it. I remember Martin Kay telling us in one class that he spent half a year of his life on converting CFGs into limited-depth FSAs.Differentia
But you can never handle arbitrary expressions of that type with a FSA as you essentially have to construct a different FSA for each and every possible case of the problem. On a seperate note, does anyone know WHERE this comes from? Found on a random-image thread, but I never knoew the source.Forbidding
xan: You can always construct a bigger FSA, but the point is whether or not ONE given FSA can handle ALL expressions of this kind, no matter how long.Fechner
Where does this come from? I only find links to blogspam and image hosting sites for it on Google.Trahan
A
96

As a project wears on, standards for success slip lower and lower

("40% of OpenBSD installs lead to shark attacks. It's their only standing security issue.")

Alphaalphabet answered 17/9, 2008 at 15:34 Comment(0)
F
85

I'm An Idiot

Freeholder answered 17/9, 2008 at 15:34 Comment(1)
osascript -e "set volume 10"Adjacency
A
85

Fax me some electricity, please?

Dilbert Fax

Autotrophic answered 17/9, 2008 at 15:34 Comment(0)
S
82

alt text

alt text http://www.netfxharmonics.com/Images/WindowsLiveWriter/ComicStrip2.NETandPHPSourceCode_14857/DotNetPhpCartoon02.png

Splanchnic answered 17/9, 2008 at 15:34 Comment(10)
BTW, I us PHP too! =P and didn't mean this as a putdown in anyway. Just found it amusing as a fanboy style comic. It could apply to any languages in either role.Splanchnic
Seeing as (afair) Stack Overflow was actually built with .NET, I have decided to retroactively start respecting people who use itTench
Wow even comics about .NET suck.Seaden
I rolled my own DAL and 'architectural solution for repurposing business logic to a desktop environment'. But when I get irritated by the irredemable failure of compile-time type checking (or anything else), jackass PHP fanboys tell me it's because there's something wrong with me, not PHP.Grus
not funny, and anyone suggesting running sites on IIS for performance reasons, on servers that have an entire GUI OS installed on them, well, no commentShush
apphacker: if i dont remember right windows server2008 can be installed in a mode where it only has a console?Monogenetic
@Petoj Windows 2008 does have such an option. Another thing to consider is that stackoverflow.com is running on pure MS technologies, Windows/IIS7/MSSQL/.NET and for the number of requests it receives I would say it performs decent.Splanchnic
Yeah, this comic is pretty moronic. Take away the specific technology (in this case, .NET) and it's like a third-rate slashdot comment from 1999. "Hur hur our technology is better." But the worst part is the fact that the technological jargon they spout isn't even impressive. Moving code between web apps and desktops? Separating database code and logic (which is what a DAL is)? who cares? And it's not like VB is a paragon of type saftey.Dissuasive
If anything, this is a point for PHP: Absence of marketing B.S.Maidenhair
I'm a .NET dev and am embarassed by this.Euphony
S
71

Quite demonstrative of why metric based incentives and engineers don't go hand in hand.

alt text

Stereochemistry answered 17/9, 2008 at 15:34 Comment(0)
M
63

alt text

Minter answered 17/9, 2008 at 15:34 Comment(5)
If someone's personal webpage uses ASP.NET, I give them -20.Dissatisfied
It's nice to see that most ignorance is outside of the Microsoft camp.Coprophagous
@Deniz: Nothing to be proud ofAdversative
Why the hate for ASP.NET? Let me guess... PHP?Pacify
Rails, PHP or ASP.net. Surely Django!Scutiform
P
62

alt text

Profitsharing answered 17/9, 2008 at 15:34 Comment(2)
Their main problem is that the screenshot is a JPEGInstinctive
Even better--they created a transparent GIF, then turned it into a JPEG, then saved it again as a PNG--you get the best all 3 formats!Haines
S
60

John Martz has a blog entry to go with this. IE6 denial message

Sweetheart answered 17/9, 2008 at 15:34 Comment(3)
Presumably the comic was made when only those browser existed. Google Chrome and IE 8 were created sometime after 2008 and the other browsers existed before 2008. IE 7 existed in 2005...Pharmacognosy
IE7 is just as bad as IE6, if not worse.Epicycle
How is IE7 worse than IE6?Haines
T
60

Pwned

While not specifically about programming per se....wanting to program games is what got me interested in IT in the first place....

anyway this one made me laugh so hard when I saw it!

Tirpitz answered 17/9, 2008 at 15:34 Comment(4)
i'd have better luck at this version. i recently tried quakelive.comLevinson
on quakelive: incompatible browser (chrome)Palingenesis
Alt text: I'm sure a discussion of the reason for the disappearance of adventure games in favor of RPGs would be fascinatingTacita
Mezoid, that's what got us all into IT. If someone told every kid they're gonna pass the rest of their lives coding boring business software, there wouldn't be a single programmer on earth.Omphale
T
53

This has made my year.

Some engineer out there has solved P=NP and it's locked up in an electric eggbeater calibration routine.  For every 0x5f375a86 we learn about, there are thousands we never see.

Some engineer out there has solved P=NP and it's locked up in an electric eggbeater calibration routine. For every 0x5f375a86 we learn about, there are thousands we never see.

Thorne answered 17/9, 2008 at 15:34 Comment(0)
J
53

Jos answered 17/9, 2008 at 15:34 Comment(0)
D
51

Bit old but still one of my favs:

http://www.ok-cancel.com/strips/okcancel20031003.gif

Decentralization answered 17/9, 2008 at 15:34 Comment(5)
Particularly relevant as I saw a Microsoft Surface table todayStormproof
@Frank: Not to mention movies, like James Bond: Quantum of Solace.Marisolmarissa
"Welcome to LCARS menu system" Um, except LCARS actually came out OK on Nokia's internet tabletsUnparliamentary
Touchscreens are perfectly useful. The millions of them in use in portable gaming consoles, phones, tablet PCs, digitizing tablets, and hundreds of other applications attest to this. This comic only illustrates why touchscreens are impractical as an input device for desktop systems.Haines
This cartoon is not about touchescreens. It's about touche_less_screens. Check out TED talk - ted.com/talks/…Decentralization
C
50

Another great Foxtrot comic. Possibly the most incomprehensible-to-non-geeks comic to sneak into the newspaper funnies.

Cara answered 17/9, 2008 at 15:34 Comment(5)
I like the for loop: for (int i=1;i<=numBrainCells;i++) { turnOn(brain[i]) system.out.println("Yawn"); }Droppings
What is it with Foxtrot and starting iteration at 1 instead of 0?Compote
I'd like to know why the functions getCurrTime and isitaWorkday both either return void or their return value is never used....Tirpitz
personally, I'd use brain[i].enable(); or brain[i].activate(); over turnOn(brain[i]);Neuroglia
@Sorin Comanescu actually brain has to have been initialized and is pointing to null. First brain must be initialized. Also, numBrainCells has to be declared!Pharmacognosy
H
48

alt text http://www.unt.edu/benchmarks/archives/2004/february04/screwupcolor.gif

This is my everyday.

Halfwitted answered 17/9, 2008 at 15:34 Comment(0)
H
48

I love this one: https://static.mcmap.net/file/mcmap/ZG-AbGLDKwfpaVcxKnhrWR3QWRft/comics/road_rage.png

He answered 17/9, 2008 at 15:34 Comment(0)
C
47

(it's how people feel )

alt text

Circumvent answered 17/9, 2008 at 15:34 Comment(2)
Being a C# developer, I fail to see the joke. Not because I want to defend C#, but because I don't get it? What has Ruby and Lisp coders against C#?Ben
@Ben it's simply this: Ruby is currently the "coolest" language at the moment. Lisp, as you know, is the revered language. The cartoon implicitly implies both Ruby and Lisp are cool. C# on the other hand is a "mainstream language", so, it's not "cool." I also think the cartoon is implying both Lisp and Ruby programmers are fanatics?Phototypography
A
45

Old black and white version (there's nothing new under the sun) http://www.lore.ua.ac.be/Teaching/SE3BAC/SoftwareSpecCartoon.gif

Aerobe answered 17/9, 2008 at 15:34 Comment(4)
It's pretty similar to this one stackoverflow.com/questions/84556/… I'm not sure which one came firstTacita
@Doppelganger: This one: Mar 4 '09 at 22:40; the other one: Sep 17 '08 at 15:39. You do the math.Haigh
@Andreas, these pictures are decades old. businessballs.com/treeswing.htmAerobe
This is good too: businessballs.com/businessballs_treeswing_pictures.htmAerobe
M
43

alt text http://i44.tinypic.com/f07yh3.jpg

Mylan answered 17/9, 2008 at 15:34 Comment(0)
S
41

https://static.mcmap.net/file/mcmap/ZG-AbGLDKwf1c1bQWR_wcFfvanMAaRMrKmMva3/lowres/bro0048l.jpg

Sarad answered 17/9, 2008 at 15:34 Comment(0)
U
41

The 1337 set of comics from xkcd, starting with: The main thing I love is the thought of Stallman engaging RIAA agents in sword fights towards the end :)

Ulcer answered 17/9, 2008 at 15:34 Comment(0)
R
40

Signs your coders don't have enough work to do

Racquelracquet answered 17/9, 2008 at 15:34 Comment(0)
P
40

Real Programmers Code in Binary http://zeljkofilipin.com/wp-content/uploads/2008/02/real-programmers-code-in-binary.jpg

According to http://homepages.strath.ac.uk/~cjbs17/computing/binary.html author of this image is Chris Kania and original is at http://www.kaniamania.com/html/1190.html but the entire site is down at the moment.

Powerful answered 17/9, 2008 at 15:34 Comment(2)
This is nothing to make jokes about. This is actually how I wrote AlgoSim: www.algosim.seHaigh
The Enter is unnecessary. \r is 00001101.Cleisthenes
B
37

I've got a war to fight!.

Brashy answered 17/9, 2008 at 15:34 Comment(0)
J
35

Check this From Apple Desicion on APP.alt text

Judie answered 17/9, 2008 at 15:34 Comment(3)
do they use CSS to hide all the bottom on their site? clever!Socratic
@alex, no they simply publish a 1151real.jpg without all the bottom; your way is good too though. geekculture.com/joyoftech/joyimages/1151real.jpgHomeopathy
It took me a while (and had to read the edits) to wonder what I was talking about above!Socratic
C
34

Can't help but love it...

alt text

Canzona answered 17/9, 2008 at 15:34 Comment(1)
According to google (Pi) - (9^2 + (19^2)/22)^(1/4) = 1.00714725 × 10^(-9 )Ravelment
F
34

Hulk MMO Cartoon

Fur answered 17/9, 2008 at 15:34 Comment(0)
R
33

alt text

Radu answered 17/9, 2008 at 15:34 Comment(0)
W
33

Made for grad students, but applies equally to programmers

alt text http://www.phdcomics.com/comics/archive/phd012609s.gif

PHD Comics - Brain on a Stick

Winebaum answered 17/9, 2008 at 15:34 Comment(0)
C
32

Programmer life

Cyrilcyrill answered 17/9, 2008 at 15:34 Comment(0)
A
30

alt text http://wondermark.com/comics/190.gif

Antepast answered 17/9, 2008 at 15:34 Comment(0)
C
28

I'm surprised this one was missing:

A Bunch of Rocks

Carthage answered 17/9, 2008 at 15:34 Comment(0)
B
28

The doomed project

a nice collection

Benson answered 17/9, 2008 at 15:34 Comment(0)
C
26

C++ forest

alt text

Configuration answered 17/9, 2008 at 15:34 Comment(0)
S
26

My all time favorite is probably xkcd's "Sudo make me a sandwich" comic, but there are SO MANY good webcomics out there that I thought I'd throw some others out for fun:

A co-worker pointed me to Sticks and Stones, which just got started pretty recently. It's sort of an xkcd ripoff, but there's some good stuff in there. alt text http://www.arcanology.net/sticksandstones/comics/comic-10.gif

Hackles is frequently about programming. This one's probably my favorite: Hackles, by Drake Emko & Jen Brodzik http://hackles.org/strips/cartoon334.png It's not quite a programming comic, but I also really dug this strip from Full Frontal Nerdery:

Full Frontal Nerdity by Aaron Williams http://nodwick.humor.gamespy.com/ffn/strips/2008-03-12.jpg

Showman answered 17/9, 2008 at 15:34 Comment(0)
P
25

http://www.qwantz.com/comics/comic2-172.png

(sequel to this)

Pompadour answered 17/9, 2008 at 15:34 Comment(0)
O
24

I didn't see this one which is one of my favorite xkcd :

Donald Knuth

(His books were kinda intimidating; rappelling down through his skylight seemed like the best option.)

Odum answered 17/9, 2008 at 15:34 Comment(0)
N
24

I can't believe 6 pages of answers and no one mentions the banana jr 6000. How quickly we forget.

http://img17.imageshack.us/img17/3108/bananaadgz4.gif

The other one I love and couldn't find the image for has the punchline "Failure Mr. Jones, is hardly original. Now sit down."

Also from the Bloom County strip.

Noneffective answered 17/9, 2008 at 15:34 Comment(0)
G
24

makes me lol

link

Gaynell answered 17/9, 2008 at 15:34 Comment(0)
S
24

http://ihooky.com/comics/ihooky06.png

Slaby answered 17/9, 2008 at 15:34 Comment(0)
F
23

Hello my favorit is this one

alt text http://curtis.lassam.net/comics/programmers.png

Fosterling answered 17/9, 2008 at 15:34 Comment(0)
A
23

alt text http://wondermark.com/comics/352.gif

Antepast answered 17/9, 2008 at 15:34 Comment(0)
S
20

I'm going to show my age with the this 1993 classic: On the Internet, nobody knows you're a dog.

alt text

Sweetheart answered 17/9, 2008 at 15:34 Comment(0)
R
20

What?! No PhDComics? Check this out: alt text http://www.phdcomics.com/comics/archive/phd1112.gif

Remember this was 1997!!

Also read the following strips... Hilarious!

Ragtime answered 17/9, 2008 at 15:34 Comment(0)
T
20

alt text http://contikistrip.kjempekjekt.com/images/contikistrip3.png

Tallula answered 17/9, 2008 at 15:34 Comment(1)
Whoa, this looks exactly like Order Of The Stick. giantitp.com/comics/oots0001.htmlStephanystephen
J
19

not directly something about programming, but i guess every programmer knows flowcharts xD

alt text

Jasper answered 17/9, 2008 at 15:34 Comment(0)
C
17

alt text http://i40.tinypic.com/12649i1.png

Comeon answered 17/9, 2008 at 15:34 Comment(0)
A
16

alt text http://wondermark.com/comics/128.gif

(guess you have to work on sev zero bugs to get this one)

Antepast answered 17/9, 2008 at 15:34 Comment(0)
V
15

This is old, I'm totally not sure about the permissions and I'm ready to remove it.alt text http://img120.imageshack.us/img120/8456/easycfm4.jpg

Viviyan answered 17/9, 2008 at 15:34 Comment(0)
C
15

Dilbert http://www.laputan.org/images/pictures/elbonia-900406.gif

This is something I found reading about anti-patterns.

Cyrilcyrill answered 17/9, 2008 at 15:34 Comment(0)
R
13

I think the IT consultant's image is the best:

Reasons why people who work with computers have a lot of spare time

(linking because the picture's pretty big)

Racquelracquet answered 17/9, 2008 at 15:34 Comment(0)
D
12

Ten reasons you know you're living in 2009

  1. You accidentally enter your password on the microwave.
  2. You haven't played solitaire with real cards in years.
  3. You have a list of 15 phone numbers to reach your family of 3.
  4. You e-mail the person who works at the desk next to you.
  5. Your reason for not staying in touch with friends and family is that they don't have e-mail addresses.
  6. You pull up in your own driveway and use your cell phone to see if anyone is home.
  7. Every commercial on television has a web site at the bottom of the screen.
  8. Leaving the house without your cell phone, which you didn't have the first 20 or 30 (or 60) years of your life, is now a cause for panic and you turn around to go and get it.
  9. You get up in the morning and go online before getting your coffee.
  10. You're reading this and nodding and laughing. :)
Damalis answered 17/9, 2008 at 15:34 Comment(4)
Wrong thread; try the programmer jokes one. (And none of these are programming-related anyway.)Thesaurus
So true.. almost all of it! It's actually sad to realize this!!Schizo
When a hack am I living? I do not laugh :(Divertimento
-1. First, not a cartoon. Second, it's not about programming. Third, it's been swirling around the interwebs since before 2004.Back
D
12

Just had to put this here

http://www.implementingscrum.com/images/070806-scrumtoon.jpg

From here

Deyoung answered 17/9, 2008 at 15:34 Comment(0)
C
11

alt text

Cacie answered 17/9, 2008 at 15:34 Comment(2)
from reddit.com/r/programming/comments/9rvkn/…Cacie
add esp , 8;don't forget anythingTartuffe
W
10

SPOILER ALERT!!!

Cutting Edge

Wieland answered 17/9, 2008 at 15:34 Comment(1)
its too much of a stretch to think programmers play computer gamesVisser
F
10

For an Agile shop ... THIS is fantastic... As a dev, it just speaks volumes.

Great Fun: from Implementing Scrum by Clark & vizdos.

alt text

Forethought answered 17/9, 2008 at 15:34 Comment(1)
en.wikipedia.org/wiki/Scrum_%28development%29 in the end, the comic made itself be programmer related :PFlagellate
R
8

alt text

Radu answered 17/9, 2008 at 15:34 Comment(0)
V
7

alt text http://www.geekherocomic.com/comics/2009-08-03-hardcoded-limits.png

Was I can do stackoverflow in a weekend the inspiration for this cartoon?

Ventriloquism answered 17/9, 2008 at 15:34 Comment(0)
C
7

From Bug Bash:

alt text http://www.bugbash.net/strips/bug-bash20070723.gif

Croy answered 17/9, 2008 at 15:34 Comment(1)
I don't get it. Is the punchline that she has a moustache?Gown
H
7

There's a Russian version of Bash.org at Bash.org.ru. What they do now is they take favorite quotes and turn them into cartoons or comic strips. Here's one of my favorite ones: Tester http://s.bash.org.ru/img/67c5y2emi7vwmrnd263759.jpg

  1. We've got a clever tester now -What do you mean?

  2. He's found bunch of stuff... A funny symbol there, a weird key combination here. He's real good

  3. But sometimes... I really want to smash his face

Link to site: http://bash.org.ru/comics/20080111

Hagi answered 17/9, 2008 at 15:34 Comment(3)
thats...not really funny. In Russian OR English.Baudin
Neither is Doonesbury. Actually this is funnier than Doonesbury. Actually sticking a freshly sharpened pencil under your eyelid and blinking fiercely is better than Doonesbury.Brucite
In soviet Russia jokes laugh at you.Omphale
L
6
HAI
CAN HAS STDIO?
I HAS A VAR
IM IN YR LOOP
    UP VAR!!1
    VISIBLE VAR
    IZ VAR BIGGER THAN 10? KTHXBYE
IM OUTTA YR LOOP
KTHXBAI

Taken from :http://lolcode.com/ KTHXBAI!!

Legitimize answered 17/9, 2008 at 15:34 Comment(1)
+1 no cartoon but funnier than all of the posted geekherocomicsBurse
B
6
E
6

Tragically, my favorite cartoon is too old to be on the interwebs.

It's from Datamation. (Remember Datamation?) A man is sitting at a desk. There are bits of electronics everywhere. Rubble is strewn into every corner of the room. His face and hair are singed.

He is thinking "It's never done that before."

Eger answered 17/9, 2008 at 15:34 Comment(1)
Had that up in my cubicle for years; wish I could find a copy of itLexicography
Y
5

Static

Yorke answered 17/9, 2008 at 15:34 Comment(0)
G
5

This is my personal favorite... and the name of all my alpha releases! alt text http://www.phdcomics.com/comics/archive/phd071009s.gif

original link

Gunner answered 17/9, 2008 at 15:34 Comment(0)
M
5

"Helping" out fellow programming co-workers

Mylan answered 17/9, 2008 at 15:34 Comment(0)
P
5

The Contiki Strip

A comic set in a small Norwegian software company. All text in English. Check it out at http://contikistrip.kjempekjekt.com

Contiki Strip http://contikistrip.kjempekjekt.com/images/contikistrip5.png Contiki Strip http://contikistrip.kjempekjekt.com/images/contikistrip7.png

Polypeptide answered 17/9, 2008 at 15:34 Comment(0)
P
4

How about a math cartoon?

alt text http://catb.org/jargon/html/graphics/73-05-18.png

Plenish answered 17/9, 2008 at 15:34 Comment(0)
A
4

https://static.mcmap.net/file/mcmap/ZG-AbGLDKwfwaRfkZVykaRfkZVUQXmlsX7LQcRfwXGBwX7MxKmMva3/2008/01/robots8.jpg

Abra answered 17/9, 2008 at 15:34 Comment(0)
P
4

http://shortminds.com/comics/2008-09-19.jpg

Check out Shortminds.com for more

Pepsin answered 17/9, 2008 at 15:34 Comment(2)
Except input is a self-closing tag.Exploration
@kaji except self-closing elements like <input />Burse
I
3

Babbage and Lovelace Vs The Client

Includes historical notes

Insertion answered 17/9, 2008 at 15:34 Comment(0)
T
0

alt text

This is from Steve Yegge talking about the verbosity of Java.

Trabeated answered 17/9, 2008 at 15:34 Comment(1)
Steve Yegge talking about verbosity. How ironic.Tagliatelle
B
-2

in which we discuss the philosophy of computer science and programming architecture by the seemingly-defunct Standard Out:

in which we discuss the philosophy of computer science and programming architecture http://lh3.ggpht.com/tremendotron/SKFBIbEccOI/AAAAAAAAAI0/qOTa3XJZHho/in%20which%20we%20discuss%20.jpg

Benny answered 17/9, 2008 at 15:34 Comment(0)
I
-2

http://wondermark.com/c/2008-11-25-464forgot.gif

Imago answered 17/9, 2008 at 15:34 Comment(3)
Is that a humoctopus in the last panel? :-) (Check everettcc.edu/news/2009/index.cfm?id=9242, or Google it if you've never heard of a humoctopus before.)Marisolmarissa
Fun, but I dont quite know how it's programming related.Jedediah
I guess folks could see how this is programming related if their management was as inconsistent about what they want them doing as mine is. You mean nobody else has this problem?Imago
T
-6

For those who have worked at Accenture www.bigtimeconsulting.com has some awesome ones...

Here are just a few:

Bold New Changes

Advice

Dinner

Hit and Run

Tech Support

Quitter

Tirpitz answered 17/9, 2008 at 15:34 Comment(0)
F
-28

alt text

Freddafreddi answered 17/9, 2008 at 15:34 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.