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

April 5, 2012 | Drama | submitted by Kirill

The Shawshank Redemption

class AndyDuffrain implements PrisonBreak{
      private boolean isTimeToRun = false;
      private Friend Red;
      public breakWall(){
             if(!isTimeToRun){
                    breakWall();
             }
      }
      public static void Main(){
           for(int i = 0; i < 30;i++){
                  breakWall();
                  if(TommyWilliams.isDead){
                           timeToRun = true;
                 }
           }
       
      }

}
Vote up this code3

| Drama | submitted by Brisio

A Dangerous Method

class A{

     public A()
     {
     }

      public int dangerous()  //method
      {
            return -1;
      }

}
Vote up this code8

| Science Fiction | submitted by Stefano

Indipendence Day

Console.WriteLine("Hello World!");
Vote up this code1

| Action | submitted by Stefano

Kill Bill vol 1-2

namespace KillBillBothVolumes
{
    public class Enemy
    {
        internal string Name;
        internal string Surname;
        internal string AlternativeName;
        internal Action Kill;

        public Enemy(string name, string surname, string alternativeName, Action kill)
        {
            this.Name = name;
            this.Surname = surname;
            this.AlternativeName = alternativeName;

            this.Kill = kill;
        }
        public void Assassinate()
        {
            this.Kill.Invoke();
            return ;
        }

    }

    public class Helper
    {
        internal string Name;
        internal string Surname;
        internal Action Help;

        public Helper(string name, string surname,  Action help)
        {
            this.Name = name;
            this.Surname = surname;

            this.Help = help;
        }
        public void Assist()
        {
            this.Help.Invoke();
            return;
        }

    }
   

    public class Beatrix
    {
        public List<Enemy> DeadlyViperAssassinationSquad;
        public List<Helper> Helpers;
        public string Car;

        public Beatrix()
        {
            Car = null;
        }

       

        internal void GetOutFromComa()
        {
            Car = "Pussy Wagon";
        }

        internal void Remember()
        {

            #region Enemies

            DeadlyViperAssassinationSquad = new List<Enemy>();
            DeadlyViperAssassinationSquad.Add(
                new Enemy(
                            "O-Ren",
                            "Ishii",
                            "Cottonmouth",
                            delegate
                            {
                                CutHerHead();
                            }
                        ));

            DeadlyViperAssassinationSquad.Add(
                new Enemy(
                            "Vernita",
                            "Green",
                            "Copperhead",
                            delegate
                            {
                                StabHer();
                            }
                        ));
            DeadlyViperAssassinationSquad.Add(
                new Enemy(
                            "Elle",
                            "Driver",
                            "California Mountain Snake",
                            delegate
                            {
                                BlindHer();
                                WaitForTheBlackMambaToBitHer();
                            }
                        ));

            DeadlyViperAssassinationSquad.Add(
                new Enemy(
                            "Bud",
                            String.Empty,
                            "Sidewinder",
                            delegate
                            {
                                return;
                            }
                        ));

            DeadlyViperAssassinationSquad.Add(
                new Enemy(
                            "Bill",
                            String.Empty,
                            "Snake Charmer",
                            delegate
                            {
                                PerformFivePointedPalmExplodingHeartTechnique();
                                for ( int i = 0 ; i < 5 ; i++ )
                                {
                                    Step();
                                }
                            }
                        ));
            #endregion

            #region Helpers
           
            Helpers = new List<Helper>();
            Helpers.Add(
                new Helper(
                            "Hattori",
                            "Hanzo",
                            delegate
                            {
                                CreateASword();
                            }
                        ));

            Helpers = new List<Helper>();
            Helpers.Add(
                new Helper(
                            "Pai",
                            "Mei",
                            delegate
                            {
                                TeachMartialArts();
                            }
                        ));
            #endregion

        }

        internal void GetYourRevenge()
        {
            foreach ( Helper item in Helpers )
            {
                item.Assist();
            }
            foreach ( Enemy item in DeadlyViperAssassinationSquad )
            {
                item.Assassinate();
            }
        }

    }

    public class Program
    {
        static void Main(string[] args)
        {

            Beatrix Starring = new Beatrix();
           
            Starring.GetOutFromComa();
           
            Starring.Remember();

            Starring.GetYourRevenge();


        }
    }
}
Vote up this code3

| Comedy | submitted by Brisio

50 First Dates

#include

typedef enum {false, true} boolean;

boolean error_memory = true;
int cnt = 1;

void NewDay(void);
void Free(void);
boolean FallInLove(void);
void Kiss(void);

int main (int argc, const char * argv[]){
    NewDay();
    return 0;
}

void NewDay(void){
    printf("Day %dn", cnt);
    if(error_memory){
        Free();
        FallInLove();
        Kiss();
        if(cnt < 50){ cnt++;  return NewDay(); }
    }    
}

void Free(void){
    printf("Lucy reset memory!n");
}
boolean FallInLove (void){
    printf("Lucy falls in love with Henry!n");
    return true;
}
void Kiss(void){
    printf("Henry kiss Lucy!n");
}
Vote up this code2

| Mystery | submitted by nschum

The X Files

find . -type f -perm +111
Vote up this code5

| Drama | submitted by Balazs

Catch-22

boolean goHome = true;

private boolean askIfYouWantToGoHome(){
     if(you.getAnswer()){
           you.setCrazy(false);
           goHome = false;
     } else {
           you.setCrazy(true);
           goHome = false;
     }
}
Vote up this code0

April 4, 2012 | Musical | submitted by Emanuele Granucci

Moulin Rouge

<div style="color:#ff0000">Moulin</div>
Vote up this code5

| Comedy | submitted by Emanuele Granucci

Sister Act


$daughters['John'] = array('Mary');
$daughters['John'][] = 'Act';
?>
Vote up this code0

| Science Fiction | submitted by Emanuele Granucci

Fantastic four


function fantastic($n) {
   if ($n==4) return true;
   else return false;
}
?>
Vote up this code0