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

December 12, 2012 | Comedy | submitted by Ryan Schenk

The Big Lebowski

public class JackieTreehorn {

  public Women treats(Object obj) {
    return ((Women) obj);
  }

}
Vote up this code0

December 9, 2012 | Horror | submitted by Alan Whitewright

Død snø (dead snow)

SELECT * FROM nazis
INTERSECT
SELECT * FROM zombies;
Vote up this code1

| Action | submitted by fourtyfourster

Die Hard

function dead_already(){
    if(is_tshirt_dirty(MAX)){
        alert('Yupikayey motherfucker!');
        return false;
    }else{
        return false
    }
}
Vote up this code1

| Action | submitted by TK

I Am Legend

I Am
Vote up this code0

| Action | submitted by TK

Top Gun

.gun {
position: absolute;
top: 0;
z-index: 1000000;
}

Vote up this code3

| Comedy | submitted by Juanjo

Look Who’s Talking

return !!(window.webkitAudioContext || window.AudioContext);
Vote up this code1

November 1, 2012 | Drama | submitted by rohieb

Pi

/* NB: For the credits, see http://www0.us.ioccc.org/years.html#1988_westley */
#define _ -F<00||--F-OO--;
int F=00,OO=00;main(){F_OO();printf("%1.3fn",4.*-F/OO/OO);}F_OO()
{
            _-_-_-_
       _-_-_-_-_-_-_-_-_
    _-_-_-_-_-_-_-_-_-_-_-_
  _-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
  _-_-_-_-_-_-_-_-_-_-_-_-_-_
    _-_-_-_-_-_-_-_-_-_-_-_
        _-_-_-_-_-_-_-_
            _-_-_-_
}
Vote up this code0

| Mystery | submitted by rohieb

Highlander

for pid in `ps -eo pid`; do
    if [ "$pid" != "0" ]; then
        kill -9 pid;
    fi;
done;
Vote up this code4

October 17, 2012 | Adventure | submitted by ben waldron

JSON and the Argonauts



$arr = array('Medea','Acastus','Argos','Zeus','Hermes','Pelias','King Aeëtes','Hera','Hylas','Phineus','Phalerus','Hercules','Dmitrius','Polydeuces','Lynceus','Castor','Briseis');

$json = json_encode($arr);

echo $json;

?>
Vote up this code1

September 25, 2012 | Action | submitted by Fabrizio Curcio

Batman Forever

while true
    puts "Batman"
end
Vote up this code15