<?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>Sarah Tebo</title>
	<atom:link href="http://sarahtebo.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://sarahtebo.com</link>
	<description>Rome, Ga Web Designer &#38; Developer</description>
	<lastBuildDate>Tue, 15 Sep 2015 00:43:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.18</generator>
	<item>
		<title>How the CSS text columns on this site work</title>
		<link>https://sarahtebo.com/2015/how-the-css-text-columns-on-this-site-work/</link>
				<comments>https://sarahtebo.com/2015/how-the-css-text-columns-on-this-site-work/#comments</comments>
				<pubDate>Mon, 14 Sep 2015 00:00:44 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Front End Dev]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=49</guid>
				<description><![CDATA[<p>Multi-column text works in pretty much all modern browsers. CSS text columns are easy to implement, but they do require some browser-specific prefixes (IE supports it in versions 10 and higher).</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2015/how-the-css-text-columns-on-this-site-work/">How the CSS text columns on this site work</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>You may have noticed that many of the posts and pages on this site have text that flows into two columns (but strangely not this one; <a href="http://sarahtebo.com/about/" target="_blank">click here</a> for an example). These CSS text columns are easy to implement, but they do require some browser-specific prefixes.</p>
<p>First the syntax:</p>
<pre>.article-columns {
 -webkit-columns: 200px 2;
 -moz-columns: 200px 2;
 columns: 200px 2;
 -webkit-column-gap: 30px;
 -moz-column-gap: 30px;
 column-gap: 30px;
}
</pre>
<p>The first three lines tell the browser how many columns you want, and the minimum width the columns should be. I wanted columns no smaller than 200px each, and I wanted 2. You could change this to something like 150px 3 if you wanted more, but narrower, columns.</p>
<p>You can also specify the size of the gap between columns, which here is 30 pixels.</p>
<p>Here&#8217;s the neat thing: if the browser window is too small to support two, 200-pixel columns, it will automatically collapse into a single column. No media queries necessary!</p>
<p>Multi-column text layout is <a href="http://caniuse.com/#feat=multicolumn" target="_blank">supported by most modern browsers</a>, either completely or via prefixes. IE supports it in versions 10 and higher. Text columns are nice to have, but are not necessary for the site to work; that&#8217;s pretty much the definition of graceful degradation.</p>
<h3>Making it easy to choose column layout</h3>
<p>Not all pages on this site have a multi-column layout. I wanted an easy way to specify from the WordPress backend how each post or page should appear. Using the Advanced Custom Fields plugin, I created a True/False field type. Then, in the single.php and page.php files, we check to see if that option is flagged &#8220;true.&#8221; If so, we insert the .article-columns class. Example:</p>
<pre>&lt;?php $columns = get_field('columns'); ?&gt;</pre>
<pre>&lt;?php if ($columns) { ?&gt;
 &lt;div class="article-columns"&gt;
 &lt;?php the_content(); ?&gt;
 &lt;/div&gt;
 &lt;?php } else { ?&gt;
 &lt;?php the_content(); ?&gt;
&lt;?php } ?&gt;</pre>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2015/how-the-css-text-columns-on-this-site-work/">How the CSS text columns on this site work</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2015/how-the-css-text-columns-on-this-site-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
		<item>
		<title>WordPress plugin for restaurant menus released</title>
		<link>https://sarahtebo.com/2012/wordpress-plugin-for-restaurant-menus-released/</link>
				<comments>https://sarahtebo.com/2012/wordpress-plugin-for-restaurant-menus-released/#respond</comments>
				<pubDate>Thu, 19 Apr 2012 00:29:57 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=22</guid>
				<description><![CDATA[<p>I’m so excited to have collaborated on my first WordPress plugin. I worked with SAI Digital developer Richard Royal to create a plugin that allows restaurants to easily manage their menus online, without the need for website visitors to download PDFs. </p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2012/wordpress-plugin-for-restaurant-menus-released/">WordPress plugin for restaurant menus released</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>I’m so excited to have collaborated on my first WordPress plugin. I worked with <a title="SAI Digital" href="http://saidigital.co/" target="_blank">SAI Digital</a> developer Richard Royal to create a plugin that allows restaurants to easily manage their menus online, without the need for website visitors to download PDFs. The idea came about after we were looking for a place to eat online, and every menu from every website we visited was a PDF.</p>
<p>The <a title="Easy Restaurant Menu Manager WordPress plugin" href="http://sailabs.co/products/easy-restaurant-menu-manager-wordpress/" target="_blank">Easy Restaurant Menu Manager</a> WordPress plugin lets a site owner:</p>
<ul>
<li>Put items into categories like appetizers, entrees or desserts — name them whatever you want — and set the order those categories should display in</li>
<li>Include a description for each item, and decide whether or not you want to display the price</li>
<li>Add CSS right from the plugin, without fiddling with theme files</li>
<li>Attach pictures to each menu item</li>
<li>Choose single-column or two-column layouts</li>
<li>Add icons to dishes to show that an item is spicy, vegetarian, a speciality, etc. — even upload your own icons</li>
<li>Create multiple menus</li>
<li>Include a “print this menu” link that creates a print-friendly version of your menu</li>
</ul>
<p>I did most of the planning for features and functions, and created the flexible HTML and CSS output for the plugin. Richard actually built the thing and made it work in WordPress.</p>
<p>The free version of the plugin was added to the <a title="Easy Menu Manager WordPress Plugin Free Version" href="http://wordpress.org/extend/plugins/easy-restaurant-menu-manager/" target="_blank">WordPress.org plugin directory</a> on Monday; since then, it has been downloaded about 150 times. We’ve also sold several of the $25 extended version on our SAI Labs website.</p>
<p>Can’t wait to work on the next one!</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2012/wordpress-plugin-for-restaurant-menus-released/">WordPress plugin for restaurant menus released</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2012/wordpress-plugin-for-restaurant-menus-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Books of 2011</title>
		<link>https://sarahtebo.com/2012/books-of-2011/</link>
				<comments>https://sarahtebo.com/2012/books-of-2011/#respond</comments>
				<pubDate>Sun, 15 Jan 2012 01:33:29 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Books & Comics]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=25</guid>
				<description><![CDATA[<p>This is the time of year everyone is doing their year-end lists (well, maybe I’m a little late but whatever). I was looking back on my 2011 and realized that with all the change in my life last year, one thing that stayed constant was my love of reading. For me, there are great movies and great TV shows, but none of those can hold a candle to a great book.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2012/books-of-2011/">Books of 2011</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>This is the time of year everyone is doing their year-end lists (well, maybe I’m a little late but whatever). I was looking back on my 2011 and realized that with all the change in my life last year, one thing that stayed constant was my love of reading. For me, there are great movies and great TV shows, but none of those can hold a candle to a great book.</p>
<p>I read 30 books in 2011. I know this because I use <a href="http://www.goodreads.com/user/show/3679716-sarah-tebo" target="_blank">Goodreads</a> and gave myself a 30-book goal for 2011. Just barely made it, too, finishing ‘Ender’s Game’ on Dec. 30.</p>
<h2>Favorite Five</h2>
<h3>Matterhorn</h3>
<p><a href="http://www.amazon.com/gp/product/0802145310/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0802145310"><img class="alignleft" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=0802145310&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=curlis-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img src="http://www.assoc-amazon.com/e/ir?t=curlis-20&amp;l=as2&amp;o=1&amp;a=0802145310" alt="" width="1" height="1" border="0" />I can’t say enough good things about this book, one of the best I’ve read in years. It’s the story of a company in the jungles of Vietnam during the war, written by combat veteran Karl Marlantes, and after reading it I feel like I understand that war so much more than I did before. What really sets the audiobook apart is the narrator, Bronson Pinchot (yes, from ‘Perfect Strangers’). He brings every character to life, to a point that it’s easy to forget it’s just one man. I rarely lose myself listening to a book the way I did with this one. <a href="http://www.amazon.com/gp/product/0802145310/ref=as_li_ss_tl?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0802145310" target="_blank">Click here to buy</a></p>
<hr />
<h3>Stealing the General</h3>
<p><a href="http://www.amazon.com/gp/product/1594160333/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1594160333"><img class="alignleft" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=1594160333&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=curlis-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img src="http://www.assoc-amazon.com/e/ir?t=curlis-20&amp;l=as2&amp;o=1&amp;a=1594160333" alt="" width="1" height="1" border="0" />Another audiobook narrated by Bronson Pinchot, this is the account of the Andrews Raid that happened just a few miles from my house. I’m sorry to say I didn’t know much about this bit of Civil War history before listening to this book. All I knew was that some Yankees stole a Confederate train and unsuccessfully tried to drive it north. But there’s so much more to the story. Your heart breaks for the doomed raiders, but there are no villains in this book. Just men on each side doing what they thought was right for their country. <a href="http://www.amazon.com/gp/product/1594160333/ref=as_li_ss_tl?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1594160333" target="_blank">Click here to buy</a></p>
<hr />
<h3>Beauty Queens</h3>
<p><a href="http://www.amazon.com/gp/product/0439895979/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0439895979"><img class="alignleft" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=0439895979&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=curlis-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img src="http://www.assoc-amazon.com/e/ir?t=curlis-20&amp;l=as2&amp;o=1&amp;a=0439895979" alt="" width="1" height="1" border="0" />The most fun I had reading a book all year. A sharp satire of beauty-obsessed culture, it follows the adventures of a group of teen beauty pageant contestants whose plane crashes on what appears to be a deserted island and are presumed dead. Meanwhile, “The Corporation” — which owns the pageant and pretty much every other company — tries to find a way to profit from the crash. Author Libba Bray makes great use of footnotes and interstitials to add to the absurdity of the story. <a href="http://www.amazon.com/gp/product/0439895979/ref=as_li_ss_tl?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0439895979" target="_blank">Click here to buy</a></p>
<hr />
<h3>Ender’s Game</h3>
<p><a href="http://www.amazon.com/gp/product/0765342294/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0765342294"><img class="alignleft" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=0765342294&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=curlis-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img src="http://www.assoc-amazon.com/e/ir?t=curlis-20&amp;l=as2&amp;o=1&amp;a=0765342294" alt="" width="1" height="1" border="0" />The last book I read in 2011 was also one of my favorites. Orson Scott Card’s futuristic classic about a young boy who is plucked from his home to save the world was almost like a sci-fi Harry Potter. It’s set in a dystopian future Earth, so of course I was bound to love it. The ages of the kids threw me a bit — I kept imagining my 6-year-old nephew being taken into space to learn to be a soldier — so I had to keep reminding myself that these kids were chosen because they were not typical kids. Apparently this is the first in a series of Ender stories, and I’ll definitely be reading more. <a href="http://www.amazon.com/gp/product/0812550706/ref=as_li_ss_tl?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0812550706" target="_blank">Click here to buy</a></p>
<hr />
<h3>A Prayer for Owen Meany</h3>
<p><a href="http://www.amazon.com/gp/product/0345417976/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0345417976"><img class="alignleft" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=0345417976&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=curlis-20&amp;ServiceVersion=20070822" alt="" border="0" /></a><img src="http://www.assoc-amazon.com/e/ir?t=curlis-20&amp;l=as2&amp;o=1&amp;a=0345417976" alt="" width="1" height="1" border="0" />I’m not sure why I originally picked this up, but man was it good. Owen Meany is a tiny boy with a squeaky voice who accidentally kills his best friend’s mother and believes he is an instrument of God. So to say Owen is odd is an understatement. The book follows his adventures through childhood and into the Vietnam War. John Irving tells a captivating story about faith, friendship and destiny with humor and sadness. Owen was a character who stuck with me and for days after finishing the book, I found myself thinking about it. <a href="http://www.amazon.com/gp/product/0345361792/ref=as_li_ss_il?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0345361792" target="_blank">Click here to buy</a></p>
<h2></h2>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2012/books-of-2011/">Books of 2011</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2012/books-of-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Swamplandia! review: What a downer</title>
		<link>https://sarahtebo.com/2011/swamplandia-review-what-a-downer/</link>
				<comments>https://sarahtebo.com/2011/swamplandia-review-what-a-downer/#respond</comments>
				<pubDate>Fri, 22 Apr 2011 00:41:48 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Books & Comics]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=30</guid>
				<description><![CDATA[<p>I first head about Karen Russell’s debut novel ‘Swamplandia!’ in Entertainment Weekly, when Stephen King — who read it pre-release — called it one of the best books he read in 2010. “Don’t miss it,” he wrote. So I didn’t. I bought it on my Kindle just days after it was available. The book was [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2011/swamplandia-review-what-a-downer/">Swamplandia! review: What a downer</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>I first head about Karen Russell’s debut novel ‘Swamplandia!’ in <a href="http://www.ew.com/ew/gallery/0,,20326356_20449677,00.html#20889765" target="_blank">Entertainment Weekly</a>, when Stephen King — who read it pre-release — called it one of the best books he read in 2010. “Don’t miss it,” he wrote. So I didn’t. I bought it on my Kindle just days after it was available.</p>
<p>The book was interesting, well-written and had some really great characters. But I hated it.</p>
<p>I know I’m in the minority. The author has received several awards, and most reviewers — including the <a href="http://www.nytimes.com/2011/02/17/books/17book.html" target="_blank">New York Times</a>, which called it ‘a marvel’ — loved ‘Swamplandia!’.</p>
<p>It’s just so depressing.</p>
<p><a href="http://www.amazon.com/gp/product/0307263991/ref=as_li_ss_tl?ie=UTF8&amp;tag=curlis-20&amp;linkCode=as2&amp;camp=217145&amp;creative=399349&amp;creativeASIN=0307263991" target="_blank">‘Swamplandia!’</a> is about a family called the Bigtrees that run an alligator amusement park in Florida, Swamplandia!. Their world starts to fall apart when the mother, an alligator wrestler who is the park’s main attraction, dies from cancer, and the grandfather gets sent to the saddest-sounding old folks home in history. Father ‘Chief’ Bigtree (whose family is NOT Native American) is up to his eyeballs in debt and trying to save the park. Brother Kiwi takes off, and younger sisters Ava and Ossie (who believes she is dating ghosts) are left to fend for themselves.</p>
<p>I don’t need every book I read to be frothy and fun and have a happy ending. But ‘Swamplandia!’ was just one horrible thing after another happening to children. Nothing good ever happens to them. And that’s even more heart-breaking because Russell made the characters so interesting that you really care about them.</p>
<p>I’m sure there are plenty of people who will love this book. I’m just not one of them.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2011/swamplandia-review-what-a-downer/">Swamplandia! review: What a downer</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2011/swamplandia-review-what-a-downer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Super simple berry sauce</title>
		<link>https://sarahtebo.com/2011/super-simple-berry-sauce/</link>
				<comments>https://sarahtebo.com/2011/super-simple-berry-sauce/#respond</comments>
				<pubDate>Tue, 29 Mar 2011 00:47:11 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=32</guid>
				<description><![CDATA[<p>Here’s the extremely easy recipe for my frozen berry sauce. Serve it with French toast, pancakes, waffles or (my favorite) good quality vanilla ice cream.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2011/super-simple-berry-sauce/">Super simple berry sauce</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>A couple weeks ago I decided to make some French toast for Sunday breakfast, but I wanted to top it with something more special than pancake syrup. I decided a berry sauce would be perfect. One problem: fresh berries are stinkin’ expensive. So I used frozen, and the sauce came out great. Here’s the extremely easy recipe for my frozen berry sauce. Serve it with French toast, pancakes, waffles or (my favorite) good quality vanilla ice cream.</p>
<p><strong>Easy Berry Sauce</strong></p>
<ul>
<li>Frozen berry mix (I used raspberries, blackberries and blueberries)</li>
<li>Granulated sugar</li>
<li>Splash water</li>
</ul>
<p>Put the berries in a small saucepan, then splash with water. Add a few tablespoons of sugar, to taste, depending on how sweet you want the finished sauce to be. Bring to a simmer and reduce, about 7-10 minutes, to thicken. If you have fresh strawberries, you can throw some slices into the finished sauce to add a different texture. Cool slightly before serving. (Seriously, that’s it)</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2011/super-simple-berry-sauce/">Super simple berry sauce</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2011/super-simple-berry-sauce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Snickerdoodles and ice cream, a match made in summertime heaven</title>
		<link>https://sarahtebo.com/2010/snickerdoodles-and-ice-cream-a-match-made-in-summertime-heaven/</link>
				<comments>https://sarahtebo.com/2010/snickerdoodles-and-ice-cream-a-match-made-in-summertime-heaven/#respond</comments>
				<pubDate>Tue, 17 Aug 2010 00:47:59 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=34</guid>
				<description><![CDATA[<p>This recipe makes a super soft cookie, perfect for eating your ice cream sandwiches straight from the freezer.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2010/snickerdoodles-and-ice-cream-a-match-made-in-summertime-heaven/">Snickerdoodles and ice cream, a match made in summertime heaven</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>I’m extremely susceptible to the power of suggestion, especially when it comes to food, so when I saw <a href="http://www.joythebaker.com/blog/2010/07/sugar-cookie-ice-cream-sandwiches/" target="_blank">this post</a> by Joy the Baker, I became obsessed with making my own ice cream sandwiches. I considered several different varieties of cookies and ice cream before I decided on Snickerdoodles and vanilla (Mayfield, of course).</p>
<p>However, I’d never made Snickerdoodles. I was extremely lucky to find the recipe for “<a href="http://allrecipes.com//Recipe/mrs-siggs-snickerdoodles/Detail.aspx" target="_blank">Mrs. Sigg’s Snickerdoodles</a>” on AllRecipes.com. The cookies came out perfect for freezing: slightly crispy on the outside, but soft and chewy inside. Because they’re so soft, you can eat them straight out of the freezer without breaking your teeth. And of course, there’s nothing like ice cream when it’s 100 degrees outside.</p>
<p>I changed the recipe slightly to use all butter, and I will mention I think it’s important to use real vanilla extract. The Snickerdoodle is a simple cookie and every flavor is on display.</p>
<p><strong>Snickerdoodle Ice Cream Sandwiches</strong></p>
<ul>
<li>1 cup butter, softened</li>
<li>1 1/2 cups white sugar</li>
<li>2 eggs</li>
<li>2 teaspoons vanilla extract</li>
<li>2 3/4 cups all-purpose flour</li>
<li>2 teaspoons cream of tartar</li>
<li>1 teaspoon baking soda</li>
<li>1/4 teaspoon salt</li>
<li>2 tablespoons white sugar</li>
<li>2 teaspoons ground cinnamon</li>
</ul>
<p>Preheat oven to 400 degrees. Cream together butter, 1 1/2 cups sugar, the eggs and the vanilla. Blend in the flour, cream of tartar, soda and salt. Shape dough by rounded spoonfuls into balls. Mix the 2 tablespoons sugar and the cinnamon. Roll balls of dough in mixture. Place 2 inches apart on ungreased baking sheets. Bake 8 minutes (exactly). Allow to cool for a few minutes on the sheet before moving to a cooling rack.</p>
<p>After the cookies are completely cool, match them by size into pairs. Line a dish with wax paper and put it in your freezer. Put a scant scoop of ice cream on the bottom cookie, and gently flatten with the top cookie. Put the sandwich into the lined dish immediately (don’t try to work in batches – I made that mistake first and it was a melty mess). Use wax paper between layers of completed sandwiches.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2010/snickerdoodles-and-ice-cream-a-match-made-in-summertime-heaven/">Snickerdoodles and ice cream, a match made in summertime heaven</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2010/snickerdoodles-and-ice-cream-a-match-made-in-summertime-heaven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How did I not know about cake mix cookies?</title>
		<link>https://sarahtebo.com/2010/how-did-i-not-know-about-cake-mix-cookies/</link>
				<comments>https://sarahtebo.com/2010/how-did-i-not-know-about-cake-mix-cookies/#respond</comments>
				<pubDate>Thu, 11 Mar 2010 01:54:16 +0000</pubDate>
		<dc:creator><![CDATA[wpadmin]]></dc:creator>
				<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://sarahtebo.com/?p=39</guid>
				<description><![CDATA[<p>For anyone else who may not know, the cookies use cake mix as a base, then you mix in whatever you want – nuts, chips, candies, etc. My sister Rebecca recently told me about them so I decided to try them out for myself.</p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2010/how-did-i-not-know-about-cake-mix-cookies/">How did I not know about cake mix cookies?</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>I bake a lot, especially cookies. My specialty is butterscotch chip. So how did I make it 30 years into my life without knowing about cake mix cookies?</p>
<p>For anyone else who may not know, the cookies use cake mix as a base, then you mix in whatever you want – nuts, chips, candies, etc. My sister Rebecca recently told me about them so I decided to try them out for myself.</p>
<p>Holy moly were they easy!</p>
<p>I’ve been craving a chocolate cookie, so I chose a chocolate fudge cake mix and peanut butter chips. It took less than five minutes to mix up the batter and get the first dozen in the oven.</p>
<p>The cake mix cookies came out with a great texture: crispy on the edges but soft and chewy in the middle. And they tasted like Reese’s peanut butter cups, always a win. I’m thinking next time I’ll do a red velvet cake mix with white chocolate chips.</p>
<p>The recipe I used came from <a href="http://www.cooks.com/" target="_blank">Cooks.com</a> and is super simple. It yields 48 cookies, but I made mine gigantic so only ended up with about 25. I also used slightly more chips than the recipe calls for, but not quite the whole bag.</p>
<p><strong>Cake Mix Cookies</strong></p>
<ul>
<li>1 package of cake mix (any flavor)</li>
<li>1 large egg</li>
<li>1/4 cup of oil</li>
<li>1/4 cup of water</li>
<li>1 cup of chopped nuts, raisins, chocolate chips, etc.</li>
</ul>
<p><em>Preheat oven to 350°F. Beat together the cake mix, egg, oil and water, then stir in your “goodies.” Drop by teaspoons about 1 inch apart onto a greased cookie sheet. Bake for 15 minutes.</em></p>
<p>The post <a rel="nofollow" href="https://sarahtebo.com/2010/how-did-i-not-know-about-cake-mix-cookies/">How did I not know about cake mix cookies?</a> appeared first on <a rel="nofollow" href="https://sarahtebo.com">Sarah Tebo</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://sarahtebo.com/2010/how-did-i-not-know-about-cake-mix-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
	</channel>
</rss>
