vote up 41 vote down star
41

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?

flag
show 20 more comments

63 Answers

1 2 3 next
vote up 80 vote down check
    2 * b || ! (2 * b)

always deserves a mention

link|flag
7  
0x2b || !0x2b :) – Iraimbilanja Mar 19 at 6:06
2  
char question = 0xFF; if (question == 0x2B | ~0x2B) suffer(outrageous_fortune[slings & arrows]); else take_against(arms, troubles.c) – cobbal Mar 19 at 6:21
1  
@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 at 23:19
1  
but "to be or not to be" is the question, not the answer :) – cobbal Mar 20 at 4:29
show 14 more comments
vote up 61 vote down

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|flag
6  
How about: short lunches; long hours; bit pay; – Chris Mar 19 at 4:21
show 1 more comment
vote up 59 vote down

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

void x(void) { x(); }
link|flag
2  
I see what you did there. – sirlancelot Mar 19 at 6:58
3  
Yay for SegmentationFault.org... wait... wrong language... – cobbal Mar 19 at 7:18
2  
@Vijay Dev: Run it in your head. :) – unwind Mar 19 at 10:53
1  
@All: wish I could upvote your comments! – Adam Liss Mar 19 at 13:47
3  
Tailcall optimization would reduce this to One Infinite Loop... – Tim Lesher Mar 19 at 13:55
show 8 more comments
vote up 42 vote down

Classic Foxtrot comic

link|flag
12  
He failed because he forgot the \n terminator. – Ferruccio Mar 19 at 12:47
2  
@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 at 23:20
3  
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 at 23:47
show 3 more comments
vote up 35 vote down
void CreateLimerick() {
#define poemKind terriblySlick
  if (lines == 5
  && rhymesWith("live") {
DoLaugh(); Perform(new Trick()); }}
link|flag
show 2 more comments
vote up 31 vote down
while(whatWeNeed != education())
{
   wall->add(bricks++);
}
link|flag
2  
if (meat.hasBeenEaten()) {servePudding();} – James Van Huis Mar 19 at 13:52
1  
pink floyd reference? awesome! – alex Mar 19 at 23:44
show 1 more comment
vote up 30 vote down

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|flag
9  
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 at 10:09
5  
+ anyof("", "SP1", "SP2", "SP3") – devio Mar 20 at 10:09
show 4 more comments
vote up 27 vote down
SELECT * FROM businesses WHERE business LIKE 'show_business%';

0 ROWS RETURNED
link|flag
show 1 more comment
vote up 26 vote down

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|flag
show 1 more comment
vote up 20 vote down

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 = null;
link|flag
3  
do || !do; //try { } – d03boy Mar 19 at 5:32
show 7 more comments
vote up 20 vote down
bikini.ToString();

ahem.

link|flag
1  
I prefer Bikini.hide() – Dominic Bou-Samra Nov 15 at 12:59
vote up 17 vote down

FORTH LOVE? IF HONK THEN

link|flag
1  
@d03boy: That's because RPN was created for use in stack based systems ;-) – Treb Mar 20 at 8:08
show 3 more comments
vote up 17 vote down

Oldie:

while ( !(succeed = try()) );
link|flag
vote up 17 vote down
public class Egg
{
    int hashCode()
    {
       ...
    }
}
link|flag
1  
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 at 4:36
show 2 more comments
vote up 17 vote down

This one was in Futurama

10 HOME
20 SWEET
30 GOTO 10
link|flag
1  
hehe i always loved that that was an infinite loop :) – thomasrutter Mar 20 at 4:30
show 2 more comments
vote up 16 vote down
10 LATHER
20 RINSE
30 GOTO 10
link|flag
1  
Assembly would be ":start LTR; RNS; JMP :start" :) – Blorgbeard Mar 19 at 8:35
show 3 more comments
vote up 15 vote down

From a t-shirt

i > u
link|flag
3  
I have that shirt. While I can't argue with the math, the grammar drives me crazy. :-) – Tim Sullivan Mar 19 at 3:51
show 3 more comments
vote up 14 vote down
public double penetration;
link|flag
1  
would that be part of the Employee class? =D – devio Mar 20 at 10:14
4  
Nope, only the Secretary class has that..... – Ionut Anghelcovici Mar 20 at 12:15
1  
Hopefully a "general protection fault" doesn't occur too. =) – gnovice Mar 21 at 23:11
vote up 13 vote down

Here's a bible one:

class the_earth
{
...
};
class the_meek : public the_earth
{
...
};
link|flag
show 2 more comments
vote up 10 vote down
if(youreHappyAndYouKnowIt) {
    clapYourHands();
}
link|flag
2  
I like the syntax error one more: ratemyeverything.net/image/9914/… – Ólafur Waage Mar 19 at 10:58
4  
What about if "(youreHappy && youKnowIt)"? Or "if (you.happy && you.knowIt)"? – Matthew Crumley Mar 20 at 4:06
show 1 more comment
vote up 7 vote down

FK UNICODE

Oh, pseudocode phrases? No...

link|flag
show 1 more comment
vote up 7 vote down

A bit more cryptic:

mkfifo('dream')
link|flag
show 1 more comment
vote up 7 vote down
def Life()
   while heartbeats
       wakeup
       breakfast
       if weekday
          work
          lunch
          work
       else
          play
          lunch
          play
       supper
       bath
       while (!sex) 
          sleep
   exit
link|flag
show 9 more comments
vote up 6 vote down
pthread_mutex_lock(&coop_mutex);
pthread_cond_wait(&hatched_cv, &coop_mutex); 
ct = count_chickens();
pthread_mutex_unlock(&coop_mutex);
link|flag
show 2 more comments
vote up 6 vote down
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|flag
vote up 6 vote down

From The Simpsons.

C:/dos, C:/dos/run, Run/dos/run

There's one from Futurama. A crippled (young) robot is holding this:

while (1){
   printf("I love mom");
}

I$ find "your_lack_of_faith_disturbing"

link|flag
show 1 more comment
vote up 6 vote down
cd pub
more beer
link|flag
vote up 6 vote down

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|flag
vote up 5 vote down

Bible reference:

first = last;  
last = first;
link|flag
2  
Any interpretation for the religiously illiterate? :) – Chris Mar 19 at 4:00
2  
But here, the first will be the last and the last will be the last, too. ;) – Nikhil Chelliah Mar 19 at 4:13
show 5 more comments
vote up 5 vote down
while (looks($girl) < "hot"){
    beer.next();
}
link|flag
show 2 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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