<?php
$page_name = "Back Country Ice Cream";
$menu_type = "food";
$menu_name = "Back Country IC";
$blog_num = 31;
$page_rate = 7;
$page_tags = array("outdoors", "erudition");
$page_date = "September 21, 2011";
include_once("./files/head.php");

echo "<p>I found this in the newspaper.  It's been changed slightly for back country.  I had a hard time deciding if this was food, camping, or science...  Enjoy!</p>\n";

echo "<h3>How it Works</h3>\n";
echo "<p>When you add salt to ice (or snow) you lower the freezing/melting point.  Thus ice that normally melts at 0C now melts at -5C.  This means that all the energy needed to change ice to water (heat of fusion) is sucked from somewhere like your ice cream.  Meanwhile your ice cream turns solid because it is donating all that energy to melt the ice, but then freezes because its freezing/melting point is higher.  Nifty eh?</p>\n";

echo "<h3>On With the Ice Cream!</h3>\n";
echo "<p>Enough with the science, let's cook...or uh, bake...ummm, mix and shake I guess???</p>\n";

echo "<h3>Stuff to put in/use</h3>\n";
echo "<h4>Ice Cream</h4>\n";
echo "<ul>\n";
  echo "<li>1 cup <span class=\"red\"><strong>milk</strong></span></li>\n";
  echo "<li>2 tbsp <span class=\"red\"><strong>coffee whitener</strong></span>&nbsp;&nbsp;&nbsp;(Only needed if your using powdered milk)</li>\n";
  echo "<li>2 tbsp <span class=\"red\"><strong>white sugar</strong></span></li>\n";
  echo "<li>1/2 tsp <span class=\"red\"><strong>vanilla extract</strong></span></li>\n";
echo "</ul>\n";
echo "<h4>The Magic</h4>\n";
echo "<ul>\n";
  echo "<li>1 <span class=\"pink\"><strong>large freezer ziploc bag</strong></span></li>\n";
  echo "<li>1 <span class=\"pink\"><strong>small freezer ziploc bag</strong></span></li>\n";
  echo "<li>3-4 handfuls <span class=\"red\"><strong>ice or snow</strong></span>&nbsp;&nbsp;&nbsp;(not too picky here, ice is better)</li>\n";
  echo "<li>1/2 cup <span class=\"red\"><strong>course table salt</strong></span></li>\n";
echo "</ul>\n";

echo "<h3>How to put it all together</h3>\n";
echo "<ol>\n";
  echo "<li>Reconstitute the <span class=\"red\"><strong>milk</strong></span> if your using powder.  I can't tell you the ratios because they are all different.</li>\n";
  echo "<li>Put the <span class=\"red\"><strong>milk</strong></span>, <span class=\"red\"><strong>coffee whitener</strong></span>, <span class=\"red\"><strong>sugar</strong></span>, and <span class=\"red\"><strong>vanilla extract</strong></span> into the <span class=\"pink\"><strong>small ziploc bag</strong></span>.  Squeeze out the air before sealing the bag.</li>\n";
  echo "<li>Put the <span class=\"red\"><strong>ice</strong></span>, <span class=\"red\"><strong>salt</strong></span>, and <span class=\"pink\"><strong>small ziploc bag</strong></span> into the <span class=\"pink\"><strong>large bag</strong></span>.  Squeeze out the air and seal.</li>\n";
  echo "<li>Massage the bags vigorusly for 10-15 minutes.</li>\n";
  echo "<li>Eat the contents from the <span class=\"pink\"><strong>small bag</strong></span>, making it plainly obvious how amazingly good it is.</li>\n";
echo "</ol>\n";

echo "<h3>Flavors</h3>\n";
echo "<p>Experiment! Honey, chocolate chips, fruits, maple sugar, lemon/lime juice, etc, etc.  Or go fancy and look up custard based ice creams.  Denser creams are even better (half and half, whipping cream, whole milk).</p>\n";


include_once("./files/close.php");
?>