<?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>milkbox</title>
	<atom:link href="http://milkbox.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://milkbox.net</link>
	<description>.net</description>
	<lastBuildDate>Thu, 11 Feb 2010 18:07:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>From Linux to Windows 7</title>
		<link>http://milkbox.net/2010/02/from-linux-to-windows-7/</link>
		<comments>http://milkbox.net/2010/02/from-linux-to-windows-7/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 18:06:23 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=155</guid>
		<description><![CDATA[I've done it maybe...

I am currently waiting patiently for Apple to release their new MacBook Pro line using a new i5 or i7 processor and then it's my intent to snatch one up as my new permanent computer.  Check.

Well, besides liking most Apple software and software created for OSX I have grown especially fond [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I've done it maybe...</strong></p>

<p>I am currently waiting patiently for Apple to release their new MacBook Pro line using a new i5 or i7 processor and then it's my intent to snatch one up as my new permanent computer.  Check.</p>

<p>Well, besides liking most Apple software and software created for OSX I have grown especially fond of iTunes, mainly because I want to sync my iPhone everynight and snatch the newest podcasts i'm subscribed to.  OK, I could do this in Linux but if you've ever used any of that stuff, it's reverse engineered and it's not real reliable.  Besides, iTunes is a pretty great music manager.</p>

<p>Regardless, I decided that until that time comes I want to see where Windows is at and how well I can adapt to it from my Linux lifestyle.  For about the last 10+ years I've used Linux 99% of my time and it's been great.  Love command lines, love compilers, love the software (for the most part, I'm looking at you browsers and flash!).  But it's just not as refined...</p>

<p>Well, let me tell you something.  Windows software (at least the free stuff) is not that refined either.  It's pretty good, and much better than what it was.  I'm going to outline some major things that I need to do and how I'm handling it in Windows 7.</p>

<h4>Terminal</h4>

<p>Windows now includes "Power Shell" which is a glorified terminal.  By default they did a good job of creating commands that relate to UNIX/Linux style commands (ls, cd, rm, etc.).  The downfall of this is that they are aliases to .NET commands!  Basically what PowerShell boils down to is a .NET command interface.  Kinda like how you'd run <em>python</em> and get a Python shell.  It works so far.</p>

<p>On a side-note.  There are environment variables but they are a bit harder to define.  You have to edit the environment variables for a user and when you start a new shell they will have updated.  There are probably easier ways to do this (I know you can do <em>setx</em>) but using the GUI seems to work pretty easily and a little quicker than trying to type out the settings.  If you screw it up there isn't as easy of a way to correct it.</p>

<p>Also, there is an idea of a .bashrc (shell startup file) but it's not very convenient.  I don't remember the link offhand and you have to enable script running for unsigned scripts.</p>

<h4>SSH</h4>

<p>Thank you <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a>.  I installed Pageant, Putty, and Plink.  Plink lets me ssh in the PowerShell but that doesn't work too well because PowerShell doesn't handle the color escapes from bash.  But it works well enough.  Pageant handles my private key authentication.  I have it run at startup (simple shortcut in the startup folder) and mainly use Putty to connect remotely and forward my SSH key.  Works very solid.  Somewhat is annoying to have to use another program for this, and not be able to do it from the command line.</p>

<h4>Editor (<a href="http://vim.org">VIM</a>)</h4>

<p>I used vim in Linux and there is a nice build for Windows.  Installs nicely.  Overall it works good.  I was able to get all my settings ported over quickly (after figuring out where they go: $HOME/_vimrc).  One nice thing is you can update the shell environment variables and then vim and gvim can be used from the powershell just like in Linux and all seems fairly kosher.</p>

<h4>Version Control</h4>

<p>GIT has a <a href="http://code.google.com/p/msysgit/">windows client</a> that has been working for me.  It's command line only and It seems a janky as it wouldn't let me use putty as the ssh backend but it has a compiled version of OpenSSH client that it falls back on.  I believe it might have something to do with my using a color terminal on the host that has my git repositories.</p>

<p>Subversion has always had a program that integrates with Explorer nicely called <a href="http://tortoisesvn.tigris.org/">TortoiseSVN</a> that works great.  I am tempted to move away from GIT.  I <em>believe</em> that even Mecurial and Bazaar have Windows clients, not sure though.</p>

<h4>Python</h4>

<p>Python was a bit trickier.  I downloaded the 64-bit version and it worked pretty well except that some libraries (numpy) require some compilation.  The problem is that by default Windows 7 doesn't come with a compiler.  There are two solutions.
1. Download Microsoft Visual Studio Express Edition <em>and</em> Microsoft SDK for Windows.
2. Download third-party pre-compiled versions of the libraries.
I did (1) initially and found out that by default VS Express Edition doesn't include a 64-bit compiler, you have to download the Windows SDK to get that.  Well, I eventually just decided on downloading the third-party compilations from <a href="http://www.lfd.uci.edu/~gohlke/pythonlibs/">here</a> thanks to Christoph Gohlke.  He did the heavy lifting of building these packages.</p>

<p>As a side note, there does seem to be a package for distutils which allows you to use 'easy_install' to install Python packages.  The package includes the 64-bit build but uses a 32-bit installer which looks at a bad registry entry to find the location of Python.  I fixed this by duplicating one registry entry (I'll have to update this later to say where) and it installed and runs fine.</p>

<h4>MySQL</h4>

<p>Install is easy, but default table type is InnoDB which is different from Linux which was defaulting to MyISAM.  I ended up having to run a PowerShell as an administrator and then editing the my.ini file which lives in the MySQL install directory (somewhere under _C:\Program Files&#95;).  This just caused some problems with Django because I imported some old tables and then built some new ones and the constraints didn't want to work because of differences in table types.</p>

<h4><a href="http://www.djangoproject.com/">Django</a></h4>

<p>There is a package which I <em>didn't</em> use called "Instant Django" so you may wanna check that out.  For this one I actually used <em>distutils</em> and just ran</p>

<p><code>python C:\python26\Scripts\easy_install.py install django</code></p>

<p>and that took care of everything.  If you've setup Django on Linux before it can be tricky but it's not any trickier on Windows.</p>

<p>That's about all I've run into right now.  Seems are working and I'm fairly happy.  Not because I think Linux is bad or Windows is good.  It's just different and a decently exciting experience.  Web browsing seems faster and a bit more stable.  So far so good.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2010/02/from-linux-to-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Can I chime in on the iPad now?</title>
		<link>http://milkbox.net/2010/02/can-i-chime-in-on-the-ipad-now/</link>
		<comments>http://milkbox.net/2010/02/can-i-chime-in-on-the-ipad-now/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 17:20:27 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=148</guid>
		<description><![CDATA[There is a lot of media attention for the iPad that you can see just by googling iPad.  I just want to say that I am excited.  I am pushing Tara to get one.  Why?  BECAUSE IT'S PERFECT FOR HER.  I want my mother to get one too!

I have been [...]]]></description>
			<content:encoded><![CDATA[<p>There is a lot of media attention for the <a href="http://apple.com/ipad/">iPad</a> that you can see just by <a href="http://www.google.com/#q=ipad">googling iPad</a>.  I just want to say that I am excited.  I am pushing Tara to get one.  Why?  BECAUSE IT'S PERFECT FOR HER.  I want my mother to get one too!</p>

<p>I have been using Windows 7 now (more on that in another post) and I have to admit, I don't trust it one bit.  I do trust Apple's approval process.  All the "bad" press about the App store has made me think, "OK, here is a company that is validating the software that I'm going to run on the computer."  This is great.  Why?  Because everyone and their brother is going to write software for this thing, so everything will be available and you'll know that people took the time to make it worth a damn because they knew they had to go through the process.  Let me see, software available for everything I need to do and it's good and I don't have to search around the internet a bunch to find it?  True, True, True.  Man, if windows software was as cheap and easy to find and not a total piece of crap when I bought it, that would be great for me.</p>

<p>I was just thinking last night and today how much I love my iPhone.  And I don't think of it like a phone.  I think of it as something that is a portable tool for me to use.  My dad carries a pocket knife around with him.  I carry an iPhone.  Mine may give me leg cancer though.</p>

<p>Why is everyone harping on Apple anyways?  People calling them "closed" and all this crap.  A <a href="http://online.wsj.com/article/SB10001424052748703546004575055184080144688.html">recent article by the WSJ</a> suggested Apple is the next Microsoft.  Let me suggest one flaw in this argument: <strong>Apple doesn't say that one technology is stupid (Java) then replace it by a proprietary one (C#).</strong> The argument here being Flash which if you ask anyone who develops for flash, it's a travesty.  Ridding the world of flash and pushing Javascript and HTML5 helps Linux users, helps WIndows, and yes, helps Mac users too.  And I'm not saying Javascript is better or HTML5 is the savior but it's at least doing something different.  Flash has not been going anywhere.  I agree with Steve Jobs: Adobe is Lazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2010/02/can-i-chime-in-on-the-ipad-now/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Chorizo and Sausage Gravy</title>
		<link>http://milkbox.net/2010/01/chorizo-and-sausage-gravy/</link>
		<comments>http://milkbox.net/2010/01/chorizo-and-sausage-gravy/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 01:13:29 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[chorizo]]></category>
		<category><![CDATA[gravy]]></category>
		<category><![CDATA[sausage]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=138</guid>
		<description><![CDATA[This may be the greatest biscuits and gravy gravy recipe ever.  Screw it...  I WILL MAKE THIS CLAIM!

This is the greatest biscuits and gravy gravy recipe ever... until i make it further better.

Ingredients


    1lb sausage
    1 stick of chorizo
    2 eggs
    flour
  [...]]]></description>
			<content:encoded><![CDATA[<p>This may be the greatest biscuits and gravy gravy recipe ever.  Screw it...  I WILL MAKE THIS CLAIM!</p>

<p><strong><em>This is the greatest biscuits and gravy gravy recipe ever... until i make it further better.</em></strong></p>

<h3><strong><em><a href="http://milkbox.net/wp-content/uploads/2010/01/IMG_0546.jpg"><img class="aligncenter size-medium wp-image-140" title="Chorizo and Sausage Biscuits and Gravy" src="http://milkbox.net/wp-content/uploads/2010/01/IMG_0546-225x300.jpg" alt="awesome." width="225" height="300" /></a></em></strong>Ingredients</h3>

<ul>
    <li>1lb sausage</li>
    <li>1 stick of chorizo</li>
    <li>2 eggs</li>
    <li>flour</li>
    <li>milk</li>
</ul>

<h3>Process</h3>

<ol>
    <li>Cook the sausage and chorizo.</li>
    <li>Leave the grease in the pan.</li>
    <li>Add four <span style="text-decoration: underline;">very</span> rounded tablespoons of flour<sup>*</sup>.  Maybe more.</li>
    <li>Cook the meat and flour mixture a bit.</li>
    <li>Slowly add milk and mix until you get the consistency you want.</li>
    <li>Mix in the two eggs and let that cook.</li>
</ol>

<p><sup>*</sup><em>the more flour you add the more gravy you're going to get.  I like mine on the meatier side and for 1lb of sausage four rounded tablespoons was good.</em></p>

<p>You're on your own for biscuits.  I would suggest something better than Grands, they always have a bad aftertaste to me.  I admit, there's not much too it but I've never seen biscuits and gravy with chorizo in it.  I have tried just chorizo in the gravy but it's just not as good.  Here is a picture.  Don't let the look deceive you.</p>

<p>Most likely I will make this better by adding Bacon.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2010/01/chorizo-and-sausage-gravy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oreo Chip Cookies: These cookies are bound to blow your mind.</title>
		<link>http://milkbox.net/2010/01/oreo-chip-cookies-these-cookies-are-bound-to-blow-your-mind/</link>
		<comments>http://milkbox.net/2010/01/oreo-chip-cookies-these-cookies-are-bound-to-blow-your-mind/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 06:10:42 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[amazing]]></category>
		<category><![CDATA[chip]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[oreo]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=136</guid>
		<description><![CDATA[I was hesitant to post this amazing recipe for cookies but I  guess I'm never going to be able to sell it or get any money for it.  So here goes:

Ingredients


    2 1/4 cups flour
    1 tsp baking soda
    1 tsp salt
    1 [...]]]></description>
			<content:encoded><![CDATA[<p>I was hesitant to post this amazing recipe for cookies but I  guess I'm never going to be able to sell it or get any money for it.  So here goes:</p>

<h3><strong>Ingredients</strong></h3>

<ul>
    <li>2 1/4 cups flour</li>
    <li>1 tsp baking soda</li>
    <li>1 tsp salt</li>
    <li>1 cup (2 sticks) butter</li>
    <li>3/4 cup granulated sugar</li>
    <li>1 tsp vanilla extract</li>
    <li>2 large eggs</li>
    <li>2 cups crushed Oreos</li>
</ul>

<h3><strong>Directions</strong></h3>

<ol>
    <li>Oven to 375.</li>
    <li>Mix 2 1/4 cups flour, 1tsp baking soda, 1tsp salt in a bowl.</li>
    <li>In a separate bowl (optional), beat the hell out of 2 sticks of butter, 3/4cup of granulated sugar, 1tsp of vanilla extract, and 2 eggs.</li>
    <li>Gradually beat in the flour mix.</li>
    <li>Put in the Oreos and then make some balls on a cookie sheet and cook 9-12 minutes.</li>
</ol>

<h3><strong>Notes</strong></h3>

<p>To be honest, this is the NESTLE TOLLHOUSE recipe for chocolate chip cookies.  But these are Oreo Chip Cookies, so you don't use chocolate chips.  If you ever forget, it's also 50 other places on the web.  Also, they say to mix the flour and all that separate and slowly add but the first time I did this I just mixed everything in a bowl and it was fine.</p>

<p>If you're not really an Oreo person, you <span style="text-decoration: underline;">could</span> substitute something else but you'd be wrong in doing so.  Oreo Chip is really the best choice.  A friend of mine suggested Reese's Peanut Butter Cups and I would say that might be a close second.  Even if you don't like Oreos you should give these a try.  You can't really taste the Oreo factor.  It's the taste of excellence in engineering.</p>

<h3><strong>Future Work</strong></h3>

<p>I'd like to incorporate Bacon into this at some point.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2010/01/oreo-chip-cookies-these-cookies-are-bound-to-blow-your-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Apple Playing the Startup Game?</title>
		<link>http://milkbox.net/2010/01/is-apple-playing-the-startup-game/</link>
		<comments>http://milkbox.net/2010/01/is-apple-playing-the-startup-game/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 17:54:34 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=125</guid>
		<description><![CDATA[What would be the easiest way to keep a secret about an upcoming device?  The device not to exist!

I recently read an article by Paul Graham, What Startups Are Really Like and he notes that one of the suggestions is to release early and get customer feedback.  What if you didn't even have to release?

For [...]]]></description>
			<content:encoded><![CDATA[<p>What would be the easiest way to keep a secret about an upcoming device?  <em>The device not to exist!</em></p>

<p><em><span style="font-style: normal;">I recently read an article by Paul Graham, <a href="http://www.paulgraham.com/really.html" target="_blank">What Startups Are Really Like</a> and he notes that one of the suggestions is to release early and get customer feedback.  What if you didn't even have to release?</span></em></p>

<p>For a second lets think about what happened with the iPhone.  There was a lot of speculation before January 2007, and then iPhone came to MacWorld with a magical device that no one had seen before and didn't even have them ready for release until June 2007.  Even then they ran out.  I don't have a clear history of the time before January 2007 because I didn't pay attention to Apple news back then but I imagine it's very similar to the rumors and speculation that has been flooding the Mac community since early December.</p>

<p>Lets say Apple decided in October / November that the technology was ready for an Apple phone.  Rumors started to spread but initially trickled.  As Apple is designing hardware they put out different little bits of rumors here and there, parts manufacturers let it slip that Apple is buying parts, patents starting making headlines etc., but Apple at this point has no actual phone.  And then what does Apple do?  It listens.  It puts it's collective ears to the track and starts hearing what people are speculating about.  Gathering ideas?  In December they start developing a weak layer of software and hardware to support it, ready for January of 2007.  Think about it.  Apple didn't have to even give people hands-on demos or anything.  I'm not saying they hadn't tested the feasibility of the device, I just think as far as features go, the community fed them to Apple.  All they had to do was simply show a thin layer of design for key features on this magical mystery device.  As long as they could commit to their promises, it didn't have to even be ready for release.  Remember that even in June they hadn't manufactured enough to meet demand.  The first OS for the original iPhone wasn't <em>that</em> feature-full, but it met speculations and was executed well!  Six months is plenty of time for a company with Apple's level of resources to develop the software for the phone they promised in January.  Interesting enough, the 3G was a completely new, more compact, design which even included a 3G radio, leading me to believe the initial hardware design was done in a bit of haste (where they didn't consider that the metal backing of the original iPhone affecting radio signal strength).  To their credit, excellent execution.</p>

<p>As for an upcoming tablet-like device, they don't necessarily even have this new device in hand right now.  There are tidbits that say "You will be very surprised how you interact with the new tablet," and it doesn't take much for people to run with that idea and come up with even newer ideas.  They could be working on it as I type this and implementing key features that ﻿<a href="http://daringfireball.net/2010/01/tablet_musings" target="_blank">experts</a> and the community are saying the device needs to beat the competition.  Doesn't anyone else think it's weird that they could keep such secrets?  Steve Jobs couldn't even keep his health problems a secret.  There is just no secret to keep!  It's also interesting their event is now two weeks <em>after</em> CES where the competition is presenting their sub-par tablet devices?  I'd say two weeks is plenty of time to implement some last-ditch ideas, especially ones you don't have to immediately release to the public.</p>

<p>Apple is agile and I  believe this is something they do best, and for that fact what GM does worst. And what has the entire Apple community been providing over the last month but providing excellent ideas. Why not just let the customers decide what they want and then execute their ideas?</p>

<p>If the device is ready for release on the 27th, this whole article is moot, but  I could still be right about the iPhone <img src='http://milkbox.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p>EDIT: Just so this is clear.  I have been informed that there are many iterations that the iPhone went through so it wasn't a turnaround of 6months.  But it also doesn't mean they're not keeping an open ear, but this is somewhat obvious within constraints.  SDK was a request from the users, but maybe it was always planned.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2010/01/is-apple-playing-the-startup-game/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Apple Pie</title>
		<link>http://milkbox.net/2009/11/applepie/</link>
		<comments>http://milkbox.net/2009/11/applepie/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:13:55 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[apple pie]]></category>
		<category><![CDATA[crust]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=106</guid>
		<description><![CDATA[Do I continually out do myself or what???

Ingredients

The Crust


    2 cups all-purpose flour
    I teaspoon salt
    1 tablespoon sugar
    6 tablespoons butter
    6 tablespoons shortening
    6 to 8 tablespoons ice water


The Rest


    1/2 cup [...]]]></description>
			<content:encoded><![CDATA[<p>Do I continually out do myself or what???</p>

<h3><strong><em>Ingredients</em></strong></h3>

<p><strong class="Apple-style-span" style="font-weight: bold;">The Crust</strong></p>

<ul>
    <li>2 cups all-purpose flour</li>
    <li>I teaspoon salt</li>
    <li>1 tablespoon sugar</li>
    <li>6 tablespoons butter</li>
    <li>6 tablespoons shortening</li>
    <li>6 to 8 tablespoons ice water</li>
</ul>

<p><strong class="Apple-style-span" style="font-weight: bold;">The Rest</strong></p>

<ul>
    <li>1/2 cup unsalted butter</li>
    <li>3 tablespoons all-purpose flour</li>
    <li>1/2 cup white sugar</li>
    <li>1/2 cup packed brown sugar</li>
    <li>1/4 cup water</li>
    <li>6 apples - peeled, cored and sliced</li>
</ul>

<p><br /><br /></p>

<h3><em><strong>Instructions</strong></em></h3>

<p><strong>The Crust</strong></p>

<ol>
    <li>Put the 2 cups flour, 1 tsp salt, and 1 Tbsp sugar in a big mixing bowl.</li>
    <li>Use a masher (potato or dough) and mix in the 6 Tbsp butter, 6 Tbsp shortening, and 6-7 Tbsp water.</li>
    <li>Mash this up until it holds together but isn't too goopy (7 Tbsp of water was good for me).</li>
    <li>Wrap it in plastic wrap and put it in the fridge for 20 min.</li>
    <li>Peel and cut the apples.</li>
    <li>Tell someone how you wonder what your upstairs neighbour is doing.</li>
</ol>

<p><strong>The Pie</strong></p>

<ol>
    <li>After 20 min, remove the pie crust from the fridge.</li>
    <li>Take about 10-15% of the crust and set it aside.</li>
    <li>Roll the big component of crust and put it in your pie thing.</li>
    <li>Put all the apples on the pie crust.  Mound them.</li>
    <li>Take the 10-15% of pie crust you set aside and make it into long strings or flat slats that will go over the apples.  Think old-school apple pie and how it looks when it has the Kris-Kross (daddy mack!) thing going on.</li>
</ol>

<p><strong>The Sauce
</strong></p>

<ol>
    <li>Melt the 1/2 cup butter</li>
    <li>Add in the 3 Tbsp flour.  Make it kinda a gel / goop.</li>
    <li>Add 1/2 cup white sugar, 1/2 cup brown sugar, and 1/4 cup water.</li>
    <li>Get this boiling.</li>
    <li>Pour it over the pie.  Let it get good and covered.</li>
    <li>Bake at 425 for 15 minutes.</li>
    <li>Bake at 350 for 35-45 minutes.  Use your eyes here.</li>
    <li>Optional: sprinkle some cinnamon on top after you pull it out.</li>
</ol>

<p><a href="http://milkbox.net/wp-content/uploads/2009/11/apple_pie.jpg"><img class="aligncenter size-medium wp-image-110" title="apple_pie" src="http://milkbox.net/wp-content/uploads/2009/11/apple_pie.jpg" alt="img_0315" width="225" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2009/11/applepie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tofflate Cookies</title>
		<link>http://milkbox.net/2009/10/tofflate-cookies/</link>
		<comments>http://milkbox.net/2009/10/tofflate-cookies/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 04:14:03 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[chocolate]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[desert]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[toffee]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=95</guid>
		<description><![CDATA[If it helps the name at all, give it a french accent.

I got the hankering to make some cookies and now I'm nauseous from cookie dough.  I'm also sugar high or just super tired.  Here we go.


1 cup (2 sticks) unsalted butter (room temperature)
3/4 cup granulated white sugar
3/4 cup firmly packed light brown sugar
2 large [...]]]></description>
			<content:encoded><![CDATA[<p>If it helps the name at all, give it a french accent.</p>

<p>I got the hankering to make some cookies and now I'm nauseous from cookie dough.  I'm also sugar high or just super tired.  Here we go.</p>

<ul>
<li>1 cup (2 sticks) unsalted butter (room temperature)</li>
<li>3/4 cup granulated white sugar</li>
<li>3/4 cup firmly packed light brown sugar</li>
<li>2 large eggs</li>
<li>1 1/2 teaspoons pure vanilla extract</li>
<li>2 1/4 cups all-purpose flour</li>
<li>1 teaspoon baking soda</li>
<li>1/2 teaspoon salt</li>
<li>1 cup semisweet chocolate chips</li>
<li>1 cup toffee chips</li>
</ul>

<ol>
<li>Cream the 1 cup (2 sticks) of butter with a mixer.</li>
<li>Add 3/4 cup white sugar and 3/4 cup brown sugar and get that all mixed.</li>
<li>Beat in 2 eggs one at a time.</li>
<li>Add 1 1/2 teaspoons vanilla.</li>
<li>In a separate bowl, mix 2 1/4 cups flour, 1 teaspoon baking soda, 1/2 teaspoon salt.</li>
<li>Collide the flour mixture and the butter mixture.</li>
<li>Mix in 1 cup chocolate chips and 1 cup toffee chips.</li>
<li>You have two options:
<li>Put parchment paper on a cookie sheet.</li>
<li>Put mounds of cookie dough on the parchment paper.</li>
<li>375 degrees for about 10-12 minutes.</li>
</ol>

<p>This made a ton of cookies and I'm pretty sure all my sampling of cookie dough reduced the amount of cookies I made by at least 2-3.  The original recipe says 12-14 minutes and I think it was a little too long.  My first batch charred a bit but also my oven sucks.  It's so small I cannot fit a normal sized cookie sheet in so I had to use a bunch of small ones.  The parchment paper is a gift.  Less cleanup and nothing sticks to it.  So awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2009/10/tofflate-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nothing beats a good old chicken sandwich&#8230;</title>
		<link>http://milkbox.net/2009/10/nothing-beats-a-good-old-chicken-sandwich/</link>
		<comments>http://milkbox.net/2009/10/nothing-beats-a-good-old-chicken-sandwich/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:36:50 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[chicken]]></category>
		<category><![CDATA[lunch]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=90</guid>
		<description><![CDATA[As I sat here waiting for some code to finish running,  I started thinking about how good my lunch is going to be, and yet, how simple it is...  (in revision I realized how my tenses in this sentence are all over the place)

First a side comment about brown bagging it.  Tara and [...]]]></description>
			<content:encoded><![CDATA[<p>As I sat here waiting for some code to finish running,  I started thinking about how good my lunch is going to be, and yet, how simple it is...  (in revision I realized how my tenses in this sentence are all over the place)</p>

<p>First a side comment about brown bagging it.  Tara and I went to visit my aunt recently and she mentioned how all these girls where she works are always complaining about how they don't have money and all this, yet they go out to eat everyday.  Her direct quote was "HAVEN'T YA HEARD OF BROWN BAGGIN' IT?"</p>

<p>So that has been a true inspiration to me.  Only eat lunch out once a week and the Airliner has half-off Tuesdays so you can get a large deep dish pizza for like 10 bucks.  It's enough for four people.  I went yesterday and we had so much left over that I took it down to the ped-mall and gave it to some guy that held a sign saying "anything helps."  The thing that pissed me off though was that the guy was pulling out a pack of beef jerky from his bag.  I guess deep dish pizza is better than jerky but still, he at least had enough money to buy jerky.  That stuff is expensive!</p>

<p>Anyways, long story short, the trick to brown bagging is preparation.  You have to think in advance and try to prep some of the stuff for later.  Monday I bought about four chicken breasts and cooked them on the George Foreman grill.  So this morning I heated up a breast, slathered some mayo on some bread, and I'm pretty sure this is going to be one excellent sandwich.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2009/10/nothing-beats-a-good-old-chicken-sandwich/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>As Promised&#8230;</title>
		<link>http://milkbox.net/2009/10/as-promised/</link>
		<comments>http://milkbox.net/2009/10/as-promised/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:51:53 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[random]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=85</guid>
		<description><![CDATA[Recall the first note i found the other day. Well, I saw this big black truck pull up in our lot as I was leaving and I saw the guy so I decided I'd talk to him "as promised."  So he didn't seem too bad.  I think he's had lots of notes called on him.  [...]]]></description>
			<content:encoded><![CDATA[<p>Recall the first <a href="http://milkbox.net/2009/10/notes-i-found-today/" target="_blank">note i found the other day.</a> Well, I saw this big black truck pull up in our lot as I was leaving and I saw the guy so I decided I'd talk to him "as promised."  So he didn't seem too bad.  I think he's had lots of notes called on him.  There is one on a door downstairs (I think it's probably his door) that says something to the effect of "if there are loud noises coming from the apt, come talk to me before you call the police."  Which, I GET!</p>

<p>So yeah, he didn't seem like that bad of a guy and all is well.  I told him it's just hard to get out of spots and kinda annoying so avoiding parking there would be nice.  He got a note on his truck which in all honesty was kind of the person.  I have wanted to tow people who park there.  Hell, it may have been from the apartment people.  I'll try to click a picture of the note on his door.  It's pretty great.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2009/10/as-promised/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This is messed up.</title>
		<link>http://milkbox.net/2009/10/this-is-messed-up/</link>
		<comments>http://milkbox.net/2009/10/this-is-messed-up/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:12:10 +0000</pubDate>
		<dc:creator>dcurtis</dc:creator>
				<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://milkbox.net/?p=80</guid>
		<description><![CDATA[

There are some classic lines:

Guy: "You're not an American!"
Host: ".... I AM an American?"

Anyways, it's worth watching and only 7 minutes long.  I need to watch ABC primetime more often.  Dateline always had that crazy pedo stuff on.  It's hard to believe people are OK with this.  I am so sheltered.

This just made me think [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PqbQWxHIn4U&amp;hl=en&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/PqbQWxHIn4U&amp;hl=en&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>

<p>There are some classic lines:</p>

<p>Guy: "You're not an American!"
Host: ".... I AM an American?"</p>

<p>Anyways, it's worth watching and only 7 minutes long.  I need to watch ABC primetime more often.  Dateline always had that crazy pedo stuff on.  It's hard to believe people are OK with this.  I am so sheltered.</p>

<p>This just made me think about if I've ever let this kinda thing happen without saying anything.  The only thing I can remember is that I was at Wacky Waters (waterpark just outside the Quad Cities) when I was real young and I met this guy and his brother that I hung out with all day.  We went to play miniature golf and there were these guys behind us that kept hitting their ball up while we were still on the hole!  Except, we started to notice that they only did it to the guy's brother, who happened to have some developmental disability, but they would NOT do it when either I or my friend were putting.  His brother would make a comment back at the guys and they would just laugh at him.  I got pissed for the 10 year old or whatever I was.  Finally they hit their ball up on him, I stepped up on the it and hit the goddamn thing out of the park.  Pain Stewart style!  Of course I got kicked out of the miniature golf course but it was worth it.  The guy running it was just some punk teenager who should've seen what was happening but was too busy looking at girls or something.  Those guys were pricks.  I think that's the closest I ever got to standing up for someone else that was being picked on for something they couldn't change.</p>

<p>If you don't say anything you're just as bad as the people that say something negative.  Letting people think it's OK to do shitty things doesn't help anyone.  Luckily I live in a town where I don't encounter that much.</p>
]]></content:encoded>
			<wfw:commentRss>http://milkbox.net/2009/10/this-is-messed-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
