Movies as code - Free your coding mind...

"Unfortunately, no one can be told what the Matrix is. You have to see it for yourself."

Morpheus, The Matrix

March 15, 2012 | Action | submitted by Andrew 'Anderson' Dunai

Doom

echo -e "IDDQDx0aIDKFA" > /dev/marine
Vote up this code0

| Science Fiction | submitted by Cel

Episode IV

public final class EpisodeVI {
  public static Movie theJedi;
  public Movie starWars() {
    return theJedi;
  }
}
Vote up this code0

| Action | submitted by Andrew 'Anderson' Dunai

Resident evil

ammo = 35;

while(ammo-- || movie.getTimeLeft(T_MINUTES)>5)
{
    mila.shootRandomZombie();
}
Vote up this code0

| Comedy | submitted by Andrew 'Anderson' Dunai

Jay and Silent Bob

int main()
{
    Human *jay = new Human();
    Human *bob = new Human();

    Guys *both = new Guys(jay, bob);

    pthread_t bg;
    pthread_create(&bg, NULL, sellDrugs, (void *)both);
    pthread_create(&bg, NULL, singSong, (void *)both);

    Bob.setSilent(1);

    while(1)
    {
        if(jay.isBeingAnAsshole()>9000)
        {
            bob.setSilent(0);
            bob.attack(jay);
            bob.setSilent(1);
        }

        jay.sellDrugs();
        bob.sellDrugs();
    }
}
Vote up this code0

March 14, 2012 | Comedy | submitted by Visual Idiot

Forrest Gump

alert('life' == 'box of chocolates');
Vote up this code0

| Comedy | submitted by Visual Idiot

Ghostbusters

if(neighbourhood.somethingStrange) {
    ghostbusters.call();
}
Vote up this code1

| Action | submitted by Rich Gubby

12 Monkeys

SELECT * FROM monkeys LIMIT 12;
Vote up this code0

| Family | submitted by Mads Cordes

Finding Nemo

SELECT fish FROM ocean WHERE fish_name = 'Nemo' AND species = 'clownfish'
Vote up this code0

| Comedy | submitted by Rich Gubby

Back to the Future III

$ date -s "1885-11-12"
Vote up this code0

| Comedy | submitted by Rich Gubby

Finding Nemo

$ find / -name "nemo"
Vote up this code1