The Moviecode is watching you!

2016-03-26 von Mario

Beim letzten Chaos Communication Congress (32C3) gab es weitere Runden des Spiels Hacker Jeopardy. In der Kategorie “Filme” sollte aus einem vorgegebenen Quellcode der passende Filmtitel erraten werden. Den Filmtitel anhand einiger prägnanter Codezeilen zu veranschaulichen, finde ich irgendwie unterhaltsam.

0x01: Super Size Me

1
2
3
4
5
6
7
while (eatingMcDonalds){
  weight++;
  dayCount++;
  if (dayCount==30) {
    break
  }
}

 

0x02: 300

1
0x12c

 

0x03: Die unendliche Geschichte

1
2
3
while(1){
  cout << story;
}

 

0x04: 7

1
2
3
for (sin=1;sin<=7;sin++){
  killSomeone();
}

 

0x05: Inception

1
2
3
4
5
6
7
public void dream(){
  if(not dreaming){
    dream();
  } else {
    dream();
  }
}

 

0x06: The Big Bang Theory

1
2
3
for i in range(3):
    print("penny")
    knock()

 

0x07: Zurück in die Zukunft

1
2
3
4
5
6
7
8
9
10
11
12
var backToTheFuture(time) {
    if (time === 1985) {
        travel(1955) {
            kickAss(Biff);
            fallInLove(Parents);
            return 1985;
            alert("Marty, somethings gotta be done about your kids!");
        }
    }
    else
        play(hueyLewisAndTheNews);
}

 

0x08: Matrix

1
2
3
4
5
6
public pill_selection(Pill red, Pill blue) {
  if(blue)
    return Life;
  if(red)
    return RealLife;
}

 

0x09: …und täglich grüßt das Murmeltier

1
2
Start:
  Go Start

 

0xA: Das A-Team

1
2
3
4
5
6
7
8
9
10
11
while(1){
  found = search(employer);
  if(found){
    provokeEnemy();
    capturedByEnemy();
    buildSilverBullet();
    rescueTeamMembers(rand()%4+1);
    defeatEnemy();
    found = 0;
  }
}
Kategorie: Unterhaltung Schlagwörter: