Recipes

Rice Pudding - without rice

Ingredients

  • 40g Sugar
  • 1 packet Cream-Pudding Pulver
  • 500ml Milk
  • 6x drops Vanilla flavor
  • 5x Butter Biscuit (“Butterkeks”)

Assembly

Stove.insert(pot);
pot.insert(mix(milk, sugar, aroma));
Stove.heat(pot, 100%);
while(pot.content is not cooking)
    stir(pot.content);
Hand.insert(butter_biscuits);
Hand.crush();
pot.insert(pudding_pulver);
pot.insert(butter_biscuits);
for(2 minutes)
    stir(pot.content);
while(pot.temperature > environment.temperature)
    wait();
Fridge.insert(pot);

Continue reading

Crispy Olive Bread Slices

Ingredients

  • 120ml Olive oil
  • 40g Garlic powder
  • Some Pepper
  • 4x White bread slices

Assembly

for(breadSlice of bread) {
    toast = Toaster.toast(breadSlice);
    paste = mix(oil, garlic powder, pepper);
    result = spread(paste, toast);
    while(result.temperature > warm)
        wait();
}

Continue reading

Vanillesauce / Pudding á la Simon

Ingredients

  • 500ml Milk
  • 3x Spoon starch
  • 3x Spoon sugar (+1 spoon for pudding)
  • 4x Drops butter-vanilla flavor (may mix 1:1 with rum flavor)

Assembly

pot.insert(mix(milk, starch, sugar, flavor));
Stove.insert(pot);
Stove.heat(pot, 100%);
while(pot.content.stateOfAggregation == fluid)
    stir(pot.content);
Stove.heat(pot, 0%);
while(pot.content.temperature > cold)
    wait();

Continue reading

Lemon Plate Cake

Ingredients

  • 2x Shovel flour
  • 0.5x Shovel sugar
  • 1x Shovel starch
  • Milk as needed
  • 2x Drops butter-vanilla flavor

Assembly

cake = mix(flour, sugar, starch, milk, flavor)
Microwave.put(cake);
while(cake.stateOfAggregation == fluid)
    stir()
    Microwave.enable(1 minute)
    wait()

Continue reading

Tomato Butter Bread Slices

Ingredients

  • Block of butter
  • Tomato paste
  • Chopped Basil
  • Garlic
  • Salt
  • Pepper

Assembly

mix(butter, tomato paste, basil, garlic, salt, pepper);

Credit goes to Simone L.

Continue reading

Tonno Salat á la Simon

Ingredients

  • 2x Corn can
  • Tonno with peas & tomatoes & sauce can
  • Heaped spoon french sauce (mayonnaise)
  • Shot Olive oil
  • A lot of garlic powder
  • Salt
  • A lot of pepper

Assembly

mix(corn, tonno, mayonnaise, oil, garlic powder, salt, pepper);

Continue reading

Rice Pudding á la Simon

Ingredients

  • 180g Milk-Rice
  • 1 shovel sugar
  • 1l Milk
  • 4x drops butter-vanilla flavor
  • Some butter (a little bit more than needed for a slice of toast)
  • Some water

Assembly

Stove.insert(pot);
pot.insert(mix(water, sugar, butter, aroma));
Stove.heat(pot, 100%);
while(butter.stateOfAggregation != fluid)
    wait();
pot.insert(milk);
pot.insert(rice);
while(pot.content is not cooking)
    wait();
Stove.heat(pot, 50%);
for(45 minutes)
    stir(pot.content);

Continue reading

Assembly Documentation

Why?

…use a cup of…

…may need to stir it until it is fluffy…

What is a cup?! What do you define as fluffy? And that’s the reason why I started to “program” my recipes. That way I am forced to think step by step and as detailed as I can, so you can exactly reproduce my results just by following the assembly program without knowing the magic terms to describe what ‘clumpy’ means…

Continue reading