vote up 41 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

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 0 vote down
$TheQuestion = (ToBe() || !ToBe());

Just saw this is based on the same quote as the highest rated pseudo-code example in this thread...

link|flag
vote up 0 vote down

My definition of everything: SELECT * FROM *

link|flag
vote up 0 vote down

Try this:

float or_sink = 0xB000;
int eresting_value = 1;
volatile bool sheet = TRUE;
link|flag
vote up 0 vote down

From the Fifth Element:

if (!kills(you)) {
    you.stronger();
}
link|flag
vote up 1 vote down

Short but sweet:

grep needle haystack
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
if ($eggs->haveHatched) {
   $chickens = count($eggs->get());
}
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 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
SELECT * FROM tblMeals WHERE type = 'lunch' AND cost = 0;

0 ROWS RETURNED
link|flag
vote up -2 vote down

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

link|flag
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 5 vote down
while (looks($girl) < "hot"){
    beer.next();
}
link|flag
show 2 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 6 vote down
cd pub
more beer
link|flag
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 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 1 vote down
 sudo find / -name "*egg*" > basket
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 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 27 vote down
SELECT * FROM businesses WHERE business LIKE 'show_business%';

0 ROWS RETURNED
link|flag
show 1 more comment
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 1 vote down

The only constant in our world is change:

    public class OurWorld {
      public const int change;
    }
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 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

select * from users where clue > 0
0 rows returned

link|flag
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 3 vote down

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

Or:

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

Another from Futurama:

10 SIN
20 GOTO HELL
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.