n00bfest.com
Home Forum phpBB3 Shoutbox Servers Teamspeak Admins Donate FAQ
Sign Up
Stats Contact Us!

 

View unanswered posts | View active topics It is currently Tue Sep 08, 2026 7:06 am

Forum rules


- n00bfest is not the special olympics. It is a gaming community. Do not act like n00bfest is a retard daycare or you will be punished.
- Outright flames and flamebaiting will be punished.
- Even if you are not an adult, do your best to act like one.
- *NEW* Political/Religious News and NSFW posts do not belong here. Use the Videos, Links, Political/Religious News Discussion Forum
- Punishments range from warnings to permanent forum/gameserver bans.





Reply to topic  [ 17 posts ] 
 Code Humor 
Author Message
[n00b] Member
User avatar

Joined: Wed Mar 31, 2010 5:12 pm
Posts: 541
Location: Round Rock, TX
Post 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
Profile
Game Server Admin
User avatar

Joined: Sun Mar 14, 2010 3:24 am
Posts: 2534
Location: Beaverton/Tigard/Portland Oregon
Post Re: Code Humor
*yells* FOMENTA!!!...It's for you.

_________________
Image Image


Tue Apr 27, 2010 12:46 am
Profile
[n00b] Member
User avatar

Joined: Sun Apr 09, 2006 11:00 pm
Posts: 1036
Location: Dizney Madness
Post Re: Code Humor
Caniboid wrote:
*yells* FOMENTA!!!...It's for you.



ROFLMAO in RL!

_________________
Gr33ny's Grrl Punk
N00bfest: Disney APPROVED!!
Image
Vi Veri Veniversum Vivus Vici
"By the power of truth, I, while living, have conquered the Universe" -- V for Vendetta
Image


I has a Google and I knows how to use it.


Tue Apr 27, 2010 11:26 am
Profile
[n00b] Member
User avatar

Joined: Sat Feb 23, 2008 12:00 am
Posts: 841
Post 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
Profile
[n00b] Member

Joined: Thu May 21, 2009 11:00 pm
Posts: 2117
Location: Sagittarius A*
Post Re: Code Humor
Lifted from the unix page of my college website:

The Evolution of a Programmer



High school/Jr. High

Code:
10 PRINT "HELLO WORLD"
20 END

First year in college

Code:
program Hello(input, output);
  begin
    writeln ('Hello world');
  end


Senior year in college

Code:
(defun hello
  (print
        (cons 'HELLO (list 'WORLD))))


New professional

Code:
#include <stdio.h>
main (argc,argv)
int argc;
char **argv; {
printf ("Hello World!n");
}


Seasoned pro

Code:
#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
Profile
[n00b] Member
User avatar

Joined: Wed Mar 31, 2010 5:12 pm
Posts: 541
Location: Round Rock, TX
Post 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
Profile
[n00b] Member
User avatar

Joined: Sun Oct 25, 2009 7:12 pm
Posts: 3663
Location: Mt Hood, Oregon
Post 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
Profile
[n00b] Member
User avatar

Joined: Wed Mar 31, 2010 5:12 pm
Posts: 541
Location: Round Rock, TX
Post 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
Profile
[n00b] Member

Joined: Thu May 21, 2009 11:00 pm
Posts: 2117
Location: Sagittarius A*
Post 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
Profile
Supreme Spammer
User avatar

Joined: Wed Dec 14, 2005 12:00 am
Posts: 1074
Location: Westchester
Post Re: Code Humor
i really like the first and last one, the others ive heard way too many times, lol.

_________________
Image


Tue Apr 27, 2010 6:40 pm
Profile YIM
n00bfest Elder, Lead Developer
User avatar

Joined: Sun May 24, 2009 11:00 pm
Posts: 2766
Location: Gettin it in
Post 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.

_________________

Image


Tue Apr 27, 2010 9:53 pm
Profile
[n00b] Member
User avatar

Joined: Wed Mar 31, 2010 5:12 pm
Posts: 541
Location: Round Rock, TX
Post 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
Profile
Newbie Spammer
User avatar

Joined: Thu Feb 24, 2005 12:00 am
Posts: 556
Location: Bronx, NY
Post 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
Profile
Retired n00bfest O.G.

Joined: Fri Dec 31, 2004 12:00 am
Posts: 2737
Post 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
Profile
Game Server Admin
User avatar

Joined: Mon Jul 13, 2009 11:00 pm
Posts: 3113
Post 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

_________________
Image
Image

"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
Profile
[n00b] Member
User avatar

Joined: Wed Apr 30, 2008 11:00 pm
Posts: 2403
Location: FL
Post 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.com

viewtopic.php?f=98&t=30772.


Sun May 02, 2010 12:36 pm
Profile
Game Server Admin

Joined: Thu Nov 19, 2009 3:17 am
Posts: 537
Post Re: Code Humor
me too :(

_________________
Image
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
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 17 posts ] 

Who is online

Users browsing this forum: Bing [Bot] and 58 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.