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

vote up 4 vote down

Another from Futurama:

10 SIN
20 GOTO HELL
link|flag
show 2 more comments
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 3 vote down

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

Or:

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

probably lame .. but

class Person
{
    //....
    boolean exists()
    {
        return this.thinks();
    }
    boolean thinks()
    { 
        return this.brain != null; 
    }
}
link|flag
vote up 2 vote down

HermanD what about

if what.goes_around == what.comes_around
   do.good
end
link|flag
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 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 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 2 vote down

select * from users where clue > 0
0 rows returned

link|flag
vote up 1 vote down
public class Person
{
    public DateTime LearningCurve { get; set; }

    public DateTime LifeExpectancy { get; set; }

    public bool Stoopid
    {
        get
        {
            return this.LearningCurve > this.LifeExpectancy;
        }
    }
}
link|flag
vote up 1 vote down

For the Star Wars geek...

$DO || ! $DO: try  
try: command no found

OR

if(child.eatsVegetables()) {
   child.becomeBigAndStrong();
}else{
   child.remainSmallForever();
}

OR EVEN

if(self.makeFunnyFace()) {
   if(faceMakingTime > aLongTime) {
        self.face().freeze();
    }
}
link|flag
vote up 1 vote down

C#:

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

JavaScript:

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

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 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
 sudo find / -name "*egg*" > basket
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 1 vote down

Short but sweet:

grep needle haystack
link|flag
vote up 0 vote down
while(DateTime.Now < DateTime.Now.Date.AddHours(17).AddMinutes(1))
{
    HttpWebRequest myRequest =
  (HttpWebRequest)WebRequest.Create("http://stackoverflow.com/users/USERID?sort=reputationhistory");
    HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
}
link|flag
show 3 more comments
vote up 0 vote down
if what.goes_around?
  what.comes_around
end
link|flag
vote up 0 vote down

oh->shit(pointer);

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 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 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 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 0 vote down

From the Fifth Element:

if (!kills(you)) {
    you.stronger();
}
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 movie The Shining

All work and no play makes Jack a dull boy.

if (Work() and Not Play) then Jack = Dull

or

if (Work() && !Play) Jack = Dull;
link|flag
1  
In times like these, it is more appropriate to say : "if (work() && !Pay) then Jack = Dull;" – ePharaoh Mar 19 at 15:28
show 1 more comment
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

Your Answer

Get an OpenID
or

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