<?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; Scott Wegner</title>
	<atom:link href="http://www.automaticable.com/author/swegner/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>Testing Ubuntu Jaunty and Ext4 WITHOUT Trashing Your Data</title>
		<link>http://www.automaticable.com/2009-03-12/testing-ubuntu-jaunty-and-ext4-without-trashing-your-data/</link>
		<comments>http://www.automaticable.com/2009-03-12/testing-ubuntu-jaunty-and-ext4-without-trashing-your-data/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 17:00:22 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[alpha]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[data-loss]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[truncate]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=569</guid>
		<description><![CDATA[Ubuntu 9.04 &#8220;Jaunty Jackelope&#8221; is set for release in less than two months, and is currently in the &#8220;Alpha 6&#8243; testing stage.  Arguably the hottest new feature is stable support for Linux&#8217;s new filesystem, ext4.  The new filesystem has been shown to have significant performance gains over any other Linux filesystem to date.  But think [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/rickabbott/111599344/"><img class="alignleft size-thumbnail wp-image-570" title="Trash Thank You" src="http://www.automaticable.com/wp-content/uploads/2009/03/trash-can-150x150.jpg" alt="Trash Thank You" width="150" height="150" /></a>Ubuntu 9.04 &#8220;Jaunty Jackelope&#8221; is set for release in less than two months, and is currently in the &#8220;Alpha 6&#8243; testing stage.  Arguably the hottest new feature is stable support for Linux&#8217;s new filesystem, ext4.  The new filesystem has been shown to have <a title="Linux Filesystem Benchmarks" href="http://www.phoronix.com/scan.php?page=article&amp;item=ext4_benchmarks&amp;num=1">significant performance gains</a> over any other Linux filesystem to date.  But think twice before you upgrade to ext4&#8211;many users have been reporting <a title="Bug #317781: Ext4 data loss" href="https://bugs.launchpad.net/bugs/317781">considerable data loss</a>.  From a user&#8217;s <a href="https://bugs.launchpad.net/ubuntu/jaunty/+source/linux/+bug/317781/comments/4">comment</a>:</p>
<blockquote style="clear: both"><p>This has happened to me twice, the first time erasing Firefox settings, and the second time erasing gnome-terminal settings. Both cases were caused by a kernel panic locking up the system. Also, both times the program whose settings were affected was in use during the kernel panic.</p></blockquote>
<p>This has been a wide-spread problem, particularly for Ubuntu users testing the new Jaunty alpha releases.  It manifests itself after a system crash, where open files will simply be emptied and erased.  It is particularly prevalent in users&#8217; settings files, such as those used for GNOME or KDE.  Fortunately, there cause of the bug is relatively well-known, as kernel developer Theodore Ts&#8217;o explains in his detailed <a href="https://bugs.launchpad.net/ubuntu/jaunty/+source/linux/+bug/317781/comments/45">comment</a>:</p>
<blockquote><p>OK, so enter ext4 and delayed allocation. With delayed allocation, we don&#8217;t allocate a location on disk for the data block right away. Since there is no location on disk, there is no place to write the data on a commit; but it also means that there is no security problem. It also results in a massive performance improvements; for example, if you create a scratch file, and then delete it 20 seconds later, it will probably never hit the disk. Unfortunately, the default VM tuning parameters, which can be controlled by /proc/sys/vm/dirty_expire_centiseconds and /proc/sys/vm/dirty_writeback_centiseconds, means that in practice, a newly created file won&#8217;t hit disk until about 45-150 seconds later, depending on how many dirty pages are in the page cache at the time. (This isn&#8217;t unique to ext4, by the way &#8212; any advanced filesystem which does delayed allocation, which includes xfs and the in the future, btrfs, will have the same issue.)</p></blockquote>
<p>Essentially, the data for truncated and overwritten files is often cached in memory before actually hitting the disk, for performance reasons.  However, the file truncation doesn&#8217;t get cached, and if there is a system failure between the two operations, your files will simply be wiped clean with all previous <em>and</em> new data gone.  This happens frequently for desktop settings because hundreds of small hidden files are updated to maintain user preferences.  As a result, there is a relatively high probability that a truncation and rewrite operation could be happened at any time&#8211; including during a system failure.</p>
<p>By POSIX definition, this isn&#8217;t really a bug in ext4.  The state of a file after this type of crash isn&#8217;t clearly defined.  <a href="https://bugs.launchpad.net/ubuntu/jaunty/+source/linux/+bug/317781/comments/54">According to Theodore</a>, it&#8217;s really a bug in the way desktop environments are writing their settings files:</p>
<blockquote><p>[...] If your application is stupid, and has hundreds of dot files in your home directory, each one taking up a 4k disk block even though it is only storing 4 to 12 bytes of data in each singleton dot file, and you have to [write to disk] for each of your one hundred dot files &#8212; and worse yet, your application for some stupid, unknown reason is writing all of these hundred+ dot files every few seconds, then [writing to disk] will be very painful. But it is painful because the application is stupidly written &#8212; not for any fundamental filesystem fault. It&#8217;s like if you had a robot which was delivering mail to mail box numbers 1, 2, 3, 4, 5, and crossing the street for each mail box; on a busy road, this is unsafe, and the robot was getting run over when it kept on jaywalking &#8212; so you can tell the robot to only cross at crosswalks, when the &#8220;walk&#8221; light is on, which is safe, but slow &#8212; OR, you could rewrite the robot&#8217;s algorithsm so it delieveres the mail more intelligently (i.e., one side of the street, and then cross, safely at the crosswalk, and then do the other side of the street).</p></blockquote>
<p>Regardless of what a permanant solution should include, there are a series of patches which are set to be included in the final Jaunty kernel to address this issue.  The patches are set to handle the crash situation similar to ext3&#8211; keeping the original version in-tact.  However, it comes at a price of performance.  Ext4 won&#8217;t be any slower than ext3, but the patch will negate many of the performance gains that ext4 previously achieved.</p>
<p>Once again, ext4 will likely be patched and fixed by the official Ubuntu Jaunty release.  However, it isn&#8217;t present in Jaunty Alpha 6, and hasn&#8217;t been pushed as an update yet (as of 3/12/09).  There is lengthy and ongoing discussion in the original <a href="https://bugs.launchpad.net/ubuntu/jaunty/+source/linux/+bug/317781?comments=all">bug report</a> about possible long-term solutions.  In conclusion, be very careful if you choose to test out the new ext4 filesystem until it is patched.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-04-22/ubuntu-upgrade-hardy-goals/" rel="bookmark" title="April 22, 2008">Ubuntu Upgrade, Hardy Goals</a></li>

<li><a href="http://www.automaticable.com/2008-07-03/introducing-pwdhash-sharp-084/" rel="bookmark" title="July 3, 2008">Introducing: Pwdhash Sharp 0.8.4</a></li>
</ul><!-- Similar Posts took 48.581 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2009-03-12/testing-ubuntu-jaunty-and-ext4-without-trashing-your-data/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Linux For Computer Science Majors</title>
		<link>http://www.automaticable.com/2009-02-26/linux-for-computer-science-majors/</link>
		<comments>http://www.automaticable.com/2009-02-26/linux-for-computer-science-majors/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 18:00:00 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[course]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[seminar]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=515</guid>
		<description><![CDATA[My name is Scott Wegner, and I&#8217;m a Computer Science major at the University of Illinois, Urbana-Champaign. I&#8217;ve had Linux installed as my primary OS for about 3 years, and as a computer science major, it&#8217;s certainly my environment of choice.  Not only does Linux deliver a rich desktop environment, but also the command-line and [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Flickr page" href="http://www.flickr.com/photos/frenchy/272475979/"><img class="alignleft size-medium wp-image-516" title="Tux" src="http://www.automaticable.com/wp-content/uploads/2009/02/tux-300x166.jpg" alt="Tux" width="300" height="166" /></a>My name is Scott Wegner, and I&#8217;m a Computer Science major at the University of Illinois, Urbana-Champaign.</p>
<p>I&#8217;ve had Linux installed as my primary OS for about 3 years, and as a computer science major, it&#8217;s certainly my environment of choice.  Not only does Linux deliver a rich desktop environment, but also the command-line and its vast number of utilities are indespensible for any sort of development.  It still suprises me, then, when I see other CS majors at my university who are so unfamiliar with Linux, and who cringe when any programming assignment requires Linux for one reason or another.  It got me thinking.</p>
<p>Our computer science department also has a number of computer labs with Linux machines, accessbile remotely and for physical access.  There are also a few Windows machines for those who prefer Visual Studio, although these machines are generally inferior when it comes to speed and stability.  So why do students still flock to them?  I think it&#8217;s because the courses at our university only give a terse introduction to Linux and the utilities that the course will require.  What we need is something that will really show students the ease and the power of Linux.  Maybe a 1-hour tutorial, perhaps a half-day workshop, or even a 1-credit hour introductory course.  Yes.</p>
<p>This wouldn&#8217;t be the sort of tutorial you see on the internet that praises Ubuntu for it&#8217;s robustness and claims that users should never need the terminal.  CS majors need to embrace the terminal and its utilities.  I asked earlier on <a title="Scott Wegner on Identi.ca" href="http://identi.ca/notice/2501516">identi.ca</a> / <a title="Scott Wegner on Twitter" href="http://twitter.com/swegner2/status/1254314435">twitter</a> what people would talk about, and received a number of great responses.  There&#8217;s a whole list of tools that students need to be familiar with to really be productive.</p>
<ul>
<li>grep, less, head, tail</li>
<li>vim, emacs</li>
<li>make</li>
<li>svn, cvs</li>
<li>ssh</li>
<li>man</li>
<li>awk,  sed</li>
<li>diff,  sdiff, colordiff</li>
</ul>
<p>There&#8217;s also a lot of tools that would simply make their experience more pleasant, such as screen, rsync, latex, etc.  Having an understanding, or at least a crude familiarity of these utilities would certainly improve a student&#8217;s experience on projects which require them.  It may even convince them to try the faster Linux machines next time they visit the computer labs.</p>
<p>But how would one structure such a course?  I think a 1-hour weekly lab workshop would be the best setting.  The course could revolve around some simple in-class project that utilizes each of these tools.  Each week could introduce a new command, looking into it&#8217;s basic syntax and functionality, as well as providing links and resources to explore its advanced usage.  The majority of class time would be spent working on the project, trying each new command and using it to solve some basic problem.  The hands-on section would be crucial, as this is will instill the basic familiarity that students will hold with them for later courses.  I also think it would be useful to have extra time after class for &#8220;install-fests&#8221;.  This would give students the opportunity to install Linux at home and see if they would like it&#8211; either in a virtual machine, via Wubi, or on a physical drive.  They should be offered, optionally of course, once at the beginning of the semester, half-way through, and towards the end.</p>
<p>So what do you think&#8211; could something like this work?  Would it be helpful?  Have you heard of a university that provides something similar?  And what applications would you add to the list?  Let&#8217;s hear it in the comments.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-01-18/how-to-use-your-ubuntu-computer-as-a-music-alarm-clock/" rel="bookmark" title="January 18, 2008">How-to: Use Your Ubuntu Computer as a Music Alarm Clock</a></li>

<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>
</ul><!-- Similar Posts took 21.851 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2009-02-26/linux-for-computer-science-majors/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Hello 2009 and New Years Resolutions</title>
		<link>http://www.automaticable.com/2009-01-03/hello-2009-and-new-years-resolutions/</link>
		<comments>http://www.automaticable.com/2009-01-03/hello-2009-and-new-years-resolutions/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 21:32:03 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[execise]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[automaticable]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[new years]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=489</guid>
		<description><![CDATA[I&#8217;m a couple days late, but Happy New Years!  2008 was our inaugural year for automaticable, and it has been a huge success. Let&#8217;s look back with some stats: Total Posts: 147 Total Comments: 376 Total Visitors: 54,679 Number of Visiting Countries: 154 Number of Sites Linking Here: 364 Busiest Traffic Day: Sept. 21 (10,285 [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-490" title="Champagne Cork" src="http://www.automaticable.com/wp-content/uploads/2009/01/cork-300x225.jpg" alt="Champagne Cork" width="210" height="158" />I&#8217;m a couple days late, but Happy New Years!  2008 was our inaugural year for automaticable, and it has been a huge success.<br />
<br style="clear:left" /><br />
Let&#8217;s look back with some stats:</p>
<ul>
<li><strong>Total Posts:</strong> 147</li>
<li><strong>Total Comments: </strong>376</li>
<li><strong>Total Visitors: </strong><span class="primary_value">54,679</span></li>
<li><span class="primary_value"><strong>Number of </strong></span><span class="primary_value"><strong>Visiting </strong></span><span class="primary_value"><strong>Countries: </strong>154</span></li>
<li><span class="primary_value"><strong>Number of Sites Linking Here: </strong></span><span class="button_label">364</span></li>
<li><span class="button_label"><strong>Busiest Traffic Day: </strong>Sept. 21 (10,285 views)</span></li>
</ul>
<p>Here are some of the most popular posts from our first year:</p>
<ul>
<li><a href="http://www.automaticable.com/2008-09-20/lock-down-your-ubuntu-computer-with-a-bluetooth-cellphone-and-blueproximity/">Lock Down Your Ubuntu Computer with A Bluetooth Cellphone and BlueProximity</a></li>
<li><a href="http://www.automaticable.com/2008-05-28/how-to-enable-surround-sound-on-ubuntu-hardy/">How-to: Enable Surround Sound on Ubuntu Hardy</a></li>
<li><a href="http://www.automaticable.com/2008-09-12/organize-your-todo-list-in-ubuntu-with-remember-the-milk-and-tasque/">Organize Your ToDo List in Ubuntu with Remember The Milk and Tasque</a></li>
<li><a href="http://www.automaticable.com/2008-03-03/electric-sheep-a-screen-saver-that-learns-and-is-the-best-ive-ever-seen/">Electric Sheep: A Screen Saver That Learns (and is the best I&#8217;ve ever seen)</a></li>
<li><a href="http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/">How To: Host a Subversion Repository in Ubuntu Hardy</a></li>
<li><a href="http://www.automaticable.com/2008-03-30/comcast-blocking-dd-wrt/">Comcast Blocking DD-WRT?</a></li>
<li><a href="http://www.automaticable.com/2008-03-11/void-my-firefox-warranty/">Void My Firefox Warranty?</a></li>
<li><a href="http://www.automaticable.com/2008-01-18/how-to-mount-a-network-drive-in-ubuntu/">How-to: Mount a Network drive in Ubuntu</a></li>
<li><a href="http://www.automaticable.com/2008-02-15/customize-your-dual-boot-gui-frontend-to-grub/">Customize Your Dual-boot: GUI Frontend to GRUB</a></li>
<li><a href="http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/">Easy Subversion GUI for Nautilus and Ubuntu</a></li>
</ul>
<p>And as the New Year is upon us, I&#8217;d also like to make some personal goals for myself.  I don&#8217;t believe in New Years resolutions, but I do have a few things I&#8217;d like to improve in the upcoming year:</p>
<ul>
<li><strong>Run More</strong>: Last year I started excersing and running regularly, and even did a half-marathon in the Fall.  I&#8217;d like to keep it up, and push even harder this year.  If all goes well, I&#8217;ll be running the Chicago Marathon with a friend later this year.</li>
<li><strong>Study More</strong>: I&#8217;m coming up on my last semester as an undergraduate, but it really doesn&#8217;t end there for me.  I just applied for graduate school, and hope to pursue a Masters in machine learning starting next Fall.  I want to end this year strong, and get ready for harder classes and more research in graduate school.</li>
<li><strong>Revive automaticable</strong>: You may have notices lulls in posting during our first year.  This is mostly due to my own lack of time and motivation, but I&#8217;d like to fix that in 2009.  Brian has already alluded to a few changes we are planning in the site layout, and there&#8217;s a few other things we have planned as well.  Stay tuned.</li>
</ul>
<p>These are my goals for 2009.  Have you made any for yourself?  And as we begin a new year for automaticable, what would you like to see more of on the blog?  Leave your thoughts in the comments.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-03-13/happy-1-month-anniversary/" rel="bookmark" title="March 13, 2008">Happy 1 Month Anniversary!</a></li>

<li><a href="http://www.automaticable.com/2008-09-12/organize-your-todo-list-in-ubuntu-with-remember-the-milk-and-tasque/" rel="bookmark" title="September 12, 2008">Organize Your ToDo List in Ubuntu with Remember The Milk and Tasque</a></li>
</ul><!-- Similar Posts took 17.993 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2009-01-03/hello-2009-and-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purchase Non-Free (MP3, DVD) Media Codecs For Ubuntu Linux</title>
		<link>http://www.automaticable.com/2008-09-22/purchase-non-free-mp3-dvd-media-codecs-for-ubuntu-linux/</link>
		<comments>http://www.automaticable.com/2008-09-22/purchase-non-free-mp3-dvd-media-codecs-for-ubuntu-linux/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 17:00:44 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[deep thoughts]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[codecs]]></category>
		<category><![CDATA[cyberlink]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[fluendo]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[medibuntu]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[nonfree]]></category>
		<category><![CDATA[powerdvd]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[ubuntu-restricted-extras]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=477</guid>
		<description><![CDATA[In this week&#8217;s Ubuntu Weekly Newsletter, there&#8217;s a link to an article on the Canonical Blog about their new offering of proprietary media codecs available for purchase.  Canonical has partnered with Fluendo and Cyberlink to give Ubuntu users a legal option for viewing and listening to their media.  This is similar to those who purchased [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/dvd.jpg"><img class="alignnone size-medium wp-image-479" title="DVD" src="http://www.automaticable.com/wp-content/uploads/2008/09/dvd-300x203.jpg" alt="" width="300" height="203" /></a>In this week&#8217;s <a title="Ubuntu Weekly Newsletter" href="https://wiki.ubuntu.com/UbuntuWeeklyNewsletter/Issue109">Ubuntu Weekly Newsletter</a>, there&#8217;s a link to an <a title="Codecs and DVD Playback on Ubuntu 8.04" href="http://blog.canonical.com/?p=37">article</a> on the Canonical Blog about their new offering of proprietary media codecs available for purchase.  Canonical has partnered with Fluendo and Cyberlink to give Ubuntu users a legal option for viewing and listening to their media.  This is similar to those who purchased a computer with Ubuntu preinstalled&#8211; generally there is a small premium factored in to have the media codecs pre-bundled.</p>
<p>This is a wise move by Canonical.  Giving their users a legal option for playing their media will encourage more software and companies to also invest in Ubuntu and all Linux media alike.  The announcement doesn&#8217;t quite make it clear, but it sounds like the <a title="Medibuntu" href="https://help.ubuntu.com/community/Medibuntu">Medibuntu repository</a> will still be available with instructions for Ubuntu users to download similar codecs for free&#8211; illegally in many countries.  The adoption of the legal, non-free software will depend largely on how it is marketed inside Ubuntu.  That is, when you try to play an MP3 for the first time, will a dialog prompt you to <em>purchase</em> MP3 support, or offer an easier link to Medibuntu and the <a title="ubuntu-restricted-extras Package" href="http://packages.ubuntu.com/intrepid/ubuntu-restricted-extras">ubuntu-restricted-extras</a> package?</p>
<p>One of the reasons that I moved to Ubuntu in the first place was so I could have software I wanted, free and legally.  It&#8217;s nice to finally have the option of legal media codecs as well.  What do you think of the announcement?  Will you pay the <a title="Fluendo Complete Playback Pack" href="https://shop.canonical.com/product_info.php?products_id=244">$40</a> for most non-free media codecs, or the additional <a title="PowerDVD Linux" href="https://shop.canonical.com/product_info.php?products_id=243">$50</a> for DVD support?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2009-11-25/karmic-koala-ubuntu-for-the-real-world/" rel="bookmark" title="November 25, 2009">Karmic Koala &#8211; Ubuntu for the real world</a></li>

<li><a href="http://www.automaticable.com/2008-01-02/a-new-year-a-new-os/" rel="bookmark" title="January 2, 2008">A New Year, A New OS</a></li>
</ul><!-- Similar Posts took 10.081 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-09-22/purchase-non-free-mp3-dvd-media-codecs-for-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Lock Down Your Ubuntu Computer with A Bluetooth Cellphone and BlueProximity</title>
		<link>http://www.automaticable.com/2008-09-20/lock-down-your-ubuntu-computer-with-a-bluetooth-cellphone-and-blueproximity/</link>
		<comments>http://www.automaticable.com/2008-09-20/lock-down-your-ubuntu-computer-with-a-bluetooth-cellphone-and-blueproximity/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 16:29:01 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[blueproximity]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[proximity]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[screensaver]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=369</guid>
		<description><![CDATA[A couple weeks ago I bought a bluetooth adapter for my computer in hopes that I could easily backup my cellphone contacts on my computer.  I haven&#8217;t yet found a program to sync my cellphone data, but I did find a program to use your phone to lock and unlock your screen when you leave [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/blueproximity_logo.png"><img class="alignnone size-medium wp-image-440" title="BlueProximity" src="http://www.automaticable.com/wp-content/uploads/2008/09/blueproximity_logo.png" alt="" width="60" height="60" /></a>A couple weeks ago I bought a bluetooth adapter for my computer in hopes that I could easily backup my cellphone contacts on my computer.  I haven&#8217;t yet found a program to sync my cellphone data, but I did find a program to use your phone to lock and unlock your screen when you leave and come back to your desk.  With BlueProximity, your cellphone acts as a wireless &#8220;key&#8221; to your desktop.</p>
<p><span id="more-369"></span></p>
<p>Here&#8217;s how it works: BlueProximity will use the bluetooth on your cellphone and computer to pair the two.  The bluetooth signal includes a crude &#8220;distance&#8221; between the two devices.  When your cellphone goes out of range (in your pocket), BlueProximity will automatically trigger your screensaver and can also lock your screen with a password.  BlueProximity keeps monitoring the distance, and when you come back within range, your computer automatically wakes up without ever having to enter a password.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/00-locked.png"><img class="alignnone size-medium wp-image-434" style="clear: left; float: none" title="BlueProximity with ElectricSheep" src="http://www.automaticable.com/wp-content/uploads/2008/09/00-locked-300x187.png" alt="" width="300" height="187" /></a></p>
<p>BlueProximity is availible in the Ubuntu repositories, and is very easy to install and set up:</p>
<blockquote>
<pre>sudo aptitude install blueproximity</pre>
</blockquote>
<p>Before you run BlueProximity for the first time, make sure your Bluetooth is set up on your computer, and you have paired your cellphone with your desktop.  You can find general Bluetooth options under System &gt; Preferences &gt; Bluetooth.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/01-bluetooth.png"><img class="alignnone size-medium wp-image-435" style="clear: left; float: none" title="Ubuntu Bluetooth Preferences" src="http://www.automaticable.com/wp-content/uploads/2008/09/01-bluetooth-225x300.png" alt="" width="225" height="300" /></a></p>
<p>When you&#8217;re ready to run BlueProximity, you can find it under Applications &gt; Accessories &gt; BlueProximity.  BlueProximity runs in the background, and displays a small icon in the taskbar to show its status.  Click on the icon to configure its settings.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/tray-icon.png"><img class="alignnone size-medium wp-image-442" style="clear: left; float: none" title="BlueProximity Tray Icon" src="http://www.automaticable.com/wp-content/uploads/2008/09/tray-icon.png" alt="" width="228" height="102" /></a></p>
<p>In the &#8220;Bluetooth Device&#8221; tab, you can choose the cellphone or device to pair with and monitor.</p>
<ul>
<li>If you don&#8217;t see your cellphone in the list, press &#8220;Scan for Devices&#8221;.  Make sure your cellphone&#8217;s bluetooth is on and discoverable.</li>
<li>When your device shows up, you can click on it and press &#8220;Use Selected Device&#8221;.</li>
<li>You can also select the &#8220;RFCOMM Channel&#8221;, although the default channel, 7, worked for me.  If you have trouble, you may try &#8220;Scan channels on device&#8221;.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/02-bluetooth-device.png"><img class="alignnone size-medium wp-image-436" style="clear: left; float: none" title="BlueProximity Preferences: Bluetooth Device" src="http://www.automaticable.com/wp-content/uploads/2008/09/02-bluetooth-device-264x300.png" alt="" width="264" height="300" /></a></p>
<p>In the next tab, &#8220;Proximity Details&#8221;, you set the distance and times to lock and unlock your computer.</p>
<ul>
<li>The distance is a numeric value between 0-255 which is a rough range of how far your cellphone is from your computer.  It doesn&#8217;t correspond to any specific unit of measure, so you&#8217;ll need to test it out to get a feeling for it.</li>
<li>At the bottom of the tab, &#8220;Measured atm&#8221; displays the current distance, as well as the minimum and maximum distances that have been detected.  You can use this as a guide.</li>
<li>The duration corresponds to the number of seconds your cellphone needs to be outside of the distance before your computer will lock.  You may need to use some trial and error to find the right value.</li>
<li>The &#8220;Unlocking&#8221; options operate just like the &#8220;Locking&#8221; options, but opposite.  When your phone is detected within the specified distance for the complete duration, your computer will unlock.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/03-proximity-details.png"><img class="alignnone size-medium wp-image-437" style="clear: left; float: none" title="BlueProximity Preferences: Proximity Details" src="http://www.automaticable.com/wp-content/uploads/2008/09/03-proximity-details-264x300.png" alt="" width="264" height="300" /></a></p>
<p>The final preferences tab, &#8220;Locking&#8221;, controls <em>how</em> BlueProximity will lock and unlock your computer.  It has options for the exact commands which will be invoked, as well as logging options.  Basically, BlueProximity will call gnome-screensaver-command to control the screensaver&#8211; turning it on and off appropriately.  For this to work though, you will also need to set up a screensaver.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/04-locking.png"><img class="alignnone size-medium wp-image-438" style="clear: left; float: none" title="BlueProximity Preferences: Locking" src="http://www.automaticable.com/wp-content/uploads/2008/09/04-locking-264x300.png" alt="" width="264" height="300" /></a></p>
<p>To check your screensaver settings, go to System &gt; Preferences &gt; Screensaver.</p>
<ul>
<li>In the left pane, choose a screensaver to use.  I prefer <a title="ElectricSheep: A screensaver that learns" href="http://www.automaticable.com/2008-03-03/electric-sheep-a-screen-saver-that-learns-and-is-the-best-ive-ever-seen/">ElectricSheep</a>.</li>
<li>The option &#8220;Activate screensaver when computer is idle&#8221; doesn&#8217;t apply to BlueProximity, and BlueProximity will work even without it checked.  This refers to whether you want your screensaver to also turn on after a given period.</li>
<li>Similarly, the option &#8220;Lock screen when screensaver is active&#8221; refers to the normal screensaver timeout, and won&#8217;t affect BlueProximity.</li>
</ul>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/05-screensaver.png"><img class="alignnone size-medium wp-image-439" style="clear: left; float: none" title="Ubuntu Screensaver Settings" src="http://www.automaticable.com/wp-content/uploads/2008/09/05-screensaver-300x233.png" alt="" width="300" height="233" /></a></p>
<p>Once you&#8217;ve got BlueProximity and your screensaver configured, everything should be ready to go!  Simply walk away from your computer and watch it automatically fade into your screensaver.  Walk back, and the desktop should automatically wake up.</p>
<p>It&#8217;s a pretty fun toy, although not the most useful.  However, for those like myself who tend to walk away from the computer without locking it, you can feel a little better when you have your cellphone in your pocket.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-05-28/how-to-enable-surround-sound-on-ubuntu-hardy/" rel="bookmark" title="May 28, 2008">How-to: Enable Surround Sound on Ubuntu Hardy</a></li>

<li><a href="http://www.automaticable.com/2008-05-27/excel-101-4-tricks-everyone-should-know/" rel="bookmark" title="May 27, 2008">Excel 101: 4 Tricks Everyone Should Know</a></li>
</ul><!-- Similar Posts took 20.450 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-09-20/lock-down-your-ubuntu-computer-with-a-bluetooth-cellphone-and-blueproximity/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Easy Subversion GUI for Nautilus and Ubuntu</title>
		<link>http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/</link>
		<comments>http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 22:47:36 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[nautilus-script-collection-svn]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=391</guid>
		<description><![CDATA[Just about every software project uses some sort of versioning control system, and subversion is arguably the most popular tool.  Having your files versioned and backed up in a central repository is essential.  I&#8217;ve written about how to set up your own subversion repository, but you can go a step further and install a graphical [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://marius.scurtescu.com/2005/08/24/nautilus_scripts_for_subversion" target="_blank"><img class="alignnone size-medium wp-image-392" title="Nautilus Subversion Script" src="http://www.automaticable.com/wp-content/uploads/2008/09/nautilussubversionscripts-add-300x180.png" alt="" width="300" height="180" /></a>Just about every software project uses some sort of versioning control system, and subversion is arguably the most popular tool.  Having your files versioned and backed up in a central repository is essential.  I&#8217;ve written about <a title="How to Host A Subversion Repository in Ubuntu" href="http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/">how to set up your own subversion repository</a>, but you can go a step further and install a graphical interface to use subversion right within Nautilus.</p>
<p>Installing and setting up the subversion GUI is as simple as three commands.</p>
<ol style="clear: left">
<li>Install the <em>nautilus-script-collection-svn</em> package:<br />
<blockquote>
<pre>sudo aptitude install nautilus-script-collection-svn</pre>
</blockquote>
</li>
<li>Enable the plugin (this is required to access the plugin from nautilus):<br />
<blockquote>
<pre>nautilus-script-manager enable Subversion</pre>
</blockquote>
</li>
<li>Restart Nautilus:<br />
<blockquote>
<pre>killall nautilus</pre>
</blockquote>
</li>
</ol>
<p>Afterwards, Nautilus will have a new entry in the context menu when you right click.  You can now access most basic subversion commands without touching a terminal.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/nautilus-svn.png"><img class="alignnone size-medium wp-image-393" style="float: none" title="Nautilus SVN" src="http://www.automaticable.com/wp-content/uploads/2008/09/nautilus-svn-300x231.png" alt="" width="300" height="231" /></a></p>
<p>The interface isn&#8217;t quite as pretty as some Windows clients, such as <a title="TortoiseSVN" href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN</a>.  However, it is still a nice alternative for users who prefer a GUI and only need basic functionality.  There doesn&#8217;t seem to be any support for merges, and other commands will use the default parameters.</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-06-25/how-to-host-a-subversion-repository-in-ubuntu-hardy/" rel="bookmark" title="June 25, 2008">How To: Host a Subversion Repository in Ubuntu Hardy</a></li>

<li><a href="http://www.automaticable.com/2008-01-18/how-to-use-your-ubuntu-computer-as-a-music-alarm-clock/" rel="bookmark" title="January 18, 2008">How-to: Use Your Ubuntu Computer as a Music Alarm Clock</a></li>
</ul><!-- Similar Posts took 11.787 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-09-15/easy-subversion-gui-for-nautilus-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Organize Your ToDo List in Ubuntu with Remember The Milk and Tasque</title>
		<link>http://www.automaticable.com/2008-09-12/organize-your-todo-list-in-ubuntu-with-remember-the-milk-and-tasque/</link>
		<comments>http://www.automaticable.com/2008-09-12/organize-your-todo-list-in-ubuntu-with-remember-the-milk-and-tasque/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 02:22:55 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[ppa]]></category>
		<category><![CDATA[remember the milk]]></category>
		<category><![CDATA[rememberthemilk]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[tasque]]></category>
		<category><![CDATA[todo]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=370</guid>
		<description><![CDATA[I am a big fan of the previously mentioned Remember The Milk productivity webapp.  It does one thing&#8211; manages your Todo list&#8211; and it does it very well.  Remember The Milk offers a clean web interface, as well as integration inside Gmail, Google Calendar, and even has an iPhone app.  The only thing that was [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-381" title="Tasque" src="http://www.automaticable.com/wp-content/uploads/2008/09/tasque.png" alt="" width="48" height="48" />I am a big fan of the previously mentioned <a title="Keeping Organized with Remember The Milk" href="http://www.automaticable.com/2008-01-23/keeping-organized-with-remember-the-milk/">Remember The Milk</a> productivity webapp.  It does one thing&#8211; manages your Todo list&#8211; and it does it very well.  Remember The Milk offers a clean web interface, as well as integration inside Gmail, Google Calendar, and even has an iPhone app.  The only thing that was missing for me, though, was a simple interface for the Linux desktop.  Enter Tasque.</p>
<p><span id="more-370"></span></p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/00-overview.png"><img class="alignnone size-medium wp-image-374" style="clear: left; float: none" title="Tasque" src="http://www.automaticable.com/wp-content/uploads/2008/09/00-overview-295x300.png" alt="" width="295" height="300" /></a></p>
<p>Tasque is dubbed as &#8220;a simple task management app (TODO list) for the Linux Desktop.&#8221;  It is a simple program with the ability to integrate with a variety of other task-management services, including RememberTheMilk.  It&#8217;s a clean, unobtrusive interface, and it&#8217;s exactly what I needed to stay productive.</p>
<p>Tasque is a relatively new program, but has grown substantially since it&#8217;s incarnation.  It has been integrated into the latest GNOME desktop, and will be available for Ubuntu Intrepid Ibex, due out in October.  Luckily, there is also a repository which you can add to receive the latest Tasque program in Ubuntu Hardy:</p>
<ul>
<li>From the taskbar, navigate to System &gt; Administration &gt; Software Sources<br />
<a href="http://www.automaticable.com/wp-content/uploads/2008/09/01-sources.png"><img class="alignnone size-medium wp-image-375" style="clear: left; float: none" title="Software Sources" src="http://www.automaticable.com/wp-content/uploads/2008/09/01-sources-300x287.png" alt="" width="300" height="287" /></a></li>
</ul>
<ul>
<li>Enter your administrator password when prompted, and in the new window, click on the &#8220;Third Party Software&#8221; tab</li>
<li>Click on the &#8220;Add&#8230;&#8221; button, and enter the following line:
<pre>deb http://ppa.launchpad.net/tasque-packagers/ubuntu hardy main</pre>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/02-add.png"><img class="alignnone size-medium wp-image-383" style="clear: left; float: none" title="Add Repository" src="http://www.automaticable.com/wp-content/uploads/2008/09/02-add-300x287.png" alt="" width="300" height="287" /></a></li>
<li>Click on &#8220;Add Source&#8221;, and then &#8220;Close&#8221;.  The available software will be updated automatically.</li>
</ul>
<p>Now that we have the repository set up, we can actually install Tasque.  In a terminal, enter the following command:</p>
<blockquote>
<pre>sudo aptitude install tasque</pre>
</blockquote>
<p>After it&#8217;s installed, you can run it by navigating to Applications &gt; Office &gt; Tasque.</p>
<p>The first time Tasque is launched, you will need to choose the plugin to use.  Select &#8220;Remember the Milk&#8221;, and then press &#8220;Click Here to Connect&#8221;.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/03-connect.png"><img class="alignnone size-medium wp-image-377" style="clear: left; float: none" title="Connect to Remember The Milk" src="http://www.automaticable.com/wp-content/uploads/2008/09/03-connect-300x277.png" alt="" width="300" height="277" /></a></p>
<p>A browser launch, and you will need to log in to Remember the Milk and allow Tasque to access your account data.  When you&#8217;re finished, return to Tasque and select &#8220;Click Here After Authenticating Tasque&#8221;.</p>
<p>At this point, your Remember The Milk tasks should be loaded into the Tasque interface, where you can edit existing tasks or add new ones.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/04-add.png"><img class="alignnone size-medium wp-image-378" style="clear: left; float: none" title="Tasque: Add Task" src="http://www.automaticable.com/wp-content/uploads/2008/09/04-add-295x300.png" alt="" width="295" height="300" /></a></p>
<p>You can also assign or change the due date on any of your tasks.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/05-date.png"><img class="alignnone size-medium wp-image-379" style="clear: left; float: none" title="Tasque: Set Task Date" src="http://www.automaticable.com/wp-content/uploads/2008/09/05-date-295x300.png" alt="" width="295" height="300" /></a></p>
<p>And when you&#8217;re finished, you can mark a task as completed.</p>
<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/06-complete.png"><img class="alignnone size-medium wp-image-380" style="clear: left; float: none" title="Tasque: Complete Task" src="http://www.automaticable.com/wp-content/uploads/2008/09/06-complete-295x300.png" alt="" width="295" height="300" /></a></p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-07-03/introducing-pwdhash-sharp-084/" rel="bookmark" title="July 3, 2008">Introducing: Pwdhash Sharp 0.8.4</a></li>

<li><a href="http://www.automaticable.com/2008-01-23/keeping-organized-with-remember-the-milk/" rel="bookmark" title="January 23, 2008">Keeping Organized with Remember The Milk</a></li>
</ul><!-- Similar Posts took 15.524 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-09-12/organize-your-todo-list-in-ubuntu-with-remember-the-milk-and-tasque/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>I Owe You Some Updates</title>
		<link>http://www.automaticable.com/2008-09-11/i-owe-you-some-updates/</link>
		<comments>http://www.automaticable.com/2008-09-11/i-owe-you-some-updates/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 15:30:12 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[new posts]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=357</guid>
		<description><![CDATA[I&#8217;m thinking about writing about 5 new posts this weekend.  Any requests? Similar:WordPress Updated Frozen Pipes]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/09/895709_38455255.jpg"><img class="alignnone size-medium wp-image-358" title="Smile Fruit" src="http://www.automaticable.com/wp-content/uploads/2008/09/895709_38455255-300x300.jpg" alt="" width="300" height="300" /></a>I&#8217;m thinking about writing about 5 new posts this weekend.  Any requests?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-03-30/wordpress-updated/" rel="bookmark" title="March 30, 2008">WordPress Updated</a></li>

<li><a href="http://www.automaticable.com/2008-01-31/frozen-pipes/" rel="bookmark" title="January 31, 2008">Frozen Pipes</a></li>
</ul><!-- Similar Posts took 3.379 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-09-11/i-owe-you-some-updates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Peace Out, Illinois</title>
		<link>http://www.automaticable.com/2008-07-25/peace-out-illinois/</link>
		<comments>http://www.automaticable.com/2008-07-25/peace-out-illinois/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 12:35:09 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[competition]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[beers]]></category>
		<category><![CDATA[brothers]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[Euchre]]></category>
		<category><![CDATA[half marathon]]></category>
		<category><![CDATA[north carolina]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[summer]]></category>
		<category><![CDATA[watermelon seed spitting contest]]></category>
		<category><![CDATA[week]]></category>
		<category><![CDATA[Wegner]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=351</guid>
		<description><![CDATA[Woo, we&#8217;re on vacation!  That&#8217;s right, the bro&#8217;s drove down from Downers Grove last night, and we&#8217;re Georgia-bound this morning.  The next 8 days are to be spent hiking, fishing, swimming, canoeing, and all-around have a good time.  We&#8217;ve got a few competitions laid out so far, but I think the whole week will be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/07/p7241034.jpg"><img class="alignnone size-medium wp-image-353" title="Joe\'s Mohawk" src="http://www.automaticable.com/wp-content/uploads/2008/07/p7241034-225x300.jpg" alt="" width="225" height="300" /></a>Woo, we&#8217;re on vacation!  That&#8217;s right, the bro&#8217;s drove down from Downers Grove last night, and we&#8217;re Georgia-bound this morning.  The next 8 days are to be spent hiking, fishing, swimming, canoeing, and all-around have a good time.  We&#8217;ve got a <a title="Mountain Man Competition #1: Grow a Beard" href="http://www.automaticable.com/2008-07-22/mountain-man-competition-1-grow-a-beard/">few</a> <a title="Mountain Man Competition #2: Whittling" href="http://www.automaticable.com/2008-07-24/mountain-man-competition-2-whittling/">competitions</a> laid out so far, but I think the whole week will be competitive craziness.  I&#8217;m talkin&#8217; watermelon seed spitting contest, Euchre tournament, and &#8220;who will-jump-over-the-fire-naked&#8221; bets.  Anything goes this week.  We are on the road in less than 35 minutes.  Later, automaticable.</p>
<p><strong>PS</strong>: In case you weren&#8217;t following, yes, Kyle does <a title="Running Showdown" href="http://www.automaticable.com/running-showdown/">owe me 22.22 beers</a> this vacation.  And yes, I did make my <a title="Running Update" href="http://www.automaticable.com/2008-07-06/running-update-kyle-owes-me-a-six-pack/">50 mile goal</a>.  And yes, I am doing the Chicago Half Marathon in September (more on that later).  I&#8217;m not really sure what kind of beer it&#8217;ll be yet&#8211; any suggestions?</p>
Similar:<ul><li><a href="http://www.automaticable.com/2008-07-22/mountain-man-competition-1-grow-a-beard/" rel="bookmark" title="July 22, 2008">Mountain Man Competition #1: Grow a Beard</a></li>

<li><a href="http://www.automaticable.com/2008-04-23/summer-workout-plan/" rel="bookmark" title="April 23, 2008">Summer Workout Plan</a></li>
</ul><!-- Similar Posts took 9.877 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-07-25/peace-out-illinois/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Cooking Cheap Snacks 101: Granola Bars</title>
		<link>http://www.automaticable.com/2008-07-06/cooking-cheap-snacks-101-granola-bars/</link>
		<comments>http://www.automaticable.com/2008-07-06/cooking-cheap-snacks-101-granola-bars/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 03:34:43 +0000</pubDate>
		<dc:creator>Scott Wegner</dc:creator>
				<category><![CDATA[cooking]]></category>
		<category><![CDATA[101]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[granola]]></category>
		<category><![CDATA[granola bars]]></category>
		<category><![CDATA[organic]]></category>
		<category><![CDATA[Scott Wegner]]></category>
		<category><![CDATA[snacks]]></category>
		<category><![CDATA[tasty]]></category>

		<guid isPermaLink="false">http://www.automaticable.com/?p=336</guid>
		<description><![CDATA[Tonight Stacy and I decided to make our own granola bars, and they turned out pretty darn good.  I had been wanting to try making them for a while now, and finally got around to it.  It&#8217;s a great snack to make because it&#8217;s relatively easy to make, pretty healthy, you can throw in whatever [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.automaticable.com/wp-content/uploads/2008/07/img_3325.jpg"><img class="alignnone size-medium wp-image-337" title="Homemade Granola Bars" src="http://www.automaticable.com/wp-content/uploads/2008/07/img_3325-300x224.jpg" alt="" width="300" height="224" /></a>Tonight Stacy and I decided to make our own granola bars, and they turned out pretty darn good.  I had been wanting to try making them for a while now, and finally got around to it.  It&#8217;s a great snack to make because it&#8217;s relatively easy to make, pretty healthy, you can throw in whatever you want, and <em>really</em> cheap.  We made a 9&#8243; x 13&#8243; tray of granola bars for around $5 in ingredients (not to mention they were mostly organic).  And the best part, is they&#8217;re delicious.  We&#8217;re talking:</p>
<ul style="clear:left">
<li>Rolled Oats</li>
<li>Flour</li>
<li>Brown Sugar</li>
<li>Raisins</li>
<li>Chocolate Chips</li>
<li>Walnuts</li>
<li>Almonds</li>
<li>Honey</li>
<li>Sunflower Seeds</li>
<li>Vanilla</li>
<li>Salt, canola oil, etc.</li>
</ul>
<p>I mean, it sounds great, doesn&#8217;t it?  And now I have snacks for the next couple weeks&#8211; cool.  I can&#8217;t wait to make it again, there&#8217;s already a few other things I want to try (namely, peanut butter, mmmm).</p>
<p>Does anybody else have a tasty they like to make?  Or perhaps the missing ingredient to my nearly-perfect granola bars?  Let&#8217;s hear it in the comments.</p>
Similar:<ul><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>

<li><a href="http://www.automaticable.com/2008-01-02/a-new-year-a-new-os/" rel="bookmark" title="January 2, 2008">A New Year, A New OS</a></li>
</ul><!-- Similar Posts took 15.402 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.automaticable.com/2008-07-06/cooking-cheap-snacks-101-granola-bars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

