| Author |
Message |
|
Shredder
[n00b] Member
Joined: Wed Mar 31, 2010 5:12 pm Posts: 541 Location: Round Rock, TX
|
 Code Humor
One of my guys sent me these today. Thought I would share so the geeks amongst us could get a chuckle.
How can you tell when a programmer has had sex? When he’s washing the pepper spray out of his eyes.
-------------
There are only 10 kinds of people in this world: those who know binary and those who don’t.
-------------
Programming is like sex: One mistake and you have to support it for the rest of your life.
-------------
Two strings walk into a bar and sit down. The bartender says, “So what’ll it be?”
The first string says, “I think I’ll have a beer quag fulk boorg jdk^CjfdLk jk3s d#f67howe%^U r89nvy~~owmc63^Dz x.xvcu”
“Please excuse my friend,” the second string says, “He isn’t null-terminated.”
|
| Tue Apr 27, 2010 12:44 am |
|
 |
|
Caniboid
Game Server Admin
Joined: Sun Mar 14, 2010 3:24 am Posts: 2534 Location: Beaverton/Tigard/Portland Oregon
|
 Re: Code Humor
*yells* FOMENTA!!!...It's for you.
_________________ 
|
| Tue Apr 27, 2010 12:46 am |
|
 |
|
PinkMonk3y
[n00b] Member
Joined: Sun Apr 09, 2006 11:00 pm Posts: 1036 Location: Dizney Madness
|
 Re: Code Humor
Caniboid wrote: *yells* FOMENTA!!!...It's for you. ROFLMAO in RL!
_________________Gr33ny's Grrl PunkN00bfest: Disney APPROVED!! Vi Veri Veniversum Vivus Vici "By the power of truth, I, while living, have conquered the Universe" -- V for Vendetta  I has a Google and I knows how to use it.
|
| Tue Apr 27, 2010 11:26 am |
|
 |
|
Ozark_52
[n00b] Member
Joined: Sat Feb 23, 2008 12:00 am Posts: 841
|
 Re: Code Humor
3 was pretty funny.
I saw 2 on bash.org (it's in the top 100): <kow`> "There are 10 types of people in the world... those who understand binary and those who don't." <SpaceRain> That's only 2 types of people, kow. <SpaceRain> STUPID
|
| Tue Apr 27, 2010 12:26 pm |
|
 |
|
Reborn
[n00b] Member
Joined: Thu May 21, 2009 11:00 pm Posts: 2117 Location: Sagittarius A*
|
 Re: Code Humor
Lifted from the unix page of my college website: The Evolution of a Programmer High school/Jr. HighCode: 10 PRINT "HELLO WORLD" 20 END
First year in collegeCode: program Hello(input, output); begin writeln ('Hello world'); end Senior year in collegeCode: (defun hello (print (cons 'HELLO (list 'WORLD)))) New professionalCode: #include <stdio.h> main (argc,argv) int argc; char **argv; { printf ("Hello World!n"); } Seasoned proCode: #include <stream.h>
const int MAXLEN = 80;
class outstring; class outstring { private:
int size; char str[MAXLEN];
public: outstring() { size=0; } ~outstring() {size=0;} void print(); void assign(char *chrs); }; void outstring::print() { int i; for (i=0 ; i< size ; i++) cout << str[i]; cout << "n"; } void outstring::assign(char *chrs) { int i; for (i=0; chrs[i] != '0';i++) str[i] = chrs[i]; size=i; }
main (int argc, char **argv) { outstring string;
string.assign("Hello World!"); string.print(); } Manager/* George, I need a program to output a string "Hello World!" */ Note: The original is by Dennis Lou (cs161fhn%sdcc10@ucsd.edu)
|
| Tue Apr 27, 2010 12:45 pm |
|
 |
|
Shredder
[n00b] Member
Joined: Wed Mar 31, 2010 5:12 pm Posts: 541 Location: Round Rock, TX
|
 Re: Code Humor
lol, I think the seasoned pro has a career waiting for him at IBM...you would not even believe the level of obfuscation and needless complexity I see in our crap code every day.
|
| Tue Apr 27, 2010 1:17 pm |
|
 |
|
dirkdeagler
[n00b] Member
Joined: Sun Oct 25, 2009 7:12 pm Posts: 3663 Location: Mt Hood, Oregon
|
 Re: Code Humor
Shredder, along those lines. An article that resonated with me since my office is an AS/400 shop: http://ignorethecode.net/blog/2010/03/2 ... e+the+code)
_________________ BAN Log: Player [[n00b] Reborn''] [STEAM_0:1:456925] Time 02/21/2010 @ 17:17:03
|
| Tue Apr 27, 2010 4:19 pm |
|
 |
|
Shredder
[n00b] Member
Joined: Wed Mar 31, 2010 5:12 pm Posts: 541 Location: Round Rock, TX
|
 Re: Code Humor
AS/400...ouch, I feel your pain, lol.
Great article, I actually heard that about the Bloomberg terminal before when I was running a diligence investigation on a company that had a "new and improved" product.
It's kind of like the Linux ubergeeks who refuse to use Gnome or some other X desktop manager because they think it demonstrates more technical skill to be a master of the command line, or coders who use vi instead of an IDE for the same reason.
Personally I like easy...probably because I am old and lazy but nothing beats a mouse and a modern IDE like Eclipse or Visual Studio. :)
|
| Tue Apr 27, 2010 5:14 pm |
|
 |
|
Reborn
[n00b] Member
Joined: Thu May 21, 2009 11:00 pm Posts: 2117 Location: Sagittarius A*
|
 Re: Code Humor
I just did a GIS for Bloomberg Terminal and wow...I'm at a loss for words.
|
| Tue Apr 27, 2010 5:15 pm |
|
 |
|
r3xx3r
Supreme Spammer
Joined: Wed Dec 14, 2005 12:00 am Posts: 1074 Location: Westchester
|
 Re: Code Humor
i really like the first and last one, the others ive heard way too many times, lol.
_________________
|
| Tue Apr 27, 2010 6:40 pm |
|
 |
|
fomenta
n00bfest Elder, Lead Developer
Joined: Sun May 24, 2009 11:00 pm Posts: 2766 Location: Gettin it in
|
 Re: Code Humor
The last one is good -- esp cause I've programmed in (Embedded) C for so long. 3rd was good too -- never heard it before.
_________________
|
| Tue Apr 27, 2010 9:53 pm |
|
 |
|
Shredder
[n00b] Member
Joined: Wed Mar 31, 2010 5:12 pm Posts: 541 Location: Round Rock, TX
|
 Re: Code Humor
fomenta wrote: The last one is good -- esp cause I've programmed in (Embedded) C for so long. 3rd was good too -- never heard it before. Ya that last one is pretty esoteric for the modern day programmer, don't need to worry about \0 with Java or C# strings....an unterminated char * in C can be a quick way to get a stack overflow or at the very least some pretty funky looking output. :) I cut my teeth on C implementing storage device drivers and RAID controller firmware back in the day, and I actually prefer it to C++ because its just easier for me to read. C++ gives me a headache, lol. These days its all Java, but prior to IBM I was heavy into C#. I still get my C fix in every chance I get though...nothing beats being down low when you want real performance. Don't get to code as often as I would like anymore though since IBM prefers a technical leader's primary skill to be making pretty Power Point charts.
|
| Tue Apr 27, 2010 11:06 pm |
|
 |
|
Miroku
Newbie Spammer
Joined: Thu Feb 24, 2005 12:00 am Posts: 556 Location: Bronx, NY
|
 Re: Code Humor
Reborn wrote: I just did a GIS for Bloomberg Terminal and wow...I'm at a loss for words. F*CKIN Bloomberg? I'm just about ready to tell you to let me live in your basement and teach me all that shit. I can only imagine how much bs that must've been, and then the money right after lol.
_________________ Nigga's ain't deeaaad they just smell that way - Dr. Malicious
Luff get those burgers out of your mouth and talk like a human being! - Dr. Malicious
I want to murder you. Or cause you to die somehow in a fire and then sprinkle cocaine all over your body and then eat you. That's the only way you'll taste good - Dr. Malicious
|
| Wed Apr 28, 2010 12:57 pm |
|
 |
|
acid_rain
Retired n00bfest O.G.
Joined: Fri Dec 31, 2004 12:00 am Posts: 2737
|
 Re: Code Humor
program Hello(input, output); begin writeln ('Hello world'); end
LOL!
PASCAL FTW, I know that shit like the back of my hand. I have a morse code to english/vice versa on hard-copy somewhere. It was like 14 pages.
|
| Wed Apr 28, 2010 7:41 pm |
|
 |
|
winitnow
Game Server Admin
Joined: Mon Jul 13, 2009 11:00 pm Posts: 3113
|
 Re: Code Humor
I feel stupid reading this....oh well great reason why i dont mess with programing ^.^ shit would be al lfucked up lol
_________________  "I am the robber of my cradle. Candy is my body and teddy-bears are my blood. I have snached over a thousand little girls. Unknown to police. Nor known to Chris Henson. Have withstood time to stalk many children. Yet those kids will never be enough. So as I pray--"
|
| Thu Apr 29, 2010 12:36 am |
|
 |
|
Tikimon
[n00b] Member
Joined: Wed Apr 30, 2008 11:00 pm Posts: 2403 Location: FL
|
 Re: Code Humor
winitnow wrote: I feel stupid reading this....oh well great reason why i dont mess with programing ^.^ shit would be al lfucked up lol completely how i felt :D
_________________Gman wrote: Bitches love animals. tikimon@n00bfest.comviewtopic.php?f=98&t=30772.
|
| Sun May 02, 2010 12:36 pm |
|
 |
|
Turok
Game Server Admin
Joined: Thu Nov 19, 2009 3:17 am Posts: 537
|
 Re: Code Humor
me too :(
_________________ fomenta wrote: Please leave. AnalChowMein wrote: I will spoon high, oh yes I will spoon. Most likely naked and in a sauna sweating out our sins.
|
| Sun May 02, 2010 3:43 pm |
|
 |
|