up vote 88 down vote favorite
65
share [g+] share [fb]

Do you have any clever pseudo-code phrases? Maybe a common phrase that has analogous pseudo-code? What's your best one?

For example, one I've seen, from bash.org:

A programmer started to cuss
Because getting to sleep was a fuss
As he lay there in bed
Looping 'round in his head
was: while(!asleep()) sheep++

One I thought of/use:

  • "Skills to pay the bills": foreach(bill) paywith(skill)

Have any to share?

What would you call these if you gave them a name?

link
2  
Shouldn't it be: while(!sleep) sheep++ ? – Martin Cote Mar 19 '09 at 3:43
show 20 more comments
feedback

locked by Tim Post Sep 29 '11 at 12:29

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Bill the Lizard Oct 25 '11 at 12:43

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

69 Answers

1 2 3
up vote 111 down vote accepted
    2 * b || ! (2 * b)

always deserves a mention

link
10  
If that's the question, the answer is always TRUE! – Adam Liss Mar 19 '09 at 3:48
22  
0x2b || !0x2b :) – Iraimbilanja Mar 19 '09 at 6:06
3  
char question = 0xFF; if (question == 0x2B | ~0x2B) suffer(outrageous_fortune[slings & arrows]); else take_against(arms, troubles.c) – cobbal Mar 19 '09 at 6:21
2  
@Adam Liss — Not so! What if b is "#define b (++a)" and a is equal to -1 when that line is executed? ;-) – Ben Blank Mar 19 '09 at 23:19
2  
but "to be or not to be" is the question, not the answer :) – cobbal Mar 20 '09 at 4:29
show 13 more comments
feedback

I forget the original source of this; it had some other ones it it, but I also forget what they were.

class Employee
{
    long lunches;
    short hours;
    double pay;
};
link
17  
How about: short lunches; long hours; bit pay; – Chris Mar 19 '09 at 4:21
10  
I think that should be "class Manager" – A. Levy Jan 19 '10 at 14:12
14  
@Chris, i think you are missing byte me;. – Georg Fritzsche Feb 22 '10 at 0:29
1  
From where you live "Employee" also means someone who bothers to go to the Job Center. – kjfletch Oct 15 '10 at 6:11
show 2 more comments
feedback

Code to display the name of everyone's favorite web site ... eventually:

void x(void) { x(); }
link
9  
what? but stack overflow is my favorite websi.... oh – Joe Philllips Mar 19 '09 at 5:34
12  
Yay for SegmentationFault.org... wait... wrong language... – cobbal Mar 19 '09 at 7:18
4  
@Vijay Dev: Run it in your head. :) – unwind Mar 19 '09 at 10:53
13  
Tailcall optimization would reduce this to One Infinite Loop... – Tim Lesher Mar 19 '09 at 13:55
4  
Well what do you know - several months later and I CAN upvote your comments! – Adam Liss Jan 19 '10 at 9:17
show 14 more comments
feedback

Apple naming function:

function name($product){
     return 'i'.$product;
}

Google naming function:

function name($product){
     return $product.' beta';
}

Microsoft naming function:

function name($product){
     return name($product);
}
link
1  
Excellent! +1 for turning "obvious" into "CLEVER" – Adam Liss Mar 20 '09 at 3:23
31  
MS naming should be: return "Microsoft " + anyof("Windows", "Windows Live", "Live", "Kumo") + $product + " " + year() + " " + anyof("", "Pro", "Personal", "Business", "Enterprise") + anyof("", "RC1", "RC2", "beta") + anyof("", &q – devio Mar 20 '09 at 10:09
11  
+ anyof("", "SP1", "SP2", "SP3") – devio Mar 20 '09 at 10:09
23  
So nobody noticed that the last function is an infinitely recursive function. – Ólafur Waage Nov 15 '09 at 15:25
2  
@Ólafur i did i did i did !!!!1 – herzmeister Jan 18 '10 at 10:47
show 2 more comments
feedback
SELECT * FROM businesses WHERE business LIKE 'show_business%';

0 ROWS RETURNED
link
3  
That's a great one! – Ólafur Waage Aug 7 '09 at 16:00
feedback

Classic Foxtrot comic

link
44  
He failed because he forgot the \n terminator. – Ferruccio Mar 19 '09 at 12:47
7  
@Ferruccio: good spot. I also think it would be better if the for loop went from 0 to <500. Would save one keypress anyway. – demoncodemonkey Mar 19 '09 at 23:20
19  
I actually did this in 5th grade... I asked permission to type and print my punishment phrase instead of submitting a notebook with 1000 copies. – Uri Mar 19 '09 at 23:47
5  
@Uri, +1 for beating the system! – Eric Aug 6 '09 at 20:15
1  
This is totally not optimal. Also, why are blackboards in C? – Gleno Sep 20 '10 at 0:50
show 4 more comments
feedback
while(whatWeNeed != education())
{
   wall->add(bricks++);
}
link
12  
if (meat.hasBeenEaten()) {servePudding();} – James Van Huis Mar 19 '09 at 13:52
2  
pink floyd reference? awesome! – alex Mar 19 '09 at 23:44
2  
Why do you add an increasing number of bricks each time? Should just be wall->add(brick); – DisgruntledGoat Jan 13 '11 at 16:59
show 1 more comment
feedback
bikini.ToString();

ahem.

link
10  
I prefer Bikini.hide() – Dominic Bou-Samra Nov 15 '09 at 12:59
1  
LMAO :D Amazing! – Christian Jan 18 '10 at 11:58
6  
Oh, come on now! Bikini.Remove(); – Loren Pechtel Jul 24 '10 at 14:51
show 2 more comments
feedback
void CreateLimerick() {
#define poemKind terriblySlick
  if (lines == 5
  && rhymesWith("live") {
DoLaugh(); Perform(new Trick()); }}
link
show 3 more comments
feedback

Spinoff on Uri's answer...

public class Chicken {
    private Chicken() {
        ...
    }
    public Egg layEgg() {
        return new Egg();
    }
}

public class Egg {
    private Egg() {
        ...
    }
    public Chicken hatch() {
        return new Chicken();
    }
}
link
3  
Good...but you need to declare the Chicken as friend to the Egg, and vice-versa. – A. Levy Jan 19 '10 at 14:18
4  
A. Levy, what horrible language are you thinking of? =) – Gleno Sep 20 '10 at 0:54
show 2 more comments
feedback

Can't remember the original off the top of my head (feel free to edit this if you can) but something like this. For Star Wars fans

do || !do;
// try {};
link
1  
"No. Try not. Do... or do not. There is no try. " – Chris Lutz Mar 19 '09 at 4:01
7  
do || !do; //try { } – Joe Philllips Mar 19 '09 at 5:32
show 6 more comments
feedback
public double penetration;
link
3  
would that be part of the Employee class? =D – devio Mar 20 '09 at 10:14
14  
Nope, only the Secretary class has that..... – Ionut Anghelcovici Mar 20 '09 at 12:15
3  
Hopefully a "general protection fault" doesn't occur too. =) – gnovice Mar 21 '09 at 23:11
feedback
public class Egg
{
    int hashCode()
    {
       ...
    }
}
link
2  
A way to make sure you don't put all your eggs in one basket... – Uri Mar 19 '09 at 4:31
3  
No, just that if you implement a hashcode on your eggs, they're less likely to all end up in the same basket (or bucket...) – Uri Mar 19 '09 at 4:36
show 1 more comment
feedback

This one was in Futurama

10 HOME
20 SWEET
30 GOTO 10
link
2  
hehe i always loved that that was an infinite loop :) – thomasrutter Mar 20 '09 at 4:30
show 5 more comments
feedback

Here's a bible one:

class the_earth
{
...
};
class the_meek : public the_earth
{
...
};
link
1  
Or maybe just this :): class earth {} class meek : earth {} – Chris Mar 19 '09 at 23:22
show 2 more comments
feedback

Oldie:

while ( !(succeed = try()) );
link
show 5 more comments
feedback

From a t-shirt

i > u
link
4  
I have that shirt. While I can't argue with the math, the grammar drives me crazy. :-) – Tim Sullivan Mar 19 '09 at 3:51
1  
It looks like "i <3 u" – furtelwart Mar 24 '09 at 12:02
show 2 more comments
feedback

FORTH LOVE? IF HONK THEN

link
2  
@d03boy: That's because RPN was created for use in stack based systems ;-) – Treb Mar 20 '09 at 8:08
show 3 more comments
feedback
10 LATHER
20 RINSE
30 GOTO 10
link
3  
Assembly would be ":start LTR; RNS; JMP :start" :) – Blorgbeard Mar 19 '09 at 8:35
show 3 more comments
feedback
if(youreHappyAndYouKnowIt) {
    clapYourHands();
}
link
5  
I like the syntax error one more: ratemyeverything.net/image/9914/0/Syntax_Error.ashx – Ólafur Waage Mar 19 '09 at 10:58
9  
What about if "(youreHappy && youKnowIt)"? Or "if (you.happy && you.knowIt)"? – Matthew Crumley Mar 20 '09 at 4:06
6  
I thought it was "if ( youreHappyAndYouKnowIt && youReallyWantToShowIt ) ..." – DisgruntledGoat Jul 5 '09 at 1:07
show 1 more comment
feedback
while (looks($girl) < "hot"){
    beer.next();
}
link
7  
I'd have gone with "beer++"; – gnovice Mar 21 '09 at 23:17
show 1 more comment
feedback

A bit more cryptic:

mkfifo('dream')
link
3  
Just a pipe dream? – Chris Connett Apr 28 '09 at 0:46
feedback
def Life()
   while heartbeats
       wakeup
       breakfast
       if weekday
          work
          lunch
          work
       else
          play
          lunch
          play
       supper
       bath
       while (!sex) 
          sleep
   exit
link
2  
But thats life ... to much repetition ;-) – Steve Mar 19 '09 at 13:45
show 8 more comments
feedback
pthread_mutex_lock(&coop_mutex);
pthread_cond_wait(&hatched_cv, &coop_mutex); 
ct = count_chickens();
pthread_mutex_unlock(&coop_mutex);
link
1  
+1 for cleverness -- is that original? – Adam Liss Mar 19 '09 at 3:54
show 1 more comment
feedback
cd pub
more beer
link
feedback

FK UNICODE

Oh, pseudocode phrases? No...

link
3  
I prefer the more positive: "I � UNICODE": codinghorror.com/blog/archives/001084.html – Joachim Sauer Mar 19 '09 at 8:44
feedback
for(int i=99; i>=0; i--)
{
    if(i!=99) cout<< i <<" bottles of beer on the wall"<<endl;

    cout<<i<<" bottles of beer on the wall, "<< i <<" bottles of beer."
        <<"Take one down, pass it around, "

     if(i==0) cout<<"no more bottles of beer on the wall. Hiccup!"<<endl<<endl;
}
link
feedback

The only constant in our world is change:

    public class OurWorld {
      public const int change;
    }
link
feedback

Another from Futurama:

10 SIN
20 GOTO HELL
link
show 2 more comments
feedback

OK So it's SQL but still it tickles my fancy...

Select * from Users
Where Clue is not null

Rows Returned: 0

Courtesy of the Think Geek Overlords

link
feedback
1 2 3

Not the answer you're looking for? Browse other questions tagged or ask your own question.