<?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>automaticable &#187; food</title>
	<atom:link href="http://www.automaticable.com/category/food/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automaticable.com</link>
	<description>adjective: of or pertaining to things that should work but go awry</description>
	<lastBuildDate>Sun, 27 Mar 2011 16:16:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How To: Host a Subversion Repository in Ubuntu Hardy</title>
		<link>http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/</link>
		<comments>http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 04:46:20 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[deep thoughts]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[dd-wrt]]></category>
		<category><![CDATA[ddns]]></category>
		<category><![CDATA[dynamic dns]]></category>
		<category><![CDATA[dyndns]]></category>
		<category><![CDATA[google code]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[sourceforge]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=316</guid>
		<description><![CDATA[Have you ever wanted to set up a subversion repository on your home computer? Whether it be for a new software project, versioning your personal documents, or any other reason, there are many benefits to using version control. Some free websites that will host your project for you, such as SourceForge or Google Code, but [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/subversion-logo.png"><img class="alignnone size-thumbnail wp-image-327" title="Subversion Logo" src="http://www.automaticable.com/wp-content/uploads/2008/06/subversion-logo-150x150.png" alt="" width="150" height="150" /></a>Have you ever wanted to set up a subversion repository on your home computer?  Whether it be for a new software project, versioning your personal documents, or any other reason, there are many benefits to using version control.  Some free websites that will host your project for you, such as <a title="SourceForge" href="http://www.sourceforge.net">SourceForge</a> or <a title="Google Code" href="http://code.google.com">Google Code</a>, but it&#8217;s often necessary to have a little bit more control.</p>
<p>I set up a subversion repository for a new project the other day, and the process was relatively painless.  I&#8217;m using a standard Ubuntu Hardy Heron 8.04 desktop setup, with OpenDNS and DD-WRT for port-forwarding, and without an Apache web server.  Keep reading to host your own subversion repository server.</p>
<p><span id="more-316"></span></p>
<p>The entire process for setting up a subversion server and repository is relatively simple on Linux, and should take you no more than one hour.  I&#8217;ve broken this tutorial into a few different segments, so you can concentrate on only the parts you are interested in.</p>
<ol style="clear: left;">
<li><a href="#initial-setup">Initial Setup</a></li>
<li><a href="#adding-the-first-repository">Adding the First Repository</a></li>
<li><a href="#configuring-your-repository">Configuring Your Repository</a></li>
<li><a href="#access-from-the-host-computer">Access from the Host Computer</a></li>
<li><a href="#access-from-a-lan-computer">Access from a LAN Computer</a></li>
<li><a href="#access-from-outside-the-lan">Access from Outside the LAN</a></li>
<li><a href="#final-steps">Final Steps</a></li>
</ol>
<div id="initial-setup">
<h3>Initial Setup</h3>
<p>In Ubuntu Hardy, all the tools you will need for a basic subversion server are included in the subversion package.  If you haven&#8217;t already you can install it with the following command:</p>
<pre>sudo aptitude install subversion</pre>
<p>The next steps is to create a new group that will be responsible for subversion tasks.</p>
<ul>
<li>From the Panel, navigate to System &gt; Administration &gt; Users and Groups</li>
<li>If necessary, unlock the dialog, and then click &#8220;Manage Groups&#8221;</li>
<li>Click &#8220;Add Group&#8221;.  Create a group named &#8220;subversion&#8221;, and add yourself to it.</li>
<li>Log out and back re-log in for the changes to take effect.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss01-svn-group.png"><img class="alignnone size-medium wp-image-319" style="float: none;" title="Add Subversion Group" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss01-svn-group-300x229.png" alt="" width="300" height="229" /></a></p>
<p>Now that the group is created, the next step is to create the directory structure where our repositories will live.  You can create the folder wherever you&#8217;d like, but a good choice is <em>/home/svn</em></p>
<ul>
<li>In a terminal, create your new folder, using the commands:</li>
</ul>
<blockquote>
<pre>cd /home</pre>
<pre>sudo mkdir svn</pre>
</blockquote>
<p>That&#8217;s it for the basic setup.  Of course, the subversion server isn&#8217;t useful until we add a repository or two..</p></div>
<div id="adding-the-first-repository">
<h3>Adding the First Repository</h3>
<p>In subversion, each project or directory structure is contained within its own <em>repository</em>.  Each repository (or repo for short) maintains its own access control, versioning, and logs.  Let&#8217;s create a new repository called &#8220;my-project&#8221;</p>
<p>First, we need to create the repository folder:</p>
<blockquote>
<pre>cd /home/svn</pre>
<pre>sudo mkdir my-project</pre>
</blockquote>
<p>Finally, we use the &#8220;svnadmin&#8221; command to create some base files and configure the repository.</p>
<blockquote>
<pre>sudo svnadmin create /home/svn/my-project</pre>
</blockquote>
<p>Now, change the access permissions to give the subversion group the proper settings:</p>
<blockquote>
<pre>sudo chgrp -R subversion my-project</pre>
<pre>sudo chmod -R g+rws my-project</pre>
</blockquote>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss02-project-folder.png"><img class="alignnone size-medium wp-image-320" style="float: none;" title="Subversion Repository Folder" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss02-project-folder-300x219.png" alt="" width="300" height="219" /></a></p>
<p>This is the minimum work required to initialize a repository.  At this point, you could start accessing your repository from the host computer.  But, you may also want to fine-tune your configuration below.</p></div>
<div id="configuring-your-repository">
<h3>Configuring Your Repository</h3>
<p>At this point, you should have a working repository.  However, there are still a few options you might want to tweak.  In particular, the access permissions.  By default, a fresh repository will be readable by anyone and writable by authorized users.  To change these settings, open  <em>/home/svn/my-project/conf/svnserve.conf</em> in your favorite text editor&#8211; you can use the command:</p>
<blockquote>
<pre>gedit /home/svn/my-project/conf/svnserve.conf</pre>
</blockquote>
<p>The lines that control access restrictions look like:</p>
<blockquote>
<pre># anon-access = read</pre>
<pre># auth-access = write</pre>
</blockquote>
<p>These two lines control anonymous access and authenticated access, respectively.  To change from the default behavior for each value, remove the leading &#8216;#&#8217; character, and set the right-side value to &#8216;read&#8217;, &#8216;write&#8217;, or &#8216;none&#8217;, for read-only, read-write, or no access, respectively.  When you are finished, you can save the file and close it.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss03-conf.png"><img class="alignnone size-medium wp-image-321" style="float: none;" title="Edit svnserve.conf File" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss03-conf-300x256.png" alt="" width="300" height="256" /></a></p>
<p>If you plan on using authenticated access to your repository, you will need to set up at least one username and password.  To do so, open the <em>/home/svn/my-project/conf/passwd</em> file in a text editor:</p>
<blockquote>
<pre>gedit /home/svn/my-project/conf/passwd</pre>
</blockquote>
<p>To create a username, simply add a line to the bottom of the form:</p>
<blockquote>
<pre>username = password</pre>
</blockquote>
<p>There are a few examples already in the file, but commented out.  You may add as many usernames as you need.  When you are finished, save the file and close it.  These are the basic configuration steps you&#8217;ll need, although more are discussed in the <a href="#final-steps">Final Steps</a>.</div>
<div id="access-from-the-host-computer">
<h3>Access From the Host Computer</h3>
<p>At this point you are ready to test out your new repository.  Any configured repositories should be accessible from the host computer as-is.  You can test it out by checking-out your first working copy:</p>
<blockquote>
<pre>svn checkout file:///home/svn/my-project ~/my-project-wc</pre>
</blockquote>
<p>Perhaps you would like to add a &#8220;trunk&#8221; directory, where you will develop your project:</p>
<blockquote>
<pre>cd ~/my-project-wc</pre>
<pre>mkdir trunk</pre>
<pre>svn add trunk</pre>
<pre>svn commit -m "Add a trunk directory for development."</pre>
</blockquote>
<p>Depending on your configuration above, you may be asked for a user name and password.  You should use the values you entered in the passwd file.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss04-checkout.png"><img class="alignnone size-medium wp-image-322" style="float: none;" title="Subversion Repository Checkout" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss04-checkout-300x199.png" alt="" width="300" height="199" /></a></div>
<div id="access-from-a-lan-computer">
<h3>Access from a LAN Computer</h3>
<p>If you have another laptop or desktop in your home, then you may want to also access your repository from it.  Fortunately, extending your subversion server within a LAN isn&#8217;t too much more complicated, using the <em>svn://</em> protocol.</p>
<p>First, you will need to set up a daemon on the host computer to listen for connections, using the <em>svnserve</em> command:</p>
<blockquote>
<pre>svnserve -d -r /home/svn</pre>
</blockquote>
<p>This starts a process in the background that will silently wait for connections to the subversion server.  To run in the foreground, simply use the <em>&#8211;foreground</em> parameter.</p>
<p>Then, you can connect to your repository from any computer within your LAN, using the syntax:</p>
<blockquote>
<pre>svn checkout svn://my-host/my-project ~/my-project-wc</pre>
</blockquote>
<p>where my-host is the name your host computer.  Note that it is also possible to connect using a Windows or Mac machine, with the same syntax.</p></div>
<div id="access-from-outside-the-lan">
<h3>Access from Outside the LAN</h3>
<p>If others outside your LAN will need to use the repository, or you often work away from home, then you&#8217;ll want to set up your subversion server for access anywhere.  This will require tweaking some setting in your router.  Particularly, you will need to forward TCP port 3690 to the machine hosting the subversion server.  I used a DD-WRT based router, but most router interfaces are similar.</p>
<ul>
<li>Open the web-based router control panel, and enter the administrative username and password.  Generally, the address is similar to http://192.168.1.1</li>
<li>Locate the settings for &#8220;Port Forwarding&#8221;.  If you are using DD-WRT, navigate to NAT / QoS &gt; Port Fowarding</li>
<li>Add a new entry to forward TCP port 3690 to the IP address of your subversion host computer, with destination port also 3690.  This is the default port that subversion listens on.  Then, save your settings and close.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss05-portfwd.png"><img class="alignnone size-medium wp-image-323" style="float: none;" title="DD-WRT Port Forwarding" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss05-portfwd-300x186.png" alt="" width="300" height="186" /></a></p>
<p>You can test your forwarded port by trying to connect using your external IP address.  There are many websites that will help you find your external IP, such as http://whatismyipaddress.com/  Note that it <em>shouldn&#8217;t</em> start with 192.168&#8230;</p>
<blockquote>
<pre>svn checkout svn://{external-ip}/my-project ~/my-project-wc</pre>
</blockquote>
<p>If you plan to work away from home frequently, you may want to set up dynamic DNS&#8211; this provides you with a personalized hostname, so you don&#8217;t need to remember a cryptic IP address.  If you are using DD-WRT, you can follow the following steps:</p>
<ul>
<li>Go to DynDNS.com and sign up for an account.  Create a &#8220;Dynamic DNS&#8221; (DDNS) hostname.</li>
<li>Log in to your DD-WRT admin panel as before, and navigate to Setup &gt; DDNS.</li>
<li>Enter your DynDNS account details into the appropriate fields.</li>
<li>Hit &#8220;Apply Settings&#8221;&#8211; the DDNS status should show that your IP has updated successfully.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss09-ddns.png"><img class="alignnone size-medium wp-image-326" style="float: none;" title="DD-WRT Dynamic DNS (DDNS) Settings" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss09-ddns-300x285.png" alt="" width="300" height="285" /></a></p>
<p>Once you have your DDNS hostname set up, you can use it to access your subversion repository, using the command:</p>
<blockquote>
<pre>svn checkout svn://{ddns-hostname}/my-project ~/my-project-wc</pre>
</blockquote>
<p>This should be accessible both inside and outside your LAN.</p></div>
<div id="final-steps">
<h3>Final Steps</h3>
<p>At this point, you should have a subversion repository up and running.  However, there are still a few features you may be interested in.</p>
<p>To access your repository using the <em>svn://</em> syntax, you will need to have the <em>svnserve</em> daemon running.  You can easily set the command to run when you log in with the following steps:</p>
<ul>
<li>From the desktop panel, open System &gt; Preferences &gt; Sessions.</li>
<li>Click the &#8220;Add&#8221; button to add a new Startup program.</li>
<li>In the &#8220;Name&#8221; field, enter &#8220;Subversion Server Daemon&#8221;</li>
<li>For the command, enter: <em>svnserve -d -r /home/svn</em></li>
<li>And in the description, add a useful summary such as &#8220;Listen for connections to the subversion repository&#8221;.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss06-sessions.png"><img class="alignnone size-medium wp-image-324" style="float: none;" title="Startup Subversion Daemon" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss06-sessions-300x143.png" alt="" width="300" height="143" /></a></p>
<p>Now, your subversion repository will be accessible as long as your username is logged in.</p>
<p>Once you being using multiple repositories, you may want to share the same username database for them.  For this, you will need to configure repositories to use the same &#8220;passwd&#8221; file and belong to a common realm.  For each of the repositories that will share a username database:</p>
<ul>
<li>Open a terminal in the root directory of the repository:</li>
</ul>
<blockquote>
<pre>cd /home/svn/{repository-name}</pre>
</blockquote>
<ul>
<li>Open the svnserve.conf file located in the conf directory using a text editor:</li>
</ul>
<blockquote>
<pre>gedit conf/svnserve.conf</pre>
</blockquote>
<ul>
<li>Find and uncomment the line that starts with &#8220;passwd-db&#8221;.  Enter the location of the passwd file that will be shared between databases.  You may enter an absolute path, or a path relative to the conf directory.</li>
<li>Find and uncomment the line that starts with &#8220;realm&#8221;.  Set the right side to a name that will be shared between each of the repositories accessing the common database.  You may use a descriptive name such as &#8220;work-repository-realm&#8221;.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/06/ss07-realm.png"><img class="alignnone size-medium wp-image-325" style="float: none;" title="Subversion Repository Realm" src="http://www.automaticable.com/wp-content/uploads/2008/06/ss07-realm-300x234.png" alt="" width="300" height="234" /></a></p>
<p>Finally, you may want to use subversion from the file browser.  Although not strictly part of setting up a server, it is often useful to install the Nautilus subversion plugin.  This will allow you to right click on a subversion working copy folder and perform common subversion tasks.  To install, simply enter the command:</p>
<blockquote>
<pre>sudo aptitude install nautilus-script-collection-svn</pre>
</blockquote>
<p><strong>Update:</strong> Actually, it&#8217;s a little bit tricky to get the Nautilus plugin working.  If you&#8217;re having trouble, check out these <a title="Easy Subversion GUI for Nautilus and Ubuntu" href="http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/">instructions to enable SVN access in Nautilus</a>.</p>
<p>And that&#8217;s it!  Now, start using your repository and enjoy the benefits of version control.  Are there any other tips that you would offer for setting up subversion?  Let&#8217;s hear your experiences in the comments.</p></div>
Similar:<ul><li><a href="http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/" rel="bookmark" title="September 15, 2008">Easy Subversion GUI for Nautilus and Ubuntu</a></li>

<li><a href="http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/" rel="bookmark" title="January 18, 2008">How-to: Mount a Network drive in Ubuntu</a></li>
</ul><!-- Similar Posts took 39.848 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>My First Herb Garden</title>
		<link>http://www.automaticable.com/2008-04-16/my-first-herb-garden/</link>
		<comments>http://www.automaticable.com/2008-04-16/my-first-herb-garden/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 14:11:01 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[first]]></category>
		<category><![CDATA[green onion]]></category>
		<category><![CDATA[herb garden]]></category>
		<category><![CDATA[herbs]]></category>
		<category><![CDATA[kitchen]]></category>
		<category><![CDATA[oregano]]></category>
		<category><![CDATA[parsley]]></category>
		<category><![CDATA[potted plants]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[spices]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[sweet basil]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=179</guid>
		<description><![CDATA[Last night I went grocery shopping and ended up buying seeds for a few different cooking herbs.  It&#8217;s something that I&#8217;ve been talking about doing for a while, and I finally have the opportunity to do it.  I picked up some chives, oregano, green onion, and sweet basil, as well as a parsley plant that&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/gifrancis/1393109222/"><img class="alignleft size-medium wp-image-180" title="My First Herb Garden" src="http://www.automaticable.com/wp-content/uploads/2008/04/herb-garden-225x300.jpg" alt="" width="225" height="300" /></a>Last night I went grocery shopping and ended up buying seeds for a few different cooking herbs.  It&#8217;s something that I&#8217;ve been talking about doing for a while, and I finally have the opportunity to do it.  I picked up some chives, oregano, green onion, and sweet basil, as well as a parsley plant that&#8217;s already potted.  Since we haven&#8217;t quite felt the affects of spring yet, I plan on planting them in pots by a window inside to start.  Once they start to grow and the weather gets nicer, they&#8217;ll move to our balcony outside.</p>
<p>This is really my first &#8220;gardening&#8221; experience on my own, as minor as it might be.  The seed packets have some basic instructions on them that I think will get me through.  But, what other suggestions do people have?  How will I know when they are ready for &#8220;harvesting&#8221;, and how much can I cut off without killing the plant?  Are there any other herbs that are nice for growing in the kitchen?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-04-23/summer-workout-plan/" rel="bookmark" title="April 23, 2008">Summer Workout Plan</a></li>

<li><a href="http://www.automaticable.com/2008-03-09/adventures-in-food-sushi/" rel="bookmark" title="March 9, 2008">Adventures in Food: Sushi</a></li>
</ul><!-- Similar Posts took 9.627 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-04-16/my-first-herb-garden/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FreeRice: Stopping World Hunger AND Free GRE Prep</title>
		<link>http://www.automaticable.com/2008-04-10/freerice-stopping-world-hunger-and-free-gre-prep/</link>
		<comments>http://www.automaticable.com/2008-04-10/freerice-stopping-world-hunger-and-free-gre-prep/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 15:25:21 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[donate]]></category>
		<category><![CDATA[freerice]]></category>
		<category><![CDATA[GRE]]></category>
		<category><![CDATA[non-profit]]></category>
		<category><![CDATA[philanthropy]]></category>
		<category><![CDATA[rice]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[test-prep]]></category>
		<category><![CDATA[vocab]]></category>
		<category><![CDATA[vocabulary]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[world hunger]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=168</guid>
		<description><![CDATA[FreeRice is a non-profit website that will donate 20 grains for each vocabulary question answered correctly.  From their about page: FreeRice has two goals: Provide English vocabulary to everyone for free. Help end world hunger by providing rice to hungry people for free. When you enter the site, you are presented with a fairly difficult [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freerice.com"><img class="alignnone size-medium wp-image-170" title="FreeRice" src="http://www.automaticable.com/wp-content/uploads/2008/04/freerice.jpg" alt="" width="125" height="125" /></a><a title="FreeRice" href="http://www.freerice.com" target="_blank">FreeRice</a> is a non-profit website that will donate 20 grains for each vocabulary question answered correctly.  From their about page:</p>
<blockquote><p>FreeRice has two goals:</p>
<ol>
<li>Provide English vocabulary to everyone for free.</li>
<li>Help end world hunger by providing rice to hungry people for free.</li>
</ol>
</blockquote>
<p>When you enter the site, you are presented with a fairly difficult vocabulary question, with a multiple choice answer.  For each one you get right, 20 grains are donated.  You can keep answering questions for as long as you like.  The questions seem to get harder based on your &#8220;vocabulary level.&#8221;  The donations are funded by a small advertising banner on the bottom of the page.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/04/freerice-ss.png"><img class="aligncenter size-medium wp-image-169" title="FreeRice Screenshot" src="http://www.automaticable.com/wp-content/uploads/2008/04/freerice-ss-300x189.png" alt="" width="300" height="189" /></a></p>
<p>This seems like a really good test prep for anyone taking a standardized test this spring, especially the GRE.  And, you&#8217;re doing a good deed at the same time&#8211; what could be better?  I first came across the page from a <a title="SpreadFirefox" href="http://www.spreadfirefox.com/500million" target="_blank">blog article</a> from SpreadFirefox.  In February, Firefox broke the 500 million download mark.  To celebrate, they made it their goal to donate 500,000,000 grains of rice through this website.  Cool stuff.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-06-18/did-you-download-firefox-3-show-it-off/" rel="bookmark" title="June 18, 2008">Did You Download Firefox 3? Show it Off!</a></li>

<li><a href="http://www.automaticable.com/2008-06-17/firefox-3-download-day/" rel="bookmark" title="June 17, 2008">Firefox 3 Download Day!</a></li>
</ul><!-- Similar Posts took 10.145 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-04-10/freerice-stopping-world-hunger-and-free-gre-prep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folgers French Vanilla Coffee: Candy For Breakfast</title>
		<link>http://www.automaticable.com/2008-04-09/folgers-french-vanilla-coffee-candy-for-breakfast/</link>
		<comments>http://www.automaticable.com/2008-04-09/folgers-french-vanilla-coffee-candy-for-breakfast/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 20:16:31 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[candy]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[drink]]></category>
		<category><![CDATA[folgers]]></category>
		<category><![CDATA[french vanilla]]></category>
		<category><![CDATA[morning]]></category>
		<category><![CDATA[Scott Wegner]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=163</guid>
		<description><![CDATA[We ran out of coffee here at the house, and my roommate picked up some Folgers French Vanilla to replace it. I&#8217;m generally not picky about my coffee; our last batch was store-brand French roast (I do like French roast though). So the point is, that this new coffee is pretty amazing. Actually, it tastes [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-164" title="Folgers French Vanilla" src="http://www.automaticable.com/wp-content/uploads/2008/04/folgers.jpg" alt="" width="175" height="175" />We ran out of coffee here at the house, and my roommate picked up some Folgers French Vanilla to replace it.  I&#8217;m generally not picky about my coffee; our last batch was store-brand French roast (I do like French roast though).  So the point is, that this new coffee is pretty amazing.  Actually, it tastes only slightly above-average to me, but it smells like candy when you brew it.  Every day around 8 AM, our house smells like sweet deliciousness.  Perhaps I&#8217;m one step closer to having productive mornings.</p>
<p>What kind of coffee do you drink?  Are you picky?  Do you load it up with sugar and cream, or take it straight-up black?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-02-14/jonathan-apples/" rel="bookmark" title="February 14, 2008">Jonathan Apples</a></li>

<li><a href="http://www.automaticable.com/2008-02-17/new-guy/" rel="bookmark" title="February 17, 2008">New Guy</a></li>
</ul><!-- Similar Posts took 8.189 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-04-09/folgers-french-vanilla-coffee-candy-for-breakfast/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adventures in Food: Sushi</title>
		<link>http://www.automaticable.com/2008-03-09/adventures-in-food-sushi/</link>
		<comments>http://www.automaticable.com/2008-03-09/adventures-in-food-sushi/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 18:08:48 +0000</pubDate>
		<dc:creator>Kyle Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[fxcuisine]]></category>
		<category><![CDATA[Kyle Wegner]]></category>
		<category><![CDATA[raw fish]]></category>
		<category><![CDATA[sushi]]></category>
		<category><![CDATA[sushi blog]]></category>
		<category><![CDATA[sushi party]]></category>
		<category><![CDATA[sushiday]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008-03-09/adventures-in-food-sushi/</guid>
		<description><![CDATA[For a long time I have had a strong aversion to sushi, mostly because I do not like the idea of eating raw fish. It&#8217;s not the flavor or the uncookedness (new word!) but the texture that gets me. I just can&#8217;t get over that feeling of raw sliminess on my tongue and throat&#8230;blech. But [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/03/sushi.jpg" target="_blank" title="sushi.jpg"><img src="http://www.automaticable.com/wp-content/uploads/2008/03/sushi.thumbnail.jpg" alt="sushi.jpg" class="imageframe imgalignleft" height="225" width="300" /></a>For a long time I have had a strong aversion to sushi, mostly because I do not like the idea of eating raw fish.  It&#8217;s not the flavor or the uncookedness (new word!) but the texture that gets me.  I just can&#8217;t get over that feeling of raw sliminess on my tongue and throat&#8230;blech.  But lately I have been a bit more adventurous and have gone to a number of different sushi restaurants around town.  I started with mostly tempura sushi, then moved to non-tempura, but cooked rolls.  All was good since this was all stuff I had eaten before, it just wasn&#8217;t all rolled up and called sushi.  Since then I have actually had a number of real, uncooked sushi rolls, but luckily most of them have had an abundance of rice and very little fish, so the raw texture was not overwhelming.  I have even gone as far as trying nigiri, raw fish that just sits on top of rice&#8230;that was kind of a mistake.  I guess it is good that I tried it once, but I doubt I&#8217;ll ever do it again.</p>
<p>Today I ran across a pretty cool homemade sushi blog, <a href="http://sushiday.com/" target="_blank">Sushiday</a>.   I know making sushi at home can get expensive and messy with the product being nowhere near as good as authentic sushi, but this shushi blog makes it look so easy!  I just wish they had step-by-step instructions with pictures like my absolute favorite food blog, <a href="http://fxcuisine.com/" target="_blank">FXcuisine</a>.  One of the great things about making sushi yourself is there will be no surprises.  Don&#8217;t like raw fish?  Cook it yourself.  Like things extra spicy?  Done!  Want to try something sweet or fruity?  Let&#8217;s experiment!  I think one of these days I am going to get a few friends together for a sushi rolling party.  We can make a ton of rice and get a bunch of nori (dried seaweed) and just fill them with whatever our hearts desire.</p>
<p>Sound fun?  Give me some suggestions for what I should experiment with in the comments.  Let&#8217;s get creative.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-07-06/cooking-cheap-snacks-101-granola-bars/" rel="bookmark" title="July 6, 2008">Cooking Cheap Snacks 101: Granola Bars</a></li>

<li><a href="http://www.automaticable.com/2008-04-13/plagiarism-in-and-online-world/" rel="bookmark" title="April 13, 2008">Plagiarism in an Online World</a></li>
</ul><!-- Similar Posts took 15.303 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-03-09/adventures-in-food-sushi/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Kitchen Hack: Mason Jar Magic Bullet</title>
		<link>http://www.automaticable.com/2008-02-18/kitchen-hack-mason-jar-magic-bullet/</link>
		<comments>http://www.automaticable.com/2008-02-18/kitchen-hack-mason-jar-magic-bullet/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 05:47:15 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[diy]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[food processor]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[kitchen]]></category>
		<category><![CDATA[magic bullet]]></category>
		<category><![CDATA[mason jars]]></category>
		<category><![CDATA[smoothie]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008-02-18/kitchen-hack-mason-jar-magic-bullet/</guid>
		<description><![CDATA[So I just made the most who-woulda-thunk-it discovery. Stumbling around the internet, I came across this blog with a tip on mason jars. It turns out that the opening on an average mason jar is sized and threaded just right to fit on your blender. Simply unscrew the bottom of the blender&#8217;s normal pitcher, and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/patrick_q/216398236/" target="_blank" title="Mason Jars"><img src="http://www.automaticable.com/wp-content/uploads/2008/02/mason_jar.thumbnail.jpg" alt="Mason Jars" class="imageframe imgalignleft" height="224" width="300" /></a>So I just made the most who-woulda-thunk-it discovery.  Stumbling around the internet, I came across <a href="http://www.elise.com/recipes/archives/001357tip_blender_and_mason_jar.php" target="_blank">this blog</a> with a tip on mason jars.  It turns out that the opening on an average mason jar is sized and threaded just right to fit on your blender.  Simply unscrew the bottom of the blender&#8217;s normal pitcher, and screw it right on top of your mason jar.  Flip it over onto your blender base, and <em>voila</em>!  This would make a terrific food processor, or a single-serving smoothie.  In fact, you could call this a DIY <a href="http://www.buythebullet.com/">Magic Bullet</a> blender, on the cheap.</p>
<p>According to the article, this isn&#8217;t just coincidence, but dates back to a time when blenders were sold with a mason jar &#8220;attachment&#8221; included.  A local bar around us gives out logo mason jars as mugs, and we&#8217;ve got about a dozen of them piled up in our cabinets.  Now I&#8217;ve found a new use for them!</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-03-05/take-the-green-pen/" rel="bookmark" title="March 5, 2008">Take the Green Pen</a></li>

<li><a href="http://www.automaticable.com/2008-03-22/the-worlds-best-blogs-according-to-me/" rel="bookmark" title="March 22, 2008">The World&#8217;s Best Blogs (according to me!)</a></li>
</ul><!-- Similar Posts took 8.685 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-02-18/kitchen-hack-mason-jar-magic-bullet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teary-Eyed Tenderloin</title>
		<link>http://www.automaticable.com/2008-02-17/teary-eyed-tenderloin/</link>
		<comments>http://www.automaticable.com/2008-02-17/teary-eyed-tenderloin/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 05:34:22 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[beef]]></category>
		<category><![CDATA[cbs]]></category>
		<category><![CDATA[cows]]></category>
		<category><![CDATA[forklift]]></category>
		<category><![CDATA[inhumane]]></category>
		<category><![CDATA[recall]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008-02-17/teary-eyed-tenderloin/</guid>
		<description><![CDATA[I know this is my second post about beef in a month, I&#8217;ll try to limit myself in the future. But, I was just reading an article from CBS about an ongoing recall of beef distributed out of Southern California, because they used &#8220;sick, or &#8216;downer&#8217; cows.&#8221; Of course, the first thing that comes to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.automaticable.com/wp-content/uploads/2008/02/cow.thumbnail.jpg" alt="Cow" class="imageframe imgalignleft" height="220" width="300" />I know this is my second <a href="http://www.automaticable.com/2008-01-31/thoughts-on-cloned-meat/">post about beef</a> in a month, I&#8217;ll try to limit myself in the future.  But, I was just reading an article from <a href="http://cbs3.com/health/recall.slaughterhouse.2.656343.html">CBS</a> about an ongoing recall of beef distributed out of Southern California, because they used &#8220;sick, or &#8216;downer&#8217; cows.&#8221;  Of course, the first thing that comes to mind is a cheap jab at the &#8220;happy cows from California&#8221; ad campaign that has been ongoing&#8211; I think they&#8217;re going to have to reconsider their slogan.</p>
<p>But all jokes aside, this is a big deal.  <em>143 million pounds</em> of meat were recalled.  That&#8217;s  over half-a-billion quarter pounders (thank you college math) deemed unfit for consumption.  That&#8217;s enough meat to feed every child at a school of 2000 kids for a little over <em>783 years!</em>  So this is a big deal.</p>
<p>And that&#8217;s just what the meat was being used for&#8211; to feed school children.  According to the article, around 120,000 pounds of the meat had been distributed to schools in Tennessee.  30 school districts across the state won&#8217;t be serving meat until further notice.</p>
<p>The question on my mind when I read the article, was whether it was really necessary to recall all that meat, just because the cows were a little depressed.  However, they mention that these &#8216;downer&#8217; cows are prone to &#8220;wallow in feces,&#8221; and thus have a much higher rate of disease.  Most shocking was watching <a href="http://cbs3.com/video/?id=52889">this video</a> of workers jabbing the cows with forklifts to get them into their pen, along side the CEO trying to justify the treatment.</p>
<p>So, here we are now with the largest beef recall in the United States as a result.  I hope that the press that this generates will expose more cases like this, and ultimately shape up the industry.  I suppose this is why organizations like PETA exist, and why the vegan movement exists in general.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-01-31/thoughts-on-cloned-meat/" rel="bookmark" title="January 31, 2008">Thoughts on Cloned Meat</a></li>

<li><a href="http://www.automaticable.com/2008-02-01/latex-is-beautiful/" rel="bookmark" title="February 1, 2008">LaTeX is Beautiful</a></li>
</ul><!-- Similar Posts took 13.793 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-02-17/teary-eyed-tenderloin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jonathan Apples</title>
		<link>http://www.automaticable.com/2008-02-14/jonathan-apples/</link>
		<comments>http://www.automaticable.com/2008-02-14/jonathan-apples/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 22:53:22 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[apples]]></category>
		<category><![CDATA[conoisseur]]></category>
		<category><![CDATA[jonathan]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008-02-14/jonathan-apples/</guid>
		<description><![CDATA[A few years ago, I decided that I wanted to be a connoisseur of three things when I grow up: wine, cheese, and apples. My interest in apples was spurred by a short article I read as part of an ACT prep, about a blind apple-tasting competition. It seemed silly that there would be a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.automaticable.com/wp-content/uploads/2008/02/apple.thumbnail.jpg" alt="Apple" class="imageframe imgalignleft" height="225" width="300" />A few years ago, I decided that I wanted to be a connoisseur of three things when I grow up: wine, cheese, and apples.  My interest in apples was spurred by a short article I read as part of an ACT prep, about a blind apple-tasting competition.  It seemed silly that there would be a competition to correctly identify apples from one-another, yet elegant that these people were so into their apples.</p>
<p>So last week when I went shopping I bought a few Jonathan apples.  To describe it physically, it&#8217;s a red, small- to medium-sized apple, with noticeable imperfections on its rough outer skin.  Many of the ones I bought were missing the stem, although I&#8217;m not sure what that might imply.  Anyway, on to the taste.</p>
<p>The skin was rough, and perhaps thicker than the average apple skin.  The fleshy inside was a bit tart, which is unlike most red apples I&#8217;ve tasted.  I wouldn&#8217;t compare it to a Granny Smith, but it was definitely a distinguishing feature.  It wasn&#8217;t too tart to be undesirable, but instead it gave it a distinctive flavor.  All apples are juicy, but I think this brand may have been a bit juicier than most.  Of the ones I&#8217;ve tried so far, they have free of bruises, and delicious all the way through.</p>
<p>At this point I&#8217;ve only tried the Jonathan apple by itself, but I can image many possible pairings.  For starters, this seems like more than a caramel-and-nut apple than peanut butter apple.  Also, it would be very tasty to cook them down for baked apples or jam.  If you find yourself with more apples than you can eat before their go bad, you might even consider using these in a warm, seasonal apple cider.</p>
<p>Overall, I would recommend this apple to anyone ready to break away from the traditional red delicious, or if you just wanted to try something new.  I wouldn&#8217;t say this is my favorite apple, but I would definitely give it two thumbs up.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-04-09/folgers-french-vanilla-coffee-candy-for-breakfast/" rel="bookmark" title="April 9, 2008">Folgers French Vanilla Coffee: Candy For Breakfast</a></li>

<li><a href="http://www.automaticable.com/2008-04-25/the-office-season-4-predictions/" rel="bookmark" title="April 25, 2008">The Office Season 4 Predictions</a></li>
</ul><!-- Similar Posts took 14.900 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-02-14/jonathan-apples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thoughts on Cloned Meat</title>
		<link>http://www.automaticable.com/2008-01-31/thoughts-on-cloned-meat/</link>
		<comments>http://www.automaticable.com/2008-01-31/thoughts-on-cloned-meat/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 18:00:00 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[beef]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[fda]]></category>
		<category><![CDATA[meat]]></category>
		<category><![CDATA[peta]]></category>
		<category><![CDATA[vegetarian]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008/01/31/thoughts-on-cloned-meat/</guid>
		<description><![CDATA[So, the FDA passed a bill last night officially declaring that cloned meat is safe to eat. Now, I live in a house with my fair share of vegetarian / organic-eating roommates, so this caused quite a stir. Therefore, I&#8217;d like to offer my own thoughts&#8230; So the controversy over cloned meat is multi-level: is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_JbstcOXI2hU/R6DyhuAV2FI/AAAAAAAAAHY/YGCUe61nYvQ/s1600-h/beef.jpg"><img src="http://bp1.blogger.com/_JbstcOXI2hU/R6DyhuAV2FI/AAAAAAAAAHY/YGCUe61nYvQ/s320/beef.jpg" style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer" border="0" /></a>So, the FDA passed a bill last night officially declaring that cloned meat is safe to eat.  Now, I live in a house with my fair share of vegetarian / organic-eating roommates, so this caused quite a stir.  Therefore, I&#8217;d like to offer my own thoughts&#8230;</p>
<p>So the <span class="blsp-spelling-corrected">controversy</span> over cloned meat is multi-level: is it really safe, does it hurt the animal, does it have the potential for health risks, etc.  Well the fact of the matter is, we&#8217;ve been doing things like this for a long time, and it&#8217;s never been a problem.  Genetically engineered foods have been on the market for decades, and there is no scientific evidence that shows them to be harmful.  And cloned meats are even less likely to cause a problem, because no DNA is actually being modified, just reproduced.</p>
<p>The way that the whole process works (from my understanding), is that a prize-cow is chosen, and DNA is extracted through blood cells.  Through chemistry magic, the DNA is coerced into an embryo, and inserted into a female cow.  It gestates for a while, and then finally, out pops a baby clone.  Now, the clone isn&#8217;t actually used for meat&#8211; that would be too expensive.  Instead, it&#8217;s bread with other fine steers, and the offspring are used for meat.</p>
<p>So this brings me to the point on animal treatment.  The new clones are the most expensive cows on the farm, and thus treated like kings.  As far as the cow that produces the clone, the process is comparable to artificial insemination, which has been going on for years.  So, you can expect PETA to be all over this one&#8211; but it&#8217;s nothing new.</p>
<p>Then, the quality of food.  The meat that hits our grocery stores isn&#8217;t going to be any worse or more dangerous than what we have now.  There&#8217;s no new DNA being introduced, and what you&#8217;re eating is a naturally-born cow.  In fact, if anything, there&#8217;s less chance of disease, because the offspring will be more uniform across the board.  If they test one hamburger and it&#8217;s disease free, chances are the rest will be too.</p>
<p>So I guess the last thing to consider is the future&#8211; how does this bode for our future, the farmer&#8217;s future, and the future of cows as we know it (as we know them?).  From the consumer perspective, we can expect cheaper, higher-quality meat.  As the process is perfected and universally adopted, the cows will be cheaper to produce, and they will be selectively bread for prize cows every time.  This brings us to the farmer; with new technology, he can expect bigger, healthier cows that he can sell for a higher profit.  And as for the cows, each new clone will be selected for higher immunity against disease and to be healthy, happy cows.  All in all, it&#8217;s a win-win-win situation.</p>
<p>PS: You actually have nothing to worry about just yet; although the FDA has deemed clones safe to eat, the Department of Agriculture has asked for a further ban on cloned meat, for at least 2 more years.</p>
<p>PPS: Check out that sweet graphic above.  I made that using <a href="http://www.gimp.org/">GIMP</a> in Ubuntu&#8211; cool huh?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-02-17/teary-eyed-tenderloin/" rel="bookmark" title="February 17, 2008">Teary-Eyed Tenderloin</a></li>

<li><a href="http://www.automaticable.com/2008-01-06/cpu-woes-and-bigfixexe/" rel="bookmark" title="January 6, 2008">CPU Woes and Bigfix.exe</a></li>
</ul><!-- Similar Posts took 27.146 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-01-31/thoughts-on-cloned-meat/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ditching Soda For Water</title>
		<link>http://www.automaticable.com/2008-01-07/ditching-soda-for-water/</link>
		<comments>http://www.automaticable.com/2008-01-07/ditching-soda-for-water/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 20:43:00 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[soda]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/2008/01/07/ditching-soda-for-water/</guid>
		<description><![CDATA[I just read an article via TipNut with some tips to make drinking water more appealing, rather than soda. I&#8217;m a pretty strong believer in this for a few different reasons: It&#8217;s a heck of a lot cheaper to just drink water. And convenient! Soda makes your teeth feel pretty gross, which annoys me. Every [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_JbstcOXI2hU/R4KSPDc1LpI/AAAAAAAAAF4/Bs8-PIMYgzE/s1600-h/b1geneverglass001.jpg"><img src="http://bp1.blogger.com/_JbstcOXI2hU/R4KSPDc1LpI/AAAAAAAAAF4/Bs8-PIMYgzE/s320/b1geneverglass001.jpg" style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer" border="0" /></a><br />
I just read an article via <a href="http://tipnut.com/how-to-beat-the-soda-pop-addiction/"><span class="blsp-spelling-error">TipNut</span></a> with some tips to make drinking water more appealing, rather than soda.  I&#8217;m a pretty strong believer in this for a few different reasons:</p>
<ul>
<li>It&#8217;s a heck of a lot cheaper to just drink water.  And convenient!</li>
<li>Soda makes your teeth feel pretty gross, which annoys me.</li>
<li>Every article you&#8217;ll ever read about dieting tells you that drinking your calories is a waste.  It doesn&#8217;t fill you up, and there&#8217;s no nutritional value to soda.</li>
</ul>
<p>In the article they emphasize ways to make water more appealing, such as <span class="blsp-spelling-corrected">refrigerating</span> water, or adding some lemon juice.  I also like to keep the house stocked with Crystal Light, which is sugar free and packs around 20 calories to the liter.</p>
<p>I would also like to emphasize a similar mind trick&#8211; make soda seem less appealing.  When buying soda, buy the two-liter bottles.  They already mention that this saves you the mental obligation to drink the whole thing.  But also, the two-liter bottles tend to go flat after opening, so it&#8217;ll be less apealing.  Also, it&#8217;s cheaper.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-02-08/shopping-online-frugally/" rel="bookmark" title="February 8, 2008">Shopping Online Frugally</a></li>

<li><a href="http://www.automaticable.com/2008-05-25/twitter-revisited-takeaways/" rel="bookmark" title="May 25, 2008">Twitter Revisited &#8211; Takeaways</a></li>
</ul><!-- Similar Posts took 12.516 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-01-07/ditching-soda-for-water/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

