{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 8.17 s, sys: 795 ms, total: 8.97 s\n", "Wall time: 8.97 s\n" ] } ], "source": [ "import sys\n", "sys.path.append(\"../\")\n", "from Recipe import Recipe, Ingredient, RecipeGraph\n", "\n", "import settings\n", "import db.db_settings as db_settings\n", "from db.database_connection import DatabaseConnection\n", "\n", "import random\n", "\n", "DatabaseConnection(db_settings.db_host,\n", " db_settings.db_port,\n", " db_settings.db_user,\n", " db_settings.db_pw,\n", " db_settings.db_db,\n", " db_settings.db_charset)\n", "\n", "%time ids = DatabaseConnection.global_single_query(\"select id from recipes\")" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "## Nettle and lemon cake with lemon buttercream recipe\n", "(7d1f97f3da)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '100 g \\( 3.5oz \\) raw young nettle leaves'\n", " * '200 g \\( 7.1oz \\) unsalted butter , softened'\n", " * '150 g \\( 5.3oz \\) granulated sugar'\n", " * '3 eggs'\n", " * '2 tsp vanilla extract'\n", " * '0.5 lemon , zest and juice'\n", " * '250 g \\( 8.8oz \\) plain flour'\n", " * '2 tsp baking powder'\n", " * '0.5 tsp salt'\n", " * '150 g \\( 5.3oz \\) unsalted butter , softened'\n", " * '300 g \\( 10.6oz \\) powdered icing sugar'\n", " * '0.5 lemon , zest and juice'\n", " * '1 small handful blackberries'\n", " * '1 scattering lemon zest'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 170C/325F .\n", " * Grease and line two 7 round cake tins .\n", " * Using rubber gloves , carefully wash the stinging nettle leaves and remove any stems .\n", " * Place in a pan of boiling water and boil for 3-4 minutes .\n", " * The sting will be removed with the boiling .\n", " * Refresh under cold water , drain and puree .\n", " * Set aside .\n", " * In a large bowl , cream together the butter and sugar until light and fluffy .\n", " * Beat in the eggs , one at a time , then beat in the nettles , vanilla , zest and lemon juice .\n", " * Sift in the flour , baking powder and salt and stir to gently combine .\n", " * Spoon the mixture evenly into the prepared tins , push to the edges and level , then bake for 25 minutes or until an inserted skewer comes out clean .\n", " * Cool for 10 minutes in the tins and then turn onto a wire rack to cool completely before icing .\n", " * For the icing : In a large bowl , cream the butter until fluffy .\n", " * Add in the icing sugar and beat .\n", " * Beat in the zest and a little of the lemon juice .\n", " * Add more lemon juice to make it a frosting consistency and beat again .\n", " * Store in the fridge until ready to use .\n", " * To assemble : Spread a little of the buttercream between the layers of the completely cooled cakes and sandwich together .\n", " * Cover the cake in the remaining buttercream and decorate with blackberries and lemon zest ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "leaf\n", "\n", "leaf\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "flour->mix5\n", "\n", "\n", "\n", "\n", "\n", "baking\n", "\n", "baking\n", "\n", "\n", "\n", "lemon\n", "\n", "lemon\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "lemon->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix4\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "bake0->mix5\n", "\n", "\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "vanilla extract->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix4\n", "\n", "\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "beat1->mix4\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->bake0\n", "\n", "\n", "\n", "\n", "\n", "lemon zest\n", "\n", "lemon zest\n", "\n", "\n", "\n", "lemon zest->mix0\n", "\n", "\n", "\n", "\n", "\n", "ice sugar\n", "\n", "ice sugar\n", "\n", "\n", "\n", "ice sugar->cool0\n", "\n", "\n", "\n", "\n", "\n", "blackberry\n", "\n", "blackberry\n", "\n", "\n", "\n", "blackberry->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix0->beat1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Protein Chocolate Mousse\n", "(e67e0d8000)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup heavy whipping cream \\( It fluffs & firms up the best \\)'\n", " * '2 tablespoons cocoa powder'\n", " * '2 teaspoons splenda sugar substitute'\n", " * '3 tablespoons unflavored 100 % whey protein powder \\( 1-3 scoops any brand \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Stir dry ingredients together in mixing bowl .\n", " * Add cream and mix well on low speed for about a minute .\n", " * Switch to High Speed and mix for about 2 minutes until mixture begins to firm and turn into mousse .\n", " * Spoon into bowl and refrigerate ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "cream->refrigerate0\n", "\n", "\n", "\n", "\n", "\n", "whey\n", "\n", "whey\n", "\n", "\n", "\n", "cocoa\n", "\n", "cocoa\n", "\n", "\n", "\n", "splenda sugar\n", "\n", "splenda sugar\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Grilled-Vegetable Salad with Cuban Mojo\n", "(30f15f6b94)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 large red bell peppers'\n", " * '2 large green bell peppers'\n", " * '6 small Italian eggplants \\( 1 3/4 pounds \\)'\n", " * '1 large sweet onion , unpeeled and halved lengthwise'\n", " * '2 medium zucchini , sliced lengthwise 1/2 inch thick'\n", " * 'Cuban Mojo'\n", " * '1 tablespoon red wine vinegar'\n", " * '2 tablespoons extra-virgin olive oil'\n", " * 'One 1-pound head romaine lettuce , leaves torn'\n", " * '1 large bunch watercress , tough stems discarded'\n", " * 'Salt and freshly ground pepper'\n", " * 'Basil leaves , for garnish'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Light a grill or preheat the broiler .\n", " * Grill or broil the bell peppers for about 5 minutes per side , or until the skins are blistered and charred .\n", " * Transfer the peppers to a medium bowl , cover with plastic wrap and let steam for 20 minutes .\n", " * Peel , core and seed the peppers and cut them into 1-inch-wide strips .\n", " * Slice the eggplants lengthwise , keeping the slices attached at the stem .\n", " * Fan them out by pressing down with your hands .\n", " * Generously brush the eggplants , onion and zucchini with the mojo , reserving 1 tablespoon for the dressing .\n", " * Grill or broil the vegetables for 20 minutes , or until the eggplant and zucchini are tender and the onion is charred and crisp-tender .\n", " * Carefully peel the onion and cut it into 1-inch slices .\n", " * In a large bowl , whisk the reserved 1 tablespoon of mojo with the red wine vinegar ; slowly whisk in the olive oil until emulsified .\n", " * Add the romaine and watercress , season with salt and pepper and toss to combine .\n", " * Transfer the greens to a serving platter and arrange the grilled vegetables on top .\n", " * Garnish with basil leaves and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "broil0\n", "\n", "broil\n", "\n", "\n", "\n", "brush0->broil0\n", "\n", "\n", "\n", "\n", "\n", "red bell pepper\n", "\n", "red bell pepper\n", "\n", "\n", "\n", "broil1\n", "\n", "broil\n", "\n", "\n", "\n", "red bell pepper->broil1\n", "\n", "\n", "\n", "\n", "\n", "grill0\n", "\n", "grill\n", "\n", "\n", "\n", "peel1\n", "\n", "peel\n", "\n", "\n", "\n", "grill0->peel1\n", "\n", "\n", "\n", "\n", "\n", "leave torn\n", "\n", "leave torn\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "brush1\n", "\n", "brush\n", "\n", "\n", "\n", "onion->brush1\n", "\n", "\n", "\n", "\n", "\n", "basil leaf\n", "\n", "basil leaf\n", "\n", "\n", "\n", "extra-virgin olive oil\n", "\n", "extra-virgin olive oil\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "extra-virgin olive oil->whisk0\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "whisk0->mix0\n", "\n", "\n", "\n", "\n", "\n", "zucchini\n", "\n", "zucchini\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "zucchini->slice0\n", "\n", "\n", "\n", "\n", "\n", "red wine vinegar\n", "\n", "red wine vinegar\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "broil0->mix3\n", "\n", "\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "peel0->mix3\n", "\n", "\n", "\n", "\n", "\n", "peel1->mix0\n", "\n", "\n", "\n", "\n", "\n", "green\n", "\n", "green\n", "\n", "\n", "\n", "eggplant\n", "\n", "eggplant\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "eggplant->slice1\n", "\n", "\n", "\n", "\n", "\n", "brush1->peel0\n", "\n", "\n", "\n", "\n", "\n", "watercress\n", "\n", "watercress\n", "\n", "\n", "\n", "watercress->mix0\n", "\n", "\n", "\n", "\n", "\n", "brush2\n", "\n", "brush\n", "\n", "\n", "\n", "slice1->brush2\n", "\n", "\n", "\n", "\n", "\n", "brush2->mix3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice0->brush0\n", "\n", "\n", "\n", "\n", "\n", "broil1->grill0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pudding in a Bag\n", "(d8bf8b5c06)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 package Instant Pudding \\( your Choice Of Flavour \\)'\n", " * '2 cups Milk'\n", " * '4 bags With A Very Good Ziplock'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Oh yes , pudding in a bag !\n", " * You , your friends , and children will without a doubt LOVE this !\n", " * So , the best plan of action is to equally separate the pudding powder into 4 bags .\n", " * Then add 1/2 cup of milk to each bag .\n", " * Zip up the bag , leaving a bit of air inside .\n", " * Hand a bag to each of the pudding-eating participants and SHAKE !\n", " * Shake a lot .\n", " * You will see the pudding change colour and consistency .\n", " * After about 5 minutes of shaking , take a quick peek inside your bag to see if its ready .\n", " * When the pudding is of typical pudding-eating consistency , open the bag , and let out a bit of the air .\n", " * Zip it back up , and cut off a bit of the corner , and then squeeze out the pudding !\n", " * No need for spoons or anything else !\n", " * Its a complete blast !\n", " * I made this most recently on trip to Portugal .\n", " * My niece and her friend thought that I was a bit crazy when we started shaking it .\n", " * They had never experienced anything like it before .\n", " * But , when it came time to eating , they thought it was the best idea ever !\n", " * Its a very easy way to make dessert .\n", " * Hopefully , you try it out and let me know how much fun you had !" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "squeeze0\n", "\n", "squeeze\n", "\n", "\n", "\n", "mix0->squeeze0\n", "\n", "\n", "\n", "\n", "\n", "pudding\n", "\n", "pudding\n", "\n", "\n", "\n", "pudding->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "squeeze0->cut0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Quick Pizza Dough\n", "(f8cac3b343)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 package active dry yeast'\n", " * '1 cup warm water \\( about 110F \\)'\n", " * '1 1/2 teaspoons granulated sugar'\n", " * '1 teaspoon salt'\n", " * '2 tablespoons olive oil'\n", " * '2 1/2 cups unbleached all-purpose flour'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 425F .\n", " * Combine the yeast and warm water with a wire whisk , and set aside .\n", " * In the bowl of a stand mixer fitted with the dough hook attachment , combine the sugar , salt , olive oil , and flour with the yeast mixture for about 1 minute , or until combined .\n", " * Set aside to rest for 5 minutes .\n", " * Turn the dough onto a floured board , and knead about 15 times .\n", " * Cut into desired portions .\n", " * Place the dough on a nonstick baking pan .\n", " * Top as desired and bake for about 20 minutes , or until the crust is golden and the topping is warmed through ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "flour->mix3\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix3\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix3\n", "\n", "\n", "\n", "\n", "\n", "cut4\n", "\n", "cut\n", "\n", "\n", "\n", "mix3->cut4\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "yeast\n", "\n", "yeast\n", "\n", "\n", "\n", "yeast->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pie Chips with Fruit Salsa\n", "(684af3d238)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 teaspoons Ground Cinnamon'\n", " * '3 Tablespoons Sugar'\n", " * '1 package \\( 15 Oz . Size \\) Refrigerated Pie Crust \\( With 2 Ready-made Pie Doughs \\)'\n", " * '3 Tablespoons Unsalted Butter , melted'\n", " * '1 cup Diced Strawberries'\n", " * '1 cup Diced Pineapple'\n", " * '1 cup Diced Kiwi \\( about 3 Kiwi , Peeled \\)'\n", " * '1 cup Diced Peaches \\( about 1 Large Peach \\)'\n", " * '3 Tablespoons Honey'\n", " * '1 Tablespoon Lime Juice'\n", " * 'Mint For Garnish \\( optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven according to pie crust package directions ; line two baking sheets with parchment paper .\n", " * Stir together sugar and cinnamon in a small bowl ; set aside\n", " * Unroll pie dough and brush with melted butter .\n", " * Cut 1 crust into 8 wedges , then cut each wedge into triangles like chips .\n", " * Repeat with second crust .\n", " * Transfer chips to prepared baking sheets .\n", " * Sprinkle chips with the cinnamon-sugar mixture and bake until golden , about 8 minutes \\( at the temperature specified on your package \\) .\n", " * Set aside to cool .\n", " * While chips are cooking , prepare your salsa .\n", " * Dice all fruit and place in a medium serving bowl .\n", " * Combine honey and lime juice in a small bowl and then pour over the fruit .\n", " * Garnish with a sprig of mint if you are feeling fancy .\n", " * Serve with the chips ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "strawberries\n", "\n", "strawberries\n", "\n", "\n", "\n", "lime juice\n", "\n", "lime juice\n", "\n", "\n", "\n", "lime juice->mix2\n", "\n", "\n", "\n", "\n", "\n", "kiwi\n", "\n", "kiwi\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "cool1->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix0->cool1\n", "\n", "\n", "\n", "\n", "\n", "crust ready-made pie doughs\n", "\n", "crust ready-made pie doughs\n", "\n", "\n", "\n", "crust ready-made pie doughs->mix0\n", "\n", "\n", "\n", "\n", "\n", "mint\n", "\n", "mint\n", "\n", "\n", "\n", "ground cinnamon\n", "\n", "ground cinnamon\n", "\n", "\n", "\n", "ground cinnamon->mix0\n", "\n", "\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "brush0->mix1\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->mix1\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix2\n", "\n", "\n", "\n", "\n", "\n", "pineapple\n", "\n", "pineapple\n", "\n", "\n", "\n", "peaches\n", "\n", "peaches\n", "\n", "\n", "\n", "peaches->mix4\n", "\n", "\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "mix1->cool3\n", "\n", "\n", "\n", "\n", "\n", "mix4->cut0\n", "\n", "\n", "\n", "\n", "\n", "melt0->brush0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pasta with Roasted Broccoli, Sun-Dried Tomatoes and Mozzarella\n", "(1fff0aab28)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 bunch broccoli \\( about 1 pound \\) , tough stems discarded'\n", " * '2 tablespoons olive oil'\n", " * 'Kosher salt and freshly ground black pepper'\n", " * '8 ounces mezzi-rigatoni'\n", " * '1/2 cup sun-dried tomatoes in oil , drained and sliced , plus 1 tablespoon reserved oil from the jar'\n", " * '6 ounces diced fresh mozzarella \\( 1 cup \\)'\n", " * '2 tablespoons chopped fresh parsley'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat the oven to 425 degrees F .\n", " * Coarsely chop the broccoli florets and tender stems and toss with 1 tablespoon of the olive oil , 1/2 teaspoon salt and 1/4 teaspoon pepper .\n", " * Spread in a single layer on a rimmed baking sheet and roast until tender with the edges crispy , 20 minutes .\n", " * Meanwhile , bring a large pot of water to a boil .\n", " * Add a generous pinch of salt and the pasta .\n", " * Cook according to the package directions .\n", " * Reserve 1/2 cup pasta water and drain the pasta .\n", " * Toss the hot pasta with the roasted broccoli , sun-dried tomatoes , 1/4 cup pasta water , the remaining 1 tablespoon olive oil and the reserved sun-dried tomato oil .\n", " * Stir in the mozzarella , parsley and as much remaining pasta water as needed to make a light sauce .\n", " * Season to taste with salt and pepper .\n", " * Yield 4 servings" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "broccoli\n", "\n", "broccoli\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "broccoli->chop1\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "olive oil->mix0\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "mix0->cook1\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "tomato->drain0\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "drain0->slice0\n", "\n", "\n", "\n", "\n", "\n", "parsley\n", "\n", "parsley\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "parsley->chop0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "mezzi-rigatoni\n", "\n", "mezzi-rigatoni\n", "\n", "\n", "\n", "slice0->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop1->mix0\n", "\n", "\n", "\n", "\n", "\n", "mozzarella\n", "\n", "mozzarella\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "mozzarella->dice0\n", "\n", "\n", "\n", "\n", "\n", "cook1->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix3\n", "\n", "\n", "\n", "\n", "\n", "dice0->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Canned Orange Date Nut Bread\n", "(708f629967)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '8 ounces pitted dates , cut into small pieces'\n", " * '1/2 cup chopped pecans'\n", " * '1 orange , zested'\n", " * '2 tablespoons plus 2 cups cake flour \\( not self-rising \\)'\n", " * '1 teaspoon baking powder'\n", " * '1 teaspoon baking soda'\n", " * '1 teaspoon salt'\n", " * '1/4 cup butter \\( 1/2 stick \\) , softened'\n", " * '1 cup sugar'\n", " * '1 egg'\n", " * '1 cup orange juice'\n", " * 'Equipment : 3 empty \\( 14-ounce \\) cans \\( like leftover bean cans \\) , open on one end , and greased and floured'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat the oven to 350 degrees F .\n", " * In a small bowl mix together the dates , pecans , and orange zest ; then toss with 2 tablespoons of flour to coat .\n", " * In another bowl , whisk together the remaining 2 cups flour , baking powder , baking soda , and salt .\n", " * In a standing mixer fitted with a whisk attachment , cream the butter until light and fluffy .\n", " * Add the sugar and continue to mix ; then add the egg and mix until incorporated .\n", " * Working in 3 batches , alternately add the flour mixture and orange juice , mixing well after each\n", " * addition .\n", " * Stir in the flour-coated nut mixture .\n", " * Spoon the batter into the cans , filling them 3/4 full .\n", " * Transfer the cans to a sheet pan and bake until puffed , golden brown , and firm , about 50 minutes .\n", " * Let the bread cool in the cans for 5 minutes before unmolding , or let them cool completely in the cans and wrap as a gift ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "date\n", "\n", "date\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "date->cut0\n", "\n", "\n", "\n", "\n", "\n", "orange\n", "\n", "orange\n", "\n", "\n", "\n", "orange->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "chop0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cake flour\n", "\n", "cake flour\n", "\n", "\n", "\n", "cake flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "mix8\n", "\n", "mix\n", "\n", "\n", "\n", "cool0->mix8\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix1\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix1->bake1\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "baking soda\n", "\n", "baking soda\n", "\n", "\n", "\n", "baking soda->mix1\n", "\n", "\n", "\n", "\n", "\n", "open0\n", "\n", "open\n", "\n", "\n", "\n", "open0->cool0\n", "\n", "\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "pecan->chop0\n", "\n", "\n", "\n", "\n", "\n", "can\n", "\n", "can\n", "\n", "\n", "\n", "can->open0\n", "\n", "\n", "\n", "\n", "\n", "cut0->mix0\n", "\n", "\n", "\n", "\n", "\n", "orange juice\n", "\n", "orange juice\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "whisk1\n", "\n", "whisk\n", "\n", "\n", "\n", "mix0->whisk1\n", "\n", "\n", "\n", "\n", "\n", "whisk1->mix8\n", "\n", "\n", "\n", "\n", "\n", "bake1->mix8\n", "\n", "\n", "\n", "\n", "\n", "baking\n", "\n", "baking\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pollo Loco\n", "(b27759a4e4)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 chicken breasts \\( cook as per instructions and cut into 1/2 inch portions \\)'\n", " * '12 chicken bouillon cube'\n", " * '12 cup water'\n", " * '1 teaspoon seasoning \\( Use complete season or what you like \\)'\n", " * '3 tablespoons corn oil'\n", " * '14 cup raisins'\n", " * '12 cup mayonnaise'\n", " * '1 small onion \\( chopped \\)'\n", " * '1 tablespoon tomato paste'\n", " * '12 cup red wine'\n", " * '1 bay leaf'\n", " * '2 teaspoons fresh lime juice'\n", " * '14 teaspoon cumin'\n", " * '14 teaspoon oregano'\n", " * 'salt and pepper'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Prepare a hot frying pan for frying the chicken breast .\n", " * Place 2 Tablespoons of corn oil In the frying pan over a medium to high flame .\n", " * Coat or Dress the chicken breast with powdered seasoning \\( not bread-crumbs \\) .\n", " * You can use Maggi complete seasoning , Adobo or similar powdered all season .\n", " * Fry the chicken breasts for about 3 minutes each side .\n", " * Add 1/2 cup of water and the 1/2 chicken broth cube by breaking it into a powder with your fingers over the pan .\n", " * Place a lid over you pan and cook on a low to medium flame for an additional 8 minutes .\n", " * Turn off and remove chicken breasts \\( save the broth or liquid contents that is in the pan for later use \\) .\n", " * You may want to place the chicken on a paper towel covered plate to drain off the oil .\n", " * Cut the breasts into portions or 1/2 inch cubes / strips .\n", " * In a new frying pan add the other Tablespoon of Corn oil and place over a low flame .\n", " * Fry the chopped onions for 2 to 3 minutes .\n", " * Now add the cumin , oregano and the liquid you have reserved from when you fried the chicken breasts .\n", " * Also add red wine and 1 teaspoon of fresh lime-juice .\n", " * Cook or simmer on a low flame for a few minutes , sufficient to blend and integrate everything in the pan and evaporate some of the water .\n", " * Turn off and allow to cool down .\n", " * In a mixing bowl , add the 1/2 cup of mayonnaise , 1 teaspoon of lime juice , raisins , 1 tablespoon of tomato paste and salt & pepper to taste .\n", " * Add this mayonnaise mixture in your bowl to the pan and mix well .\n", " * Your crazy Dominican chicken is ready ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "corn oil\n", "\n", "corn oil\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "corn oil->place0\n", "\n", "\n", "\n", "\n", "\n", "raisin\n", "\n", "raisin\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "raisin->mix7\n", "\n", "\n", "\n", "\n", "\n", "fry0\n", "\n", "fry\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "fry0->mix0\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix2\n", "\n", "\n", "\n", "\n", "\n", "red wine\n", "\n", "red wine\n", "\n", "\n", "\n", "red wine->mix0\n", "\n", "\n", "\n", "\n", "\n", "chicken bouillon\n", "\n", "chicken bouillon\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "place0->cook1\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix7\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "oregano->mix0\n", "\n", "\n", "\n", "\n", "\n", "lime juice\n", "\n", "lime juice\n", "\n", "\n", "\n", "lime juice->mix0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "cook2\n", "\n", "cook\n", "\n", "\n", "\n", "cook2->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "cool3->mix7\n", "\n", "\n", "\n", "\n", "\n", "cumin\n", "\n", "cumin\n", "\n", "\n", "\n", "cumin->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->cool3\n", "\n", "\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "place1->cook2\n", "\n", "\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "drain0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix2->place1\n", "\n", "\n", "\n", "\n", "\n", "cook1->drain0\n", "\n", "\n", "\n", "\n", "\n", "seasoning\n", "\n", "seasoning\n", "\n", "\n", "\n", "seasoning->mix2\n", "\n", "\n", "\n", "\n", "\n", "leaf\n", "\n", "leaf\n", "\n", "\n", "\n", "chop0->fry0\n", "\n", "\n", "\n", "\n", "\n", "chicken breast\n", "\n", "chicken breast\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "tomato->mix7\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Szechuan Noodles With Spicy Veggie Sauce\n", "(c5e6062a5f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 ounces veggie crumbles \\( I use Morning Star Meal Starters-1/2 of a 12 oz . pkg . \\)'\n", " * '1 tablespoon olive oil'\n", " * '1 \\( 12 -16 ounce \\) packagefrozen stir fry vegetables \\( I use Oriental \\)'\n", " * '12 cup sliced mushrooms'\n", " * '14 cup sliced red bell pepper'\n", " * '12 cup sliced napa cabbage'\n", " * '1 carrot , thinly sliced'\n", " * '14 cup sliced water chestnuts'\n", " * '34 cup chopped onion'\n", " * '2 teaspoons minced garlic'\n", " * '1 12 teaspoons minced fresh ginger'\n", " * '12-1 12 teaspoon dry crushed red pepper \\( you control the heat ! \\)'\n", " * '2 tablespoons sesame oil'\n", " * '2 tablespoons cornstarch'\n", " * '34 cup vegetable broth'\n", " * '14-13 cup hoisin sauce \\( this is a sweet sauce , so start out with the lower amount and add as desired \\)'\n", " * '2 tablespoons soy sauce'\n", " * '8 ounces whole wheat spaghetti , cooked'\n", " * '12 cup sliced green onion'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Brown veggie crumbles in oil in a large skillet , about 3 minutes ; set aside and keep warm .\n", " * Cook stir fry vegetables as directed on package .\n", " * Set aside .\n", " * If not using the frozen stir fry vegetables , saute cut vegetables for about 5-10 minutes , or until desired doneness .\n", " * Set aside and keep warm .\n", " * Pour sesame oil in pan and heat till hot .\n", " * Saute onion , garlic , ginger and red pepper in hot sesame oil until tender .\n", " * Combine cornstarch and vegetable broth , whisking until smooth .\n", " * Stir broth mixture , hoisin sauce , and soy sauce into onion mixture .\n", " * Bring to a boil , stirring constantly ; boil , stirring constantly , 1 minute .\n", " * Stir in veggie crumbles and cooked vegetables .\n", " * Toss with hot cooked pasta , and sprinkle with sliced green onions .\n", " * This is also good with brown rice ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "wheat spaghetti\n", "\n", "wheat spaghetti\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "wheat spaghetti->cook0\n", "\n", "\n", "\n", "\n", "\n", "saute1\n", "\n", "saute\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "saute1->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "soy sauce\n", "\n", "soy sauce\n", "\n", "\n", "\n", "slice2\n", "\n", "slice\n", "\n", "\n", "\n", "slice4\n", "\n", "slice\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "brown0->warm0\n", "\n", "\n", "\n", "\n", "\n", "boil3\n", "\n", "boil\n", "\n", "\n", "\n", "boil3->mix4\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->brown0\n", "\n", "\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "slice1->mix1\n", "\n", "\n", "\n", "\n", "\n", "brown1\n", "\n", "brown\n", "\n", "\n", "\n", "warm1\n", "\n", "warm\n", "\n", "\n", "\n", "brown1->warm1\n", "\n", "\n", "\n", "\n", "\n", "ginger\n", "\n", "ginger\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "ginger->mix2\n", "\n", "\n", "\n", "\n", "\n", "vegetable\n", "\n", "vegetable\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "saute0\n", "\n", "saute\n", "\n", "\n", "\n", "chop0->saute0\n", "\n", "\n", "\n", "\n", "\n", "red pepper\n", "\n", "red pepper\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "red pepper->heat0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "mushroom\n", "\n", "mushroom\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mushroom->slice0\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "cook1->mix4\n", "\n", "\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "boil0->cook1\n", "\n", "\n", "\n", "\n", "\n", "hoisin sauce\n", "\n", "hoisin sauce\n", "\n", "\n", "\n", "hoisin sauce->mix0\n", "\n", "\n", "\n", "\n", "\n", "warm1->mix0\n", "\n", "\n", "\n", "\n", "\n", "red bell pepper\n", "\n", "red bell pepper\n", "\n", "\n", "\n", "red bell pepper->slice1\n", "\n", "\n", "\n", "\n", "\n", "cabbage\n", "\n", "cabbage\n", "\n", "\n", "\n", "cabbage->slice2\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "warm0->pour0\n", "\n", "\n", "\n", "\n", "\n", "pour0->mix1\n", "\n", "\n", "\n", "\n", "\n", "mince1\n", "\n", "mince\n", "\n", "\n", "\n", "mix2->mince1\n", "\n", "\n", "\n", "\n", "\n", "green onion\n", "\n", "green onion\n", "\n", "\n", "\n", "slice5\n", "\n", "slice\n", "\n", "\n", "\n", "green onion->slice5\n", "\n", "\n", "\n", "\n", "\n", "vegetable broth\n", "\n", "vegetable broth\n", "\n", "\n", "\n", "vegetable broth->mix0\n", "\n", "\n", "\n", "\n", "\n", "water chestnut\n", "\n", "water chestnut\n", "\n", "\n", "\n", "water chestnut->slice4\n", "\n", "\n", "\n", "\n", "\n", "mix1->saute1\n", "\n", "\n", "\n", "\n", "\n", "slice3\n", "\n", "slice\n", "\n", "\n", "\n", "mince1->mix1\n", "\n", "\n", "\n", "\n", "\n", "saute0->boil0\n", "\n", "\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "garlic->mix2\n", "\n", "\n", "\n", "\n", "\n", "carrot\n", "\n", "carrot\n", "\n", "\n", "\n", "carrot->slice3\n", "\n", "\n", "\n", "\n", "\n", "veggie crumbles\n", "\n", "veggie crumbles\n", "\n", "\n", "\n", "veggie crumbles->brown1\n", "\n", "\n", "\n", "\n", "\n", "mix0->boil3\n", "\n", "\n", "\n", "\n", "\n", "sesame oil\n", "\n", "sesame oil\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Raspberry-Banana Smoothie\n", "(9ad68f0d7a)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 1/2 cups frozen raspberries or strawberries , or a combination'\n", " * '1 banana , broken into pieces'\n", " * '3 tbsp plain low-fat yogurt'\n", " * '2 1/2 cups pineapple or apple juice'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Combine the raspberries , banana , and yogurt in a blender .\n", " * Add the juice , cover , and process until the mixture is smooth .\n", " * Pour into 4 tall glasses and serve chilled .\n", " * Variation\n", " * Thicker Smoothie\n", " * Add another banana .\n", " * If you prefer to use fresh fruits , add your own choice of raspberries , blackberries , strawberries , or blueberries plus 2 or 3 ice cubes ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "raspberry\n", "\n", "raspberry\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "raspberry->mix0\n", "\n", "\n", "\n", "\n", "\n", "banana\n", "\n", "banana\n", "\n", "\n", "\n", "break0\n", "\n", "break\n", "\n", "\n", "\n", "banana->break0\n", "\n", "\n", "\n", "\n", "\n", "chill2\n", "\n", "chill\n", "\n", "\n", "\n", "pour2\n", "\n", "pour\n", "\n", "\n", "\n", "pour2->chill2\n", "\n", "\n", "\n", "\n", "\n", "apple juice\n", "\n", "apple juice\n", "\n", "\n", "\n", "apple juice->mix0\n", "\n", "\n", "\n", "\n", "\n", "break0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->pour2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## The Best Pina Colada\n", "(61f4641cea)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cream of coconut , fruit bar'\n", " * '12 cup coconut milk'\n", " * '18 cup creme de coconut'\n", " * '1 cup crushed pineapple , drained and frozen'\n", " * '34 cup white rum'\n", " * 'ice'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Add Cream of Coconut Bar , Coconut Milk , Creme of Coconut , Pineapple and Run into Blender .\n", " * Then add Ice to fill the blender .\n", " * Mix and Serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cream->mix0\n", "\n", "\n", "\n", "\n", "\n", "coconut\n", "\n", "coconut\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "drain0->mix0\n", "\n", "\n", "\n", "\n", "\n", "pineapple\n", "\n", "pineapple\n", "\n", "\n", "\n", "pineapple->drain0\n", "\n", "\n", "\n", "\n", "\n", "rum\n", "\n", "rum\n", "\n", "\n", "\n", "coconut milk\n", "\n", "coconut milk\n", "\n", "\n", "\n", "coconut milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "ice\n", "\n", "ice\n", "\n", "\n", "\n", "ice->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Stovetop Smoker Memphis-Style Baby Back Barbecue Ribs\n", "(cacbc5f78b)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '4 to 5 pounds baby back ribs \\( 2 full slabs \\)'\n", " * '2 tablespoons kosher salt'\n", " * '1 tablespoon dark brown sugar'\n", " * '1 tablespoon paprika'\n", " * '3/4 teaspoon granulated garlic powder'\n", " * '1 1/2 teaspoons granulated onion powder'\n", " * '1/2 teaspoon cumin powder'\n", " * '1 teaspoon ground black pepper'\n", " * '1/2 teaspoon cayenne pepper'\n", " * 'Barbeque Sauce , recipe follows'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Place the ribs on a large baking sheet .\n", " * In a small mixing bowl , combine the kosher salt , brown sugar , paprika , garlic powder , onion powder , cumin , black pepper , and cayenne .\n", " * Stir well to combine .\n", " * Divide the mixture evenly between the racks and rub well onto all sides .\n", " * Wrap the ribs in 2 layers of plastic wrap .\n", " * Allow to sit undisturbed for at least 20 minutes , and up to 8 hours before proceeding .\n", " * \\( Refrigerate if ribs sit longer than 20 minutes . \\)\n", " * Remove the ribs from the refrigerator and allow to come to room temperature for 1 hour .\n", " * Prepare a stovetop smoker according to the manufacturer 's instructions .\n", " * Remove the plastic wrap and place the ribs on the rack in the stovetop smoker .\n", " * Close the lid and smoke for 1 hour over low heat .\n", " * Preheat the oven to 275 degrees F .\n", " * Remove the ribs from the smoker and place on a foil-lined baking sheet .\n", " * Generously brush the ribs on both sides with the sauce and cover with aluminum foil .\n", " * Bake for 2 hours .\n", " * Remove from the oven and allow to rest , covered , for 20 minutes .\n", " * Using a sharp knife , slice between the ribs and serve , with additional sauce on the side .\n", " * 1/2 cup red wine vinegar\n", " * 1 cup chopped yellow onion\n", " * 1 tablespoon minced garlic\n", " * 1/4 cup light brown sugar\n", " * 2 teaspoons hot pepper sauce\n", " * 1 cup ketchup\n", " * 1 teaspoon lemon zest\n", " * 1/4 cup fresh lemon juice\n", " * Combine all of the ingredients in a blender and blend until smooth .\n", " * Transfer to a nonreactive saucepan and simmer for 20 minutes to allow the flavors to marry .\n", " * Use immediately , or refrigerate in a nonreactive , airtight container for up to 2 weeks .\n", " * Yield : 1 3/4 cups" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "bake7\n", "\n", "bake\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "bake7->chop0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "brown4\n", "\n", "brown\n", "\n", "\n", "\n", "onion->brown4\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "brown0->place1\n", "\n", "\n", "\n", "\n", "\n", "refrigerate7\n", "\n", "refrigerate\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "refrigerate7->mix7\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "blend6\n", "\n", "blend\n", "\n", "\n", "\n", "slice0->blend6\n", "\n", "\n", "\n", "\n", "\n", "kosher salt\n", "\n", "kosher salt\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "kosher salt->mix2\n", "\n", "\n", "\n", "\n", "\n", "bake3\n", "\n", "bake\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "bake3->mince0\n", "\n", "\n", "\n", "\n", "\n", "blend6->mix7\n", "\n", "\n", "\n", "\n", "\n", "cayenne pepper\n", "\n", "cayenne pepper\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cayenne pepper->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "chop0->mix1\n", "\n", "\n", "\n", "\n", "\n", "rib\n", "\n", "rib\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "rib->place0\n", "\n", "\n", "\n", "\n", "\n", "bake8\n", "\n", "bake\n", "\n", "\n", "\n", "mix2->bake8\n", "\n", "\n", "\n", "\n", "\n", "cumin\n", "\n", "cumin\n", "\n", "\n", "\n", "cumin->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown4->bake7\n", "\n", "\n", "\n", "\n", "\n", "blend8\n", "\n", "blend\n", "\n", "\n", "\n", "blend8->refrigerate7\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "refrigerate0->brush0\n", "\n", "\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "brown3\n", "\n", "brown\n", "\n", "\n", "\n", "garlic->brown3\n", "\n", "\n", "\n", "\n", "\n", "bake8->mix1\n", "\n", "\n", "\n", "\n", "\n", "mince0->mix1\n", "\n", "\n", "\n", "\n", "\n", "bake6\n", "\n", "bake\n", "\n", "\n", "\n", "brush0->bake6\n", "\n", "\n", "\n", "\n", "\n", "brown5\n", "\n", "brown\n", "\n", "\n", "\n", "mix3->brown5\n", "\n", "\n", "\n", "\n", "\n", "mix1->blend8\n", "\n", "\n", "\n", "\n", "\n", "place0->refrigerate0\n", "\n", "\n", "\n", "\n", "\n", "paprika\n", "\n", "paprika\n", "\n", "\n", "\n", "paprika->mix3\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "brown5->mix2\n", "\n", "\n", "\n", "\n", "\n", "brown3->bake3\n", "\n", "\n", "\n", "\n", "\n", "ground black pepper\n", "\n", "ground black pepper\n", "\n", "\n", "\n", "ground black pepper->brown0\n", "\n", "\n", "\n", "\n", "\n", "bake6->slice0\n", "\n", "\n", "\n", "\n", "\n", "place1->mix2\n", "\n", "\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "sauce->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Apples Baked with Pecans and Raisins\n", "(a99c8c1274)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 sweet-tart apples such as Jonathan or Granny Smith'\n", " * '13 cup brown sugar'\n", " * '1/2 cup raisins'\n", " * '1/4 cup chopped pecans'\n", " * '1/4 cup chopped dried apricots'\n", " * '1/2 tsp . ground cinnamon'\n", " * '1/4 tsp . ground nutmeg'\n", " * '3 Tbs . unsalted butter , cut in small pieces'\n", " * '1 1/2 cups apple cider or juice'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 350F .\n", " * Core apples , taking care not to pierce through bottoms , and pare strip from around each top .\n", " * Mix brown sugar , raisins , pecans , dried apricots , cinnamon and nutmeg in mixing bowl .\n", " * Stuff each apple with 1/6 of mixture .\n", " * Dot tops with butter .\n", " * Place apples in baking dish large enough to hold them comfortably .\n", " * Pour cider or juice around them .\n", " * Bake 30 to 40 minutes , basting every 10 minutes or so , or until tender .\n", " * Serve warm or at room temperature ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "nutmeg\n", "\n", "nutmeg\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "nutmeg->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "mix3->brown0\n", "\n", "\n", "\n", "\n", "\n", "apricot\n", "\n", "apricot\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "apricot->mix5\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cut0->mix2\n", "\n", "\n", "\n", "\n", "\n", "warm6\n", "\n", "warm\n", "\n", "\n", "\n", "bake3\n", "\n", "bake\n", "\n", "\n", "\n", "baste7\n", "\n", "baste\n", "\n", "\n", "\n", "bake3->baste7\n", "\n", "\n", "\n", "\n", "\n", "apple\n", "\n", "apple\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "apple->place0\n", "\n", "\n", "\n", "\n", "\n", "place0->mix2\n", "\n", "\n", "\n", "\n", "\n", "raisin\n", "\n", "raisin\n", "\n", "\n", "\n", "raisin->mix3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->cut0\n", "\n", "\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "pecan->mix5\n", "\n", "\n", "\n", "\n", "\n", "brown0->mix2\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "pour0->mix2\n", "\n", "\n", "\n", "\n", "\n", "baste7->warm6\n", "\n", "\n", "\n", "\n", "\n", "apple cider\n", "\n", "apple cider\n", "\n", "\n", "\n", "apple cider->pour0\n", "\n", "\n", "\n", "\n", "\n", "cinnamon\n", "\n", "cinnamon\n", "\n", "\n", "\n", "cinnamon->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix5->chop1\n", "\n", "\n", "\n", "\n", "\n", "mix2->bake3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Mexican Soft Tortillas Appetizer Recipe\n", "(b38ecfba9f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 pkg . lg . size flour tortillas \\( Recipe makes sufficient to cover 6 shells \\)'\n", " * '8 ounce . cream cheese'\n", " * '1/3 c. mild chunky salsa'\n", " * '1/4 c. minced green onion'\n", " * '1/2 teaspoon garlic salt or possibly pwdr equivalent'\n", " * '1/2 teaspoon chili pwdr'\n", " * '1/4 c. finely minced black olives \\( optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Remove tortillas from refrigerator .\n", " * Combine cream cheese , salsa , green onion , garlic salt and chili pwdr .\n", " * \\( Add in black olives if you like . \\)\n", " * Spread thin layer of mix on tortilla .\n", " * Tightly roll up tortilla .\n", " * Wrap individually in plastic wrap .\n", " * Chill .\n", " * To serve , cut into 1 inch slices and set out with extra salsa for dipping ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "mince1\n", "\n", "mince\n", "\n", "\n", "\n", "mix0->mince1\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "black olive\n", "\n", "black olive\n", "\n", "\n", "\n", "black olive->mix0\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "cream cheese->mix4\n", "\n", "\n", "\n", "\n", "\n", "green onion\n", "\n", "green onion\n", "\n", "\n", "\n", "green onion->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "chill5\n", "\n", "chill\n", "\n", "\n", "\n", "cut0->chill5\n", "\n", "\n", "\n", "\n", "\n", "flour tortilla\n", "\n", "flour tortilla\n", "\n", "\n", "\n", "flour tortilla->mix4\n", "\n", "\n", "\n", "\n", "\n", "chill5->slice0\n", "\n", "\n", "\n", "\n", "\n", "chunky salsa\n", "\n", "chunky salsa\n", "\n", "\n", "\n", "chunky salsa->mix4\n", "\n", "\n", "\n", "\n", "\n", "chili\n", "\n", "chili\n", "\n", "\n", "\n", "chili->mix4\n", "\n", "\n", "\n", "\n", "\n", "garlic salt\n", "\n", "garlic salt\n", "\n", "\n", "\n", "garlic salt->mix4\n", "\n", "\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "spread0->cut0\n", "\n", "\n", "\n", "\n", "\n", "mince1->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix4->spread0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Coconut Lime Blossoms\n", "(cd09e61618)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '18 rhodes white dinner rolls , thawed'\n", " * '13 cup butter , melted'\n", " * '13 cup sugar'\n", " * '13 cup shredded coconut'\n", " * '2 limes'\n", " * '1 cup powdered sugar'\n", " * '4 ounces cream cheese'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Cut each roll in half .\n", " * In a small bowl combine sugar , coconut and zest from the limes .\n", " * Dip each roll half into the melted butter and then in the coconut mixture .\n", " * Place 3 coated roll halves in each cup of a sprayed muffin tin .\n", " * Cover lightly with plastic wrap and let rise until rolls are one and a half times their original size .\n", " * Remove plastic wrap and bake at 350F 15-20 minutes .\n", " * Remove from oven and cool completely .\n", " * Mix the powdered sugar with the juice from one lime .\n", " * Place the cream cheese in a microwave-safe bowl and microwave for 10-15 seconds , or until the cream cheese is warm \\( not hot \\) , soft and can be stirred smooth .\n", " * Add the cream cheese to the lime glaze and beat until smooth and shiny .\n", " * If needed add a few drops of water or a few teaspoons of powdered sugar to achieve a consistency like honey .\n", " * Spread icing liberally over cooled blossoms ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "coconut\n", "\n", "coconut\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "coconut->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "cut0->place1\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "mix0->bake0\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "place0->mix3\n", "\n", "\n", "\n", "\n", "\n", "thaw0\n", "\n", "thaw\n", "\n", "\n", "\n", "thaw0->cut0\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cool0->mix2\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "bake1->cool3\n", "\n", "\n", "\n", "\n", "\n", "mix2->bake1\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "roll\n", "\n", "roll\n", "\n", "\n", "\n", "roll->thaw0\n", "\n", "\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "lime->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "place1->mix2\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "cream cheese->place0\n", "\n", "\n", "\n", "\n", "\n", "bake0->cool0\n", "\n", "\n", "\n", "\n", "\n", "cool3->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Clams Casino\n", "(110d5b639c)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 tablespoons olive oil'\n", " * '2 ounces sliced pancetta or bacon , finely chopped'\n", " * '1 cup finely diced red bell pepper'\n", " * '1/3 cup chopped shallots'\n", " * '2 large garlic cloves , minced'\n", " * '1/4 teaspoon dried oregano'\n", " * '1/3 cup dry white wine'\n", " * '4 tablespoons freshly grated Parmesan'\n", " * 'Salt and freshly ground black pepper'\n", " * '18 medium \\( 2 1/2-inch \\) littleneck clams , shucked , bottom shells reserved'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat the oil in a heavy large skillet over medium heat .\n", " * Add the pancetta and saute until crisp and golden , about 3 minutes .\n", " * Using a slotted spoon , transfer the pancetta to a plate .\n", " * Add the bell pepper , shallots , garlic , and oregano to the same skillet and saute until the shallots are tender and translucent , about 5 minutes .\n", " * Add the wine and simmer until it is almost evaporated , about 2 minutes .\n", " * Remove the skillet from the heat and cool completely .\n", " * Stir the reserved pancetta and 2 tablespoons of Parmesan cheese into the vegetable mixture .\n", " * Season the mixture , to taste , with salt and pepper .\n", " * Preheat the oven to 500 degrees F .\n", " * Line a heavy large baking sheet with foil .\n", " * Arrange the clams in the reserved shells on the baking sheet .\n", " * Spoon the vegetable mixture atop the clams , dividing equally and mounding slightly .\n", " * Sprinkle with the remaining 2 tablespoons of Parmesan .\n", " * Bake until the clams are just cooked through and the topping is golden , about 10 minutes .\n", " * Arrange the clams on the platter and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "saute0\n", "\n", "saute\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "saute0->mix2\n", "\n", "\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "dice0->mix3\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "bake1->mix1\n", "\n", "\n", "\n", "\n", "\n", "red bell pepper\n", "\n", "red bell pepper\n", "\n", "\n", "\n", "red bell pepper->dice0\n", "\n", "\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "mix1->cool3\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "oregano->mix3\n", "\n", "\n", "\n", "\n", "\n", "bake7\n", "\n", "bake\n", "\n", "\n", "\n", "clam\n", "\n", "clam\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "clam->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "chop0->slice0\n", "\n", "\n", "\n", "\n", "\n", "slice0->mix3\n", "\n", "\n", "\n", "\n", "\n", "cool3->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->saute0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "heat0->mix1\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "wine->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix2->heat0\n", "\n", "\n", "\n", "\n", "\n", "mix0->bake7\n", "\n", "\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "heat3->cool0\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix3->heat3\n", "\n", "\n", "\n", "\n", "\n", "pancetta\n", "\n", "pancetta\n", "\n", "\n", "\n", "pancetta->chop0\n", "\n", "\n", "\n", "\n", "\n", "mince0->mix3\n", "\n", "\n", "\n", "\n", "\n", "shallot\n", "\n", "shallot\n", "\n", "\n", "\n", "shallot->chop1\n", "\n", "\n", "\n", "\n", "\n", "cool0->bake1\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Mango dressing for green salads\n", "(53ffe748a0)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 alphonso mangoes , washed and diced'\n", " * '2 small dried red chilies , crushed'\n", " * '1 teaspoon honey'\n", " * '12 cup lime juice'\n", " * '1 teaspoon dried lime , powder'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Blend everything in a blender till smooth .\n", " * Pour over your green salad and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "red chilies\n", "\n", "red chilies\n", "\n", "\n", "\n", "mango\n", "\n", "mango\n", "\n", "\n", "\n", "wash0\n", "\n", "wash\n", "\n", "\n", "\n", "mango->wash0\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "wash0->dice0\n", "\n", "\n", "\n", "\n", "\n", "lime juice\n", "\n", "lime juice\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Cocoa Steamed Bread with Pancake Mix in a Frying Pan\n", "(0798675c71)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 bag Pancake mix'\n", " * '60 grams Hot chocolate powder \\( or sweetened cocoa powder \\)'\n", " * '1 Egg'\n", " * '1 tbsp Vegetable oil'\n", " * '100 ml Milk'\n", " * '3 tbsp Sugar'\n", " * '50 chips Chocolate chips'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix the egg , vegetable oil , milk , and sugar together well .\n", " * Adjust the amount of sugar to the sweetness of your brand of cocoa powder .\n", " * Add pancake mix and powdered cocoa .\n", " * Mix with a rubber spatula and avoid kneading the batter .\n", " * Pour the batter into molds and put into a large and flat frying pan .\n", " * Top with chocolate chips if you 'd like .\n", " * Pour in approximately 1 cm of hot water and cover the pan .\n", " * Steam for 12-14 minutes .\n", " * Once they become full and fluffy , they 're ready .\n", " * Note : They seem to turn out less full than my other variations of steamed bread , and they take longer to steam .\n", " * Adjust the time accordingly .\n", " * Note : You can use aluminum liners , silicone cups , and ramekins for the mold .\n", " * Note : Use a steamer if you own one .\n", " * Note : If your pancake mix is 150 g per bag , then use 75 ml of milk instead .\n", " * For plain and variations of steamed bread , see" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "pancake\n", "\n", "pancake\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "pancake->mix0\n", "\n", "\n", "\n", "\n", "\n", "chip chocolate chip\n", "\n", "chip chocolate chip\n", "\n", "\n", "\n", "steam4\n", "\n", "steam\n", "\n", "\n", "\n", "vegetable oil\n", "\n", "vegetable oil\n", "\n", "\n", "\n", "vegetable oil->mix0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "sweeten0\n", "\n", "sweeten\n", "\n", "\n", "\n", "sweeten0->mix0\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "hot chocolate\n", "\n", "hot chocolate\n", "\n", "\n", "\n", "hot chocolate->sweeten0\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "pour0->steam4\n", "\n", "\n", "\n", "\n", "\n", "mix0->pour0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pesto Tortellini\n", "(ada94edc51)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 pound Tortellini'\n", " * '1- 1/2 cup Pesto \\( homemade Or Store Bought \\)'\n", " * '2 cups Asparagus , Cut Into One-inch Pieces'\n", " * '1 whole Small Zucchini , Quartered And Sliced'\n", " * '1 whole Large Stalk Broccoli , Cut Into Small Pieces , Florets And Stalk'\n", " * '1/2 cups Water'\n", " * '1 pint Grape Tomatoes , Halved'\n", " * 'Parmesan Cheese For Serving'\n", " * 'Bacon Bits , For Serving'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large pot of boiling water , boil the tortellini according to the package directions , until tender .\n", " * Drain , return pasta to the pot , and toss with the pesto sauce .\n", " * Set aside .\n", " * In a large non-stick skillet over medium heat , stir fry the asparagus , zucchini and broccoli until crisp tender , about 4-5 minutes .\n", " * Add the tortellini with pesto sauce and the water and stir to combine everything .\n", " * Allow to heat through , then stir in the grape tomatoes and serve .\n", " * Sprinkle with Parmesan cheese and bacon and serve hot .\n", " * Enjoy !" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "grape tomatoes\n", "\n", "grape tomatoes\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "grape tomatoes->mix3\n", "\n", "\n", "\n", "\n", "\n", "cut1\n", "\n", "cut\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "cut1->mix1\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix3->heat0\n", "\n", "\n", "\n", "\n", "\n", "asparagus\n", "\n", "asparagus\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "asparagus->cut0\n", "\n", "\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "boil0->mix4\n", "\n", "\n", "\n", "\n", "\n", "broccoli\n", "\n", "broccoli\n", "\n", "\n", "\n", "broccoli->cut1\n", "\n", "\n", "\n", "\n", "\n", "heat0->mix4\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "fry0\n", "\n", "fry\n", "\n", "\n", "\n", "fry0->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix2->boil0\n", "\n", "\n", "\n", "\n", "\n", "zucchini\n", "\n", "zucchini\n", "\n", "\n", "\n", "zucchini->mix1\n", "\n", "\n", "\n", "\n", "\n", "pesto\n", "\n", "pesto\n", "\n", "\n", "\n", "pesto->mix4\n", "\n", "\n", "\n", "\n", "\n", "fry2\n", "\n", "fry\n", "\n", "\n", "\n", "fry2->mix4\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "cheese->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix1->fry2\n", "\n", "\n", "\n", "\n", "\n", "cut0->fry0\n", "\n", "\n", "\n", "\n", "\n", "pound tortellini\n", "\n", "pound tortellini\n", "\n", "\n", "\n", "pound tortellini->mix2\n", "\n", "\n", "\n", "\n", "\n", "bacon\n", "\n", "bacon\n", "\n", "\n", "\n", "bacon->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Wild Pecan Rice Dressing\n", "(30219d8eb7)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 tablespoon butter'\n", " * '1/4 cup chopped onions'\n", " * '1/4 cup chopped celery'\n", " * 'Salt'\n", " * 'Cayenne'\n", " * '1/2 cup pecan pieces'\n", " * '1 unpeeled Granny Smith apple , cored and chopped , \\( about 1 1/2 cups \\)'\n", " * '7 ounces wild rice'\n", " * '3 cups water'\n", " * '1/2 pound bacon , chopped crispy-fried and drained'\n", " * '2 tablespoons finely chopped fresh parsley leaves'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a saucepan , over medium heat , melt the butter .\n", " * Add the onions and celery .\n", " * Season with salt and pepper .\n", " * Saute for 3 minutes or until wilted .\n", " * Add the pecans and continue to cook for 2 minutes .\n", " * Stir in the apples and rice .\n", " * Season with salt and pepper .\n", " * Continue to cook for 1 minute .\n", " * Add the water and bring to a boil .\n", " * Reduce the heat to medium-low , cover and simmer for 20 minutes .\n", " * Remove from the heat and reseason .\n", " * Stir in the bacon and parsley .\n", " * Let sit for 3 minutes before serving .\n", " * Serve with the Grilled Quail and Andouille Sausage Ragu \\( separate recipe from this show \\) ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cook6\n", "\n", "cook\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cook6->mix3\n", "\n", "\n", "\n", "\n", "\n", "parsley leaf\n", "\n", "parsley leaf\n", "\n", "\n", "\n", "chop4\n", "\n", "chop\n", "\n", "\n", "\n", "parsley leaf->chop4\n", "\n", "\n", "\n", "\n", "\n", "cook3\n", "\n", "cook\n", "\n", "\n", "\n", "simmer1\n", "\n", "simmer\n", "\n", "\n", "\n", "cook3->simmer1\n", "\n", "\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "mix8\n", "\n", "mix\n", "\n", "\n", "\n", "drain0->mix8\n", "\n", "\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "heat1->cook3\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "onion->mix2\n", "\n", "\n", "\n", "\n", "\n", "cook4\n", "\n", "cook\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "cook4->mix4\n", "\n", "\n", "\n", "\n", "\n", "cayenne\n", "\n", "cayenne\n", "\n", "\n", "\n", "chop4->mix8\n", "\n", "\n", "\n", "\n", "\n", "mix6\n", "\n", "mix\n", "\n", "\n", "\n", "saute1\n", "\n", "saute\n", "\n", "\n", "\n", "mix6->saute1\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "mix2->chop1\n", "\n", "\n", "\n", "\n", "\n", "apple\n", "\n", "apple\n", "\n", "\n", "\n", "chop2\n", "\n", "chop\n", "\n", "\n", "\n", "apple->chop2\n", "\n", "\n", "\n", "\n", "\n", "rice\n", "\n", "rice\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "rice->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop3\n", "\n", "chop\n", "\n", "\n", "\n", "chop3->drain0\n", "\n", "\n", "\n", "\n", "\n", "mix0->heat1\n", "\n", "\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "mix3->simmer0\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "water->mix4\n", "\n", "\n", "\n", "\n", "\n", "saute3\n", "\n", "saute\n", "\n", "\n", "\n", "saute3->cook6\n", "\n", "\n", "\n", "\n", "\n", "celery\n", "\n", "celery\n", "\n", "\n", "\n", "celery->mix2\n", "\n", "\n", "\n", "\n", "\n", "bacon\n", "\n", "bacon\n", "\n", "\n", "\n", "bacon->chop3\n", "\n", "\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "heat6\n", "\n", "heat\n", "\n", "\n", "\n", "melt0->heat6\n", "\n", "\n", "\n", "\n", "\n", "simmer0->mix8\n", "\n", "\n", "\n", "\n", "\n", "heat6->saute3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "chop1->mix6\n", "\n", "\n", "\n", "\n", "\n", "heat5\n", "\n", "heat\n", "\n", "\n", "\n", "heat5->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix4->heat5\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix6\n", "\n", "\n", "\n", "\n", "\n", "chop2->mix0\n", "\n", "\n", "\n", "\n", "\n", "saute1->cook4\n", "\n", "\n", "\n", "\n", "\n", "simmer1->mix4\n", "\n", "\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "pecan->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Easy Gluten Free Red White & Blue Velvet Cake With Homemade\n", "(edf1e75785)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * 'cake , 00'\n", " * 'betty crocker gluten free yellow cake mix \\( 1 box \\)'\n", " * '3 tablespoons unsweetened cocoa powder'\n", " * 'jello vanilla instant pudding mix \\( 1 lg box \\)'\n", " * '12 cup butter , melted & cooled'\n", " * '1 cup buttermilk'\n", " * '3 eggs , beaten'\n", " * '2 teaspoons vanilla \\( gluten free \\)'\n", " * 'food coloring , red \\( 1 bottle \\)'\n", " * 'cream cheese frosting , 00'\n", " * '12 cup butter \\( sofened \\)'\n", " * '16 ounces cream cheese \\( sofened \\)'\n", " * '4 cups powdered sugar'\n", " * '2 teaspoons vanilla \\( gluten free \\)'\n", " * '3 tablespoons heavy cream'\n", " * 'food coloring , blue \\( 1 bottle \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Cake : .\n", " * - Pre heat oven to 350 deg \\( lower to 325 for dark/non stick pans \\) .\n", " * - Spray two 8 inch round pans with baking spray or grease with butter .\n", " * - Combine dry ingredients \\( cake mix , cocoa powder and pudding mix \\) in a medium bowl until well blended .\n", " * - In a seperate bowl combine wet ingredients \\( butter , buttermilk , beaten eggs , vanilla , food coloring \\) and mix unitl well blended .\n", " * - Now slowly add your wet ingredients to you dry ingredients , mixing and scraping the side of the bowl as you go .\n", " * Continue until all are well blended and beat for additional 2 minutes .\n", " * Note : Batter will be thick , if you think it is too thick for your mixer to handle you can add more buttermilk to thin it down , but do n't add too much .\n", " * - Pour batter evenly split between the two baking pans .\n", " * - Bake according to package directions or until toothpick comes out center clean .\n", " * Approx 30 minute .\n", " * - Cool .\n", " * Optional Homemade Frosting - Make while the cake is cooking : .\n", " * - Cream butter and cream cheese together until they are light and fluffy .\n", " * - Gradually add the powdered sugar and continue beating until well blended .\n", " * - Add vanilla and heavy cream and beat until fluffy and spreadable .\n", " * Optional : For a thicker frosting you can add more powdered sugar until you get the consistency you are looking for .\n", " * - Split the frosting 2/3 into one bowl and 1/3 into another .\n", " * - Add blue food coloring into the 1/3 mixture until you get the color you like .\n", " * - Place both bowls of frosting into the refrigerator until you are ready to use .\n", " * Assembly : .\n", " * - Make sure cakes have cooled .\n", " * - Stir the frosting until it is spreadable again .\n", " * - Place first layer of cake on plate .\n", " * - Spread all of the blue frosting over this layer .\n", " * - Place the second layer \\( upside down \\) on top .\n", " * - Spread all of the white frosting over the entire cake .\n", " * - Decorate with with a toothpick flag .\n", " * - Refrigerate until you are ready to serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "mix1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "red\n", "\n", "red\n", "\n", "\n", "\n", "gluten\n", "\n", "gluten\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "gluten->mix0\n", "\n", "\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "spread0->mix1\n", "\n", "\n", "\n", "\n", "\n", "place4\n", "\n", "place\n", "\n", "\n", "\n", "place4->mix1\n", "\n", "\n", "\n", "\n", "\n", "cocoa\n", "\n", "cocoa\n", "\n", "\n", "\n", "cocoa->mix0\n", "\n", "\n", "\n", "\n", "\n", "jello vanilla instant pudding\n", "\n", "jello vanilla instant pudding\n", "\n", "\n", "\n", "jello vanilla instant pudding->mix0\n", "\n", "\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "beat1->bake0\n", "\n", "\n", "\n", "\n", "\n", "blend2\n", "\n", "blend\n", "\n", "\n", "\n", "mix0->blend2\n", "\n", "\n", "\n", "\n", "\n", "heavy cream\n", "\n", "heavy cream\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "cool0->place4\n", "\n", "\n", "\n", "\n", "\n", "buttermilk\n", "\n", "buttermilk\n", "\n", "\n", "\n", "buttermilk->mix0\n", "\n", "\n", "\n", "\n", "\n", "cake\n", "\n", "cake\n", "\n", "\n", "\n", "cake->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix2\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "place1->spread0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "mix2->place1\n", "\n", "\n", "\n", "\n", "\n", "blend2->beat1\n", "\n", "\n", "\n", "\n", "\n", "bake0->cool0\n", "\n", "\n", "\n", "\n", "\n", "cream cheese frosting\n", "\n", "cream cheese frosting\n", "\n", "\n", "\n", "cream cheese frosting->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chocolate Chip Cookie Bars\n", "(d172c00ace)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups all-purpose flour'\n", " * '12 teaspoon baking soda'\n", " * '1 cup dark brown sugar , firmly packed'\n", " * '1 cup salted butter , softened'\n", " * '1 large egg'\n", " * '2 teaspoons pure vanilla extract'\n", " * '1 12 cups semi-sweet chocolate chips'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 300 degrees F. Grease an 8-by-8 inch baking pan .\n", " * Combine flour and soda in a medium bowl .\n", " * Mix well with a wire wisk .\n", " * Set aside .\n", " * In a large bowl use an electric mixer to blend the sugar and butter .\n", " * Add egg and vanilla , and beat at medium speed until light and smooth .\n", " * Scrape down the side of the bowl , then add the flour mixture and chocolate chips .\n", " * Blend at low speed until just combined .\n", " * Do not overmix .\n", " * Transfer batter into the prepared pan , and level top with a rubber spatula .\n", " * Bake in center of oven for 35-45 minutes or until toothpick comes out clean but center is still soft .\n", " * Cool on rack to room temperature .\n", " * Cut with sharp knife in 12 bars ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "vanilla extract->mix3\n", "\n", "\n", "\n", "\n", "\n", "cut1\n", "\n", "cut\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "cut1->mix1\n", "\n", "\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "flour->mix3\n", "\n", "\n", "\n", "\n", "\n", "chocolate chip\n", "\n", "chocolate chip\n", "\n", "\n", "\n", "chocolate chip->mix3\n", "\n", "\n", "\n", "\n", "\n", "cut4\n", "\n", "cut\n", "\n", "\n", "\n", "blend4\n", "\n", "blend\n", "\n", "\n", "\n", "blend4->cut1\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "blend5\n", "\n", "blend\n", "\n", "\n", "\n", "mix2->blend5\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "cool1->cut4\n", "\n", "\n", "\n", "\n", "\n", "baking soda\n", "\n", "baking soda\n", "\n", "\n", "\n", "baking soda->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix1->cool1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->brown0\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "mix3->cool0\n", "\n", "\n", "\n", "\n", "\n", "salt butter\n", "\n", "salt butter\n", "\n", "\n", "\n", "salt butter->mix2\n", "\n", "\n", "\n", "\n", "\n", "cool0->blend4\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix3\n", "\n", "\n", "\n", "\n", "\n", "blend5->mix1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Classic Pasta Carbonara\n", "(c2f4cc08dd)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 lb . spaghetti , uncooked'\n", " * '10 slices OSCAR MAYER Bacon , cut into 1/2-inch pieces'\n", " * '4 cloves garlic , minced'\n", " * '4 eggs'\n", " * '1/2 tsp . freshly ground black pepper'\n", " * '1/2 cup whipping cream'\n", " * '1-1/4 cups KRAFT Shredded Parmesan Cheese , divided'\n", " * '2 Tbsp . chopped fresh parsley'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Cook spaghetti as directed on package , omitting salt .\n", " * Meanwhile , cook and stir bacon in large skillet on medium heat until crisp .\n", " * Remove bacon from skillet with slotted spoon ; drain on paper towels .\n", " * Discard all but 3 Tbsp .\n", " * drippings from skillet .\n", " * Add garlic to drippings ; cook 1 min .\n", " * or until fragrant .\n", " * Whisk eggs in large bowl until blended .\n", " * Drain spaghetti , reserving 3/4 cup cooking water .\n", " * Gradually add reserved water to eggs , whisking constantly .\n", " * Stir in pepper .\n", " * Add spaghetti and cream to bacon mixture in skillet ; mix lightly .\n", " * Add eggs ; cook and stir on low heat 1 min .\n", " * or until heated through .\n", " * Add 1 cup cheese ; mix lightly .\n", " * Spoon into serving bowl ; top with remaining cheese and parsley ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "black pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "slice0->cook1\n", "\n", "\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "clove garlic\n", "\n", "clove garlic\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "clove garlic->mince0\n", "\n", "\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "drain0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cook1->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->slice0\n", "\n", "\n", "\n", "\n", "\n", "spaghetti\n", "\n", "spaghetti\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "spaghetti->cook0\n", "\n", "\n", "\n", "\n", "\n", "mince0->mix0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "egg->whisk0\n", "\n", "\n", "\n", "\n", "\n", "cook0->drain0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix0->heat0\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "cream->mix0\n", "\n", "\n", "\n", "\n", "\n", "heat0->mix4\n", "\n", "\n", "\n", "\n", "\n", "bacon\n", "\n", "bacon\n", "\n", "\n", "\n", "bacon->cut0\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "cheese->mix4\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "chop0->mix4\n", "\n", "\n", "\n", "\n", "\n", "whisk0->mix0\n", "\n", "\n", "\n", "\n", "\n", "parsley\n", "\n", "parsley\n", "\n", "\n", "\n", "parsley->chop0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Sweet Spareribs\n", "(233e13e7b7)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3 lbs spareribs'\n", " * '34 cup brown sugar'\n", " * '12 cup ketchup'\n", " * '12 cup white vinegar'\n", " * '2 tablespoons Worcestershire sauce'\n", " * '1 teaspoon chili powder'\n", " * '34 cup water'\n", " * '1 onion , chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * - Mix all ingrediants together and pour into large pot with lid .\n", " * - Boil strips for 5-7 mins separately until they turn white .\n", " * - Pour all mixture to pot .\n", " * - Add spare ribs to mixture in pot .\n", " * - Place in fridge for 2 hrs to marinate\n", " * - Pour mix repedly over the ribs while marinating\n", " * - Take out of fridge and bake @ 350 for 2 hrs +/- .\n", " * - for last 1/2 hr turn down to 300 for more tenderness .\n", " * Add white rice to compliment ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "chili\n", "\n", "chili\n", "\n", "\n", "\n", "vinegar\n", "\n", "vinegar\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "ketchup\n", "\n", "ketchup\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->brown0\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "sparerib\n", "\n", "sparerib\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Spaghetti and Meatball Pie\n", "(2952922070)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 Eggs , Beaten'\n", " * '1/2 pounds Leftover Cooked Spaghetti Noodles'\n", " * '1- 1/2 cup Leftover Pasta Sauce \\( might Need An Additional 1/2 Cup \\)'\n", " * '1- 1/2 cup Shredded Mozzarella Cheese'\n", " * '1/2 cups Grated Parmesan Cheese'\n", " * '20 Leftover Cooked Meatballs , Medium Size , Chopped'\n", " * '1 cup Shredded Mozzarella Cheese'\n", " * '6 Leftover Cooked Meatballs , Cut In Half'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 350 F. Spray a 9-inch springform pan with non-stick cooking spray ; set aside .\n", " * In a large bowl , beat eggs together .\n", " * Add spaghetti noodles , sauce , and both cheeses ; stir to combine .\n", " * Pour half of the spaghetti mixture into the prepared springform pan .\n", " * Add chopped meatballs , then add the remaining spaghetti mixture , and finish by topping off the layers with 1 cup mozzarella cheese .\n", " * Press everything down to make it compact .\n", " * Dot the top with the halved meatballs .\n", " * Cover springform pan with foil and place on a rimmed sheet pan .\n", " * Bake for 55 minutes then remove foil and bake an additional 10 minutes , or until the cheese browns nicely on top .\n", " * Remove from oven and allow it to rest for at least 20 minutes \\( 30 is even better \\) .\n", " * Serve warm or at room temperature .\n", " * Note : I prefer to serve extra sauce on the side and not add too much to the casserole itself .\n", " * If the pie is too wet , it wont slice nicely .\n", " * You can make this without meatballs , or substitute Italian sausage instead of the meatballs .\n", " * Sauteed mushrooms and chopped basil would be great additions as well .\n", " * Recipe makes one 9-inch springform pan that will serve 8-12 .\n", " * Recipe adapted from the blog Gourmet Rooster ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "beat0->mix1\n", "\n", "\n", "\n", "\n", "\n", "eggs\n", "\n", "eggs\n", "\n", "\n", "\n", "eggs->beat0\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "mix0->warm0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "cut0->chop0\n", "\n", "\n", "\n", "\n", "\n", "warm1\n", "\n", "warm\n", "\n", "\n", "\n", "mix1->warm1\n", "\n", "\n", "\n", "\n", "\n", "pasta sauce\n", "\n", "pasta sauce\n", "\n", "\n", "\n", "pasta sauce->mix0\n", "\n", "\n", "\n", "\n", "\n", "spaghetti noodles\n", "\n", "spaghetti noodles\n", "\n", "\n", "\n", "spaghetti noodles->mix0\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "pour0->mix1\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "cheese->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix1\n", "\n", "\n", "\n", "\n", "\n", "meatballs\n", "\n", "meatballs\n", "\n", "\n", "\n", "meatballs->cut0\n", "\n", "\n", "\n", "\n", "\n", "warm0->pour0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pizza with Pepperoni and Veggies\n", "(0040c511dd)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup sliced fresh mushrooms'\n", " * '1 cup cherry tomatoes , halved'\n", " * '1/2 cup slivered red onions'\n", " * '3 Tbsp . Kraft Extra Virgin Olive Oil Tuscan Italian Dressing , divided'\n", " * '1 ready-to-use baked pizza crust \\( 12 inch \\)'\n", " * '1-1/2 cups Cracker Barrel Shredded Mozzarella Cheese'\n", " * '14 slices pepperoni'\n", " * '1/4 cup sliced black olives'\n", " * '1 tsp . chopped fresh thyme'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat oven to 450 degrees F .\n", " * Cook and stir vegetables in 1 Tbsp .\n", " * dressing in skillet on medium heat 3 min .\n", " * Place pizza crust on baking sheet sprayed with cooking spray ; brush with remaining dressing .\n", " * Top with cheese , pepperoni , vegetables and olives .\n", " * Bake 10 to 12 min .\n", " * or until cheese is melted and edge of crust is golden brown .\n", " * Sprinkle with thyme ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "red onion\n", "\n", "red onion\n", "\n", "\n", "\n", "cherry tomato\n", "\n", "cherry tomato\n", "\n", "\n", "\n", "mozzarella cheese\n", "\n", "mozzarella cheese\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "mozzarella cheese->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix0\n", "\n", "\n", "\n", "\n", "\n", "mushroom\n", "\n", "mushroom\n", "\n", "\n", "\n", "mushroom->slice0\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "bake0->place0\n", "\n", "\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "place0->melt0\n", "\n", "\n", "\n", "\n", "\n", "crust\n", "\n", "crust\n", "\n", "\n", "\n", "crust->bake0\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "thyme->chop0\n", "\n", "\n", "\n", "\n", "\n", "melt0->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "slice1->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice2\n", "\n", "slice\n", "\n", "\n", "\n", "pepperoni\n", "\n", "pepperoni\n", "\n", "\n", "\n", "pepperoni->slice1\n", "\n", "\n", "\n", "\n", "\n", "black olive\n", "\n", "black olive\n", "\n", "\n", "\n", "black olive->slice2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Burmese Beef Curry\n", "(90a92a6f7f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 large onions , roughly chopped'\n", " * '5 garlic cloves'\n", " * '2 inches gingerroot , peeled'\n", " * '1 teaspoon chili powder'\n", " * '1 teaspoon turmeric'\n", " * '1 teaspoon paprika'\n", " * '3 tablespoons oil'\n", " * '750 g beef steaks , cut into largish pieces , i used rump'\n", " * '1 12 teaspoons salt'\n", " * '12 teaspoon cumin'\n", " * '12 teaspoon coriander powder'\n", " * '375 g potatoes , peeled quartered or 3 large potatoes'\n", " * '2 cups water'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Place the onions , ginger and garlic in a food processor and process until smooth .\n", " * Add the chili powder , and turmeric and paprika until combined .\n", " * Heat the oil until smoking point is reached , then add the contents of the processor or blender .\n", " * Be very careful as this mix will splutter as it hits the very hot oil .\n", " * Stir into the oil , reduce the heat of your burner to low , cover , and cook for about 30 minutes .\n", " * You will need to stir fairly regularly , and be patient .\n", " * The mix will begin to evaporate , start to smell sweeter and eventually turn a redish brown , with the oil seperating to the edges .\n", " * It may take more than 30 minutes , like I said , be patient !\n", " * Mix the cumin , coriander and salt together and massage through the steak pieces .\n", " * Add the steak and potatoes to the onion mix , fry for a couple of minutes , then add the water .\n", " * Bring to the boil , stirring , then reduce the heat and cover .\n", " * Cook for about 30 minutes or until the potatoes are tender .\n", " * Remove the lid , increase the heat and cook for a further 15 minutes or until the sauce is thickened and reduced .\n", " * Serve over plain rice ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "beef steak\n", "\n", "beef steak\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "beef steak->cut0\n", "\n", "\n", "\n", "\n", "\n", "boil5\n", "\n", "boil\n", "\n", "\n", "\n", "fry0\n", "\n", "fry\n", "\n", "\n", "\n", "boil5->fry0\n", "\n", "\n", "\n", "\n", "\n", "boil11\n", "\n", "boil\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "boil11->mix7\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "chop0->mix4\n", "\n", "\n", "\n", "\n", "\n", "heat4\n", "\n", "heat\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "heat4->brown0\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "heat9\n", "\n", "heat\n", "\n", "\n", "\n", "mix1->heat9\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "peel1\n", "\n", "peel\n", "\n", "\n", "\n", "potato->peel1\n", "\n", "\n", "\n", "\n", "\n", "heat9->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat5\n", "\n", "heat\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "heat5->mix2\n", "\n", "\n", "\n", "\n", "\n", "fry0->heat5\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cut0->mix3\n", "\n", "\n", "\n", "\n", "\n", "boil8\n", "\n", "boil\n", "\n", "\n", "\n", "boil8->mix1\n", "\n", "\n", "\n", "\n", "\n", "boil6\n", "\n", "boil\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "boil6->heat3\n", "\n", "\n", "\n", "\n", "\n", "peel1->mix3\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "cook0->mix1\n", "\n", "\n", "\n", "\n", "\n", "coriander\n", "\n", "coriander\n", "\n", "\n", "\n", "coriander->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix3->boil6\n", "\n", "\n", "\n", "\n", "\n", "paprika\n", "\n", "paprika\n", "\n", "\n", "\n", "paprika->mix0\n", "\n", "\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "peel0->mix4\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "heat3->cook0\n", "\n", "\n", "\n", "\n", "\n", "mix0->boil5\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "garlic clove->mix4\n", "\n", "\n", "\n", "\n", "\n", "brown0->boil11\n", "\n", "\n", "\n", "\n", "\n", "place2\n", "\n", "place\n", "\n", "\n", "\n", "place2->mix2\n", "\n", "\n", "\n", "\n", "\n", "gingerroot\n", "\n", "gingerroot\n", "\n", "\n", "\n", "gingerroot->peel0\n", "\n", "\n", "\n", "\n", "\n", "tablespoon oil\n", "\n", "tablespoon oil\n", "\n", "\n", "\n", "tablespoon oil->heat4\n", "\n", "\n", "\n", "\n", "\n", "mix2->boil8\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "mix4->place2\n", "\n", "\n", "\n", "\n", "\n", "chili\n", "\n", "chili\n", "\n", "\n", "\n", "chili->mix0\n", "\n", "\n", "\n", "\n", "\n", "cumin\n", "\n", "cumin\n", "\n", "\n", "\n", "cumin->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Ham and Cheese Sandwich with Pears\n", "(cf42b7a433)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 slice Bread of your choice'\n", " * '1/3 Pear'\n", " * '1 to 2 Thinly-sliced ham'\n", " * '1 to 2 Swiss cheese \\( sliced or shredded \\)'\n", " * '1 Dijon mustard'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat the frying pan over low heat .\n", " * Spread mustard onto two pieces of bread .\n", " * Chop the pear into half lengthwise and remove the core .\n", " * Slice into 7 to 8 mm- slices .\n", " * Layer the pear , ham , and cheese and sandwich .\n", " * Place the sandwich into the heated frying pan and press lightly with your hands for 10 seconds .\n", " * Turn the heat up to medium heat and grill until golden brown .\n", " * Flip it over and repeat ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "slice0->mix0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix0->heat0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "grill3\n", "\n", "grill\n", "\n", "\n", "\n", "mix3->grill3\n", "\n", "\n", "\n", "\n", "\n", "dijon mustard\n", "\n", "dijon mustard\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "dijon mustard->spread0\n", "\n", "\n", "\n", "\n", "\n", "grill0\n", "\n", "grill\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "grill0->brown0\n", "\n", "\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "heat3->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown2\n", "\n", "brown\n", "\n", "\n", "\n", "grill3->brown2\n", "\n", "\n", "\n", "\n", "\n", "heat0->grill0\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "ham->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice2\n", "\n", "slice\n", "\n", "\n", "\n", "slice2->heat3\n", "\n", "\n", "\n", "\n", "\n", "bread\n", "\n", "bread\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "chop0->mix5\n", "\n", "\n", "\n", "\n", "\n", "brown0->mix3\n", "\n", "\n", "\n", "\n", "\n", "pear\n", "\n", "pear\n", "\n", "\n", "\n", "pear->chop0\n", "\n", "\n", "\n", "\n", "\n", "mix5->slice2\n", "\n", "\n", "\n", "\n", "\n", "swiss cheese\n", "\n", "swiss cheese\n", "\n", "\n", "\n", "swiss cheese->slice0\n", "\n", "\n", "\n", "\n", "\n", "spread0->mix5\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Corn Pudding\n", "(c0841205a6)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '550 ml milk'\n", " * '4 Tbsp . granulated sugar'\n", " * '1 can whole kernel corn'\n", " * '4 tbsp cornstarch'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Pour the 400 ml milk into the pan then simmer in low heat .\n", " * In a small cup dissolve the cornstarch in remaining 150ml of milk and set aside .Then strain the whole kernel corn and set aside also .\n", " * When the milk is about to boil add the sugar into the pan and stir with spatula to dissolve the sugar .\n", " * Continously stir it for about 2 minutes .\n", " * Add the strained whole kernel corn .\n", " * Then stir it again for about 2 minutes .\n", " * Then gradually add 4 tbsp of cornstarch dissolved in 50 ml milk while stirring it .\n", " * Continously stir it for about 7-8 minutes or until the mixture is thickened .\n", " * Make sure that the cornstarch is distrubuted properly and dissolved .\n", " * When the mixture is already thickened turn off the heat then continously stir it on the pan for about 1 minute and prepare the container for your corn pudding .\n", " * Pour it to the container and let it cool then chill it on the fridge .\n", " * Serve it chilled and sprinkle some grated cheddar cheese on top for garnish ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "thicken1\n", "\n", "thicken\n", "\n", "\n", "\n", "pour0->thicken1\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->pour0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "mix2->cool1\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "heat0->mix3\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "sugar->boil0\n", "\n", "\n", "\n", "\n", "\n", "thicken2\n", "\n", "thicken\n", "\n", "\n", "\n", "boil0->thicken2\n", "\n", "\n", "\n", "\n", "\n", "corn\n", "\n", "corn\n", "\n", "\n", "\n", "thicken0\n", "\n", "thicken\n", "\n", "\n", "\n", "corn->thicken0\n", "\n", "\n", "\n", "\n", "\n", "thicken2->mix3\n", "\n", "\n", "\n", "\n", "\n", "thicken0->heat0\n", "\n", "\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "cool1->chill0\n", "\n", "\n", "\n", "\n", "\n", "pour2\n", "\n", "pour\n", "\n", "\n", "\n", "mix3->pour2\n", "\n", "\n", "\n", "\n", "\n", "pour2->mix2\n", "\n", "\n", "\n", "\n", "\n", "thicken1->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Vampire's Beware Coleslaw!\n", "(c1c9f2c406)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 teaspoon garlic salt'\n", " * '23 cup white sugar \\( or less if you wish \\)'\n", " * '13 cup garlic-flavored red wine vinegar'\n", " * '1 cup heavy whipping cream \\( about 1/2 pint \\)'\n", " * '2 tablespoons Miracle Whip'\n", " * '5 fresh garlic cloves , finely minced'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Whisk all ingredients together in a small bowl .\n", " * Pour over 8 cups of finely shredded cabbage .\n", " * This is about a 1 pound bag of prepared cabbage mix .\n", " * Place in refrigerator and chill overnight for best flavor .\n", " * If it gets too watery after the chilling period , you can pour off the juice and use for other things .\n", " * Like a garlic dressing , or discard .\n", " * This makes a lot so you can successfully half this recipe if you want .\n", " * \\( `` Please do n't try this '' -Dracula \\) ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "red wine vinegar\n", "\n", "red wine vinegar\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "garlic salt\n", "\n", "garlic salt\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## MacHo Nachos\n", "(7caa704c21)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 x cayenne pepper sauce'\n", " * '1 can bean dip'\n", " * '1 x tortilla chips'\n", " * '1 x cheddar cheese shredded'\n", " * '1 x guacamole'\n", " * '1 x sour cream'\n", " * '1 x jalapeno pepper sliced'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Stir 1 tablespoon of cayenne pepper sauce into the bean dip and spread on chips .\n", " * Sprinkle with cheese and microwave until softened .\n", " * Top with guacamole dip and sour cream ; garnish liberally with sliced Jalapeno peppers ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "guacamole\n", "\n", "guacamole\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "guacamole->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "spread0->mix0\n", "\n", "\n", "\n", "\n", "\n", "bean\n", "\n", "bean\n", "\n", "\n", "\n", "bean->mix0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "pepper->slice0\n", "\n", "\n", "\n", "\n", "\n", "cayenne pepper sauce\n", "\n", "cayenne pepper sauce\n", "\n", "\n", "\n", "cayenne pepper sauce->mix0\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "tortilla chip\n", "\n", "tortilla chip\n", "\n", "\n", "\n", "tortilla chip->spread0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Marinated Chicken With Cumin, Garlic & Lime\n", "(919f1cf5f0)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3 lbs boneless skinless chicken breast halves'\n", " * '1 medium onion , diced \\( about 1 cup \\)'\n", " * '3 -4 teaspoons garlic cloves , minced'\n", " * '2 limes , juice of'\n", " * '1 tablespoon molasses'\n", " * '2 teaspoons Worcestershire sauce'\n", " * '1 12 teaspoons ground cumin'\n", " * '1 teaspoon dried oregano'\n", " * '12 teaspoon salt'\n", " * '12 teaspoon ground black pepper'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large ziptop baggie , combine chicken , onion , garlic , lime juice , molasses , Worcestershire sauce , cumin , oregano , salt , and black pepper ; seal bag and let marinate in the fridge for several hours or overnight .\n", " * Preheat oven to 400F .\n", " * Coat a large roasting pan with cooking spray .\n", " * Transfer chicken to prepared pan and pour over any remaining marinade on top .\n", " * Roast 30 to 35 minutes , until chicken is cooked through \\( mine was ready at 30 , so check early \\) ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "ground black pepper\n", "\n", "ground black pepper\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "ground black pepper->mix7\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "onion->dice0\n", "\n", "\n", "\n", "\n", "\n", "dice0->mix7\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n", "molasses\n", "\n", "molasses\n", "\n", "\n", "\n", "molasses->mix7\n", "\n", "\n", "\n", "\n", "\n", "mince0->mix7\n", "\n", "\n", "\n", "\n", "\n", "ground cumin\n", "\n", "ground cumin\n", "\n", "\n", "\n", "ground cumin->mix7\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix7\n", "\n", "\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "sauce->mix7\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "oregano->mix7\n", "\n", "\n", "\n", "\n", "\n", "chicken breast half\n", "\n", "chicken breast half\n", "\n", "\n", "\n", "chicken breast half->mix7\n", "\n", "\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "lime->mix7\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## French Fig Compote With Honey Creme Fraiche\n", "(5c97434eaf)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 lb black mission fig , stemmed and cut in half lengthwise'\n", " * '34 cup dry red wine'\n", " * '14 cup orange juice'\n", " * '14 cup sugar'\n", " * '14 vanilla bean , split lengthwise'\n", " * '1 cup creme fraiche'\n", " * '3 tablespoons honey'\n", " * '14 teaspoon vanilla extract'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Place the figs in a heat-proof bowl .\n", " * In a small saucepan combine the wine , orange juice , sugar and the seeds from the vanilla bean .\n", " * Over med heat , bring to a boil , stirring to dissolve the sugar .\n", " * Boil until slightly thickened and reduced to 3/4 c , about 5 minute .\n", " * Pour over the figs and let stand at room temperature until cool .\n", " * In a separate bowl , beat the creme fraiche , honey & vanilla extract on high speed until thick .\n", " * Spoon the fig compote into dessert glasses and top with a dollop of the creme fraiche mixture .\n", " * Serve at once ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "thicken0\n", "\n", "thicken\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "thicken0->beat0\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix0->heat0\n", "\n", "\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "black\n", "\n", "black\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "black->cut0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "beat0->mix3\n", "\n", "\n", "\n", "\n", "\n", "boil1\n", "\n", "boil\n", "\n", "\n", "\n", "heat0->boil1\n", "\n", "\n", "\n", "\n", "\n", "vanilla bean\n", "\n", "vanilla bean\n", "\n", "\n", "\n", "vanilla bean->mix0\n", "\n", "\n", "\n", "\n", "\n", "red wine\n", "\n", "red wine\n", "\n", "\n", "\n", "red wine->mix0\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix3\n", "\n", "\n", "\n", "\n", "\n", "boil1->thicken0\n", "\n", "\n", "\n", "\n", "\n", "orange juice\n", "\n", "orange juice\n", "\n", "\n", "\n", "orange juice->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## White Pizza N E Penna. Style\n", "(3dca7f5e6d)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 12-3 cups bread flour'\n", " * '1 teaspoon salt'\n", " * '1 teaspoon sugar'\n", " * '1 \\( 3/4 ounce \\) package dry yeast'\n", " * '8 ounces water'\n", " * '14 teaspoon oregano'\n", " * '12 slices American cheese'\n", " * '12 slices mozzarella cheese'\n", " * '12 slices muenster cheese'\n", " * '1 tablespoon rosemary , seed not ground'\n", " * '12 teaspoon black pepper'\n", " * '1 tablespoon olive oil'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Please keep in mind that the cheeses do not have to be sliced thickly - that 's a matter of taste .\n", " * Also , the dough may be prepared by hand .\n", " * However , I use a food processor which is much quicker and produces a light pizza crust .\n", " * Place the package of dry yeast along with the sugar in one \\( 1 \\) cup of warm \\( not hot \\) water .\n", " * Let stand about 5 minutes .\n", " * Add 2 1/2 cups of the bread flour to the processor bowl along with the salt and oregano .\n", " * While the processor is on , slowly pour the yeast mixture down the feeding tube and process for about 1 to 2 minutes until the dough comes away from the sides .\n", " * It will be quite sticky .\n", " * Remove the top and check to see if the dough is heavy .\n", " * If it is heavy replace the top and add a couple tablespoons of water .\n", " * Lightly oil a large bowl .\n", " * Turn the dough over so that the top of the dough is slightly oiled .\n", " * Cover with a clean cloth and plastic .\n", " * Let raise for approximately 1 1/2 to 2 hours .\n", " * Meanwhile , using about 1/8 of a cup of `` peanut oil '' , grease a cookie sheet with sides \\( 12 '' x17 '' \\) .\n", " * Place the dough onto the cookie sheet and using your fingers , stretch the dough in place evenly .\n", " * If it springs back , stretch for a while then let it rest and go back to finish .\n", " * Cover dough again with cloth and let raise til more than doubled .\n", " * This is what makes the crust light and crispy .\n", " * Par-bake the crust on 350 degrees for 10 minutes .\n", " * Remove the crust from the oven and let cool .\n", " * Ready to Bake : .\n", " * Place the pizza stone on the bottom of the range if gas ; if electric , on the bottom grate of the stove .\n", " * Preheat oven to 350 .\n", " * Brush the top of the pizza shell with a little olive oil .\n", " * Layer the cheeses .\n", " * Sprinkle with the Rosemary and black pepper .\n", " * Drizzle some olive oil .\n", " * Using a pizza peel , shuffle the pizza onto the stone and let bake about 8 to 10 minutes until cheeses are melted and bottom is golden brown and crispy .\n", " * Remove with a pizza peel to a large wire rack .\n", " * Let cool a minute or two .\n", " * Cut into desired pieces ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "olive oil->mix4\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "pour0->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "mix3->cool1\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake4\n", "\n", "bake\n", "\n", "\n", "\n", "cool2\n", "\n", "cool\n", "\n", "\n", "\n", "bake4->cool2\n", "\n", "\n", "\n", "\n", "\n", "yeast\n", "\n", "yeast\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "yeast->place0\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "oregano->mix0\n", "\n", "\n", "\n", "\n", "\n", "muenster cheese\n", "\n", "muenster cheese\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "muenster cheese->slice1\n", "\n", "\n", "\n", "\n", "\n", "place0->pour0\n", "\n", "\n", "\n", "\n", "\n", "bake6\n", "\n", "bake\n", "\n", "\n", "\n", "mix4->bake6\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "water->warm0\n", "\n", "\n", "\n", "\n", "\n", "peel6\n", "\n", "peel\n", "\n", "\n", "\n", "peel6->mix3\n", "\n", "\n", "\n", "\n", "\n", "bread flour\n", "\n", "bread flour\n", "\n", "\n", "\n", "bread flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "warm0->mix4\n", "\n", "\n", "\n", "\n", "\n", "rosemary\n", "\n", "rosemary\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "rosemary->mix2\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix4\n", "\n", "\n", "\n", "\n", "\n", "cut3\n", "\n", "cut\n", "\n", "\n", "\n", "cut3->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix2->peel6\n", "\n", "\n", "\n", "\n", "\n", "cut4\n", "\n", "cut\n", "\n", "\n", "\n", "peel2\n", "\n", "peel\n", "\n", "\n", "\n", "mix0->peel2\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix2\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "cheese->slice0\n", "\n", "\n", "\n", "\n", "\n", "slice0->mix4\n", "\n", "\n", "\n", "\n", "\n", "cool2->cut3\n", "\n", "\n", "\n", "\n", "\n", "peel2->bake4\n", "\n", "\n", "\n", "\n", "\n", "cool1->cut4\n", "\n", "\n", "\n", "\n", "\n", "bake6->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Honey Custard Filled Phyllo Triangles With Strawberries\n", "(51f0afb37f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups strawberries , sliced and hulled'\n", " * '2 tablespoons semi-sweet wine \\( i.e . Johannesburg Riesling \\)'\n", " * '3 tablespoons sugar'\n", " * '8 ounces cream cheese , room temperature'\n", " * '5 tablespoons honey'\n", " * '14 cup heavy cream'\n", " * '1 large egg \\( at room temperature \\)'\n", " * '1 teaspoon vanilla extract'\n", " * '8 sheets phyllo pastry , fresh or frozen , thawed'\n", " * '12 cup unsalted butter'\n", " * '8 tablespoons almonds , finely chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix the strawberries , wine and 2 tablespoons of the sugar in a small bowl -- set aside .\n", " * Preheat oven to 350F .\n", " * Using an electric mixer , beat the cream cheese , 3 tablespoons of the honey and the remaining 1 tablespoon sugar in medium bowl until smooth .\n", " * Mix in the cream , egg , and vanilla .\n", " * Spoon mixture into 9 '' glass pie dish .\n", " * Bake until custard is set ; about 20 minutes .\n", " * Transfer to a rack and cool completely .\n", " * Combine the butter and remaining 2 tablespoons of honey in a small saucepan .\n", " * Stir over low heat until butter melts and honey dissolves .\n", " * Remove from heat .\n", " * Arrange 1 phyllo sheet on work surface with long side parallel to the edge of the surface \\( cover remainder with plastic wrap and damp kitchen towel \\) .\n", " * Brush lower half of phyllo lengthwise with butter mixture .\n", " * Fold phyllo in half lengthwise .\n", " * Brush with butter mixture .\n", " * Spoon 1/8 of custard mixture near 1 short edge of phyllo .\n", " * Sprinkle with 1 tablespoon of almonds .\n", " * Fold 1 corner of phyllo over custard ; continue folding like you would a flag , forming a triangle and enclosing filling completely .\n", " * Repeat with remaining phyllo , butter , custard and almonds .\n", " * Transfer pastries to a buttered baking sheet .\n", " * Brush pastries with remaining butter mixture .\n", " * Bake until golden brown , about 18 minutes .\n", " * Serve warm or at room temperature with sliced strawberries and juices .\n", " * Enjoy !" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "almond\n", "\n", "almond\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "almond->chop0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "chop0->mix2\n", "\n", "\n", "\n", "\n", "\n", "heat2\n", "\n", "heat\n", "\n", "\n", "\n", "brown1\n", "\n", "brown\n", "\n", "\n", "\n", "heat2->brown1\n", "\n", "\n", "\n", "\n", "\n", "thaw0\n", "\n", "thaw\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "thaw0->mix3\n", "\n", "\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "brush0->mix2\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake4\n", "\n", "bake\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "bake4->melt0\n", "\n", "\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "melt0->mix4\n", "\n", "\n", "\n", "\n", "\n", "heat7\n", "\n", "heat\n", "\n", "\n", "\n", "heat7->mix2\n", "\n", "\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "cool6\n", "\n", "cool\n", "\n", "\n", "\n", "beat0->cool6\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "slice0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool5\n", "\n", "cool\n", "\n", "\n", "\n", "brown1->cool5\n", "\n", "\n", "\n", "\n", "\n", "bake6\n", "\n", "bake\n", "\n", "\n", "\n", "mix2->bake6\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "wine->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "vanilla extract->mix0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "phyllo pastry\n", "\n", "phyllo pastry\n", "\n", "\n", "\n", "phyllo pastry->thaw0\n", "\n", "\n", "\n", "\n", "\n", "mix0->heat2\n", "\n", "\n", "\n", "\n", "\n", "cool6->mix4\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "butter->heat3\n", "\n", "\n", "\n", "\n", "\n", "strawberry\n", "\n", "strawberry\n", "\n", "\n", "\n", "strawberry->slice0\n", "\n", "\n", "\n", "\n", "\n", "bake6->brown0\n", "\n", "\n", "\n", "\n", "\n", "mix4->heat7\n", "\n", "\n", "\n", "\n", "\n", "heat3->mix3\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "cream cheese->beat0\n", "\n", "\n", "\n", "\n", "\n", "cool5->bake4\n", "\n", "\n", "\n", "\n", "\n", "mix3->brush0\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Farmers' Market Salad with Spiced Goat Cheese Rounds\n", "(ce52073c40)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 tablespoons sesame seeds'\n", " * '2 teaspoons ground cumin'\n", " * '1 1/2 teaspoons paprika'\n", " * '1 teaspoon finely chopped fresh thyme'\n", " * '1/4 teaspoon coarse kosher salt'\n", " * '1/8 teaspoon ground black pepper'\n", " * '16 \\( 1/3-inch-thick \\) rounds chilled soft fresh goat cheese \\( from one 11-ounce log \\)'\n", " * '2 tablespoons red wine vinegar'\n", " * '1 shallot , minced'\n", " * '1 teaspoon chopped fresh thyme'\n", " * '1 teaspoon Dijon mustard'\n", " * '5 tablespoons extra-virgin olive oil'\n", " * 'Coarse kosher salt'\n", " * '1 pound baby new potatoes \\( such as Dutch yellow baby potatoes \\) , halved'\n", " * '1 pound green beans \\( or mix of green and yellow \\) , trimmed'\n", " * '8 cups \\( loosely packed \\) mixed salad greens'\n", " * '1/3 cup \\( packed \\) small fresh basil leaves'\n", " * '12 ounces assorted small tomatoes \\( such as cherry , grape , and teardrop ; preferably mix of red and yellow \\)'\n", " * '1/2 cup black olives \\( such as Nicoise \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Line baking sheet with waxed paper or parchment paper .\n", " * Mix first 6 ingredients in shallow bowl .\n", " * Dip cut sides of goat cheese rounds into spice mixture to coat .\n", " * Place on prepared baking sheet .\n", " * Chill until ready to serve .\n", " * DO AHEAD Can be made 1 day ahead .\n", " * Cover and chill .\n", " * Bring to room temperature before serving .\n", " * Whisk first 4 ingredients in small bowl .\n", " * Gradually whisk in olive oil .\n", " * Season with coarse salt and pepper .\n", " * DO AHEAD Can be made 1 day ahead .\n", " * Cover and refrigerate .\n", " * Rewhisk before using .\n", " * Steam potatoes until just tender , about 10 minutes .\n", " * Transfer to plate ; cool .\n", " * Steam green beans until crisp-tender , about 5 minutes .\n", " * Rinse under cold water ; drain .\n", " * Pat dry with paper towels .\n", " * DO AHEAD Potatoes and green beans can be made 6 hours ahead .\n", " * Wrap separately in paper towels .\n", " * Place in resealable plastic bag ; chill .\n", " * Combine greens and basil in large bowl .\n", " * Add enough vinaigrette to coat lightly ; toss .\n", " * Arrange on large platter .\n", " * Add potatoes and green beans to same large bowl ; add remaining dressing and toss .\n", " * Arrange potatoes and beans atop greens .\n", " * Scatter tomatoes and olives over .\n", " * Surround with goat cheese rounds ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "kosher salt\n", "\n", "kosher salt\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "kosher salt->mix1\n", "\n", "\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "chill1\n", "\n", "chill\n", "\n", "\n", "\n", "place1->chill1\n", "\n", "\n", "\n", "\n", "\n", "place3\n", "\n", "place\n", "\n", "\n", "\n", "chill3\n", "\n", "chill\n", "\n", "\n", "\n", "place3->chill3\n", "\n", "\n", "\n", "\n", "\n", "basil leaf\n", "\n", "basil leaf\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "basil leaf->mix4\n", "\n", "\n", "\n", "\n", "\n", "chill2\n", "\n", "chill\n", "\n", "\n", "\n", "chill2->mix4\n", "\n", "\n", "\n", "\n", "\n", "dijon mustard\n", "\n", "dijon mustard\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "steam1\n", "\n", "steam\n", "\n", "\n", "\n", "potato->steam1\n", "\n", "\n", "\n", "\n", "\n", "refrigerate3\n", "\n", "refrigerate\n", "\n", "\n", "\n", "cool4\n", "\n", "cool\n", "\n", "\n", "\n", "refrigerate3->cool4\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "refrigerate1->cool1\n", "\n", "\n", "\n", "\n", "\n", "paprika\n", "\n", "paprika\n", "\n", "\n", "\n", "ground black pepper\n", "\n", "ground black pepper\n", "\n", "\n", "\n", "ground black pepper->mix1\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "ground cumin\n", "\n", "ground cumin\n", "\n", "\n", "\n", "mix1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->place3\n", "\n", "\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "tomato->mix0\n", "\n", "\n", "\n", "\n", "\n", "sesame seed\n", "\n", "sesame seed\n", "\n", "\n", "\n", "cool1->place1\n", "\n", "\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "refrigerate2\n", "\n", "refrigerate\n", "\n", "\n", "\n", "whisk0->refrigerate2\n", "\n", "\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "steam1->mix5\n", "\n", "\n", "\n", "\n", "\n", "chill1->mix5\n", "\n", "\n", "\n", "\n", "\n", "refrigerate2->mix5\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "thyme->chop0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "place5\n", "\n", "place\n", "\n", "\n", "\n", "mix3->place5\n", "\n", "\n", "\n", "\n", "\n", "salad green\n", "\n", "salad green\n", "\n", "\n", "\n", "extra-virgin olive oil\n", "\n", "extra-virgin olive oil\n", "\n", "\n", "\n", "extra-virgin olive oil->whisk0\n", "\n", "\n", "\n", "\n", "\n", "whisk1\n", "\n", "whisk\n", "\n", "\n", "\n", "whisk1->refrigerate3\n", "\n", "\n", "\n", "\n", "\n", "black olive\n", "\n", "black olive\n", "\n", "\n", "\n", "goat cheese\n", "\n", "goat cheese\n", "\n", "\n", "\n", "goat cheese->cut0\n", "\n", "\n", "\n", "\n", "\n", "chill3->whisk1\n", "\n", "\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "cool3->mix3\n", "\n", "\n", "\n", "\n", "\n", "place5->chill2\n", "\n", "\n", "\n", "\n", "\n", "red wine vinegar\n", "\n", "red wine vinegar\n", "\n", "\n", "\n", "cool4->mix4\n", "\n", "\n", "\n", "\n", "\n", "green bean\n", "\n", "green bean\n", "\n", "\n", "\n", "green bean->mix0\n", "\n", "\n", "\n", "\n", "\n", "steam0\n", "\n", "steam\n", "\n", "\n", "\n", "mix0->steam0\n", "\n", "\n", "\n", "\n", "\n", "steam0->mix3\n", "\n", "\n", "\n", "\n", "\n", "shallot\n", "\n", "shallot\n", "\n", "\n", "\n", "shallot->mince0\n", "\n", "\n", "\n", "\n", "\n", "mix5->cool3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Low Fat Low Calorie Creamy Peach Silk Pie\n", "(cc85452156)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 3 ounce \\) packagesugar-free peach Jell-O'\n", " * '14 cup boiling water'\n", " * '2 \\( 8 ounce \\) containers low-fat peach yogurt'\n", " * '1 \\( 8 ounce \\) container Cool Whip Free , thawed \\( or lite \\)'\n", " * '1 reduced fat graham cracker crust \\( I use keeblers \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Using a mixing bowl , dissolve jello in boiling water .\n", " * Whisk in yogurt .\n", " * Fold in Cool Whip .\n", " * Pour into crust and refrigerate several hours or overnight .\n", " * Fabulous !\n", " * and just 3 Weight Watchers points ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "whip0\n", "\n", "whip\n", "\n", "\n", "\n", "cracker crust\n", "\n", "cracker crust\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "cracker crust->pour0\n", "\n", "\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "boil0->whisk0\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "water->boil0\n", "\n", "\n", "\n", "\n", "\n", "peach\n", "\n", "peach\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "cool0->whip0\n", "\n", "\n", "\n", "\n", "\n", "whisk0->cool0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Creamy Garden Spaghetti\n", "(5ef0264cd9)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '12 lb fresh broccoli , cut into florets'\n", " * '1 12 cups sliced zucchini'\n", " * '1 12 cups sliced fresh mushrooms'\n", " * '1 large carrot , sliced'\n", " * '1 -2 tablespoon olive oil'\n", " * '8 ounces uncooked spaghetti'\n", " * '14 cup chopped onion'\n", " * '3 cloves garlic , minced'\n", " * '2 tablespoons butter or 2 tablespoons margarine'\n", " * '2 tablespoons all-purpose flour'\n", " * '2 teaspoons chicken bouillon granules'\n", " * '1 teaspoon dried thyme'\n", " * '12 teaspoon dried basil'\n", " * '2 cups milk'\n", " * '12 cup shredded swiss cheese'\n", " * '12 cup shredded mozzarella cheese'\n", " * '2 tablespoons parmesan cheese'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large skillet , saute the broccoli , zucchini , mushrooms and carrots in oil until crisp-tender .\n", " * Remove from heat and set aside .\n", " * Cook spaghetti according to package directions .\n", " * In another saucepan , saute onion and garlic in butter until tender .\n", " * Stir in flour , bouillon , thyme , and basil until blended .\n", " * Gradually add milk .\n", " * Bring to a boil ; cook and stir for 2 minutes or until thickened .\n", " * Reduce heat to low ; stir in cheeses until melted .\n", " * Add the vegetables ; heat through .\n", " * Drain spaghetti ; toss with vegetable mixture .\n", " * Sprinkle with Parmesan cheese .\n", " * Serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "basil\n", "\n", "basil\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "basil->mix3\n", "\n", "\n", "\n", "\n", "\n", "thicken3\n", "\n", "thicken\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "thicken3->drain0\n", "\n", "\n", "\n", "\n", "\n", "boil8\n", "\n", "boil\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "boil8->mix1\n", "\n", "\n", "\n", "\n", "\n", "thicken4\n", "\n", "thicken\n", "\n", "\n", "\n", "thicken4->mix1\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mix6\n", "\n", "mix\n", "\n", "\n", "\n", "slice0->mix6\n", "\n", "\n", "\n", "\n", "\n", "saute0\n", "\n", "saute\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "saute0->mix2\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "heat0->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "mix4->saute0\n", "\n", "\n", "\n", "\n", "\n", "cook13\n", "\n", "cook\n", "\n", "\n", "\n", "mix1->cook13\n", "\n", "\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "drain0->mix7\n", "\n", "\n", "\n", "\n", "\n", "saute1\n", "\n", "saute\n", "\n", "\n", "\n", "mix6->saute1\n", "\n", "\n", "\n", "\n", "\n", "mix2->boil8\n", "\n", "\n", "\n", "\n", "\n", "thicken9\n", "\n", "thicken\n", "\n", "\n", "\n", "thicken9->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat2\n", "\n", "heat\n", "\n", "\n", "\n", "heat2->mix7\n", "\n", "\n", "\n", "\n", "\n", "saute1->heat0\n", "\n", "\n", "\n", "\n", "\n", "mix8\n", "\n", "mix\n", "\n", "\n", "\n", "mix8->slice0\n", "\n", "\n", "\n", "\n", "\n", "swiss cheese\n", "\n", "swiss cheese\n", "\n", "\n", "\n", "swiss cheese->heat2\n", "\n", "\n", "\n", "\n", "\n", "cook13->thicken9\n", "\n", "\n", "\n", "\n", "\n", "cook5\n", "\n", "cook\n", "\n", "\n", "\n", "cook5->thicken4\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->mix6\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix4\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mince0->mix4\n", "\n", "\n", "\n", "\n", "\n", "carrot\n", "\n", "carrot\n", "\n", "\n", "\n", "carrot->mix8\n", "\n", "\n", "\n", "\n", "\n", "all-purpose flour\n", "\n", "all-purpose flour\n", "\n", "\n", "\n", "all-purpose flour->mix3\n", "\n", "\n", "\n", "\n", "\n", "broccoli\n", "\n", "broccoli\n", "\n", "\n", "\n", "broccoli->cut0\n", "\n", "\n", "\n", "\n", "\n", "boil3\n", "\n", "boil\n", "\n", "\n", "\n", "mix3->boil3\n", "\n", "\n", "\n", "\n", "\n", "boil3->cook5\n", "\n", "\n", "\n", "\n", "\n", "mushroom\n", "\n", "mushroom\n", "\n", "\n", "\n", "mushroom->mix8\n", "\n", "\n", "\n", "\n", "\n", "zucchini\n", "\n", "zucchini\n", "\n", "\n", "\n", "zucchini->mix8\n", "\n", "\n", "\n", "\n", "\n", "clove garlic\n", "\n", "clove garlic\n", "\n", "\n", "\n", "clove garlic->mince0\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "boil4\n", "\n", "boil\n", "\n", "\n", "\n", "cook0->boil4\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "thyme->mix3\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix3\n", "\n", "\n", "\n", "\n", "\n", "mozzarella cheese\n", "\n", "mozzarella cheese\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix6\n", "\n", "\n", "\n", "\n", "\n", "spaghetti\n", "\n", "spaghetti\n", "\n", "\n", "\n", "spaghetti->cook0\n", "\n", "\n", "\n", "\n", "\n", "chicken bouillon granule\n", "\n", "chicken bouillon granule\n", "\n", "\n", "\n", "chicken bouillon granule->mix3\n", "\n", "\n", "\n", "\n", "\n", "boil4->thicken3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix4\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Beef Noodle Bowl\n", "(2e33420580)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '12 lb linguine , uncooked'\n", " * '3 cups broccoli florets'\n", " * '3 carrots , peeled , sliced'\n", " * '2 teaspoons oil'\n", " * '1 lb beef sirloin steak , cut into strips'\n", " * '14 cup kraft asian toasted sesame dressing'\n", " * '1 tablespoon teriyaki sauce'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Cook pasta in large saucepan as directed on package , adding vegetables to the boiling water for the last 2 minutes .\n", " * Meanwhile , heat oil in large nonstick skillet .\n", " * Add meat ; cook until browned on all sides , stirring occasionally .\n", " * Stir in dressing and teriyaki sauce ; cook 2 minutes or until sauce is thickened , stirring occasionally .\n", " * Drain pasta mixture ; place in large serving bowl .\n", " * Add meat mixture ; toss to coat ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "sauce->cook0\n", "\n", "\n", "\n", "\n", "\n", "linguine\n", "\n", "linguine\n", "\n", "\n", "\n", "broccoli floret\n", "\n", "broccoli floret\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "slice0->peel0\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cook0->mix0\n", "\n", "\n", "\n", "\n", "\n", "asian toast sesame dressing\n", "\n", "asian toast sesame dressing\n", "\n", "\n", "\n", "asian toast sesame dressing->mix0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "beef sirloin steak\n", "\n", "beef sirloin steak\n", "\n", "\n", "\n", "beef sirloin steak->cut0\n", "\n", "\n", "\n", "\n", "\n", "carrot\n", "\n", "carrot\n", "\n", "\n", "\n", "carrot->slice0\n", "\n", "\n", "\n", "\n", "\n", "teaspoon oil\n", "\n", "teaspoon oil\n", "\n", "\n", "\n", "teaspoon oil->heat0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Grilled Holiday Honey Ham\n", "(1171285a15)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 12 to 14-pound \\) fully-cooked , bone-in ham , preferably shank-end'\n", " * '2 tablespoons light brown sugar'\n", " * '1 tablespoon kosher salt'\n", " * '1 tablespoon freshly ground black pepper'\n", " * '2 teaspoons ground cumin'\n", " * '2 teaspoons ground ginger'\n", " * '1 teaspoon mustard powder'\n", " * '1 teaspoon ground cinnamon'\n", " * '1 stick \\( 1/2 cup \\) butter'\n", " * '3 tablespoons chopped fresh thyme leaves'\n", " * '3/4 cup honey'\n", " * '1/4 cup apple cider vinegar'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Trim the ham of any excess fat , but leaving 1/4-inch of fat on the ham .\n", " * With a sharp knife , score the fat on the top of the ham .\n", " * Place the ham on a large rimmed baking sheet .\n", " * Whisk together the brown sugar , salt , black pepper , cumin , ginger , mustard powder , and cinnamon in a small bowl .\n", " * Reserve 1 tablespoon of the dry rub mixture for the glaze .\n", " * Season the ham with the remaining dry rub .\n", " * Place plastic wrap over the ham and put it in the refrigerator for 8 to 12 hours .\n", " * Allowing the seasoning to penetrate the ham overnight will give it a fuller flavor .\n", " * Preheat your charcoal grill to 300 degrees F for indirect heat .\n", " * Place the baking sheet with the ham on the grill grates , with the ham flat side down .\n", " * Cover the grill and let the ham cook for 2 hours .\n", " * Heat the butter , thyme , honey , vinegar , and reserved dry rub together in a medium saucepan until the butter melts .\n", " * Stir together until smooth .\n", " * Brush the ham with the glaze , cover with grill lid , and grill for 30 minutes more , basting the ham every 10 minutes with the glaze .\n", " * Remove to a platter , let rest for 30 minutes , then carve and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "heat7\n", "\n", "heat\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "heat7->bake0\n", "\n", "\n", "\n", "\n", "\n", "thyme leaf\n", "\n", "thyme leaf\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "thyme leaf->chop0\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "brown0->mix2\n", "\n", "\n", "\n", "\n", "\n", "carve0\n", "\n", "carve\n", "\n", "\n", "\n", "ground cumin\n", "\n", "ground cumin\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "ground cumin->mix3\n", "\n", "\n", "\n", "\n", "\n", "grate0\n", "\n", "grate\n", "\n", "\n", "\n", "bake0->grate0\n", "\n", "\n", "\n", "\n", "\n", "mustard\n", "\n", "mustard\n", "\n", "\n", "\n", "mustard->mix3\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "grill4\n", "\n", "grill\n", "\n", "\n", "\n", "place0->grill4\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "ham->place0\n", "\n", "\n", "\n", "\n", "\n", "mix3->brown0\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "heat9\n", "\n", "heat\n", "\n", "\n", "\n", "mix1->heat9\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix3\n", "\n", "\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "grate0->brush0\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix1\n", "\n", "\n", "\n", "\n", "\n", "grill0\n", "\n", "grill\n", "\n", "\n", "\n", "mix2->grill0\n", "\n", "\n", "\n", "\n", "\n", "baste0\n", "\n", "baste\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "baste0->mix0\n", "\n", "\n", "\n", "\n", "\n", "ground ginger\n", "\n", "ground ginger\n", "\n", "\n", "\n", "ground ginger->mix3\n", "\n", "\n", "\n", "\n", "\n", "grill0->mix1\n", "\n", "\n", "\n", "\n", "\n", "kosher salt\n", "\n", "kosher salt\n", "\n", "\n", "\n", "kosher salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix0->carve0\n", "\n", "\n", "\n", "\n", "\n", "apple cider vinegar\n", "\n", "apple cider vinegar\n", "\n", "\n", "\n", "apple cider vinegar->mix1\n", "\n", "\n", "\n", "\n", "\n", "heat9->mix0\n", "\n", "\n", "\n", "\n", "\n", "grill4->heat7\n", "\n", "\n", "\n", "\n", "\n", "brush0->baste0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "chop0->mix1\n", "\n", "\n", "\n", "\n", "\n", "ground cinnamon\n", "\n", "ground cinnamon\n", "\n", "\n", "\n", "ground cinnamon->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Bring on the Breakfast Pizza (Hungry Girl) 2 Ww Points!\n", "(e8cac55cf6)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '12 cup fat free egg substitute'\n", " * '14 cup fat free mozzarella cheese'\n", " * '14 cup canned tomato sauce'\n", " * '2 tablespoons chopped green bell peppers'\n", " * '2 tablespoons chopped mushrooms'\n", " * 'salt \\( optional \\) or pepper \\( optional \\) or oregano \\( optional \\) or garlic powder \\( optional \\) or onion powder \\( optional \\) or red pepper flakes , etc \\( optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Season tomato sauce to taste with optional ingredients , if desired , and set sauce aside .\n", " * Bring a small pan sprayed with non-stick cooking spray to low heat .\n", " * Pour in egg substitute .\n", " * Cover and then cook for 3 minutes , or until egg `` crust '' starts to form .\n", " * Carefully flip your egg .\n", " * Cover and cook for another minute .\n", " * Microwave chopped veggies for 30 seconds .\n", " * Next , top your egg crust with tomato sauce , cheese , then veggies .\n", " * Cover again and cook over low heat for 2 minutes , or until cheese is melted .\n", " * If you like , top with optional spices ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "red pepper\n", "\n", "red pepper\n", "\n", "\n", "\n", "fat\n", "\n", "fat\n", "\n", "\n", "\n", "green bell pepper\n", "\n", "green bell pepper\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "green bell pepper->chop0\n", "\n", "\n", "\n", "\n", "\n", "tomato sauce\n", "\n", "tomato sauce\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "tomato sauce->heat0\n", "\n", "\n", "\n", "\n", "\n", "mushroom\n", "\n", "mushroom\n", "\n", "\n", "\n", "mushroom->chop1\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "heat0->cook0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Pot Roast Loin of Pork\n", "(3b90a097be)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 1/2 pounds loin of pork , preferably free-range or organic , boned , skinned , rolled and tied'\n", " * 'Sea salt and freshly ground black pepper'\n", " * 'A small bunch of fresh thyme , leaves picked'\n", " * '2 medium red onions , peeled , halved and sliced'\n", " * '2 garlic cloves , peeled and sliced'\n", " * 'Olive oil , for frying'\n", " * '2 knobs of butter'\n", " * '6 figs , quartered'\n", " * '2 wineglasses Marsala'\n", " * '1 generous cup chicken stock , preferably organic'\n", " * '3 heaped tablespoons creme fraiche'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat your oven to 400F .\n", " * Roll the pork in the seasoning and thyme .\n", " * Take an appropriately sized casserole-type pan and fry off the onions and garlic in a couple of lugs of olive oil .\n", " * Cook on a medium heat for roughly 4 minutes until softened and tender .\n", " * Push the onions to one side , add 1 knob of butter and fry off the pork until lightly golden .\n", " * Add the quartered figs and 1 glass of Marsala , mix with the onions , add the rest of the butter , and cover with an appropriately sized piece of wet wax paper \\( because it is wet it sits snugly , allowing it to bake and steam as well as making a beautiful sauce \\) .\n", " * Cook in the preheated oven for 45 minutes to 1 hour .\n", " * After 20 minutes , turn the pork in the juices and add the other glass of Marsala .\n", " * When the pork is cooked , remove to a plate and allow to rest for 15 minutes before slicing .\n", " * While waiting , finish the sauce by adding the chicken stock and simmering for 10 minutes .\n", " * Check the seasoning and add the creme fraiche .\n", " * Slice the pork as thinly as you want and serve with the delicious sauce ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "peel0->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix6\n", "\n", "mix\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mix6->slice0\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "cook1->heat1\n", "\n", "\n", "\n", "\n", "\n", "slice0->peel0\n", "\n", "\n", "\n", "\n", "\n", "fry2\n", "\n", "fry\n", "\n", "\n", "\n", "mix4->fry2\n", "\n", "\n", "\n", "\n", "\n", "loin\n", "\n", "loin\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "mix2->cook1\n", "\n", "\n", "\n", "\n", "\n", "red onion\n", "\n", "red onion\n", "\n", "\n", "\n", "red onion->mix6\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cook2\n", "\n", "cook\n", "\n", "\n", "\n", "mix0->cook2\n", "\n", "\n", "\n", "\n", "\n", "tablespoon creme\n", "\n", "tablespoon creme\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "heat1->mix3\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "fry2->mix2\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "cook2->mix3\n", "\n", "\n", "\n", "\n", "\n", "chicken stock\n", "\n", "chicken stock\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "thyme->mix2\n", "\n", "\n", "\n", "\n", "\n", "fig\n", "\n", "fig\n", "\n", "\n", "\n", "fig->mix0\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "garlic clove->mix6\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Foie Gras Terrine with Preserved Shallots\n", "(c5847008d3)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 duck foie gras'\n", " * 'Coarse salt and freshly ground pepper'\n", " * '3 tablespoons Shallots Preserved in Red Wine'\n", " * 'Thin slices of toast for serving'\n", " * '5-cup nonreactive loaf pan or ceramic terrine'\n", " * 'A larger pan to use as a water bath'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Carefully separate and devein the liver \\( see Notes \\) and salt and pepper it generously on both sides .\n", " * Before reforming each lobe , spread 1 tablespoon of preserved shallots over the inner surface and close the meat around it .\n", " * Line the terrine with plastic wrap , letting 10 inches hang over the sides .\n", " * Spread the remaining shallots over the bottom of the terrine .\n", " * Lay the large lobe of the liver on top of the shallots , smooth side down , then set the smaller lobe on top of it , smooth side up , and press the liver firmly into the terrine .\n", " * Wrap it well in the plastic wrap , being sure all the surfaces are covered .\n", " * Preheat the oven to 200F .\n", " * Line a roasting pan with a double layer of paper towels and place the terrine in the pan .\n", " * Add boiling water to come halfway up the sides of the terrine and put the roasting pan in the oven .\n", " * Using an instant-read thermometer , check the temperature of the liver after 45 minutes , and continue to bake until the internal temperature reaches 175F , 10 or 15 minutes more .\n", " * Remove the terrine from the water bath , let it cool , and refrigerate for at least 3 days before serving .\n", " * The foie gras will keep up to 2 weeks .\n", " * Remove the foie gras from the terrine and scrape off any membranes and all the fat .\n", " * Using a thin slicing knife dipped in hot water and dried , slice the foie gras 1/4 inch thick .\n", " * Place two slices on each plate and serve with toast ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "duck\n", "\n", "duck\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "toast\n", "\n", "toast\n", "\n", "\n", "\n", "toast->slice0\n", "\n", "\n", "\n", "\n", "\n", "large\n", "\n", "large\n", "\n", "\n", "\n", "red wine\n", "\n", "red wine\n", "\n", "\n", "\n", "loaf\n", "\n", "loaf\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->spread0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Cherry Sparkler\n", "(94607d3ae8)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1/2 gallon distilled water'\n", " * '1 \\( 2 liter \\) bottle cherry flavored , lemon lime soft drink , chilled \\( I use Cherry 7 Up \\)'\n", " * '4 \\( ounce jars \\) maraschino cherries , drained \\( I use 2 bottles of red cherries and 2 bottles of green cherries \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Place 1 cherry in each compartment of 4 ice cube trays .\n", " * Fill trays with distilled water .\n", " * Freeze 8 hours .\n", " * Serve soft drink over ice cubes .\n", " * \\*This makes approximately 8 1/2 cups .\n", " * \\*\n", " * \\*\\*I usually use green and red cherries , but you can use green for Christmas and red for Valentine 's Day , Fourth of July , and Memorial Day if you wish .\n", " * \\*\\*" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "freeze1\n", "\n", "freeze\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix1->freeze1\n", "\n", "\n", "\n", "\n", "\n", "lemon lime\n", "\n", "lemon lime\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "lemon lime->chill0\n", "\n", "\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "drain0->place0\n", "\n", "\n", "\n", "\n", "\n", "place0->mix1\n", "\n", "\n", "\n", "\n", "\n", "red cherry green cherry\n", "\n", "red cherry green cherry\n", "\n", "\n", "\n", "red cherry green cherry->drain0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Peppery Beef Kebabs with Braised Pearl Onions\n", "(f0e9e5e70e)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '60 small white pearl onions \\( 1 pound \\)'\n", " * '1 tablespoon unsalted butter'\n", " * '1 tablespoon coarsely ground black pepper'\n", " * '1 teaspoon finely chopped fresh rosemary'\n", " * '1 tablespoon minced garlic'\n", " * '2 teaspoons kosher salt'\n", " * '1 pound \\( 1/2-inch-thick \\) boneless sirloin steaks , trimmed of excess fat'\n", " * '20 \\( 4-inch-long \\) rosemary branches , stripped of all but 1 1/2 inches of top leaves and bottoms cut diagonally to a point'\n", " * '40 \\( 6-inch \\) bamboo skewers , soaked in water 1 hour'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Blanch onions in a large pot of boiling water 1 minute and drain , then cool under cold running water .\n", " * Trim root ends and peel .\n", " * Cook onions in butter in a 10-inch heavy skillet over moderate heat , stirring , 3 minutes \\( onions will not brown \\) .\n", " * Add salt and regular-grind pepper to taste and enough water to just cover onions and boil , partially covered , stirring occasionally , until onions are tender but not falling apart , about 15 minutes .\n", " * Transfer onions to a bowl with a slotted spoon and if necessary boil juices until reduced to about 1/4 cup .\n", " * Toss onions with juices .\n", " * Combine coarsely ground pepper , chopped rosemary , garlic , and salt , then rub into both sides of steak .\n", " * Cut meat into 3/4-inch cubes .\n", " * Put 1 onion , then 1 steak cube \\( thread through unpeppered sides \\) on each rosemary branch or skewer to make 60 kebabs .\n", " * Preheat broiler .\n", " * Arrange some of kebabs in a row , a peppered side facing up , along 1 long side of oiled rack of a broiler pan so that leaf ends of rosemary branches and blunt ends of skewers point toward middle of pan .\n", " * Cover exposed skewer or branch ends with a sheet of foil \\( dont cover beef or onions \\) .\n", " * Arrange another row of kebabs over foil , covering exposed ends in same manner .\n", " * Continue adding rows of kebabs and layers of foil until pan is full , making sure exposed ends of last row of branches or skewers are covered with foil .\n", " * \\( To broil kebabs in batches , keep remaining kebabs on a tray , covered with plastic wrap and chilled . \\)\n", " * Broil kebabs 2 inches from heat until beef is seared on 1 side but still medium-rare , 2 to 3 minutes .\n", " * Serve immediately ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "skewer\n", "\n", "skewer\n", "\n", "\n", "\n", "soak0\n", "\n", "soak\n", "\n", "\n", "\n", "skewer->soak0\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cook0->mix3\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "heat0->boil0\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "mince0->mix0\n", "\n", "\n", "\n", "\n", "\n", "broil0\n", "\n", "broil\n", "\n", "\n", "\n", "kosher salt\n", "\n", "kosher salt\n", "\n", "\n", "\n", "kosher salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "rosemary\n", "\n", "rosemary\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "garlic->mince0\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "mix1->broil0\n", "\n", "\n", "\n", "\n", "\n", "boil0->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->mix3\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "cook1->heat0\n", "\n", "\n", "\n", "\n", "\n", "sirloin steak\n", "\n", "sirloin steak\n", "\n", "\n", "\n", "sirloin steak->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->cook0\n", "\n", "\n", "\n", "\n", "\n", "soak0->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix0->chop1\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->mix1\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "rosemary branch\n", "\n", "rosemary branch\n", "\n", "\n", "\n", "rosemary branch->cut0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->cook1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chicken With Spinach, Garlic and Tomato Sauce\n", "(23f82cb6e6)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '4 boneless skinless chicken breast halves \\( about 2 pounds total \\)'\n", " * '8 -12 garlic cloves , minced'\n", " * '2 tablespoons olive oil or 2 tablespoons vegetable oil'\n", " * '6 cups washed loosely packed spinach \\( about 1 1/2 pounds \\)'\n", " * '1 cup tomato sauce or 1 cup diced plum tomato'\n", " * '2 teaspoons tamari or 2 teaspoons soy sauce'\n", " * '14 cup white wine'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Grill chicken breasts for 5 minutes on each side , until cooked through but not dry .\n", " * Meanwhile , lightly brown the garlic in the oil in a nonstick skillet over medium-high heat .\n", " * Add the spinach and cook , tossing gently , just until leaves are wilted .\n", " * Add the tomato sauce , tamari and wine .\n", " * Toss well until coated and thoroughly heated .\n", " * Place spinach mixture on top of cooked chicken breasts .\n", " * Makes 4 servings ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "oil vegetable oil\n", "\n", "oil vegetable oil\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "oil vegetable oil->mix2\n", "\n", "\n", "\n", "\n", "\n", "heat5\n", "\n", "heat\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "mix1->heat5\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "wine->mix0\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mince0->mix2\n", "\n", "\n", "\n", "\n", "\n", "sauce plum tomato\n", "\n", "sauce plum tomato\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "sauce plum tomato->dice0\n", "\n", "\n", "\n", "\n", "\n", "spinach\n", "\n", "spinach\n", "\n", "\n", "\n", "wash0\n", "\n", "wash\n", "\n", "\n", "\n", "spinach->wash0\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n", "chicken breast half\n", "\n", "chicken breast half\n", "\n", "\n", "\n", "grill0\n", "\n", "grill\n", "\n", "\n", "\n", "chicken breast half->grill0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "heat0->place0\n", "\n", "\n", "\n", "\n", "\n", "dice0->mix0\n", "\n", "\n", "\n", "\n", "\n", "place0->mix1\n", "\n", "\n", "\n", "\n", "\n", "soy sauce\n", "\n", "soy sauce\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix1\n", "\n", "\n", "\n", "\n", "\n", "grill0->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix0->heat0\n", "\n", "\n", "\n", "\n", "\n", "mix2->brown0\n", "\n", "\n", "\n", "\n", "\n", "wash0->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Vanilla Marshmallow Fluff Mousse\n", "(15a368b1b3)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 7 1/2 ounce \\) jar marshmallow cream'\n", " * '1 cup heavy whipping cream'\n", " * '1 teaspoon vanilla extract'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a mixing bowl , combine the fluff with 1/4 cup of whipping cream and the vanilla .\n", " * In another bowl , with a mixer on high speed , beat the remaining 3/4 cup of cream until thick but not stiff .\n", " * Fold into the fluff mixture .\n", " * Freeze until firm , without stirring and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "whip0\n", "\n", "whip\n", "\n", "\n", "\n", "vanilla extract->whip0\n", "\n", "\n", "\n", "\n", "\n", "whip1\n", "\n", "whip\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "whip1->beat0\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "marshmallow cream\n", "\n", "marshmallow cream\n", "\n", "\n", "\n", "marshmallow cream->whip1\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "beat0->mix1\n", "\n", "\n", "\n", "\n", "\n", "freeze1\n", "\n", "freeze\n", "\n", "\n", "\n", "mix1->freeze1\n", "\n", "\n", "\n", "\n", "\n", "whip0->mix1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Raspberry White Chocolate Dreamsicle\n", "(66decae6ed)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 3 ounce \\) package sugar-free raspberry gelatin'\n", " * '1 \\( 3 1/2 ounce \\) package sugar-free white chocolate pudding mix'\n", " * '1 container fat-free cool whip'\n", " * '1 cup boiling water'\n", " * '1 cup cold water'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large bowl dissolve Gelatin in 1 cup boiling water , then add 1 cup cold water .\n", " * Let stand for 5 minutes .\n", " * Add pudding mix to gelatin mixture , using a mixer beat until well mixed .\n", " * Fold in Cool Whip .\n", " * Refrigerate .\n", " * 1 cup equal to 1 weight watcher point ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "refrigerate2\n", "\n", "refrigerate\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "whip0\n", "\n", "whip\n", "\n", "\n", "\n", "cool0->whip0\n", "\n", "\n", "\n", "\n", "\n", "mix0->cool0\n", "\n", "\n", "\n", "\n", "\n", "raspberry gelatin\n", "\n", "raspberry gelatin\n", "\n", "\n", "\n", "raspberry gelatin->mix0\n", "\n", "\n", "\n", "\n", "\n", "whip0->refrigerate2\n", "\n", "\n", "\n", "\n", "\n", "chocolate pudding\n", "\n", "chocolate pudding\n", "\n", "\n", "\n", "chocolate pudding->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Sito's Lebanese Cabbage Salad\n", "(5f65fc7fe0)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 small red cabbage'\n", " * '1 small white cabbage'\n", " * '2 large tomatoes , seeded and diced'\n", " * '12 cup mint leaf , fresh , chopped'\n", " * '1 -3 tablespoon olive oil'\n", " * '1 -2 lemon , juice of \\( about 5 tablespoons \\)'\n", " * '12 teaspoon garlic powder \\( to taste \\)'\n", " * '1 teaspoon salt \\( to taste \\)'\n", " * 'ground pepper , to taste'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Combine all ingredients in a large bowl .\n", " * Taste and add more lemon juice and seasonings , if desired ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "tomato->dice0\n", "\n", "\n", "\n", "\n", "\n", "cabbage\n", "\n", "cabbage\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "lemon\n", "\n", "lemon\n", "\n", "\n", "\n", "mint leaf\n", "\n", "mint leaf\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "mint leaf->chop0\n", "\n", "\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "ground pepper\n", "\n", "ground pepper\n", "\n", "\n", "\n", "red cabbage\n", "\n", "red cabbage\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## mashed potatoes\n", "(0d43ed1574)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 medium yukon gold potatoes'\n", " * '1 stick Butter'\n", " * '1/2 pints heavy whipping cream'\n", " * '1 salt'\n", " * '1 black pepper'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Turn your oven on to 375F .\n", " * You do n't really have to preheat for this recipe .\n", " * Arrange your potatoes on a baking tray .\n", " * Bake for about 75 -90 minutes , depending on the size of your potatoes .\n", " * You 'll want to have your mashed potato kit ready when the potatoes come out of the oven .\n", " * Slice up your stick of butter , get yourself a towel , a good bowl , a strong wooden spoon , a container for the spent tater skins , and a knife .\n", " * Warm the cream gently on the stove .\n", " * You know your potatoes are ready when you can poke a toothpick straight through to the center of the largest potato without feeling much resistance at all .\n", " * Alright , it 's go time !\n", " * The rest of this recipe is a race .\n", " * You 're fighting time to get those potatoes whipped , seasoned , and on the table before they cool .\n", " * Many cooks recommend performing the rest of this recipe over a double boiler in order to maintain temperature .\n", " * Personally , I do n't like to make things too complicated .\n", " * Better just move quick .\n", " * With your knife in your dominant hand , use the towel to pick up a hot potato with the other .\n", " * Slice a strip of skin off , and scoop the insides into your bowl .\n", " * Repeat with remaining potatoes .\n", " * If you have a ricer available , and you like your mashed potatoes silky smooth , pass the potatoes and butter through your ricer .\n", " * No ricer ?\n", " * Do n't sweat it , just scatter the sliced butter over your potatoes and move to the next step .\n", " * Beat those spuds with a wooden spoon .\n", " * This technique is known to many as the 'dead arm , ' technique \\( very little relation to the 'dead hand ' technique \\) and I guarantee you it is the key to elevating your mashed potato game .\n", " * Swirl the spoon around in the bowl until the potatoes seem to want to form a dough .\n", " * Continue beating until it feels like your arm is gon na fall off .\n", " * Toss in a little salt and pepper , and beat in the cream .\n", " * Now , just tighten up your seasoning and do n't forget to perform a final mix .\n", " * Get em on the table and in some bellies .\n", " * Great mashed potatoes are like a great risotto .\n", " * They do n't know respect .\n", " * They 're not gon na wait for anybody , not you , not Grandma , not anybody ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "slice0->mix0\n", "\n", "\n", "\n", "\n", "\n", "whip0\n", "\n", "whip\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "whip0->warm0\n", "\n", "\n", "\n", "\n", "\n", "beat2\n", "\n", "beat\n", "\n", "\n", "\n", "beat2->mix3\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "cream->whip0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->slice0\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix3\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "mash0\n", "\n", "mash\n", "\n", "\n", "\n", "bake0->mash0\n", "\n", "\n", "\n", "\n", "\n", "mash0->mix0\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "potato->bake0\n", "\n", "\n", "\n", "\n", "\n", "warm0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->beat2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Butterscotch Refrigerator Cookies\n", "(167c142a75)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup butterscotch-flavored baking chips'\n", " * '2 3/4 cups all-purpose flour'\n", " * '1 cup Land O Lakes Butter , softened'\n", " * '1/2 cup sugar'\n", " * '1/2 cup firmly packed brown sugar'\n", " * '1 Land O Lakes Egg'\n", " * '1/2 teaspoon baking soda'\n", " * '1/2 cup chopped pecans'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Melt 3-5 minutes butterscotch chips in 1-quart saucepan over low heat , stirring constantly , until melted .\n", " * Place butterscotch mixture in bowl ; add all remaining ingredients except pecans .\n", " * Beat at low speed , scraping bowl often , until well mixed .\n", " * Stir in pecans .\n", " * Divide dough in half .\n", " * Shape each half into 8x1 1/2-inch roll .\n", " * Wrap in plastic food wrap .\n", " * Refrigerate 2 hours until firm .\n", " * Heat oven to 400F .\n", " * Cut rolls into 1/4-inch slices with sharp knife .\n", " * Place 1-inch apart onto ungreased cookie sheets .\n", " * Bake 5-7 minutes or until set .\n", " * Cool 1 minute on cookie sheets ; remove to cooling rack ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "baking soda\n", "\n", "baking soda\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "mix6\n", "\n", "mix\n", "\n", "\n", "\n", "chop0->mix6\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix2->bake1\n", "\n", "\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "melt0->mix6\n", "\n", "\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "place1->mix2\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "refrigerate0->heat0\n", "\n", "\n", "\n", "\n", "\n", "heat0->place1\n", "\n", "\n", "\n", "\n", "\n", "baking chip\n", "\n", "baking chip\n", "\n", "\n", "\n", "baking chip->melt0\n", "\n", "\n", "\n", "\n", "\n", "heat2\n", "\n", "heat\n", "\n", "\n", "\n", "heat2->mix2\n", "\n", "\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "beat1->refrigerate0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "butter->place0\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "bake1->cool1\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "refrigerate1->heat2\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->brown0\n", "\n", "\n", "\n", "\n", "\n", "beat2\n", "\n", "beat\n", "\n", "\n", "\n", "beat2->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "place0->beat2\n", "\n", "\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "pecan->chop0\n", "\n", "\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix6->beat1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Spring Cabbage and Bacon Miso Soup\n", "(38d4c5cc82)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1/6 Spring cabbage'\n", " * '4 slice Bacon'\n", " * '1/2 Onion'\n", " * '1 tsp Dashi stock granules'\n", " * '1 Miso'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Slice the onion thinly .\n", " * Cut up the bacon into 1 cm wide pieces .\n", " * Cut up the cabbage into 1 cm wide pieces .\n", " * Put all the ingredients into a pan and add enough water to cover .\n", " * Simmer until the cabbage is soft .\n", " * Dissolve in some miso .\n", " * Taste and adjust .\n", " * Add the dashi stock granules at the end .\n", " * A delicious miso soup with the umami of the bacon and the sweetness of spring cabbage !" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "miso\n", "\n", "miso\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "miso->mix0\n", "\n", "\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "simmer0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cabbage\n", "\n", "cabbage\n", "\n", "\n", "\n", "cut1\n", "\n", "cut\n", "\n", "\n", "\n", "cabbage->cut1\n", "\n", "\n", "\n", "\n", "\n", "bacon\n", "\n", "bacon\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "bacon->slice0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "onion->slice1\n", "\n", "\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cut0->mix0\n", "\n", "\n", "\n", "\n", "\n", "dashi stock\n", "\n", "dashi stock\n", "\n", "\n", "\n", "slice0->cut0\n", "\n", "\n", "\n", "\n", "\n", "cut1->simmer0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## X-Lazy Early Riser Crock Pot Breakfast\n", "(2046ce1b89)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '16 ounces tator tot potatoes , divided in half'\n", " * '2 tablespoons onions , chopped , divided in half'\n", " * '8 ounces ham , chopped , divided in half'\n", " * '1 12 cups sharp cheddar cheese , divided in half'\n", " * '32 ounces egg substitute'\n", " * '12 teaspoon salt'\n", " * '12 teaspoon pepper'\n", " * '14 teaspoon dried mustard \\( optional \\) or 14 teaspoon thyme \\( optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Line the crock pot with slow cooker liner .\n", " * Set up timer so that it cooks for 6 hours or less on low .\n", " * Layer half of the following ingredients : potatoes , onion , ham , and cheese .\n", " * Do n't let cheese touch sides of crockpot or it will burn .\n", " * Repeat layers .\n", " * Remove seal from Egg Beater container , dump in salt , pepper , and dried mustard \\( optional \\) or try thyme or Italian if you prefer .\n", " * Put cap back on , shake well , pour onto layered mixture , and cover the crock pot .\n", " * Refrigerate until you go to bed -- cold temperature should slow heat a bit .\n", " * Cook 6 hours or less on low .\n", " * If you are awake but not your guests , \\( lol \\) lift lid , wipe off water drops that are on the lid , replace lid , unplug , let set , and it should stay warm for quite awhile ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cheese->mix3\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "cook0->heat1\n", "\n", "\n", "\n", "\n", "\n", "heat7\n", "\n", "heat\n", "\n", "\n", "\n", "cook7\n", "\n", "cook\n", "\n", "\n", "\n", "heat7->cook7\n", "\n", "\n", "\n", "\n", "\n", "pour1\n", "\n", "pour\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "pour1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "heat1->mix7\n", "\n", "\n", "\n", "\n", "\n", "refrigerate3\n", "\n", "refrigerate\n", "\n", "\n", "\n", "pour7\n", "\n", "pour\n", "\n", "\n", "\n", "refrigerate3->pour7\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1->cook0\n", "\n", "\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "heat3->cook1\n", "\n", "\n", "\n", "\n", "\n", "mix3->pour1\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "ham->mix1\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "mix1->chop1\n", "\n", "\n", "\n", "\n", "\n", "chop1->mix3\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->mix1\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "pour7->heat3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "cook1->mix7\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "potato->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix0->refrigerate3\n", "\n", "\n", "\n", "\n", "\n", "mix7->heat7\n", "\n", "\n", "\n", "\n", "\n", "mustard\n", "\n", "mustard\n", "\n", "\n", "\n", "mustard->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Liver Detox\n", "(2134ba1d1e)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '12-1 cup warm water'\n", " * '2 tablespoons lemon juice'\n", " * '1 tablespoon extra virgin olive oil'\n", " * '1 tablespoon blackstrap molasses'\n", " * 'cayenne pepper , to taste'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat water , but do not boil .\n", " * Add lemon juice , olive oil , molasses and a dash of cayenne .\n", " * Drink this mixture first thing in the morning for 10 days continuously ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "water->warm0\n", "\n", "\n", "\n", "\n", "\n", "cayenne pepper\n", "\n", "cayenne pepper\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cayenne pepper->mix3\n", "\n", "\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "lemon juice->mix3\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "heat0->mix3\n", "\n", "\n", "\n", "\n", "\n", "molasses\n", "\n", "molasses\n", "\n", "\n", "\n", "molasses->mix3\n", "\n", "\n", "\n", "\n", "\n", "warm0->heat0\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Cabbage and Pasta Soup\n", "(f2027bb072)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 head cabbage , cut into hunks'\n", " * '1 tablespoon olive oil'\n", " * '5 ounces pasta shells \\( any type small pasta \\)'\n", " * '3 cups chicken stock'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat oil in big stock pot .\n", " * Add cabbage and cook for 2 minutes .\n", " * Add chicken stock .\n", " * Simmer for 30 min .\n", " * With the lid on .\n", " * Add pasta , continue cooking for 15 minutes until pasta is done ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "chicken stock\n", "\n", "chicken stock\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "chicken stock->mix1\n", "\n", "\n", "\n", "\n", "\n", "pasta shell\n", "\n", "pasta shell\n", "\n", "\n", "\n", "pasta shell->cook0\n", "\n", "\n", "\n", "\n", "\n", "cabbage\n", "\n", "cabbage\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cabbage->cut0\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix1\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix1->heat0\n", "\n", "\n", "\n", "\n", "\n", "heat0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chilled Peanut Chicken Noodle Salad\n", "(00e429e0c5)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * 'Kosher salt'\n", " * '1/2 cup smooth peanut butter'\n", " * '1 large boneless , skinless chicken breast \\( about 12 ounces \\) , sliced crosswise 1/4 inch thick'\n", " * '1/4 cup rice vinegar'\n", " * '2 tablespoons soy sauce'\n", " * '2 tablespoons Sriracha , or more as needed'\n", " * '4 scallions , thinly sliced \\( white and green parts \\)'\n", " * '6 ounces thin rice noodles \\( vermicelli \\)'\n", " * '1 romaine heart , thinly sliced \\( about 3 cups \\)'\n", " * '2 Persian cucumbers or 1 regular cucumber , thinly sliced \\( about 2 cups \\)'\n", " * '1 red bell pepper , thinly sliced'\n", " * '1 cup loosely packed roughly chopped fresh cilantro \\( from about 1 medium bunch \\)'\n", " * 'Lime wedges , for serving'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * START THE WATER : Bring a large pot of salted water to a boil .\n", " * POACH THE CHICKEN : Bring 1 1/2 cups water to a simmer in a medium skillet .\n", " * Whisk in the peanut butter , then add the chicken .\n", " * Cook over medium-low heat at a bare simmer until just cooked through , 3 to 5 minutes .\n", " * Use a slotted spoon to transfer the chicken to a plate ; continue to simmer the sauce until thickened and reduced by about half , about 5 minutes .\n", " * Take off the heat and whisk in the vinegar , soy sauce , Sriracha , and scallions .\n", " * Cool slightly .\n", " * COOK THE NOODLES : Add the rice noodles to the boiling water and cook until almost tender , about 3 minutes .\n", " * Drain and rinse under cold water to cool .\n", " * Drain the noodles very well , tossing with tongs to release as much water as possible .\n", " * Snip the noodles with scissors a few times to cut the long strands .\n", " * TOSS THE SALAD : Toss the noodles with the romaine , cucumbers , bell pepper , half of the cilantro , and just enough dressing to coat .\n", " * Season with salt .\n", " * Divide among 4 bowls and top with the chicken .\n", " * Drizzle the remaining dressing over the top and garnish with the remaining cilantro .\n", " * Serve with lime wedges ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "slice3\n", "\n", "slice\n", "\n", "\n", "\n", "mix1->slice3\n", "\n", "\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "slice1->mix0\n", "\n", "\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "whisk0->heat0\n", "\n", "\n", "\n", "\n", "\n", "whisk1\n", "\n", "whisk\n", "\n", "\n", "\n", "whisk1->mix0\n", "\n", "\n", "\n", "\n", "\n", "simmer2\n", "\n", "simmer\n", "\n", "\n", "\n", "simmer2->mix0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "heat1->simmer2\n", "\n", "\n", "\n", "\n", "\n", "poach0\n", "\n", "poach\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "poach0->mix4\n", "\n", "\n", "\n", "\n", "\n", "scallion\n", "\n", "scallion\n", "\n", "\n", "\n", "scallion->slice1\n", "\n", "\n", "\n", "\n", "\n", "soy sauce\n", "\n", "soy sauce\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "soy sauce->simmer0\n", "\n", "\n", "\n", "\n", "\n", "cucumber\n", "\n", "cucumber\n", "\n", "\n", "\n", "cucumber->mix1\n", "\n", "\n", "\n", "\n", "\n", "cook2\n", "\n", "cook\n", "\n", "\n", "\n", "cook2->heat1\n", "\n", "\n", "\n", "\n", "\n", "slice3->mix7\n", "\n", "\n", "\n", "\n", "\n", "whisk2\n", "\n", "whisk\n", "\n", "\n", "\n", "whisk2->mix4\n", "\n", "\n", "\n", "\n", "\n", "cilantro\n", "\n", "cilantro\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "cilantro->chop0\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "cook1->drain0\n", "\n", "\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "rice vinegar\n", "\n", "rice vinegar\n", "\n", "\n", "\n", "rice vinegar->whisk0\n", "\n", "\n", "\n", "\n", "\n", "chicken breast\n", "\n", "chicken breast\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "chicken breast->slice0\n", "\n", "\n", "\n", "\n", "\n", "slice0->poach0\n", "\n", "\n", "\n", "\n", "\n", "drain0->mix7\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat0->mix0\n", "\n", "\n", "\n", "\n", "\n", "rice noodle\n", "\n", "rice noodle\n", "\n", "\n", "\n", "rice noodle->cook1\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "mix0->cool1\n", "\n", "\n", "\n", "\n", "\n", "simmer0->whisk1\n", "\n", "\n", "\n", "\n", "\n", "peanut butter\n", "\n", "peanut butter\n", "\n", "\n", "\n", "peanut butter->whisk2\n", "\n", "\n", "\n", "\n", "\n", "cool1->mix7\n", "\n", "\n", "\n", "\n", "\n", "mix4->cook2\n", "\n", "\n", "\n", "\n", "\n", "red bell pepper\n", "\n", "red bell pepper\n", "\n", "\n", "\n", "red bell pepper->mix1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Veal Chops With Rosemary Butter\n", "(9586268f59)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '14 cup unsalted butter , room temperature'\n", " * '2 12 teaspoons minced fresh rosemary , divided'\n", " * '1 teaspoon chopped fresh thyme , divided'\n", " * '1 pinch salt'\n", " * '4 \\( 12 ounce \\) rib veal chops , each about 1 inch thick'\n", " * '4 tablespoons olive oil , divided'\n", " * '4 inches long fresh rosemary sprigs'\n", " * '1 garlic clove , flattened'\n", " * '3 tablespoons dry white wine'\n", " * '3 tablespoons low sodium chicken broth'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Whisk butter , 1 teaspoon rosemary , 1/4 teaspoon thyme , and pinch of salt in small bowl to blend .\n", " * Wrap rosemary butter in plastic wrap , forming 1 1/2-inch-diameter log .\n", " * Chill at least 2 hours .\n", " * \\( Can be made 1 week ahead .\n", " * Keep refrigerated .\n", " * \\) .\n", " * Arrange chops in single layer in large baking dish .\n", " * Drizzle with 2 tablespoons olive oil .\n", " * Sprinkle with remaining 1 1/2 teaspoons rosemary and 3/4 teaspoon thyme .\n", " * Sprinkle with salt and pepper .\n", " * Rub oil and seasonings into chops .\n", " * \\( Can be prepared 1 day ahead .\n", " * Cover with plastic wrap and chill .\n", " * Let stand at room temperature 1 hour before continuing .\n", " * \\) .\n", " * Heat 2 tablespoons olive oil in heavy large skillet over medium-high heat .\n", " * Add rosemary sprig and garlic .\n", " * Saute until garlic is fragrant but not brown , about 2 minutes .\n", " * Discard rosemary sprig and garlic .\n", " * Increase heat to high .\n", " * Add chops ; cook until chops are browned and meat thermometer inserted horizontally into center reads 130F , about 2 minutes per side .\n", " * Transfer chops to plate .\n", " * Pour off drippings from pan .\n", " * Reduce heat to medium-high .\n", " * Add wine to skillet and cook until reduced to about 2 teaspoons , scraping up browned bits , about 30 seconds .\n", " * Add chicken broth ; cook until reduced to about 2 tablespoons , about 30 seconds .\n", " * Drizzle over chops .\n", " * Cut rosemary butter into 4 slices .\n", " * Place 1 slice atop each chop and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "place5\n", "\n", "place\n", "\n", "\n", "\n", "mix2->place5\n", "\n", "\n", "\n", "\n", "\n", "heat2\n", "\n", "heat\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "heat2->cut0\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "heat3\n", "\n", "heat\n", "\n", "\n", "\n", "bake1->heat3\n", "\n", "\n", "\n", "\n", "\n", "chill2\n", "\n", "chill\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "chill2->mix4\n", "\n", "\n", "\n", "\n", "\n", "chop4\n", "\n", "chop\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "chop4->bake0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "heat0->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "butter->whisk0\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->chill2\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "refrigerate0->chop4\n", "\n", "\n", "\n", "\n", "\n", "cut0->mix2\n", "\n", "\n", "\n", "\n", "\n", "slice4\n", "\n", "slice\n", "\n", "\n", "\n", "place5->slice4\n", "\n", "\n", "\n", "\n", "\n", "saute0\n", "\n", "saute\n", "\n", "\n", "\n", "saute0->mix4\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "whisk0->chill0\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->mix2\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "wine->mix0\n", "\n", "\n", "\n", "\n", "\n", "rib veal\n", "\n", "rib veal\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "rib veal->chop0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "chop6\n", "\n", "chop\n", "\n", "\n", "\n", "refrigerate1->chop6\n", "\n", "\n", "\n", "\n", "\n", "rosemary\n", "\n", "rosemary\n", "\n", "\n", "\n", "mix0->chop1\n", "\n", "\n", "\n", "\n", "\n", "chicken broth\n", "\n", "chicken broth\n", "\n", "\n", "\n", "chicken broth->mix0\n", "\n", "\n", "\n", "\n", "\n", "chill1\n", "\n", "chill\n", "\n", "\n", "\n", "chill1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "heat3->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix4->heat0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->chill1\n", "\n", "\n", "\n", "\n", "\n", "chop6->bake1\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "garlic clove->saute0\n", "\n", "\n", "\n", "\n", "\n", "bake0->heat2\n", "\n", "\n", "\n", "\n", "\n", "chill0->refrigerate0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Olive Garden Insalata\n", "(a71bc6febc)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '8 ounces Paul Newman 's Vinegar and Oil Dressing'\n", " * '1 garlic clove , peeled and minced'\n", " * '12 teaspoon dried basil'\n", " * '12 teaspoon dried oregano'\n", " * '1 tablespoon sugar'\n", " * '1 \\( 16 ounce \\) bagprepared mixed salad greens \\( American Blend Dole Salad \\)'\n", " * '5 slices red onions'\n", " * '6 black olives'\n", " * '4 banana peppers'\n", " * '12 cup crouton'\n", " * '1 small tomatoes , quartered'\n", " * 'freshly grated parmesan cheese \\( optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Put dressing ingredients into a bottle and shake well .\n", " * Refrigerate 24 hours before using .\n", " * Chill one salad bowl in freezer for at least 30 minutes .\n", " * Place bag of salad in bowl .\n", " * Place on top of lettuce the red onion , black olives , banana peppers , tomatoes , and croutons .\n", " * Add some freshly grated Parmesan cheese if you like , and add plenty of Olive Garden Insalada Dressing on top , shaking before using ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "red onion\n", "\n", "red onion\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "red onion->slice0\n", "\n", "\n", "\n", "\n", "\n", "place4\n", "\n", "place\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "garlic clove->peel0\n", "\n", "\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "tomato->mix1\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "banana pepper\n", "\n", "banana pepper\n", "\n", "\n", "\n", "banana pepper->mix1\n", "\n", "\n", "\n", "\n", "\n", "salad green\n", "\n", "salad green\n", "\n", "\n", "\n", "blend0\n", "\n", "blend\n", "\n", "\n", "\n", "salad green->blend0\n", "\n", "\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "blend0->chill0\n", "\n", "\n", "\n", "\n", "\n", "chill0->place4\n", "\n", "\n", "\n", "\n", "\n", "black olive\n", "\n", "black olive\n", "\n", "\n", "\n", "black olive->mix1\n", "\n", "\n", "\n", "\n", "\n", "slice0->mix1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "basil\n", "\n", "basil\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "place5\n", "\n", "place\n", "\n", "\n", "\n", "mix1->place5\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "refrigerate0->mix0\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "peel0->mince0\n", "\n", "\n", "\n", "\n", "\n", "crouton\n", "\n", "crouton\n", "\n", "\n", "\n", "crouton->mix1\n", "\n", "\n", "\n", "\n", "\n", "place5->mix0\n", "\n", "\n", "\n", "\n", "\n", "oil dressing\n", "\n", "oil dressing\n", "\n", "\n", "\n", "oil dressing->refrigerate0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Charmoula Chicken\n", "(a4f595e95f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 tablespoon vegetable oil'\n", " * '8 chicken thighs , skinned'\n", " * '1 onion , chopped'\n", " * '2 garlic , minced'\n", " * '1 teaspoon paprika'\n", " * '12 teaspoon ground cumin'\n", " * 'salt and pepper'\n", " * '1 pinch cinnamon'\n", " * '2 tablespoons all-purpose flour'\n", " * '1 cup chicken stock'\n", " * '2 tablespoons minced fresh coriander or 2 tablespoons parsley'\n", " * '1 tablespoon fresh parsley'\n", " * '2 teaspoons lemon juice'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In large skillet , heat oil over medium-high heat ; brown chicken all over .\n", " * Transfer to plate .\n", " * Drain fat from pan ; fry onion , garlic , paprika , cumin , salt , pepper and cinnamon over medium heat , stirring occasionally , until onion is softened , about 5 minutes .\n", " * Sprinkle flour over onion mixture ; cook , stirring , for 1 minute .\n", " * Pour in stock and bring to boil , scraping up brown bits .\n", " * Return chicken and any juices to skillet ; reduce heat , cover and simmer , turning chicken once , until juices run clear when chicken is pierced , about 20 minutes .\n", " * Add coriander , parsley and lemon juice .\n", " * Make-ahead Option : Before adding the coriander , parsley , and lemon , let cool for 30 minutes ; refrigerate until cold .\n", " * Refrigerate in airtight container for up to 24 hours or freeze for up to 1 month .\n", " * Slow Cooker Charmoula Chicken : Do not remove skin .\n", " * After browning chicken , transfer to slow cooker .\n", " * Continue with recipe , omitting flour and scraping stock mixture into slow cooker .\n", " * Cover and cook on low for 4 hours .\n", " * Skim off any fat .\n", " * Whisk 1/3 cup \\( 75 mL \\) water with 1/4 cup \\( 50 mL \\) all-purpose flour and whisk into slow cooker ; cover and cook on high for about 15 minutes or until thickened .\n", " * Remove skin if desired .\n", " * Stir in coriander , parsley and lemon ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "simmer0->mix4\n", "\n", "\n", "\n", "\n", "\n", "freeze5\n", "\n", "freeze\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "freeze5->cook1\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "pour0->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->simmer0\n", "\n", "\n", "\n", "\n", "\n", "cinnamon\n", "\n", "cinnamon\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "cinnamon->mix5\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mince0->mix5\n", "\n", "\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "garlic->mince0\n", "\n", "\n", "\n", "\n", "\n", "fry0\n", "\n", "fry\n", "\n", "\n", "\n", "fry0->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cook1->mix2\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "onion->chop0\n", "\n", "\n", "\n", "\n", "\n", "fry2\n", "\n", "fry\n", "\n", "\n", "\n", "mix5->fry2\n", "\n", "\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "lemon juice->mix0\n", "\n", "\n", "\n", "\n", "\n", "paprika\n", "\n", "paprika\n", "\n", "\n", "\n", "paprika->mix5\n", "\n", "\n", "\n", "\n", "\n", "freeze4\n", "\n", "freeze\n", "\n", "\n", "\n", "cook8\n", "\n", "cook\n", "\n", "\n", "\n", "freeze4->cook8\n", "\n", "\n", "\n", "\n", "\n", "coriander\n", "\n", "coriander\n", "\n", "\n", "\n", "mince1\n", "\n", "mince\n", "\n", "\n", "\n", "coriander->mince1\n", "\n", "\n", "\n", "\n", "\n", "fry2->mix3\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix4->heat0\n", "\n", "\n", "\n", "\n", "\n", "all-purpose flour\n", "\n", "all-purpose flour\n", "\n", "\n", "\n", "all-purpose flour->mix3\n", "\n", "\n", "\n", "\n", "\n", "chicken\n", "\n", "chicken\n", "\n", "\n", "\n", "chicken->brown0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate7\n", "\n", "refrigerate\n", "\n", "\n", "\n", "refrigerate7->mix2\n", "\n", "\n", "\n", "\n", "\n", "heat0->mix3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix5\n", "\n", "\n", "\n", "\n", "\n", "parsley\n", "\n", "parsley\n", "\n", "\n", "\n", "parsley->mix0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate2\n", "\n", "refrigerate\n", "\n", "\n", "\n", "refrigerate2->freeze5\n", "\n", "\n", "\n", "\n", "\n", "chop0->fry0\n", "\n", "\n", "\n", "\n", "\n", "mix3->refrigerate7\n", "\n", "\n", "\n", "\n", "\n", "mix0->refrigerate2\n", "\n", "\n", "\n", "\n", "\n", "chicken stock\n", "\n", "chicken stock\n", "\n", "\n", "\n", "chicken stock->pour0\n", "\n", "\n", "\n", "\n", "\n", "mix2->freeze4\n", "\n", "\n", "\n", "\n", "\n", "ground cumin\n", "\n", "ground cumin\n", "\n", "\n", "\n", "ground cumin->mix5\n", "\n", "\n", "\n", "\n", "\n", "mince1->mix0\n", "\n", "\n", "\n", "\n", "\n", "vegetable oil\n", "\n", "vegetable oil\n", "\n", "\n", "\n", "vegetable oil->mix4\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Reuben Dip\n", "(39ef758dac)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup Shredded Swiss Cheese'\n", " * '1 cup Thousand Island Dressing'\n", " * '1 packages \\( 8oz \\) cream cheese , softened'\n", " * '2 1/4 oz \\( 1 jar \\) dried beef , finely chopped'\n", " * '1 can \\( 8oz \\) sauerkraut , rinsed , drained & chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix all ingredients in a bowl and microwave on high 4-6 minutes or until cheese is melted and dip is hot .\n", " * Serve with Cheddar sun-dried tomato baguette chips ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "dressing\n", "\n", "dressing\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "beef\n", "\n", "beef\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "beef->chop0\n", "\n", "\n", "\n", "\n", "\n", "swiss cheese\n", "\n", "swiss cheese\n", "\n", "\n", "\n", "sauerkraut\n", "\n", "sauerkraut\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "sauerkraut->chop1\n", "\n", "\n", "\n", "\n", "\n", "rinse0\n", "\n", "rinse\n", "\n", "\n", "\n", "chop1->rinse0\n", "\n", "\n", "\n", "\n", "\n", "rinse0->drain0\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Grilled Tortilla Pizzas\n", "(a762db3bc1)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '8 whole Flour Tortillas'\n", " * '4 cups Mozzarella Cheese , Shredded , Divided'\n", " * '1 cup Marinara Sauce'\n", " * '28 whole Turkey Pepperoni'\n", " * '1/2 cups Sausage , Crumbled'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat grill to medium-low temperature .\n", " * Top 4 tortillas with 1/4 cup of cheese each and top with another tortilla .\n", " * Place on grill for 2 minutes to make crispy .\n", " * Remove from grill , flip with grilled side up and top with sauce , cheese and toppings .\n", " * Return to grill and cook for 2-3 minutes , or until cheese is melted .\n", " * Adapted from Weight Watchers ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "turkey pepperoni\n", "\n", "turkey pepperoni\n", "\n", "\n", "\n", "grill0\n", "\n", "grill\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "grill0->cook0\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cheese->mix0\n", "\n", "\n", "\n", "\n", "\n", "place1\n", "\n", "place\n", "\n", "\n", "\n", "mix0->place1\n", "\n", "\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "sauce->mix1\n", "\n", "\n", "\n", "\n", "\n", "flour tortillas\n", "\n", "flour tortillas\n", "\n", "\n", "\n", "flour tortillas->mix0\n", "\n", "\n", "\n", "\n", "\n", "cook0->mix1\n", "\n", "\n", "\n", "\n", "\n", "place1->grill0\n", "\n", "\n", "\n", "\n", "\n", "sausage\n", "\n", "sausage\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## \" Pumpkin Smoothies \"\n", "(bf3a871439)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 -15oz . can pumpkin pie filling'\n", " * '3 cup whole milk'\n", " * '1 cup vanilla yogurt'\n", " * '1 couple cinnamon graham crackers \\( crushed \\)'\n", " * '2 tbsp brown sugar \\( I added this \\)'\n", " * '1 few dashes of cinnamon'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Place pumpkin pie filling .\n", " * In a container & place in freezer until frozen .\n", " * A few hours .\n", " * Crush graham crackers .\n", " * Add milk , yogurt to a blender .\n", " * Drop frozen pumpkin in blender .\n", " * \\( I broke mine up with a knife \\) Add cinnamon .\n", " * Blend until it is pulverized .\n", " * Add more milk or yogurt to get the consistency you like .\n", " * Pour into indivual glasses .\n", " * Sprinke with your graham crackers .\n", " * Serve immediately .\n", " * ENJOY ... ..." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "blend1\n", "\n", "blend\n", "\n", "\n", "\n", "pour1\n", "\n", "pour\n", "\n", "\n", "\n", "blend1->pour1\n", "\n", "\n", "\n", "\n", "\n", "cinnamon\n", "\n", "cinnamon\n", "\n", "\n", "\n", "break0\n", "\n", "break\n", "\n", "\n", "\n", "cinnamon->break0\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "freeze0\n", "\n", "freeze\n", "\n", "\n", "\n", "place0->freeze0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "break0->mix2\n", "\n", "\n", "\n", "\n", "\n", "freeze0->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix2\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix2->blend1\n", "\n", "\n", "\n", "\n", "\n", "pumpkin pie filling\n", "\n", "pumpkin pie filling\n", "\n", "\n", "\n", "pumpkin pie filling->place0\n", "\n", "\n", "\n", "\n", "\n", "pour1->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->brown0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Three-Apple Applesauce\n", "(aa2296262f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 medium Golden Delicious apples \\( about 14 ounces \\)'\n", " * '2 medium Granny Smith apples \\( about 14 ounces \\)'\n", " * '2 medium Fuji apples \\( about 14 ounces \\)'\n", " * '1/4 cup water'\n", " * '1 tablespoon sugar'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Peel , core and thinly slice all apples .\n", " * Place apples in large microwave-safe bowl .\n", " * Add 1/4 cup water to bowl .\n", " * Cover with plastic wrap and microwave on high 10 minutes .\n", " * Stir apples .\n", " * Continue to microwave , uncovered , until apples are very tender , about 5 minutes longer .\n", " * Using large fork , coarsely mash apples .\n", " * Mix in 1 tablespoon sugar .\n", " * \\( Applesauce can be prepared 2 days ahead .\n", " * Cover and refrigerate . \\)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "sugar->mix1\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "water->mix1\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "mash0\n", "\n", "mash\n", "\n", "\n", "\n", "place0->mash0\n", "\n", "\n", "\n", "\n", "\n", "mash0->mix1\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "slice0->peel0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "peel0->place0\n", "\n", "\n", "\n", "\n", "\n", "mix1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "apple\n", "\n", "apple\n", "\n", "\n", "\n", "apple->slice0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Co-Cola Chicken\n", "(9c39942121)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 whole Cut Up Fryer'\n", " * '1 can \\( 12 Oz . \\) Co-Cola \\( I Use Diet \\)'\n", " * 'Ketchup To Taste'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 400 degrees .\n", " * Spray casserole/baking dish \\( usually I use a 13 1/2 by 8 1/2 \\) with a nonstick spray .\n", " * Rinse pieces of an entire cut-up fryer .\n", " * Place in dish .\n", " * The next step has two variations .\n", " * You can drizzle ketchup over the top of the chicken pieces and then pour the can of Co-Cola OR you can mix ketchup \\( usually 1 to 2 cups , depending on how thick you want the sauce to be \\) and Co-Cola then pour the mixture over the chicken .\n", " * Both ways work well and are delicious .\n", " * I prefer the first because it makes for a nice variation between parts of the chicken .\n", " * Bake for 35 to 45 minutes or until juices run clear and the meat of the thickest piece is no longer pink .\n", " * Serve over white rice ; pour pan juices over top ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "ketchup\n", "\n", "ketchup\n", "\n", "\n", "\n", "fryer\n", "\n", "fryer\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "fryer->cut0\n", "\n", "\n", "\n", "\n", "\n", "rinse0\n", "\n", "rinse\n", "\n", "\n", "\n", "cut0->rinse0\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "rinse0->place0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Breakfast Pitas\n", "(d3cd9504e6)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup cooked ham , cubed'\n", " * '13 cup onion , chopped'\n", " * '13 cup green pepper , chopped'\n", " * '2 tablespoons butter'\n", " * '3 eggs , lightly beaten'\n", " * '12 cup cheddar cheese , shredded'\n", " * '12 teaspoon seasoning salt'\n", " * '14 teaspoon pepper'\n", " * '2 pita breads , halved and warmed \\( 6 inches \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large skillet , saute the ham , onion and green pepper in butter until tender .\n", " * Add eggs ; cook and stir over medium heat until eggs are almost set .\n", " * Add the cheese , seasoned salt and pepper .\n", " * Cook and stir until eggs are completely set .\n", " * Spoon into pita halves ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "cook1->mix4\n", "\n", "\n", "\n", "\n", "\n", "pita bread\n", "\n", "pita bread\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "pita bread->warm0\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "ham->cook0\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "saute1\n", "\n", "saute\n", "\n", "\n", "\n", "mix0->saute1\n", "\n", "\n", "\n", "\n", "\n", "saute1->mix4\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->mix0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "cheese->mix4\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "heat0->cook1\n", "\n", "\n", "\n", "\n", "\n", "cook0->mix0\n", "\n", "\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "beat0->heat0\n", "\n", "\n", "\n", "\n", "\n", "green pepper\n", "\n", "green pepper\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "green pepper->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix1->chop1\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->mix1\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->beat0\n", "\n", "\n", "\n", "\n", "\n", "seasoning salt\n", "\n", "seasoning salt\n", "\n", "\n", "\n", "seasoning salt->mix4\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Mini Cheesecake Recipe\n", "(c11517d554)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 1/2 c. graham cracker crumbs'\n", " * '1/4 c. sugar'\n", " * '1/4 c. butter , melted'\n", " * '3 \\( 8 ounce . \\) pkg . cream cheese , softened'\n", " * '1 \\( 14 ounce . \\) can Eagle Brand Sweetened Condensed Lowfat milk'\n", " * '3 Large eggs'\n", " * '2 teaspoon vanilla'\n", " * '1 \\( 21 ounce . \\) filling \\( cherry or possibly blueberry \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 300 degrees .\n", " * Combine crumbs , sugar and butter .\n", " * Press equal portions into bottom of lightly greased or possibly paper c. lined muffin c..\n", " * In large mixer bowl , beat cheese till fluffy .\n", " * Gradually beat in sweetened condensed lowfat milk till smooth .\n", " * Add in Large eggs and vanilla ; mix well .\n", " * Spoon equal amounts of mix \\( about 3 Tbsp . \\)\n", " * into prepared c.. Bake 15 to 20 min or possibly till set - cold - chill - top with filling .\n", " * Chill .\n", " * Chocolate - heat 1 c. semi-sweet chocolate chips - add in to batter .\n", " * If greased muffin c. are used , cold in pan ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "melt0->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "vanilla->mix0\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "cream cheese->mix1\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "chill7\n", "\n", "chill\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "beat1->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->chill7\n", "\n", "\n", "\n", "\n", "\n", "filling\n", "\n", "filling\n", "\n", "\n", "\n", "filling->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix1->beat1\n", "\n", "\n", "\n", "\n", "\n", "sweeten0\n", "\n", "sweeten\n", "\n", "\n", "\n", "sweeten0->mix1\n", "\n", "\n", "\n", "\n", "\n", "graham cracker crumb\n", "\n", "graham cracker crumb\n", "\n", "\n", "\n", "graham cracker crumb->mix0\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->sweeten0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chocolate Lasagna\n", "(44a2f3f658)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3 \\( 3.4 ounce \\) packages fat-free instant white chocolate pudding mix'\n", " * '3 cups skim milk'\n", " * '2 \\( 8 ounce \\) tubs fat-free whipped topping \\( such as Cool Whip \\) , divided'\n", " * '1 \\( 14.4 ounce \\) box chocolate graham crackers'\n", " * '1 \\( 1.5 ounce \\) milk chocolate candy bar \\( such as Hershey 's \\) , cut into pieces'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Whisk white chocolate pudding and skim milk together in a bowl until thickened and smooth ; fold in 1 tub whipped topping .\n", " * Line a 9x13-inch casserole dish with 1 layer of graham crackers .\n", " * Spread 1/2 the pudding mixture over graham cracker layer .\n", " * Repeat layering with graham crackers and remaining pudding mixture , ending with a layer of graham crackers .\n", " * Spread 1 tub whipped topping over top graham cracker layer ; sprinkle with candy bar pieces .\n", " * Chill in refrigerator until set , 2 to 4 hours ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "whip1\n", "\n", "whip\n", "\n", "\n", "\n", "mix2->whip1\n", "\n", "\n", "\n", "\n", "\n", "chocolate graham cracker\n", "\n", "chocolate graham cracker\n", "\n", "\n", "\n", "chocolate graham cracker->mix2\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "whip1->mix1\n", "\n", "\n", "\n", "\n", "\n", "whisk0\n", "\n", "whisk\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "whisk0->spread0\n", "\n", "\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "chocolate pudding\n", "\n", "chocolate pudding\n", "\n", "\n", "\n", "chocolate pudding->whisk0\n", "\n", "\n", "\n", "\n", "\n", "top\n", "\n", "top\n", "\n", "\n", "\n", "top->cool0\n", "\n", "\n", "\n", "\n", "\n", "milk chocolate candy\n", "\n", "milk chocolate candy\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "milk chocolate candy->cut0\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "cut0->mix2\n", "\n", "\n", "\n", "\n", "\n", "spread0->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix1->chill0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Fruitcake Cookies\n", "(a934b17b2e)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '16 ounces pineapple chopped'\n", " * '8 ounces cherries red'\n", " * '2 cups raisins , seedless golden'\n", " * '4 cups pecans chopped'\n", " * '3 1/2 cups flour , all-purpose'\n", " * '1/2 cup butter softened'\n", " * '1 cup brown sugar firmly'\n", " * '4 large eggs separated'\n", " * '1 tablespoon baking soda'\n", " * '3 tablespoons milk'\n", " * '1/4 cup brandy'\n", " * '1 teaspoon cinnamon'\n", " * '1 teaspoon nutmeg'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Combine first 5 ingredients ; dredge with 1 cup flour , stirring well .\n", " * Set aside .\n", " * Cream butter ; gradually add sugar , beating well at medium speed of an electric mixer .\n", " * Add egg yolks , mixing well .\n", " * Dissolve soda in milk ; add to creamed mixture .\n", " * Add brandy , spices , and remaining 2 1/2 cups flour , mixing well .\n", " * Beat egg whites \\( at room temperature \\) until stiff ; fold into batter .\n", " * Fold in fruit mixture .\n", " * Drop dough by rounded teaspoonfuls onto greased cookie sheets .\n", " * Bake at 325F \\( 160C \\) for 12 to 15 minutes ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cinnamon\n", "\n", "cinnamon\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "pecan->chop1\n", "\n", "\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "flour->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "nutmeg\n", "\n", "nutmeg\n", "\n", "\n", "\n", "raisin\n", "\n", "raisin\n", "\n", "\n", "\n", "brandy\n", "\n", "brandy\n", "\n", "\n", "\n", "brandy->mix3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "soda\n", "\n", "soda\n", "\n", "\n", "\n", "soda->mix3\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix0\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix3\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "bake6\n", "\n", "bake\n", "\n", "\n", "\n", "beat0->bake6\n", "\n", "\n", "\n", "\n", "\n", "bake4\n", "\n", "bake\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->brown0\n", "\n", "\n", "\n", "\n", "\n", "mix0->beat0\n", "\n", "\n", "\n", "\n", "\n", "cherry red\n", "\n", "cherry red\n", "\n", "\n", "\n", "mix3->bake4\n", "\n", "\n", "\n", "\n", "\n", "pineapple\n", "\n", "pineapple\n", "\n", "\n", "\n", "pineapple->chop0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Fettuccini With Gorgonzola Sauce\n", "(990a8e4666)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups milk'\n", " * '14 cup dry white wine'\n", " * '14 cup flour'\n", " * '3 ounces gorgonzola , crumbled'\n", " * '2 tablespoons butter'\n", " * '14 teaspoon pepper'\n", " * '12 ounces fettuccine pasta , cooked , warm'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Whisk milk , wine , and flour in medium saucepan until smooth ; heat to boiling .\n", " * Whisk until thickened , 1-2 minutes .\n", " * Reduce heat to low , stir in cheese , butter and pepper ; cook 1-2 minutes .\n", " * Serve over fettuccini ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "thicken1\n", "\n", "thicken\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "thicken1->mix3\n", "\n", "\n", "\n", "\n", "\n", "gorgonzola\n", "\n", "gorgonzola\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "flour->mix1\n", "\n", "\n", "\n", "\n", "\n", "pasta\n", "\n", "pasta\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "pasta->cook0\n", "\n", "\n", "\n", "\n", "\n", "cook0->warm0\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "wine->mix1\n", "\n", "\n", "\n", "\n", "\n", "whisk2\n", "\n", "whisk\n", "\n", "\n", "\n", "mix1->whisk2\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix1\n", "\n", "\n", "\n", "\n", "\n", "whisk2->thicken1\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "pepper->mix3\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## QBC Snow White Cocktail Drink\n", "(077135323a)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups Vanilla Ice Cream'\n", " * '1 cup Full Cream Milk'\n", " * '1 Tablespoon Lemon Juice'\n", " * '1/2 Tablespoons Cointreau'\n", " * '1/2 Tablespoons Bailey 's'\n", " * '6 cubes Ice'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Put all the ingredients in the blender and blend well .\n", " * You can serve it in any glass you want .\n", " * We garnished it with a piece of parsley leaf and a strawberry .\n", " * If you have a better way to make it look pretty , just do it ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "vanilla ice cream\n", "\n", "vanilla ice cream\n", "\n", "\n", "\n", "ice\n", "\n", "ice\n", "\n", "\n", "\n", "cointreau\n", "\n", "cointreau\n", "\n", "\n", "\n", "cream milk\n", "\n", "cream milk\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "bailey\n", "\n", "bailey\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Carrot Cupcakes with White Chocolate Cream Cheese Icing\n", "(42ac445285)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * 'Cream Cheese Icing :'\n", " * '2 ounces white chocolate'\n", " * '1 \\( 8 ounce \\) package cream cheese , softened'\n", " * '1/2 cup unsalted butter , softened'\n", " * '1 teaspoon vanilla extract'\n", " * '1/2 teaspoon orange extract'\n", " * '4 cups confectioners ' sugar'\n", " * '2 tablespoons heavy cream'\n", " * 'Carrot Cake :'\n", " * '2 eggs , lightly beaten'\n", " * '1 1/8 cups white sugar'\n", " * '1/3 cup brown sugar'\n", " * '1/2 cup vegetable oil'\n", " * '1 teaspoon vanilla extract'\n", " * '2 cups shredded carrots'\n", " * '1/2 cup crushed pineapple'\n", " * '1 1/2 cups all-purpose flour'\n", " * '1 1/4 teaspoons baking soda'\n", " * '1/2 teaspoon salt'\n", " * '1 1/2 teaspoons ground cinnamon'\n", " * '1/2 teaspoon ground nutmeg'\n", " * '1/4 teaspoon ground ginger'\n", " * '1 cup chopped walnuts'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat oven to 350 degrees F \\( 175 degrees C \\) .\n", " * Lightly grease 12 muffin cups .\n", " * In small saucepan , melt white chocolate over low heat .\n", " * Stir until smooth , and allow to cool to room temperature .\n", " * In a bowl , beat together the cream cheese and butter until smooth .\n", " * Mix in white chocolate , 1 teaspoon vanilla , and orange extract .\n", " * Gradually beat in the confectioners ' sugar until the mixture is fluffy .\n", " * Mix in heavy cream .\n", " * Beat together the eggs , white sugar , and brown sugar in a bowl , and mix in the oil and vanilla .\n", " * Fold in carrots and pineapple .\n", " * In a separate bowl , mix the flour , baking soda , salt , cinnamon , nutmeg , and ginger .\n", " * Mix flour mixture into the carrot mixture until evenly moist .\n", " * Fold in 1/2 cup walnuts .\n", " * Transfer to the prepared muffin cups .\n", " * Bake 25 minutes in the preheated oven , or until a toothpick inserted in the center of a muffin comes out clean .\n", " * Cool completely on wire racks before topping with the icing and sprinkling with remaining walnuts ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix1\n", "\n", "\n", "\n", "\n", "\n", "vegetable oil\n", "\n", "vegetable oil\n", "\n", "\n", "\n", "mix8\n", "\n", "mix\n", "\n", "\n", "\n", "vegetable oil->mix8\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "cool1->mix8\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix8\n", "\n", "\n", "\n", "\n", "\n", "carrot\n", "\n", "carrot\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "mix9\n", "\n", "mix\n", "\n", "\n", "\n", "flour->mix9\n", "\n", "\n", "\n", "\n", "\n", "chocolate\n", "\n", "chocolate\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "chocolate->melt0\n", "\n", "\n", "\n", "\n", "\n", "beat2\n", "\n", "beat\n", "\n", "\n", "\n", "beat2->mix8\n", "\n", "\n", "\n", "\n", "\n", "ground nutmeg\n", "\n", "ground nutmeg\n", "\n", "\n", "\n", "ground nutmeg->mix1\n", "\n", "\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "melt0->mix0\n", "\n", "\n", "\n", "\n", "\n", "carrot cake\n", "\n", "carrot cake\n", "\n", "\n", "\n", "carrot cake->mix9\n", "\n", "\n", "\n", "\n", "\n", "walnut\n", "\n", "walnut\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "walnut->chop0\n", "\n", "\n", "\n", "\n", "\n", "orange extract\n", "\n", "orange extract\n", "\n", "\n", "\n", "mix0->cool1\n", "\n", "\n", "\n", "\n", "\n", "pineapple\n", "\n", "pineapple\n", "\n", "\n", "\n", "pineapple->mix9\n", "\n", "\n", "\n", "\n", "\n", "cream cheese icing\n", "\n", "cream cheese icing\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "cream cheese icing->beat1\n", "\n", "\n", "\n", "\n", "\n", "soda\n", "\n", "soda\n", "\n", "\n", "\n", "beat1->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "vanilla extract->mix8\n", "\n", "\n", "\n", "\n", "\n", "ground ginger\n", "\n", "ground ginger\n", "\n", "\n", "\n", "ground ginger->mix1\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->beat2\n", "\n", "\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "beat0->brown0\n", "\n", "\n", "\n", "\n", "\n", "ground cinnamon\n", "\n", "ground cinnamon\n", "\n", "\n", "\n", "ground cinnamon->mix1\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix1->bake1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->beat0\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake1->mix9\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "heavy cream\n", "\n", "heavy cream\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Arctic Char Gravlax With Apple-Pecan Salad\n", "(d3d464abeb)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3 cups kosher salt'\n", " * '1 14 cups packed light brown sugar'\n", " * '12 cup chopped fresh dill'\n", " * '3 tablespoons juniper berries , crushed'\n", " * '2 bay leaves'\n", " * '2 tablespoons black peppercorns'\n", " * '1 lb arctic char , fillet skin on'\n", " * '1 cup pecan halves \\( 4 ounces \\)'\n", " * '2 tablespoons champagne or 2 tablespoons white wine vinegar'\n", " * '1 tablespoon honey'\n", " * '1 tablespoon Dijon mustard'\n", " * '14 cup grapeseed oil'\n", " * '1 small garlic clove , minced'\n", " * '1 12 teaspoons finely chopped thyme'\n", " * 'sea salt & freshly ground black pepper'\n", " * '2 granny smith apples , cut into matchsticks'\n", " * '1 large Belgian endive , halved , cored and thinly sliced crosswise'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * GRAVLAX : In a bowl , mix the salt with the brown sugar , dill and juniper berries .\n", " * In a spice grinder , grind the bay leaves with the peppercorns .\n", " * Add to the salt cure and mix well .\n", " * Spread half of the salt in a deep plate .\n", " * Add the fish fillet , skin side down , and cover with the remaining salt .\n", " * Cover with plastic and refrigerate for 24 hours .\n", " * Remove the fish from the salt and soak it in ice water in the refrigerator for 3 hours .\n", " * Pat dry .\n", " * Transfer the fish , skin side down , to a rack set on a baking sheet .\n", " * Refrigerate , uncovered , overnight .\n", " * \\( wrap tightly in plastic wrap and can be kept in refrigerator up to a week \\) .\n", " * SALAD : Preheat the oven to 350 .\n", " * Spread the pecans in a pie plate and toast for 7 minutes , or until fragrant .\n", " * Let cool .\n", " * In a large bowl , whisk the vinegar with the honey and mustard .\n", " * Add the oil and whisk until blended .\n", " * Whisk in the garlic and thyme and season with sea salt and pepper .\n", " * Add the apples and endive and toss , then add the pecans and toss again .\n", " * Using a thin , sharp knife , thinly slice the gravlax on the diagonal off the skin .\n", " * Mound the salad on plates , surround it with gravlax and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "leaf\n", "\n", "leaf\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "leaf->mix4\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "black pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "spread1\n", "\n", "spread\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "spread1->mix2\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "mix3->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "honey->mix1\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mince0->mix0\n", "\n", "\n", "\n", "\n", "\n", "apple\n", "\n", "apple\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "apple->cut0\n", "\n", "\n", "\n", "\n", "\n", "mix8\n", "\n", "mix\n", "\n", "\n", "\n", "grind1\n", "\n", "grind\n", "\n", "\n", "\n", "mix4->grind1\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "thyme->chop1\n", "\n", "\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "mix5->brown0\n", "\n", "\n", "\n", "\n", "\n", "char\n", "\n", "char\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "slice0->mix7\n", "\n", "\n", "\n", "\n", "\n", "cool1\n", "\n", "cool\n", "\n", "\n", "\n", "mix2->cool1\n", "\n", "\n", "\n", "\n", "\n", "black peppercorn\n", "\n", "black peppercorn\n", "\n", "\n", "\n", "black peppercorn->mix4\n", "\n", "\n", "\n", "\n", "\n", "white wine vinegar\n", "\n", "white wine vinegar\n", "\n", "\n", "\n", "white wine vinegar->mix1\n", "\n", "\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "spread0->mix3\n", "\n", "\n", "\n", "\n", "\n", "whisk3\n", "\n", "whisk\n", "\n", "\n", "\n", "mix1->whisk3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->spread0\n", "\n", "\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "pecan->spread1\n", "\n", "\n", "\n", "\n", "\n", "grapeseed oil\n", "\n", "grapeseed oil\n", "\n", "\n", "\n", "grapeseed oil->mix8\n", "\n", "\n", "\n", "\n", "\n", "cut0->mix7\n", "\n", "\n", "\n", "\n", "\n", "whisk3->mix8\n", "\n", "\n", "\n", "\n", "\n", "cool1->mix7\n", "\n", "\n", "\n", "\n", "\n", "dill\n", "\n", "dill\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "dill->chop0\n", "\n", "\n", "\n", "\n", "\n", "brown0->mix3\n", "\n", "\n", "\n", "\n", "\n", "whisk2\n", "\n", "whisk\n", "\n", "\n", "\n", "mix0->whisk2\n", "\n", "\n", "\n", "\n", "\n", "whisk2->mix7\n", "\n", "\n", "\n", "\n", "\n", "endive\n", "\n", "endive\n", "\n", "\n", "\n", "endive->slice0\n", "\n", "\n", "\n", "\n", "\n", "grind1->mix3\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix5\n", "\n", "\n", "\n", "\n", "\n", "juniper berry\n", "\n", "juniper berry\n", "\n", "\n", "\n", "juniper berry->mix5\n", "\n", "\n", "\n", "\n", "\n", "dijon mustard\n", "\n", "dijon mustard\n", "\n", "\n", "\n", "dijon mustard->mix1\n", "\n", "\n", "\n", "\n", "\n", "chop1->mix0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1->mix2\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Cinnamon Oatmeal Pancakes with Honey Apple Compote\n", "(635ee3e5ba)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 1/2 cups apple cider'\n", " * '1 tablespoon honey'\n", " * '2 Golden Delicious apples , peeled and cut into 1/2-inch chunks'\n", " * '3/4 cup whole wheat flour'\n", " * '3/4 cup quick-cooking oats'\n", " * '2 tablespoons sugar'\n", " * '1 teaspoon baking powder'\n", " * '1/2 teaspoon ground cinnamon'\n", " * '1/4 teaspoon fine salt'\n", " * '1 cup lowfat \\( 1-percent \\) milk'\n", " * '3 tablespoons unsalted butter , melted and cooled'\n", " * '1 large egg'\n", " * '1 teaspoon canola oil'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Bring the cider to a boil in a small saucepan over high heat ; lower the heat and simmer until reduced by half , 15 to 18 minutes .\n", " * Stir in the honey and apples , reduce the heat to low and simmer until thick enough to coat the back of a spoon , about 30 minutes .\n", " * Meanwhile , combine the flour , oats , sugar , baking powder , cinnamon and salt in a blender until the oats are finely ground .\n", " * Add the milk , butter and egg and blend until smooth , scraping down the sides of the blender occasionally .\n", " * Heat a nonstick skillet over medium-low heat .\n", " * With a paper towel , wipe the oil on the surface of the heated skillet .\n", " * Ladle 1 tablespoon of the batter onto the skillet to make a pancake .\n", " * Make 4 to 5 more pancakes , taking care to keep them evenly spaced apart .\n", " * Cook until bubbles break the surface of the pancakes and the undersides are golden brown , about 2 minutes .\n", " * Flip with a spatula and cook for 1 minute more .\n", " * Serve immediately with the apple compote , or transfer to a platter and cover loosely with foil to keep warm .\n", " * Repeat with the remaining batter , wiping the griddle with the oiled paper towel as needed ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cook4\n", "\n", "cook\n", "\n", "\n", "\n", "mix0->cook4\n", "\n", "\n", "\n", "\n", "\n", "wheat flour\n", "\n", "wheat flour\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "wheat flour->mix4\n", "\n", "\n", "\n", "\n", "\n", "heat5\n", "\n", "heat\n", "\n", "\n", "\n", "heat5->mix0\n", "\n", "\n", "\n", "\n", "\n", "apple\n", "\n", "apple\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "apple->cut0\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "heat0->cook1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix4\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix4\n", "\n", "\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "cut0->peel0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix2->bake1\n", "\n", "\n", "\n", "\n", "\n", "lowfat\n", "\n", "lowfat\n", "\n", "\n", "\n", "fine salt\n", "\n", "fine salt\n", "\n", "\n", "\n", "fine salt->mix2\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "bake1->mix1\n", "\n", "\n", "\n", "\n", "\n", "cook1->mix1\n", "\n", "\n", "\n", "\n", "\n", "wipe0\n", "\n", "wipe\n", "\n", "\n", "\n", "wipe0->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "oat\n", "\n", "oat\n", "\n", "\n", "\n", "oat->mix4\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "cool0->mix4\n", "\n", "\n", "\n", "\n", "\n", "baking\n", "\n", "baking\n", "\n", "\n", "\n", "mix4->heat0\n", "\n", "\n", "\n", "\n", "\n", "apple cider\n", "\n", "apple cider\n", "\n", "\n", "\n", "apple cider->mix4\n", "\n", "\n", "\n", "\n", "\n", "canola oil\n", "\n", "canola oil\n", "\n", "\n", "\n", "canola oil->wipe0\n", "\n", "\n", "\n", "\n", "\n", "mix1->heat5\n", "\n", "\n", "\n", "\n", "\n", "ground cinnamon\n", "\n", "ground cinnamon\n", "\n", "\n", "\n", "ground cinnamon->mix2\n", "\n", "\n", "\n", "\n", "\n", "melt0->cool0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Creamy Deviled Eggs Recipe Weight Watchers Cheese\n", "(d0e150b221)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 oz . Weight Watchers Reduced Fat Cream Cheese Spread , softened'\n", " * '2 tbsp . Fat-Free Plain Greek Yogurt'\n", " * '1/2 tsp . Dijon mustard'\n", " * '3/4 tsp . dried dill weed'\n", " * '1/4 tsp . celery salt'\n", " * '1/4 plus 1/8 tsp . onion powder'\n", " * '1/8 rounded tsp . white pepper'\n", " * 'Dash of Turmeric , Optional'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Remove egg yolks from eggs , discarding all but 4 halves ; place reserved egg yolk halves in mini food processor .\n", " * Add cream cheese , mustard , 1/2 tsp .\n", " * dill weed , celery salt , onion powder , pepper , and turmeric for color , if desired ; process just until smooth , adjust seasonings .\n", " * Spoon 1-3/4 teaspoon filling into each egg white half .\n", " * Sprinkle with dill weed or paprika , if desired ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "dijon mustard\n", "\n", "dijon mustard\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "dijon mustard->mix3\n", "\n", "\n", "\n", "\n", "\n", "celery salt\n", "\n", "celery salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "celery salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "fat cream cheese\n", "\n", "fat cream cheese\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "fat cream cheese->spread0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->mix0\n", "\n", "\n", "\n", "\n", "\n", "dill\n", "\n", "dill\n", "\n", "\n", "\n", "dill->mix0\n", "\n", "\n", "\n", "\n", "\n", "spread0->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chocolate Nut Brownies\n", "(f8e5447a74)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 oz . unsweetened chocolate'\n", " * 'No-melt unsweetened chocolate'\n", " * '1/2 cup shortening'\n", " * '2 tbsp . liquid sweetener'\n", " * '2 tsp . vanilla'\n", " * '2 eggs , beaten'\n", " * '1 cup all-purpose flour , sifted'\n", " * '1/2 tsp . baking soda'\n", " * '1/4 cup nuts , chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Melt shortening and chocolate over low heat .\n", " * Remove from heat .\n", " * Add liquid sweetener , vanilla and beaten eggs .\n", " * Stir until well blended .\n", " * Add flour and baking soda ; mix well .\n", " * Stir in nuts .\n", " * Pour into greased \\( can spray with Pam \\) 8-inch cake pan .\n", " * Bake at 325F for 20 minutes ; cool .\n", " * Cut into 30 squares ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "cool6\n", "\n", "cool\n", "\n", "\n", "\n", "mix4->cool6\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "bake0->cool0\n", "\n", "\n", "\n", "\n", "\n", "blend0\n", "\n", "blend\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "blend0->cool3\n", "\n", "\n", "\n", "\n", "\n", "nut\n", "\n", "nut\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "nut->chop0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "mix2->blend0\n", "\n", "\n", "\n", "\n", "\n", "bake4\n", "\n", "bake\n", "\n", "\n", "\n", "cool3->bake4\n", "\n", "\n", "\n", "\n", "\n", "soda\n", "\n", "soda\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "soda->mix0\n", "\n", "\n", "\n", "\n", "\n", "chocolate\n", "\n", "chocolate\n", "\n", "\n", "\n", "mix9\n", "\n", "mix\n", "\n", "\n", "\n", "chocolate->mix9\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "blend3\n", "\n", "blend\n", "\n", "\n", "\n", "heat0->blend3\n", "\n", "\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "melt1\n", "\n", "melt\n", "\n", "\n", "\n", "mix9->melt1\n", "\n", "\n", "\n", "\n", "\n", "melt1->heat0\n", "\n", "\n", "\n", "\n", "\n", "cut2\n", "\n", "cut\n", "\n", "\n", "\n", "bake6\n", "\n", "bake\n", "\n", "\n", "\n", "bake6->mix4\n", "\n", "\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "cut3\n", "\n", "cut\n", "\n", "\n", "\n", "mix5->cut3\n", "\n", "\n", "\n", "\n", "\n", "cool0->mix5\n", "\n", "\n", "\n", "\n", "\n", "bake4->mix5\n", "\n", "\n", "\n", "\n", "\n", "cut3->mix4\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "vanilla->mix2\n", "\n", "\n", "\n", "\n", "\n", "blend3->bake6\n", "\n", "\n", "\n", "\n", "\n", "mix0->bake0\n", "\n", "\n", "\n", "\n", "\n", "shortening\n", "\n", "shortening\n", "\n", "\n", "\n", "shortening->mix9\n", "\n", "\n", "\n", "\n", "\n", "cool6->cut2\n", "\n", "\n", "\n", "\n", "\n", "liquid sweetener\n", "\n", "liquid sweetener\n", "\n", "\n", "\n", "liquid sweetener->mix2\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Thai Chicken& Sesame Noodles\n", "(b016514dce)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup salad dressing oriental'\n", " * '1 pound chicken breast halves , boneless , skinless'\n", " * '2 tablespoons peanut butter'\n", " * '1 tablespoon honey'\n", " * '1/2 teaspoon red pepper flakes'\n", " * '8 ounces spaghetti cooked'\n", " * '3/4 cup carrots grated'\n", " * '1/2 cup scallions , spring or green onions'\n", " * '1/4 cup cilantro chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Pour 13 cup of the dressing over chicken in medium bowl ; toss to coat .\n", " * Cover .\n", " * Refrigerate 1 hour to marinate .\n", " * Mix remaining dressing , peanut butter , honey and pepper ; set aside .\n", " * Cook chicken and marinade in large skillet on medium-high heat until cooked through .\n", " * Mix spaghetti , chicken , carrot , onions and cilantro in large bowl .\n", " * Add peanut butter mixture ; toss to coat .\n", " * Serve immediately ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cilantro\n", "\n", "cilantro\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "cilantro->chop0\n", "\n", "\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "cook1->mix7\n", "\n", "\n", "\n", "\n", "\n", "red pepper\n", "\n", "red pepper\n", "\n", "\n", "\n", "red pepper->mix7\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "marinate1\n", "\n", "marinate\n", "\n", "\n", "\n", "refrigerate1->marinate1\n", "\n", "\n", "\n", "\n", "\n", "marinate0\n", "\n", "marinate\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "marinate0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->cook1\n", "\n", "\n", "\n", "\n", "\n", "peanut butter\n", "\n", "peanut butter\n", "\n", "\n", "\n", "peanut butter->mix7\n", "\n", "\n", "\n", "\n", "\n", "marinate1->mix7\n", "\n", "\n", "\n", "\n", "\n", "salad dress\n", "\n", "salad dress\n", "\n", "\n", "\n", "salad dress->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "pour0->refrigerate0\n", "\n", "\n", "\n", "\n", "\n", "green onion\n", "\n", "green onion\n", "\n", "\n", "\n", "green onion->mix7\n", "\n", "\n", "\n", "\n", "\n", "chicken breast half\n", "\n", "chicken breast half\n", "\n", "\n", "\n", "chicken breast half->pour0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0->marinate0\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix7\n", "\n", "\n", "\n", "\n", "\n", "grate0\n", "\n", "grate\n", "\n", "\n", "\n", "grate0->mix7\n", "\n", "\n", "\n", "\n", "\n", "carrot\n", "\n", "carrot\n", "\n", "\n", "\n", "carrot->grate0\n", "\n", "\n", "\n", "\n", "\n", "spaghetti\n", "\n", "spaghetti\n", "\n", "\n", "\n", "spaghetti->mix0\n", "\n", "\n", "\n", "\n", "\n", "honey\n", "\n", "honey\n", "\n", "\n", "\n", "honey->mix7\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Angel Food Cake - Homemade\n", "(4a7935861f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup cake flour'\n", " * '34 cup sugar'\n", " * '2 tablespoons sugar'\n", " * '12 large egg whites , MUST be room temperature'\n", " * '1 12 teaspoons cream of tartar'\n", " * '14 teaspoon salt'\n", " * '34 cup sugar'\n", " * '1 12 teaspoons vanilla'\n", " * '12 teaspoon almond extract'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Note : For those not use to making angel food cakes Do n't get any yoke in the whites , if you do throw out and start over .\n", " * I always separate the egg in a glass first .\n", " * Then if no yoke pour into measuring container .\n", " * DO NOT GREASE PAN .\n", " * I always use a two piece angelfood cake pan .\n", " * Heat oven to 375 .\n", " * Sift the cake flour and 3/4 cup + 2 Tbsp sugar ; set aside .\n", " * Combine the extracts in a small bowl ; set aside .\n", " * Beat egg whites , cream of tartar and salt until it forms peaks .\n", " * Add the other 3/4 cup of sugar slowly , then beat on high until stiff peaks form .\n", " * If you have a mixing guard for your mixer bowl now would be a good time to attach it .\n", " * Beating on LOW , add flour mixture and extracts slowly .\n", " * Make sure you fold in the sides and bottom of your mixing bowl .\n", " * \\( You can fold in flour mixture by hand but this way is faster . \\)\n", " * Spoon into an angel food cake pan .\n", " * Move a knife through batter to remove air pockets .\n", " * Bake 30-35 minutes or until top springs back when touched lightly with finger .\n", " * Invert pan onto a tin funnel to cool completely .\n", " * To remove the cake from your pan run a knife around the rim of the cake pan just to get the 'crust ' away from the pan .\n", " * Then firmly spank the sides of your pan .\n", " * You could use a knife but this sometime tears the sides of the cake .\n", " * Invert onto your serve plate then take the knife to the now top which was the bottom of your pan and gently cut cake away from the pan insert .\n", " * No need to cut around the center tube as you just give the cake a gently but firm tap or downward shake on to the plate .\n", " * Or you can pick up plate while holding onto the pan insert with your thumbs and firmly strike the bottom of the plate onto a folded towel .\n", " * \\( Just give it a slam down on the towel/table \\) ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "beat1\n", "\n", "beat\n", "\n", "\n", "\n", "beat1->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "almond extract\n", "\n", "almond extract\n", "\n", "\n", "\n", "almond extract->mix0\n", "\n", "\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "pour0->heat1\n", "\n", "\n", "\n", "\n", "\n", "pour1\n", "\n", "pour\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "pour1->heat0\n", "\n", "\n", "\n", "\n", "\n", "cool3\n", "\n", "cool\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "cool3->cut0\n", "\n", "\n", "\n", "\n", "\n", "cake flour\n", "\n", "cake flour\n", "\n", "\n", "\n", "cake flour->pour1\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->pour0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "cut0->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "mix1->beat1\n", "\n", "\n", "\n", "\n", "\n", "heat0->cool3\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "mix0->cool0\n", "\n", "\n", "\n", "\n", "\n", "cool0->mix3\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "cream->mix1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "heat1->mix1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Kentucky Bourbon Sweet Potatoes\n", "(78f4839899)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 large sweet potatoes , peeled and sliced'\n", " * '1 cup sugar'\n", " * '12 cup butter'\n", " * '12 cup Bourbon'\n", " * '12 teaspoon vanilla'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Arrange sweet potatoes in an oblong baking dish .\n", " * Combine sugar , butter , bourbon , and vanilla in a large saucepan and heat to a boil .\n", " * As soon as the sauce comes to a boil , pour it over the sweet potatoes .\n", " * Bake at 350 degrees for 30-40 minutes or until sweet potatoes are soft ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "boil0->pour0\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "potato->slice0\n", "\n", "\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "peel0->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "vanilla->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->boil0\n", "\n", "\n", "\n", "\n", "\n", "pour0->bake0\n", "\n", "\n", "\n", "\n", "\n", "slice0->peel0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Peach-Gingersnap Crisp\n", "(e3c57c2706)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '4 tablespoons unsalted butter'\n", " * '6 large peaches \\( 2 1/2 pounds \\) , peeled and cut into 1/2-inch wedges'\n", " * '1/4 cup plus 2 tablespoons light brown sugar'\n", " * '2 tablespoons fresh lemon juice'\n", " * '1/4 cup plus 2 tablespoons all-purpose flour'\n", " * 'Pinch of salt'\n", " * '1 cup coarsely crushed gingersnaps'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat the oven to 400 .\n", " * In a skillet , melt 2 tablespoons of the butter .\n", " * Add the peaches and cook over high heat , stirring occasionally , until just softened , 8 minutes .\n", " * Add 1/4 cup of the brown sugar and the lemon juice and cook until the peaches are lightly caramelized , about 5 minutes ; scrape into a 1 1/2-quart baking dish .\n", " * Meanwhile , in a food processor , pulse the flour and salt with the remaining 2 tablespoons each of butter and brown sugar until the mixture resembles coarse meal .\n", " * Add the crushed gingersnaps and pulse 2 or 3 times , just to incorporate the cookies .\n", " * Press the topping into clumps and sprinkle over the peaches .\n", " * Bake in the center of the oven for about 15 minutes , until the top is browned and the filling is bubbling .\n", " * Let cool slightly , then serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "peach\n", "\n", "peach\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "peach->cut0\n", "\n", "\n", "\n", "\n", "\n", "peel0\n", "\n", "peel\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "peel0->cook0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "cook0->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "gingersnap\n", "\n", "gingersnap\n", "\n", "\n", "\n", "gingersnap->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "lemon juice->brown0\n", "\n", "\n", "\n", "\n", "\n", "all-purpose flour\n", "\n", "all-purpose flour\n", "\n", "\n", "\n", "all-purpose flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "cut0->peel0\n", "\n", "\n", "\n", "\n", "\n", "melt0->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->cool0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Vegan Aloo Baingan (Potato and Eggplant)\n", "(5a3de054b4)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * 'oil \\( for deep frying \\)'\n", " * '2 medium potatoes , cut into 1/2 inch cubes'\n", " * '1 medium eggplant , cut into 1/2 inch cubes'\n", " * '1 teaspoon ginger , minced into a paste'\n", " * '1 green chili pepper , chopped'\n", " * '1 tablespoon coriander powder'\n", " * '12 teaspoon turmeric powder'\n", " * '12 teaspoon paprika'\n", " * '2 tablespoons water'\n", " * '1 tablespoon cooking oil'\n", " * '1 teaspoon cumin seed'\n", " * '4 medium tomatoes , chopped'\n", " * '1 teaspoon salt'\n", " * '2 tablespoons cilantro , chopped'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Heat the oil in a deep fry pan over medium-high heat .\n", " * There should be at least 1 1/2 inches of oil in the pan .\n", " * Make sure it is quite hot by dropping in a potato piece .\n", " * If the potato begins to sizzle immediately then the oil is ready .\n", " * If you start frying too soon the vegetables will absorb the oil and become greasy and unpleasant .\n", " * Fry the potatoes until cooked through , turning several times - about 4 minutes .\n", " * Remove them with a slotted spoon and drain on a paper towel lined platter .\n", " * In the same manner , fry the eggplant in batches until it is all cooked and draining .\n", " * In a small bowl mix the ginger , chili , coriander powder , turmeric powder , paprika and water to make a paste .\n", " * Heat the tablespoon of water in a large fry pan .\n", " * Test the heat by throwing in one cumin seed .\n", " * If the seed crack and begins to sizzle right away , the oil is ready .\n", " * Add the cumin seeds and ginger paste mixture and stir fry until you see the oil beginning to rise to the top of the paste .\n", " * Add in the chopped tomatoes and cook until they begin to reduce .\n", " * Add the salt .\n", " * Return the eggplant and potatoes to the pan , reduce the heat to low and simmer for 3 or 4 minutes .\n", " * Sprinkle chopped cilantro over all and serve ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cut0->mix2\n", "\n", "\n", "\n", "\n", "\n", "coriander\n", "\n", "coriander\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "coriander->mix7\n", "\n", "\n", "\n", "\n", "\n", "chop1\n", "\n", "chop\n", "\n", "\n", "\n", "chop1->mix7\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "mix3->cut0\n", "\n", "\n", "\n", "\n", "\n", "green chili pepper\n", "\n", "green chili pepper\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "green chili pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "eggplant\n", "\n", "eggplant\n", "\n", "\n", "\n", "eggplant->mix3\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "potato->mix3\n", "\n", "\n", "\n", "\n", "\n", "cilantro\n", "\n", "cilantro\n", "\n", "\n", "\n", "drain0\n", "\n", "drain\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "drain0->mix1\n", "\n", "\n", "\n", "\n", "\n", "ginger\n", "\n", "ginger\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "ginger->mince0\n", "\n", "\n", "\n", "\n", "\n", "cooking oil\n", "\n", "cooking oil\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "crack0\n", "\n", "crack\n", "\n", "\n", "\n", "heat0->crack0\n", "\n", "\n", "\n", "\n", "\n", "cumin seed\n", "\n", "cumin seed\n", "\n", "\n", "\n", "cumin seed->mix1\n", "\n", "\n", "\n", "\n", "\n", "fry2\n", "\n", "fry\n", "\n", "\n", "\n", "fry2->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "mix1->heat1\n", "\n", "\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "tomato->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->chop1\n", "\n", "\n", "\n", "\n", "\n", "mix2->fry2\n", "\n", "\n", "\n", "\n", "\n", "heat1->mix7\n", "\n", "\n", "\n", "\n", "\n", "mince0->mix7\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix7\n", "\n", "\n", "\n", "\n", "\n", "oil\n", "\n", "oil\n", "\n", "\n", "\n", "oil->heat0\n", "\n", "\n", "\n", "\n", "\n", "crack0->mix2\n", "\n", "\n", "\n", "\n", "\n", "paprika\n", "\n", "paprika\n", "\n", "\n", "\n", "paprika->mix7\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "water->drain0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Ham & Pear Panini With Oven Baked Fries\n", "(74f00da20a)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '4 medium yukon gold potatoes , cut into fries \\( 1/4-1/2-inch thick \\)'\n", " * '2 12 teaspoons salt'\n", " * 'fresh ground pepper \\( to taste \\)'\n", " * '2 tablespoons olive oil \\( plus more for brushing \\)'\n", " * '8 slices country bread , each 1/2-inch thick'\n", " * '8 ham slices \\( thinly sliced \\)'\n", " * '1 pear , cored and cut into 1/4-inch slices'\n", " * '4 ounces sharp cheddar cheese , thinly sliced'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat panini press .\n", " * Preheat oven to 500F .\n", " * On non-stick baking sheet , stir together potatoes , salt , pepper and oil .\n", " * Bake for 30 minutes , flipping after 15 minutes .\n", " * Brush one side of each bread slice with oil .\n", " * Lay slices , oiled side down , on clean work surface .\n", " * Place ham , pear and cheese on 4 slices .\n", " * Top with remaining pieces of bread , oiled side up .\n", " * Cook in panini maker for 3-5 minutes , ensuring that cheese is melted .\n", " * Serve with fries ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "mix6\n", "\n", "mix\n", "\n", "\n", "\n", "cheese->mix6\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "brush0\n", "\n", "brush\n", "\n", "\n", "\n", "slice0->brush0\n", "\n", "\n", "\n", "\n", "\n", "country bread\n", "\n", "country bread\n", "\n", "\n", "\n", "country bread->slice0\n", "\n", "\n", "\n", "\n", "\n", "slice3\n", "\n", "slice\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "slice3->place0\n", "\n", "\n", "\n", "\n", "\n", "fry6\n", "\n", "fry\n", "\n", "\n", "\n", "fry2\n", "\n", "fry\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "mix2->fry6\n", "\n", "\n", "\n", "\n", "\n", "cut1\n", "\n", "cut\n", "\n", "\n", "\n", "cut1->mix6\n", "\n", "\n", "\n", "\n", "\n", "potato\n", "\n", "potato\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "potato->cut0\n", "\n", "\n", "\n", "\n", "\n", "ground pepper\n", "\n", "ground pepper\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "ground pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "place0->fry2\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "fry1\n", "\n", "fry\n", "\n", "\n", "\n", "bake1->fry1\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "brush0->mix2\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "ham->mix6\n", "\n", "\n", "\n", "\n", "\n", "slice4\n", "\n", "slice\n", "\n", "\n", "\n", "slice4->bake1\n", "\n", "\n", "\n", "\n", "\n", "mix6->slice3\n", "\n", "\n", "\n", "\n", "\n", "fry1->mix2\n", "\n", "\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "olive oil->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->slice4\n", "\n", "\n", "\n", "\n", "\n", "pear\n", "\n", "pear\n", "\n", "\n", "\n", "pear->cut1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Roast Chicken-Bare Minimum.\n", "(83b6989117)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 2 -3 lb \\) farm raised whole chickens'\n", " * 'kosher salt & freshly ground black pepper'\n", " * '2 teaspoons minced thyme \\( optional \\)'\n", " * 'unsalted butter , for serving'\n", " * 'Dijon mustard , for serving \\( also optional \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Preheat the oven to 450F\n", " * Rinse the chicken and dry it inside and out very well .\n", " * The idea is to create very dry heat and prevent steam .\n", " * \\( Strange , I know \\) .\n", " * Salt and pepper the cavity lightly , then truss the bird .\n", " * Scatter about 1 tablespoon salt over the skin of the bird , as evenly as you can .\n", " * Season with pepper .\n", " * Do n't add any liquid or anything .\n", " * Place the chicken in a saute pan or roasting pan and in the oven .\n", " * Roast it until it 's done , 50 to 60 minutes .\n", " * Remove it from the oven and add the thyme , if using , to the pan .\n", " * Baste the chicken with the juices and thyme and let it rest for 15 minutes .\n", " * Remove the twine .\n", " * Carve into individual portions .\n", " * The cookbook says to serve with the mustard and butter for `` slathering '' on the bird , but I found this a little excessive and left it out .\n", " * Anyway , it was still delicious ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "carve0\n", "\n", "carve\n", "\n", "\n", "\n", "mix1->carve0\n", "\n", "\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "mince0->mix3\n", "\n", "\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "place0->mix3\n", "\n", "\n", "\n", "\n", "\n", "baste1\n", "\n", "baste\n", "\n", "\n", "\n", "mix3->baste1\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "dijon mustard\n", "\n", "dijon mustard\n", "\n", "\n", "\n", "dijon mustard->mix0\n", "\n", "\n", "\n", "\n", "\n", "thyme\n", "\n", "thyme\n", "\n", "\n", "\n", "thyme->mince0\n", "\n", "\n", "\n", "\n", "\n", "baste1->mix1\n", "\n", "\n", "\n", "\n", "\n", "rinse0\n", "\n", "rinse\n", "\n", "\n", "\n", "rinse0->place0\n", "\n", "\n", "\n", "\n", "\n", "salt black pepper\n", "\n", "salt black pepper\n", "\n", "\n", "\n", "salt black pepper->mix1\n", "\n", "\n", "\n", "\n", "\n", "chicken\n", "\n", "chicken\n", "\n", "\n", "\n", "chicken->rinse0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## No-Churn Biscoff Ice Cream\n", "(ff5d3642f1)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '6 Tablespoons Biscoff Spread'\n", " * '2 Tablespoons Powdered Sugar'\n", " * '14 ounces , fluid Sweetened , Condensed Milk'\n", " * '2 teaspoons Pure Vanilla Extract'\n", " * '1 Tablespoon Bourbon \\( optional \\)'\n", " * '2 cups Cold Heavy Cream'\n", " * '1 cup Broken Biscoff Cookies , Plus Additional For Topping'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Line a dinner plate with plastic wrap .\n", " * Mix Biscoff spread and powdered sugar in a small mixing bowl until well combined .\n", " * Pinch off small pieces \\( no more than a teaspoon \\) of the Biscoff mixture and drop them onto the lined dinner plate .\n", " * Freeze .\n", " * \\( These can be made in advance and stored in the freezer \\( well-wrapped \\) for up to 1 month .\n", " * Chill beaters and a large glass or stainless steel mixing bowl in the refrigerator for at least 1 hour .\n", " * In a large bowl , stir together sweetened condensed milk , vanilla extract , and bourbon .\n", " * Set aside .\n", " * In the chilled bowl , whip heavy cream with an electric mixer on high speed until stiff peaks form , about 3 minutes .\n", " * With a rubber spatula , gently fold about 1/4 of the whipped cream into the sweetened condensed milk mixture until blended .\n", " * Fold in the remaining whipped cream and mix until combined .\n", " * Add the 1 cup of Biscoff cookies and the frozen Biscoff patties and stir into the cream mixture until well distributed .\n", " * Spread the mixture into a 4 1/2-inch by 8 1/2-inch loaf pan .\n", " * If desired , sprinkle additional broken Biscoff cookies on top of the cream mixture .\n", " * Cover tightly with plastic wrap and freeze until firm , 6 hours to overnight ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "freeze2\n", "\n", "freeze\n", "\n", "\n", "\n", "spread0->freeze2\n", "\n", "\n", "\n", "\n", "\n", "fluid\n", "\n", "fluid\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->spread0\n", "\n", "\n", "\n", "\n", "\n", "freeze1\n", "\n", "freeze\n", "\n", "\n", "\n", "broken\n", "\n", "broken\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "broken->mix1\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "whip0\n", "\n", "whip\n", "\n", "\n", "\n", "cream->whip0\n", "\n", "\n", "\n", "\n", "\n", "sweeten0\n", "\n", "sweeten\n", "\n", "\n", "\n", "freeze3\n", "\n", "freeze\n", "\n", "\n", "\n", "sweeten0->freeze3\n", "\n", "\n", "\n", "\n", "\n", "vanilla extract\n", "\n", "vanilla extract\n", "\n", "\n", "\n", "vanilla extract->sweeten0\n", "\n", "\n", "\n", "\n", "\n", "mix1->freeze1\n", "\n", "\n", "\n", "\n", "\n", "whip0->mix1\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Leftover Roast Turkey Pho\n", "(20ab1c7f8c)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 leftover turkey carcass , including any leg bones and reserved turkey parts \\( such as the neck , wings , etc . \\) , plus 1 pound leftover turkey meat \\( about 4 cups \\) , shredded into large bite-size pieces'\n", " * '3 large yellow onions , halved'\n", " * 'One 6-inch piece fresh ginger root , halved lengthwise'\n", " * '1 head garlic , halved crosswise'\n", " * '3 tablespoons vegetable oil'\n", " * 'Kosher salt'\n", " * '4 star anise pods'\n", " * '3 tablespoons whole black peppercorns'\n", " * '2 cinnamon sticks'\n", " * '12 cups low-sodium chicken broth'\n", " * '1/4 to 1/3 cup fish sauce'\n", " * '1 pound flat rice noodles'\n", " * '4 cups fresh bean sprouts'\n", " * '1 large bunch Thai basil'\n", " * '2 jalapeno peppers , thinly sliced'\n", " * '1 large red onion , halved and thinly sliced'\n", " * 'Hoisin sauce and/or sriracha \\( Asian chile sauce \\) , for serving'\n", " * 'Lime wedges , for serving'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * For the broth : Position a rack in the upper third of the oven and preheat to 450 degrees F. Toss the turkey bones and parts , onions , ginger and garlic with the vegetable oil in a large bowl .\n", " * Lightly sprinkle with salt and transfer to a rimmed baking sheet , spreading everything out into a somewhat even layer \\( it is okay if some items slightly overlap \\) .\n", " * Roast turning the bones and vegetables halfway through until the vegetables are slightly charred , about 30 minutes .\n", " * Meanwhile , add the star anise pods , peppercorns and cinnamon sticks to a large pot .\n", " * Set over medium heat and toast until very fragrant , shaking the pot occasionally , about 5 minutes .\n", " * Turn off the heat and add the chicken broth , fish sauce , according to taste , and 8 cups of water .\n", " * Add the roasted turkey bones and vegetables to the pot , scraping any browned bits off of the baking sheet and adding them in as well .\n", " * Bring to a boil over high heat , then reduce the heat to medium-low and gently simmer for 1 hour .\n", " * Remove from the heat and strain the broth through a fine-mesh sieve and into another large pot .\n", " * \\( The broth can be made to this point up to 2 days in advance ; let cool , then refrigerate in a covered container . \\)\n", " * Stir the shredded turkey meat into the hot broth .\n", " * For the soup : Cook the noodles according to the package instructions .\n", " * Divide the noodles among 6 bowls then top with the broth and shredded meat .\n", " * Serve with the bean sprouts , Thai basil , jalapenos , red onion , hoisin sauce , sriracha and a lime wedge on the side so that guests can top their pho as they like ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "mix5\n", "\n", "mix\n", "\n", "\n", "\n", "simmer0->mix5\n", "\n", "\n", "\n", "\n", "\n", "red onion\n", "\n", "red onion\n", "\n", "\n", "\n", "slice1\n", "\n", "slice\n", "\n", "\n", "\n", "red onion->slice1\n", "\n", "\n", "\n", "\n", "\n", "turkey meat\n", "\n", "turkey meat\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "turkey meat->mix7\n", "\n", "\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "lime->mix5\n", "\n", "\n", "\n", "\n", "\n", "rice noodle\n", "\n", "rice noodle\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "rice noodle->cook0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "pepper->slice0\n", "\n", "\n", "\n", "\n", "\n", "cinnamon\n", "\n", "cinnamon\n", "\n", "\n", "\n", "cinnamon->mix7\n", "\n", "\n", "\n", "\n", "\n", "cook0->mix5\n", "\n", "\n", "\n", "\n", "\n", "black peppercorn\n", "\n", "black peppercorn\n", "\n", "\n", "\n", "black peppercorn->mix7\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix7\n", "\n", "\n", "\n", "\n", "\n", "boil6\n", "\n", "boil\n", "\n", "\n", "\n", "boil6->simmer0\n", "\n", "\n", "\n", "\n", "\n", "chicken broth\n", "\n", "chicken broth\n", "\n", "\n", "\n", "chicken broth->mix7\n", "\n", "\n", "\n", "\n", "\n", "basil\n", "\n", "basil\n", "\n", "\n", "\n", "basil->mix5\n", "\n", "\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "onion->mix7\n", "\n", "\n", "\n", "\n", "\n", "bean sprout\n", "\n", "bean sprout\n", "\n", "\n", "\n", "bean sprout->mix5\n", "\n", "\n", "\n", "\n", "\n", "anise\n", "\n", "anise\n", "\n", "\n", "\n", "anise->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat2\n", "\n", "heat\n", "\n", "\n", "\n", "mix7->heat2\n", "\n", "\n", "\n", "\n", "\n", "asian chile sauce\n", "\n", "asian chile sauce\n", "\n", "\n", "\n", "fish sauce\n", "\n", "fish sauce\n", "\n", "\n", "\n", "fish sauce->mix7\n", "\n", "\n", "\n", "\n", "\n", "heat2->boil6\n", "\n", "\n", "\n", "\n", "\n", "vegetable oil\n", "\n", "vegetable oil\n", "\n", "\n", "\n", "vegetable oil->mix7\n", "\n", "\n", "\n", "\n", "\n", "ginger\n", "\n", "ginger\n", "\n", "\n", "\n", "ginger->mix7\n", "\n", "\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "garlic->mix7\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Strawberry Shortcake\n", "(519e7b7463)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1000 g bread flour'\n", " * '70 g baking powder'\n", " * '250 g shortening'\n", " * '220 g sugar'\n", " * '10 g salt'\n", " * '60 g eggs'\n", " * '700 ml milk'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * sift flour and baking powder .\n", " * Rub shortening through flour .\n", " * Dissolve salt and sugar in milk and eggs .\n", " * Add liquid ingredients till dough is formed .\n", " * Roll out , cut and bake at 450F until golden .\n", " * Cool and cut in half .\n", " * Whip cream and add sugar and vanilla to taste .\n", " * Make a strawberry puree and spread it onto the biscuit halves .\n", " * Pipe the whipped cream onto biscuits and layer with sliced strawberries ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "cool2\n", "\n", "cool\n", "\n", "\n", "\n", "mix0->cool2\n", "\n", "\n", "\n", "\n", "\n", "cut2\n", "\n", "cut\n", "\n", "\n", "\n", "cool2->cut2\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "shortening\n", "\n", "shortening\n", "\n", "\n", "\n", "shortening->mix0\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix0\n", "\n", "\n", "\n", "\n", "\n", "bread flour\n", "\n", "bread flour\n", "\n", "\n", "\n", "bread flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Seared Salmon on Baby Spinach\n", "(362a1c152e)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 \\( 5 ounce \\) salmon fillets , skin removed'\n", " * '2 tablespoons butter , divided'\n", " * '3 large shallots , sliced , divided'\n", " * '1 12 tablespoons chopped fresh tarragon , divided'\n", " * '3 ounces baby spinach leaves \\( 1/2 bag \\)'\n", " * '13 cup dry white wine'\n", " * '14 cup whipping cream'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Sprinkle salt and pepper on salmon .\n", " * Melt 1 T butter in medium skillet over medium-high heat .\n", " * \\( If you use a large skillet , you 'll need to use more butter .\n", " * For a better finished result , medium is preferred . \\)\n", " * Add salmon ; saute ' until just opaque in the center , about four minutes per side if thick .\n", " * Transfer salmon to a plate .\n", " * Melt 1/2 T butter in same skillet .\n", " * Add 1/2 the shallots and half the tarragon ; saute ' 30 seconds .\n", " * Increase the heat to high ; add half the spinach and toss 30 seconds .\n", " * Add remaining spinach and toss until wilted .\n", " * Divide the spinach between two plates .\n", " * Melt remaining 1/2 T butter in same skillet over medium-high heat .\n", " * Add remaining shallots and tarragon ; saute ' 30 seconds .\n", " * Add wine first and then cream and boil until the sauce is thick enough to coat a spoon , about 3 minutes \\( or less if using larger skillet \\) .\n", " * Season with salt and pepper .\n", " * Return salmon to skillet ; simmer 1 minute .\n", " * Arrange salmon with sauce atop spinach .\n", " * Serves two ; can be doubled ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "tarragon\n", "\n", "tarragon\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "tarragon->chop0\n", "\n", "\n", "\n", "\n", "\n", "shallot\n", "\n", "shallot\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "shallot->slice0\n", "\n", "\n", "\n", "\n", "\n", "mix4\n", "\n", "mix\n", "\n", "\n", "\n", "slice0->mix4\n", "\n", "\n", "\n", "\n", "\n", "chop0->mix4\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "cream->mix4\n", "\n", "\n", "\n", "\n", "\n", "salmon fillet\n", "\n", "salmon fillet\n", "\n", "\n", "\n", "salmon fillet->mix4\n", "\n", "\n", "\n", "\n", "\n", "wine\n", "\n", "wine\n", "\n", "\n", "\n", "wine->mix4\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "melt0->mix4\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "heat0->mix4\n", "\n", "\n", "\n", "\n", "\n", "spinach leave\n", "\n", "spinach leave\n", "\n", "\n", "\n", "spinach leave->heat0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Blueberry Wheat Muffins Recipe\n", "(0595299508)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3/4 c. all-purpose flour'\n", " * '3/4 c. whole-wheat flour'\n", " * '1 tbsp . baking pwdr'\n", " * '1/2 teaspoon salt'\n", " * '1 1/2 c. unsweetened blueberries \\( fresh or possibly frzn \\)'\n", " * '1 egg'\n", " * '1/2 c. lowfat milk'\n", " * '1/2 c. butter , melted'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In large bowl , mix flours , sugar , baking pwdr and salt .\n", " * Add in blueberries ; gently toss to coat .\n", " * In small bowl , beat egg with fork , beat in lowfat milk and butter .\n", " * Add in to flour mix , stirring just sufficient to blend .\n", " * Fill greased pans or possibly paper c. 2/3 full .\n", " * Bake in preheated 400 degree oven till toothpick inserted in center comes out clean \\( 15-35 min for muffins , 30-35 min for 9 inch square coffee cake \\) .\n", " * Yield : 12 regular size muffins , 36 miniature size .\n", " * 181 calories per regular size muffin ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "blueberry\n", "\n", "blueberry\n", "\n", "\n", "\n", "blueberry->mix0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "salt->bake0\n", "\n", "\n", "\n", "\n", "\n", "beat2\n", "\n", "beat\n", "\n", "\n", "\n", "beat2->mix3\n", "\n", "\n", "\n", "\n", "\n", "melt0->mix0\n", "\n", "\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "egg->mix0\n", "\n", "\n", "\n", "\n", "\n", "flour\n", "\n", "flour\n", "\n", "\n", "\n", "flour->mix0\n", "\n", "\n", "\n", "\n", "\n", "mix0->beat2\n", "\n", "\n", "\n", "\n", "\n", "bake0->mix3\n", "\n", "\n", "\n", "\n", "\n", "whole-wheat flour\n", "\n", "whole-wheat flour\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Caprese Salad\n", "(78bc4826af)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups balsamic vinegar'\n", " * '3 ripe tomatoes'\n", " * '12 ounces fresh mozzarella , thickly sliced'\n", " * 'Large bunch fresh basil leaves'\n", " * 'Olive oil , for drizzling'\n", " * 'Large pinch kosher salt'\n", " * 'Large pinch freshly ground black pepper'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Measure the balsamic vinegar and pour into a saucepan .\n", " * Bring it to a gentle boil over a low heat .\n", " * Cook it until the balsamic vinegar has reduced to a nice thick glaze \\( but still pourable \\) , about 15 minutes .\n", " * Oh and one other thing , your house will stink .\n", " * But it 's a good kind of stink , it 's a vinegary stink .\n", " * Allow the reduction to cool to room temperature before you serve it .\n", " * When you are ready to assemble the salad , cut the tomatoes into thick slices .\n", " * Arrange them on a platter , alternating them with the mozzarella slices .\n", " * Tuck the whole basil leaves in between the tomato and cheese slices .\n", " * Drizzle on the gorgeous , almost black balsamic reduction .\n", " * Then drizzle olive oil in a thin stream over the top .\n", " * Finally , sprinkle on salt and pepper .\n", " * You need this in your life .\n", " * Make it today my friends ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "olive oil\n", "\n", "olive oil\n", "\n", "\n", "\n", "tomato\n", "\n", "tomato\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "tomato->cut0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "basil leaf\n", "\n", "basil leaf\n", "\n", "\n", "\n", "basil leaf->mix0\n", "\n", "\n", "\n", "\n", "\n", "slice0\n", "\n", "slice\n", "\n", "\n", "\n", "cut0->mix0\n", "\n", "\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "boil0->heat0\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "heat0->cook0\n", "\n", "\n", "\n", "\n", "\n", "vinegar\n", "\n", "vinegar\n", "\n", "\n", "\n", "vinegar->boil0\n", "\n", "\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "mozzarella\n", "\n", "mozzarella\n", "\n", "\n", "\n", "mozzarella->slice0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Venison Marinade\n", "(47c49d4d74)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '12 cup water'\n", " * '13 cup soy sauce'\n", " * '14 cup cooking oil'\n", " * '3 tablespoons lemon pepper seasoning'\n", " * '2 tablespoons lemon juice'\n", " * '2 garlic cloves , minced'\n", " * '6 pork chops , fat removed'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix marinade ingredients well and cover chops or steaks .\n", " * Allow to marinate for at least 45 minutes .\n", " * \\( I always marinate mine overnight .\n", " * \\) .\n", " * Cook on a greased grill over medium heat for about 25 minutes total time .\n", " * Turn and baste while cooking .\n", " * \\*Note : I find there 's definitely a difference in the quality of lemon pepper seasonings out there , depending on brand .\n", " * If the first ingredient in the seasoning blend is salt , decrease the amount used to 2 tablespoons ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "lemon pepper season\n", "\n", "lemon pepper season\n", "\n", "\n", "\n", "cooking oil\n", "\n", "cooking oil\n", "\n", "\n", "\n", "pork\n", "\n", "pork\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "pork->chop0\n", "\n", "\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "soy sauce\n", "\n", "soy sauce\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Easy Ham and Cheese Stromboli\n", "(19f532d485)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 13 7/8 ounce \\) canpillsbury prepared pizza crust'\n", " * '1 -2 tablespoon honey mustard'\n", " * '12 lb deli ham'\n", " * '1 cup swiss cheese , grated'\n", " * '1 cup broccoli , steamed and chopped \\( fresh or frozen \\)'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Spray oil on a cookie sheet and roll out the pie crust on it .\n", " * Roll and stretch the pizza crust to approximately 16 '' x 12 '' .\n", " * Spread mustard over all of the pizza crust .\n", " * Layer ham , cheese and broccoli all along one long edge of the crust .\n", " * Starting with the ham edge , roll tightly .\n", " * Finish with seam side down .\n", " * Make small slits diagonally across the top of crust every 2-3 '' .\n", " * Bake 20 minutes at 350F ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "grate0\n", "\n", "grate\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "grate0->mix0\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "steam0\n", "\n", "steam\n", "\n", "\n", "\n", "chop0->steam0\n", "\n", "\n", "\n", "\n", "\n", "swiss cheese\n", "\n", "swiss cheese\n", "\n", "\n", "\n", "swiss cheese->grate0\n", "\n", "\n", "\n", "\n", "\n", "crust\n", "\n", "crust\n", "\n", "\n", "\n", "crust->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake3\n", "\n", "bake\n", "\n", "\n", "\n", "mix0->bake3\n", "\n", "\n", "\n", "\n", "\n", "ham\n", "\n", "ham\n", "\n", "\n", "\n", "ham->mix0\n", "\n", "\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "spread0->mix0\n", "\n", "\n", "\n", "\n", "\n", "honey mustard\n", "\n", "honey mustard\n", "\n", "\n", "\n", "honey mustard->spread0\n", "\n", "\n", "\n", "\n", "\n", "steam0->mix0\n", "\n", "\n", "\n", "\n", "\n", "broccoli\n", "\n", "broccoli\n", "\n", "\n", "\n", "broccoli->chop0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Bloody Carioca\n", "(2d5ca4d406)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '8 to 10 ice cubes'\n", " * '1/4 cup \\( 2 ounces \\) cachaca'\n", " * '1/2 cup \\( 4 ounces \\) tomato juice'\n", " * '1 tablespoon \\( 1/2 ounce \\) passion fruit juice'\n", " * '1 tablespoon \\( 1/2 ounce \\) lemon juice'\n", " * '1/2 teaspoon lime juice'\n", " * '1/8 teaspoon freshly ground black pepper'\n", " * '1/8 teaspoon ground celery salt'\n", " * '1/8 teaspoon ground nutmeg'\n", " * '1/8 teaspoon sea salt'\n", " * '1/4 teaspoon hot sauce , such as Tabasco'\n", " * '1/4 teaspoon Worcestershire sauce'\n", " * '1 stick cucumber \\( about 7 inches long and 1/4 inch thick \\)'\n", " * '2 green olives'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In cocktail shaker , stir together ice , cachaca , tomato juice , passion fruit juice , lemon juice , lime juice , pepper , celery salt , nutmeg , and salt .\n", " * Add hot sauce and Worcestershire sauces , then stir for five seconds .\n", " * Pour into highball glass .\n", " * Thread olives on toothpick , then add olives and cucumber stick to drink and serve immediately ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "ground celery salt\n", "\n", "ground celery salt\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "ground celery salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "hot sauce\n", "\n", "hot sauce\n", "\n", "\n", "\n", "hot sauce->mix3\n", "\n", "\n", "\n", "\n", "\n", "green olive\n", "\n", "green olive\n", "\n", "\n", "\n", "mix7\n", "\n", "mix\n", "\n", "\n", "\n", "green olive->mix7\n", "\n", "\n", "\n", "\n", "\n", "ice\n", "\n", "ice\n", "\n", "\n", "\n", "ice->mix3\n", "\n", "\n", "\n", "\n", "\n", "pour4\n", "\n", "pour\n", "\n", "\n", "\n", "pour4->mix7\n", "\n", "\n", "\n", "\n", "\n", "cucumber\n", "\n", "cucumber\n", "\n", "\n", "\n", "cucumber->mix7\n", "\n", "\n", "\n", "\n", "\n", "lime juice\n", "\n", "lime juice\n", "\n", "\n", "\n", "cachaca\n", "\n", "cachaca\n", "\n", "\n", "\n", "cachaca->mix3\n", "\n", "\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n", "mix3->pour4\n", "\n", "\n", "\n", "\n", "\n", "tomato juice\n", "\n", "tomato juice\n", "\n", "\n", "\n", "tomato juice->mix3\n", "\n", "\n", "\n", "\n", "\n", "fruit juice\n", "\n", "fruit juice\n", "\n", "\n", "\n", "sauce\n", "\n", "sauce\n", "\n", "\n", "\n", "ground nutmeg\n", "\n", "ground nutmeg\n", "\n", "\n", "\n", "ground nutmeg->mix3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "black pepper\n", "\n", "black pepper\n", "\n", "\n", "\n", "black pepper->mix3\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Eggs Baked in Corned Beef Hash\n", "(4ec7823877)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 \\( 9 1/2 ounce \\) can corn beef hash \\( or homemade \\)'\n", " * '6 eggs'\n", " * '6 tablespoons milk'\n", " * 'salt'\n", " * 'pepper'\n", " * '6 tablespoons butter'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * spread hash in lightly greased electric fry pan/ or oven proof pan .\n", " * make 6 deep wells in hash .\n", " * dot with butter .\n", " * break an egg in each well .\n", " * season with salt and pepper , cover each egg with 1 tablespoon of milk .\n", " * cover and bake at 225 15-20 minute .\n", " * or until set .\n", " * serve from pan , keep warm ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "egg\n", "\n", "egg\n", "\n", "\n", "\n", "break0\n", "\n", "break\n", "\n", "\n", "\n", "egg->break0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix0\n", "\n", "\n", "\n", "\n", "\n", "warm0\n", "\n", "warm\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "milk->mix0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "bake1\n", "\n", "bake\n", "\n", "\n", "\n", "mix0->bake1\n", "\n", "\n", "\n", "\n", "\n", "break0->mix0\n", "\n", "\n", "\n", "\n", "\n", "corn beef\n", "\n", "corn beef\n", "\n", "\n", "\n", "bake1->warm0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Granola Snack Mix Recipe\n", "(e5c061017d)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 c. oats , old fashioned'\n", " * '1 c. coconut'\n", " * '1/2 c. wheat germ'\n", " * '1 1/2 c. pecans or possibly walnuts'\n", " * '1 teaspoon salt'\n", " * '1 can sweetened condensed lowfat milk'\n", " * '1/4 c. vegetable oil'\n", " * '1 c. raisins'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix all ingredients together , except raisins .\n", " * Spread on cookie sheet .\n", " * Bake 1 hour at 300 degrees .\n", " * Turn every 15 min .\n", " * Add in raisins when cold ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "vegetable oil\n", "\n", "vegetable oil\n", "\n", "\n", "\n", "oat\n", "\n", "oat\n", "\n", "\n", "\n", "bake0\n", "\n", "bake\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "raisin\n", "\n", "raisin\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "raisin->spread0\n", "\n", "\n", "\n", "\n", "\n", "coconut\n", "\n", "coconut\n", "\n", "\n", "\n", "pecan\n", "\n", "pecan\n", "\n", "\n", "\n", "wheat\n", "\n", "wheat\n", "\n", "\n", "\n", "spread0->bake0\n", "\n", "\n", "\n", "\n", "\n", "milk\n", "\n", "milk\n", "\n", "\n", "\n", "sweeten0\n", "\n", "sweeten\n", "\n", "\n", "\n", "milk->sweeten0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Chocolate-Pecan Torte\n", "(f3e73ea7e9)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 cups butter , divided'\n", " * '2 cups chocolate wafer cookie crumbs'\n", " * '1 cup chopped PLANTERS Pecans'\n", " * '1-1/3 cups packed brown sugar , divided'\n", " * '2 pkg . \\( 8 oz . each \\) PHILADELPHIA Cream Cheese , softened'\n", " * '1/2 cup powdered sugar'\n", " * '1 pkg . \\( 4 oz . \\) BAKER 'S Semi-Sweet Chocolate'\n", " * '1/3 cup whipping cream'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Melt 1/2 cup butter ; mix with cookie crumbs .\n", " * Press onto bottom of 9-inch springform pan ; top with nuts .\n", " * Bring remaining butter and 1 cup brown sugar to boil in saucepan on medium heat ; cook 2 to 4 min .\n", " * or until thickened , stirring constantly .\n", " * Pour over crust ; cool slightly .\n", " * Freeze 3 hours .\n", " * Beat cream cheese , powdered sugar and remaining brown sugar with mixer until light and fluffy ; spread over brown sugar layer in crust .\n", " * Refrigerate several hours or until chilled .\n", " * Meanwhile , cook chocolate and cream in small saucepan on very low heat just until chocolate is melted , stirring frequently .\n", " * Remove from heat ; cool completely .\n", " * Spread chocolate mixture over dessert .\n", " * Refrigerate 2 hours ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "pecans\n", "\n", "pecans\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "pecans->chop0\n", "\n", "\n", "\n", "\n", "\n", "chill0\n", "\n", "chill\n", "\n", "\n", "\n", "cook1\n", "\n", "cook\n", "\n", "\n", "\n", "chill0->cook1\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "cream cheese\n", "\n", "cream cheese\n", "\n", "\n", "\n", "beat0\n", "\n", "beat\n", "\n", "\n", "\n", "cream cheese->beat0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0\n", "\n", "refrigerate\n", "\n", "\n", "\n", "beat0->refrigerate0\n", "\n", "\n", "\n", "\n", "\n", "mix2\n", "\n", "mix\n", "\n", "\n", "\n", "cook1->mix2\n", "\n", "\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "mix2->heat1\n", "\n", "\n", "\n", "\n", "\n", "thicken0\n", "\n", "thicken\n", "\n", "\n", "\n", "freeze0\n", "\n", "freeze\n", "\n", "\n", "\n", "thicken0->freeze0\n", "\n", "\n", "\n", "\n", "\n", "chocolate\n", "\n", "chocolate\n", "\n", "\n", "\n", "refrigerate2\n", "\n", "refrigerate\n", "\n", "\n", "\n", "freeze0->refrigerate2\n", "\n", "\n", "\n", "\n", "\n", "chill1\n", "\n", "chill\n", "\n", "\n", "\n", "refrigerate2->chill1\n", "\n", "\n", "\n", "\n", "\n", "cool0\n", "\n", "cool\n", "\n", "\n", "\n", "spread0\n", "\n", "spread\n", "\n", "\n", "\n", "cool0->spread0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "spread0->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "melt0\n", "\n", "melt\n", "\n", "\n", "\n", "butter->melt0\n", "\n", "\n", "\n", "\n", "\n", "chocolate wafer\n", "\n", "chocolate wafer\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "chocolate wafer->cook0\n", "\n", "\n", "\n", "\n", "\n", "cool2\n", "\n", "cool\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "cool2->mix0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1->mix0\n", "\n", "\n", "\n", "\n", "\n", "cream\n", "\n", "cream\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "cook0->heat0\n", "\n", "\n", "\n", "\n", "\n", "heat0->cool0\n", "\n", "\n", "\n", "\n", "\n", "heat1->cool2\n", "\n", "\n", "\n", "\n", "\n", "refrigerate0->chill0\n", "\n", "\n", "\n", "\n", "\n", "chill1->mix2\n", "\n", "\n", "\n", "\n", "\n", "melt0->thicken0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Party Popcorn Balls\n", "(871b6a459f)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup sugar'\n", " * '13 cup light corn syrup'\n", " * '13 cup water'\n", " * '14 cup butter'\n", " * '34 teaspoon salt'\n", " * '3 quarts popped corn'\n", " * '1 teaspoon vanilla'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mix sugar , corn syrup , water , butter and salt in saucepan .\n", " * Cook , stirring until sugar is dissolved .\n", " * Cook , without stirring to 270 degrees to 290 degrees on a candy thermometer .\n", " * Add vanilla stir just enough to mix .\n", " * Place popcorn in a large bowl .\n", " * Pour syrup over the bowl slowly and mix .\n", " * Wet hands slightly and shape into popcorn balls ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "place0\n", "\n", "place\n", "\n", "\n", "\n", "pour0\n", "\n", "pour\n", "\n", "\n", "\n", "place0->pour0\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "mix3\n", "\n", "mix\n", "\n", "\n", "\n", "water->mix3\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix3\n", "\n", "\n", "\n", "\n", "\n", "corn\n", "\n", "corn\n", "\n", "\n", "\n", "corn syrup\n", "\n", "corn syrup\n", "\n", "\n", "\n", "corn syrup->mix3\n", "\n", "\n", "\n", "\n", "\n", "cook0\n", "\n", "cook\n", "\n", "\n", "\n", "cook0->place0\n", "\n", "\n", "\n", "\n", "\n", "vanilla\n", "\n", "vanilla\n", "\n", "\n", "\n", "butter\n", "\n", "butter\n", "\n", "\n", "\n", "butter->mix3\n", "\n", "\n", "\n", "\n", "\n", "sugar\n", "\n", "sugar\n", "\n", "\n", "\n", "sugar->mix3\n", "\n", "\n", "\n", "\n", "\n", "mix3->cook0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Tzatziki\n", "(c70dbd76f6)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 cup Greek-Style Yogurt'\n", " * '1/2 large cucumberpeeled , halved lengthwise , seeded and cut into 1/2-inch dice'\n", " * '2 tablespoons chopped dill'\n", " * '1 tablespoon fresh lemon juice'\n", " * '1/2 garlic clove , minced'\n", " * 'Salt'\n", " * 'Freshly ground pepper'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Combine all of the ingredients in a medium bowl .\n", " * Season with salt and pepper ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n", "seed\n", "\n", "seed\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "seed->cut0\n", "\n", "\n", "\n", "\n", "\n", "garlic clove\n", "\n", "garlic clove\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "garlic clove->mince0\n", "\n", "\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "cut0->dice0\n", "\n", "\n", "\n", "\n", "\n", "chop0\n", "\n", "chop\n", "\n", "\n", "\n", "dill\n", "\n", "dill\n", "\n", "\n", "\n", "dill->chop0\n", "\n", "\n", "\n", "\n", "\n", "pepper\n", "\n", "pepper\n", "\n", "\n", "\n", "pepper->mix0\n", "\n", "\n", "\n", "\n", "\n", "lemon juice\n", "\n", "lemon juice\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Guacamole\n", "(a60658a591)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '2 whole Ripe Avocados'\n", " * '2 whole Roma Tomatoes , Seeded And Finely Chopped'\n", " * '2 Tablespoons Salt'\n", " * '1 whole Lime , Juiced'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Mash avocados with a fork .\n", " * Add tomatoes and salt .\n", " * Add a little salt at a time and taste .\n", " * Remember that the chips will be salty , too .\n", " * Add lime juice and stir .\n", " * Serve immediately ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "roma tomatoes\n", "\n", "roma tomatoes\n", "\n", "\n", "\n", "roma tomatoes->mix0\n", "\n", "\n", "\n", "\n", "\n", "mash0\n", "\n", "mash\n", "\n", "\n", "\n", "mash0->mix0\n", "\n", "\n", "\n", "\n", "\n", "lime\n", "\n", "lime\n", "\n", "\n", "\n", "avocados\n", "\n", "avocados\n", "\n", "\n", "\n", "avocados->mash0\n", "\n", "\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "salt->mix0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Tuna Salad Pita Pockets Recipe\n", "(bb7d2d506c)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '3-4 cans tuna , canned'\n", " * '2 diced onions'\n", " * '2 diced green peppers'\n", " * '6 tbsp . mayonnaise'\n", " * 'Seasonings \\( salt , pepper , garlic salt \\)'\n", " * '2 bags pita bread'\n", " * '1 head of lettuce'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * Open cans of tuna and empty into bowl .\n", " * Add in mayonnaise and mix with tuna .\n", " * Mix into mix diced onions and peppers ; season .\n", " * Cut pitas in half .\n", " * Put some lettuce near the side of pocket inside .\n", " * Layer on top inside then the tuna mix ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "dice0\n", "\n", "dice\n", "\n", "\n", "\n", "onion->dice0\n", "\n", "\n", "\n", "\n", "\n", "garlic salt\n", "\n", "garlic salt\n", "\n", "\n", "\n", "open0\n", "\n", "open\n", "\n", "\n", "\n", "mix0\n", "\n", "mix\n", "\n", "\n", "\n", "open0->mix0\n", "\n", "\n", "\n", "\n", "\n", "pita bread\n", "\n", "pita bread\n", "\n", "\n", "\n", "cut0\n", "\n", "cut\n", "\n", "\n", "\n", "pita bread->cut0\n", "\n", "\n", "\n", "\n", "\n", "lettuce\n", "\n", "lettuce\n", "\n", "\n", "\n", "dice0->mix0\n", "\n", "\n", "\n", "\n", "\n", "tuna\n", "\n", "tuna\n", "\n", "\n", "\n", "tuna->open0\n", "\n", "\n", "\n", "\n", "\n", "green pepper\n", "\n", "green pepper\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "## Brown-Bag Burritos\n", "(0bbdda5af3)" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Ingredients" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * '1 pound ground beef , lean'\n", " * '1 can refried beans'\n", " * '23 cup enchilada sauce'\n", " * '1/4 cup water'\n", " * '3 tablespoons onions minced'\n", " * '1 1/2 tablespoons chili powder'\n", " * '1 1/2 teaspoons garlic powder'\n", " * '3/4 teaspoon salt'\n", " * '1/2 teaspoon oregano dried'\n", " * '20 each flour tortillas 7 inch'\n", " * '10 ounces cheddar cheese shredded'" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ "### Instructions" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/markdown": [ " * In a large skillet , brown ground beef ; drain .\n", " * Add next eight ingredients ; bring to a boil .\n", " * Reduce heat ; cover and simmer for 20 minutes .\n", " * Heat 3 to 4 tortillas in a microwave until warm , about 45 seconds .\n", " * Spoon 3 to 4 tablespoons of beef mixture down side of each tortilla .\n", " * Top with 2 to 3 tablespoons cheese .\n", " * Roll up .\n", " * Wrap each burrito in paper towel , then in foil .\n", " * Repeat with remaining ingredients .\n", " * Refrigerate .\n", " * Eat burritos cold , or remove foil and heat paper towel-wrapped burrito in a microwave on high for about 1 minute ." ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "recipe graph\n", "\n", "\n", "\n", "boil0\n", "\n", "boil\n", "\n", "\n", "\n", "heat1\n", "\n", "heat\n", "\n", "\n", "\n", "boil0->heat1\n", "\n", "\n", "\n", "\n", "\n", "heat0\n", "\n", "heat\n", "\n", "\n", "\n", "mix1\n", "\n", "mix\n", "\n", "\n", "\n", "heat0->mix1\n", "\n", "\n", "\n", "\n", "\n", "oregano\n", "\n", "oregano\n", "\n", "\n", "\n", "chili\n", "\n", "chili\n", "\n", "\n", "\n", "salt\n", "\n", "salt\n", "\n", "\n", "\n", "garlic\n", "\n", "garlic\n", "\n", "\n", "\n", "onion\n", "\n", "onion\n", "\n", "\n", "\n", "mince0\n", "\n", "mince\n", "\n", "\n", "\n", "onion->mince0\n", "\n", "\n", "\n", "\n", "\n", "simmer0\n", "\n", "simmer\n", "\n", "\n", "\n", "simmer0->mix1\n", "\n", "\n", "\n", "\n", "\n", "water\n", "\n", "water\n", "\n", "\n", "\n", "brown0\n", "\n", "brown\n", "\n", "\n", "\n", "brown0->boil0\n", "\n", "\n", "\n", "\n", "\n", "refrigerate1\n", "\n", "refrigerate\n", "\n", "\n", "\n", "mix1->refrigerate1\n", "\n", "\n", "\n", "\n", "\n", "ground beef\n", "\n", "ground beef\n", "\n", "\n", "\n", "ground beef->brown0\n", "\n", "\n", "\n", "\n", "\n", "cheese\n", "\n", "cheese\n", "\n", "\n", "\n", "cheese->mix1\n", "\n", "\n", "\n", "\n", "\n", "bean\n", "\n", "bean\n", "\n", "\n", "\n", "flour tortilla\n", "\n", "flour tortilla\n", "\n", "\n", "\n", "flour tortilla->heat0\n", "\n", "\n", "\n", "\n", "\n", "enchilada sauce\n", "\n", "enchilada sauce\n", "\n", "\n", "\n", "heat1->simmer0\n", "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "for i in range(100):\n", " rec = Recipe(random.choice(ids)['id'])\n", " rec.display_recipe()\n", " ing = rec.extract_ingredients()\n", " rec.apply_instructions(debug=False)\n", " g = RecipeGraph.fromRecipeState(rec._recipe_state)._dot\n", " display(g.compile_graph(simplify=True))\n", " " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.5" } }, "nbformat": 4, "nbformat_minor": 4 }