2019-04-17 10:12:51 +02:00

82 lines
1.9 KiB
Markdown

<img src="images/logo_fachschaft_white.png" alt="Fachschaftslogo" style="border:none">
<!-- .element class="plain" style="background: transparent; height: 20rem; " -->
## Popkulturkode:
### Das Pseudocode-Quiz
<div style="text-align: center;">
<span style="padding-right: 1rem;">Anika Amma</span>
<span style="padding-right: 1rem;">Anna Sauer</span>
</div>
---
## Here is how this works:
* 2 teams of 3 players compete
* 5 rounds with 7 questions
* each question: a pseudocode snippet representing a film / TV show / book
* it may allude to the title, the plot or famous lines
* the team that guesses the represented story first gets a point
---
## Let's see an example:
```
protagonist = new Heroine()
charming = new Prince()
while not prince.comes_along():
protagonist.hair_length++
```
---
<div class="two-columns">
<div class="column" style="width:60%"><img src="images/00/rapunzel.jpg" /> </div>
<div class="column" style="width:40%">Rapunzel<br/>
<p class="source">
source: https://commons.wikimedia.org/wiki/File:Stamps_of_Germany_(DDR)_
1978,_MiNr_2383.jpg
</p>
</div>
</div>
---
---
## Another example
```
hero = new Spy;
hero.catchphrase =
"My name is %s, %s %s".format(hero.name, hero.firstname, hero.name)
```
---
<div class="two-columns">
<div class="column" style="width:60%"><img src="images/00/jamesbond.jpg" /> </div>
<div class="column" style="width:40%">James Bond<br/>
<p class="source">
source: https://en.wikipedia.org/wiki/Dr._No_(film)#/media/File:Dr._No_-_UK_cinema_poster.jpg
</p>
</div>
</div>
---
## One more example
```
const c = new Club();
console.log(c); // prints nothing
```
---
<div class="two-columns">
<div class="column" style="width:60%"><img src="images/00/fightclub.jpg" /> </div>
<div class="column" style="width:40%">Fight Club (1999)<br/>
<p class="source">
source: https://en.wikipedia.org/wiki/Fight_Club#/media/File:Fight_Club_poster.jpg
</p>
</div>
</div>