vote up 42 vote down star
40

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

vote up 2 vote down

Name that tune:

if (baby.getEndDate() != null) {
  setAddress(
    new Dwelling("HeartBreak Hotel", "Lonely Street"));
}

for (int i=0; i<3; i++) {
  loneliness++;
}
mood--;

if (crowded) { // crowded always true?
  Room room = new Room();
  room.setClientelle("BROKEN_HEARTED_LOVERS")
  room.setFunction("GLOOM_AVERSION_THERAPY")
  room.getInventory().add(new Carton("Tissues"));
  room.book();
}    

if (role() == BELL_HOP && teary()) {
  global_tear_count++;
  setResidency(PERMANENT);
}  

if (role() == DESK_CLERK && getAttire.color() == Color.BLACK) {
  setResidency(PERMANENT);
}

if (recent(baby.getEndDate()) && !member()) {
  ambulate(getAddress("HeartBreak Hotel"));
}

Courtesy Gen-e-sis.com

link|flag
show 2 more comments
vote up 1 vote down

C#:

while((bouncing = paycheck())) new Action(() => {})();

JavaScript:

while((bouncing = paycheck())) (function() {})();

link|flag
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 31 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
10  
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
3  
So nobody noticed that the last function is an infinitely recursive function. – Ólafur Waage Nov 15 at 15:25
show 3 more comments
vote up 4 vote down

Another from Futurama:

10 SIN
20 GOTO HELL
link|flag
show 2 more comments
vote up 3 vote down

reaction = screwed? flight() : fight();

Or:

function respond(situation) {
 if (situation == screwed)
  flight();
 else
  fight();
}
link|flag
vote up 14 vote down

Here's a bible one:

class the_earth
{
...
};
class the_meek : public the_earth
{
...
};
link|flag
show 2 more comments
vote up 2 vote down

select * from users where clue > 0
0 rows returned

link|flag
vote up 0 vote down

When everybody tells you that you like every kind of woman:

class Everyone<T> where T : IDoable
{
  T woman;

   public void haveFun()
   {
       //Cool stuff goes here!
   }
}


class Blonde : IDoable
{
   ...
}

class Brunette: IDoable
{
   ...
}
link|flag
vote up 2 vote down

From just before last year's election (obviously referencing the former President Bush and the Presidential candidate Barack Obama and his running mate Joe Biden, for those not in the US):

Bush^3 vs. /O(s|b)ama Bi(n La)?den/ -- YOU DECIDE!
link|flag
show 2 more comments
vote up 1 vote down

The only constant in our world is change:

    public class OurWorld {
      public const int change;
    }
link|flag
vote up 1 vote down

This is what I like to call: To be married

//Singleton
public class Marriage
{
   static Marriage myMarriage = null;          // the best option!!
   public Woman myWoman {get; private set};    // why private!!

   private Marriage
   {
      myWoman = new Woman();    // smelly code... no new
   }

   public static Marriage getInstance()
   {
      if(myMarriage == null)
        myMarriage = new Marriage();

        return myMarriage;
   }
}
link|flag
vote up 28 vote down
SELECT * FROM businesses WHERE business LIKE 'show_business%';

0 ROWS RETURNED
link|flag
show 1 more comment
vote up 3 vote down
#!/bin/bash
# Apologies to John, Paul, George, and Ringo.
while true; do
   echo "Strawberry Fields"
done

Or:

yes "*****" "====="  # Where's my sousaphone?
link|flag
vote up 0 vote down
void test(char *str, int max) throw(...)
{
    if (_stricmp(str, "Bathwater")
    {
        strcat_s(str, max, " Baby");
        throw(str);
    }
}
link|flag
vote up 1 vote down
 sudo find / -name "*egg*" > basket
link|flag
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
5  
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 0 vote down

Pretty childish but...

class LittleBoys {
    vector<Snip> snips;
    vector<Snail> snails;
    vector<PuppyDogTails> puppyDogTails;
};

class LittleGirls {
    vector<Sugar> sugar;
    vector<Spice> spice;
    vector<EverythingNice> everythingNice;
};

class class PowerpuffGirls : public LittleGirls { 
    Chemical X; 
} blossom, bubbles, buttercup;

class RowdyruffBoys : public LittleBoys { 
    Chemical X; 
} brick, boomer, butch;

class MojoJojo : public Monkey, public Evil {
public:
    PowerpuffGirls createPowerBuffGirls();
    RowdyruffBoys createPowerBuffBoys();
    string rephrase(string sentence);
} mojoJojo;
link|flag
vote up 6 vote down
cd pub
more beer
link|flag
vote up 21 vote down
bikini.ToString();

ahem.

link|flag
1  
I prefer Bikini.hide() – Dominic Bou-Samra Nov 15 at 12:59
show 1 more comment
vote up 5 vote down
while (looks($girl) < "hot"){
    beer.next();
}
link|flag
show 2 more comments
vote up -2 vote down

I make money this way!!

if (pocket.money.saving() < money.currency.usd(500)) { 
   moneyrenter money = new moneyrenter(4000, money.currency.usd());
   pocket.money.charge(money);
}

Put it on a thread and you'll never get poor!!! :D :D

link|flag
show 1 more comment
vote up -2 vote down

int expectation = rand();
int disappointment = expectation;

link|flag
vote up -1 vote down
SELECT * FROM tblMeals WHERE type = 'lunch' AND cost = 0;

0 ROWS RETURNED
link|flag
vote up 0 vote down

Whenever using a static variable in a function in PHP, I can never get past the temptation just to write:

static $x;

[explanation]

It makes the code really hard to understand, but it's totally worth it.

link|flag
vote up 1 vote down

In commenting on an answer to this question, which asks about converting strings of hex digits to decimal, I ended by suggesting:

It's a matter of taste: 6 of one, C>>1 of another.

link|flag
vote up 1 vote down
if ($eggs->haveHatched) {
   $chickens = count($eggs->get());
}
link|flag
vote up 2 vote down

Perl Poetry

if ("a packet hits a pocket") {
On: a;
socket(ON, A ,PORT,"")
       && the bus is interrupted as a very-last-resort
       && the address of the memory makes your 
          floppy disk, abort;

} else {

"The socket packet pocket has an";
error: to-report;
} 

if ("your cursor finds a menu item") { 
"followed by a dash"
        && "the double clicking icon";
puts: your-items-in-the-trash
        && your data is corrupted cause the 
           index("doesn't", "hash");

} else {
"Your situation is hopeless"
        && Your system's gonna crash;
} 

if ("the label on the cable") {
On-the-table, at-your-house;
Says_the; 
sub network {"is connected to the button on your mouse"};
BUT: Your-packets, want-to; 
{/tunnel to another protocol/};
thats: repeatedly-rejected; 
{/by the printer/}; "down the hall"
        && "YOUR SCREEN is all distorted";
{/by the side effects of Gauss/};
so: "your icons", in-the-window;
"are as wavy as a souse";

} else {
YOU: "may as well reboot" && "go out with a !";
CAUSE: /Sure as Im a poet/;
THIS: suckers-gonna-hang;
}

print "Seuss as a tech writer - Kevin Meltzer\n";
link|flag
vote up 1 vote down

Short but sweet:

grep needle haystack
link|flag
vote up 0 vote down

From the Fifth Element:

if (!kills(you)) {
    you.stronger();
}
link|flag

Your Answer

Get an OpenID
or

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