Showing posts with label Recipe. Show all posts
Showing posts with label Recipe. Show all posts

Friday, May 16, 2008

Project P605162008

It means, Prawns, rating 6/10, experiment conducted on 16th of May, 2008.

PREPERATION TIME

15 minutes

READY IN

5 minutes

INGREDIENTS

5 semi cooked prawns (Experimental right! So why take a risk?)
3 Red Chilli Flakes packets from Pizza Hut
3 Cheddar Cheese packets from Pizza Hut
1 tablespoon Kraft Mayonaise
2 tablespoons Heinz Ketchup
2 tablespoons Real Lemon Concentrate


DIRECTIONS

1. Mix the flakes, cheese, mayo, ketchup and lemon concentrate in a small cup.
2. Microwave the mixture so as to melt the cheese. It is going to stink, you have been warned!
3. Marinate the prawns in the paste and brush some oil on them.
4. Add some oil just enough to wet the frying pan.
5. Fry the prawns for about 3 minutes, or until they turn brown.
6. Serve with ketchup!

The taste was OK, but not worth the stench that came after step 2.

Monday, May 12, 2008

X rolls

PREPERATION TIME

10 minutes

READY IN

2 minutes


INGREDIENTS

2 tablespoons each of leftover X_i curry, 0 <= i <= N, number of non-vegetarian curries available
1 tablespoon each of chopped Y_j, 0 <= j <= M, number of raw/pickled vegetables available
Some Z_k sauce/dressing to taste, 0 <= k <= P, number of sauces/dressings available
2 leftover rotis/pulkas


DIRECTIONS

Kitchen.Microwave.preHeat(rotis, 2); //to soften them
Kitchen.Container C=new Container();

//to make the filling
for(int j = 0; j <= M; j++)
{
           C.addVegetable(Y_j);
           Y.delete(j);

           int l = rand(0, P);
           if(Cook.checkTasteBuds(Z_l))
           {
                     C.addSauce(Z_l);
                     Z.delete(l);
           }
}

C.mixContents();
C.emptyInto(pulkas);

for(int i = 0, k = 0; i <= N; i++, k++)
{
           C.addCurry(X_i);
           X.delete(i);

           if(k <= P && Z.exists(k) && Cook.checkTasteBuds(Z_k))
           {
                     C.addSauce(Z_k);
                     Z.delete(k);
           }
}

if(!Z.empty())
{
          C.addAll(Z);
}

C.mixContents();
C.emptyInto(pulkas);
Cook.roll(pulkas);
Kitchen.Microwave.heat(pulkas, 2);
Cook.serve(rolls, coke);

//GG