Showing posts with label chicken. Show all posts
Showing posts with label chicken. Show all posts

Wednesday, October 12, 2011

Asian Chicken with Rice

My has it been a long time since I posted anything! I temporarily lost my will to experiment with cooking and ended up eating some rather boring food over the course of the last year (or eating the wonderful things that my girlfriend cooked up for me of course). However tonight I was cooking something new and finally remembered to post it, so let's hope we get a new batch of recipes going!

This one has a very delicious sauce, hopefully you enjoy it as much as I do:

require 'white_rice'

ingredients = {
  :white_rice => 0.5.recipe,
  :chicken_breast => 1,
  :soy_sauce => 1.tbsp,
  :sherry => 2.tbsp,
  :egg => 1,
  :corn_starch => 1.tbsp
}

if you.like? :onion
  ingredients[:onion] = 1
elsif you.like? :onion_powder
  ingredients[:onion_powder] = 0.5.tsp
end

if you.want?
  # you can add stuff to the white rice just by sticking it in the pot
  # while it cooks
  you.make :white_rice, :with => you.select [:corn, :peas, :chopped_spinach]
else
  you.make :white_rice
end

bowl << :soy_sauce << :sherry << :egg

if ingredients.key? :onion
  you.chop :onion, :finely
  bowl << :onion
elsif ingredients.key? :onion_powder
  bowl << :onion_powder
end

you.mix bowl.contents

you.slice :chicken

bowl << :chicken << :corn_starch

you.mix bowl.contents

pan.element.set_heat :medium

pan << bowl.contents

until pan.contents.cooked?
  you.mix pan.contents
  pan << :water if pan.contents.too_thick?
end

plate << :rice
plate << pan.contents

you.eat

Wednesday, May 12, 2010

Garlic Chicken and Potatoes

ingredients = {
  :chicken => (3..4).pieces,
  :potatoes => 3..4,
  :carrots => 2..3,
  
  :butter => 2.tbsp,
  :olive_oil => 2.tbsp,
  :parsley => 1.tbsp,
  :rosemary => 1.tbsp,
  :basil => 1.tsp,
  :garlic => 2.cloves,
  :salt and :pepper => you.decide
}

oven.set_heat 350.F

casserole_dish << :foil

(carrots and potatoes).peel if you.want?
(carrots and potatoes).chop

casserole_dish << :carrots << :potatoes << :chicken

ingredients[:butter].melt
garlic.press or garlic.chop

bowl << :butter << :oil << :parsley << :rosemary << :garlic << :basil << :salt << :pepper
bowl.contents.mix

bowl.contents.pour :over => casserole_dish.contents

oven << casserole_dish

you.wait 45.minutes

oven.remove casserole_dish

while not casserole_dish.contents.cooked?
  oven << casserole_dish
  you.wait
end

oven.set_heat :off

you.eat