<?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>Chanel's Blog</title>
	<atom:link href="http://cmunezero.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cmunezero.com</link>
	<description>Where code meets love... and a lot of awkward silences...</description>
	<lastBuildDate>Tue, 11 May 2010 21:17:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating Hierarchical User Permissions Tutorial</title>
		<link>http://cmunezero.com/2010/05/11/creating-hierarchical-user-permissions-tutorial/</link>
		<comments>http://cmunezero.com/2010/05/11/creating-hierarchical-user-permissions-tutorial/#comments</comments>
		<pubDate>Tue, 11 May 2010 21:16:27 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[groupadd]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[useradd]]></category>
		<category><![CDATA[usermod]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=227</guid>
		<description><![CDATA[Dealing with multiple users on a single box can be frustrating at first.  Especially when they edit the same files.  I wanted to create a sort of hierarchy of users with my root and personal accounts at the top, and a pool of sub-accounts below.  Here&#8217;s how I solved this problem in [...]]]></description>
			<content:encoded><![CDATA[<p>Dealing with multiple users on a single box can be frustrating at first.  Especially when they edit the same files.  I wanted to create a sort of hierarchy of users with my root and personal accounts at the top, and a pool of sub-accounts below.  Here&#8217;s how I solved <a href="http://www.cyberciti.biz/faq/howto-linux-add-user-to-group/">this</a> <a href="http://www.cyberciti.biz/tips/understanding-linux-unix-umask-value-usage.html">problem</a> in Ubuntu:</p>
<p>First, create a common group:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">groupadd <span style="color: #000000; font-weight: bold;">&lt;</span>group-name<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Next, make sure all of the sub-accounts use the new group as its default account.</p>
<p>For new users:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">useradd <span style="color: #660033;">-G</span> <span style="color: #000000; font-weight: bold;">&lt;</span>group-name<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>For existing users:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">usermod <span style="color: #660033;">-a</span> <span style="color: #660033;">-G</span> <span style="color: #000000; font-weight: bold;">&lt;</span>group-name<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>When a user creates a file or directory, they normally would use their own group.  What we want is that any account in the common group to use the new group as its default:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">usermod <span style="color: #660033;">-g</span> <span style="color: #000000; font-weight: bold;">&lt;</span>group-name<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>Last, change the sub-users&#8217; default umask settings so that it treats its own settings exactly the same as the group settings.  Make sure to only run this command as one of the sub-accounts:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">umask</span> 0002</pre></div></div>

<p>Now you have a list of accounts with limited permissions that your main account will always have access to.  Now this is not an optimal, and probably secure solution, but since this only for my development environment, its good enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2010/05/11/creating-hierarchical-user-permissions-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NerdTree: Vim Plugin For IDE Style File Editing</title>
		<link>http://cmunezero.com/2010/04/23/nerdtree-vim-plugin-for-ide-style-file-editing/</link>
		<comments>http://cmunezero.com/2010/04/23/nerdtree-vim-plugin-for-ide-style-file-editing/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 22:09:47 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[nerdtree]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vstreeexplorer]]></category>
		<category><![CDATA[vtreeexplorer]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=223</guid>
		<description><![CDATA[I&#8217;ve always been a big fan of VSTreeExplorer since I started using Vim.  Recently, I came across NerdTree, which is a much better alternative.  It really makes it much easier to manage multiple tabs and sessions and has many more keybindings and mouse interactions making it the closest to the Visual Studios experience [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been a big fan of <a href="http://www.vim.org/scripts/script.php?script_id=184">VSTreeExplorer</a> since I started using <a href="http://www.vim.org/">Vim</a>.  Recently, I came across <a href="http://www.vim.org/scripts/script.php?script_id=1658">NerdTree</a>, which is a much better alternative.  It really makes it much easier to manage multiple tabs and sessions and has many more keybindings and mouse interactions making it the closest to the Visual Studios experience in Vim.  Here&#8217;s a really good <a href="http://www.flickr.com/photos/rodneybohner/2862367534/sizes/o/">animated gif</a> with a basic tutorial on its use:</p>
<p><img src="http://farm4.static.flickr.com/3001/2862367534_53cd90855e_o.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2010/04/23/nerdtree-vim-plugin-for-ide-style-file-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome History Search</title>
		<link>http://cmunezero.com/2010/03/23/google-chrome-history-search/</link>
		<comments>http://cmunezero.com/2010/03/23/google-chrome-history-search/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 22:02:04 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=218</guid>
		<description><![CDATA[If you needed a reason to switch to Google Chrome, I just found one more.  Go to your chrome history by typing Ctrl+H or going through Tools -> History.  Type in any text you remember reading throughout your viewing history and chrome will do a regular google search through your history.  I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>If you needed a reason to switch to <a href="http://www.google.com/chrome">Google Chrome</a>, I just found one more.  Go to your chrome history by typing Ctrl+H or going through Tools -> History.  Type in any text you remember reading throughout your viewing history and chrome will do a regular google search through your history.  I&#8217;ve always wanted to build this feature into <a href="http://www.mozilla.com/en-US/firefox/upgrade.html">Firefox</a>, but now I don&#8217;t have to.  Now the only thing chrome needs for me to be a full convert is <a href="https://addons.mozilla.org/en-US/firefox/addon/5890">Tree Style Tabs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2010/03/23/google-chrome-history-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IOTop:  Monitor Program&#8217;s Disk Input/Output</title>
		<link>http://cmunezero.com/2010/01/20/iotop-monitor-programs-disk-inputoutput/</link>
		<comments>http://cmunezero.com/2010/01/20/iotop-monitor-programs-disk-inputoutput/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 18:16:11 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=207</guid>
		<description><![CDATA[Top and especially HTop are really useful tools for monitering system resources.  The thing I always found lacking was the amount of disk io (input/output) attributed to a particular process.  Recently, I found a pretty cool tool that does just that: ]]></description>
			<content:encoded><![CDATA[<p>Top and especially HTop are really useful tools for monitering system resources.  The thing I always found lacking was the amount of disk io (input/output) attributed to a particular process.  Recently, I found a pretty cool tool that does just that: <a href="http://guichaz.free.fr/iotop/"IOTop</a>.  It display disk the amount of reads and writes per second and also swap and io percentage if the <a href="http://cateee.net/lkddb/web-lkddb/TASK_DELAY_ACCT.html">CONFIG_TASK_DELAY_ACCT</a> setting is enabled in the kernel.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2010/01/20/iotop-monitor-programs-disk-inputoutput/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure Linux DVD Ripping</title>
		<link>http://cmunezero.com/2009/04/10/pure-linux-dvd-ripping/</link>
		<comments>http://cmunezero.com/2009/04/10/pure-linux-dvd-ripping/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 05:24:00 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[rip]]></category>
		<category><![CDATA[ripping]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=205</guid>
		<description><![CDATA[Whenever I wanted to rip DVD&#8217;s for longterm storage, I&#8217;ve always used Wine + DVDShrink.  I just now discovered a pure linux program, Handbrake, for ripping DVD&#8217;s and so far, it has worked out really well  This article does a really good job explaining it.  Merry Ripping!
]]></description>
			<content:encoded><![CDATA[<p>Whenever I wanted to rip DVD&#8217;s for longterm storage, I&#8217;ve always used <a href="http://www.winehq.org/">Wine</a> + <a href="http://www.dvdshrink.org/">DVDShrink</a>.  I just now discovered a pure linux program, <a href="http://handbrake.fr">Handbrake</a>, for ripping DVD&#8217;s and so far, it has worked out really well  This <a href="http://spareclockcycles.wordpress.com/2008/12/11/handbrake-for-dvd-ripping-on-ubuntu/">article</a> does a really good job explaining it.  Merry Ripping!</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2009/04/10/pure-linux-dvd-ripping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubiquity: the web made cool again</title>
		<link>http://cmunezero.com/2009/03/11/ubiquity-the-web-made-cool-again/</link>
		<comments>http://cmunezero.com/2009/03/11/ubiquity-the-web-made-cool-again/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 19:12:06 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Grooveshark]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[ubiquity]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=196</guid>
		<description><![CDATA[If you haven&#8217;t heard about Ubiquity,  I advise you to check it out.  It&#8217;s a great Firefox plugin that allows basically any service to be at your disposal.  The basic premise is you highlight some words, start typing an action, and it will find a service that meets your needs.  Check [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t heard about <a href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Ubiquity</a>,  I advise you to check it out.  It&#8217;s a great Firefox plugin that allows basically any service to be at your disposal.  The basic premise is you highlight some words, start typing an action, and it will find a service that meets your needs.  Check out the video below for a better explanation.  Watch out for a <a href="http://grooveshark.com">Grooveshark</a> command later on.</p>
<p><object type="application/x-shockwave-flash" width="410" height="310">
<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=cc6600&amp;fullscreen=1" />
<embed type="application/x-shockwave-flash" width="410" height="310" src="http://www.vimeo.com/moogaloop.swf?clip_id=1561578&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=cc6600&amp;fullscreen=1" >
</object>
</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2009/03/11/ubiquity-the-web-made-cool-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recursions in the Sky</title>
		<link>http://cmunezero.com/2008/12/13/recursions-in-the-sky/</link>
		<comments>http://cmunezero.com/2008/12/13/recursions-in-the-sky/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 23:43:40 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[math]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[golden ratio]]></category>
		<category><![CDATA[nature]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[quine]]></category>
		<category><![CDATA[recursion]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=140</guid>
		<description><![CDATA[The most fascinating concept in computer science has to be recursion.  Even when it&#8217;s not its pure form, recursion is just a beautiful concept:  

A programming technique in which a program or routine calls itself to perform successive steps in an operation, with each step using the output of the preceding step.

It might [...]]]></description>
			<content:encoded><![CDATA[<p>The most fascinating concept in computer science has to be <a href="http://en.wikipedia.org/wiki/Recursion_(computer_science)">recursion</a>.  Even when it&#8217;s not its pure form, recursion is just a beautiful concept:  </p>
<blockquote><p>
A programming technique in which a program or routine calls itself to perform successive steps in an operation, with each step using the output of the preceding step.
</p></blockquote>
<p>It might not be the  most efficient or the fastest way to do things, but it&#8217;s just damn cool.  Some cool uses for them are <a href="http://en.wikipedia.org/wiki/Quine_(computing)">quines</a>, computing <a href="http://en.wikipedia.org/wiki/Fibonacci_number">Fibonacci numbers</a> and <a href="http://en.wikipedia.org/wiki/Fractals">fractals</a>.</p>
<p>Fractals and Fibonnaci numbers, along with the <a href="http://en.wikipedia.org/wiki/Golden_ratio">golden ratio</a>, can be found in <a href="http://en.wikipedia.org/wiki/Fibonacci_number#Fibonacci_numbers_in_nature">numerous places in nature</a>.  Tree branches and roots grow in a vary fractal nature.  The spiral of a sea shell is dominated by the golden ratio.  If you look closesly, recursive properties are found all over the universe.</p>
<p>I&#8217;ve known this link between recursion and nature for a while but this past summer, a co-worker at <a href="http://grooveshark.com" title="Listen to all of the world's music in one place">Grooveshark</a>, Chris, and I have had many discussions about math and science.  He revealed to me an idea of his that the universe is made of many self-similar structures: sub-atomic particles, atoms, solar systems, galaxies and even the mega structures of the universe.  His goal is to describe the basic laws of physics using a fractal model.  While this idea seems really crazy, I really like it because fractals have shown that very simple equations can describe very complex behavior (see <a href="http://en.wikipedia.org/wiki/Chaos_theory">Chaos theory</a>).</p>
<p>A while back, I read an <a href="http://www.newscientist.com/article/dn14200-galaxy-map-hints-at-fractal-universe.html">article</a> describing evidence that the universe appears to be fractal at certain scales.  Currently, there is no theory to describe why this occurs and due to the limitations of modern technology, scientists cannot prove this observation at larger scales.  Despite these limitations, I really do believe there might be something &#8220;fractal&#8221; behind the basic structures of the universe.  Here&#8217;s a really <a href="/images/neuron-galaxy.jpg">uncanny picture</a> proving this point.  While there are many theories trying to bridge the gap between quantum theory and relativity, only string theory and its variations have come close.  While I wait for Chris to finish his fractal model of physics, here&#8217;s some cool recursive and fractal music to check out:</p>
<p><object width="100%" height="300"><param name="movie" value="http://listen.grooveshark.com/widget.swf"></param><param name="wmode" value="window"></param><param name="allowScriptAccess" value="always"></param><param name="flashvars" value="hostname=cowbell.grooveshark.com&#038;widgetID=132579&#038;style=metal&#038;bbg=000000&#038;bfg=ffff00&#038;bt=656656&#038;bth=000000&#038;pbg=656656&#038;pbgh=ffff00&#038;pfg=000000&#038;pfgh=656656&#038;si=656656&#038;lbg=656656&#038;lbgh=ffff00&#038;lfg=000000&#038;lfgh=656656&#038;sb=656656&#038;sbh=ffff00"></param> <embed src="http://listen.grooveshark.com/widget.swf" type="application/x-shockwave-flash" width="100%" height="300" flashvars="hostname=cowbell.grooveshark.com&#038;widgetID=132579&#038;style=metal&#038;bbg=000000&#038;bfg=ffff00&#038;bt=656656&#038;bth=000000&#038;pbg=656656&#038;pbgh=ffff00&#038;pfg=000000&#038;pfgh=656656&#038;si=656656&#038;lbg=656656&#038;lbgh=ffff00&#038;lfg=000000&#038;lfgh=656656&#038;sb=656656&#038;sbh=ffff00" allowScriptAccess="always" wmode="window"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2008/12/13/recursions-in-the-sky/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Netflix Entry 1: Test runs</title>
		<link>http://cmunezero.com/2008/12/08/netflix-entry-1/</link>
		<comments>http://cmunezero.com/2008/12/08/netflix-entry-1/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 05:26:34 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[Netflix]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=150</guid>
		<description><![CDATA[I decided for my first 2 entries into the Netflix prize, I would see just how good/bad current scores are.  For those who have never heard of the Netflix prize, see my post here.
First, I will predict a 3 for every rating just to see how much deviation there really is from that average [...]]]></description>
			<content:encoded><![CDATA[<p>I decided for my first 2 entries into the <a href="http://www.netflixprize.com/index">Netflix prize</a>, I would see just how good/bad current scores are.  For those who have never heard of the Netflix prize, see my post <a href="http://cmunezero.com/2008/11/19/netflix-prize-joining-the-rat-race/">here</a>.</p>
<p>First, I will predict a 3 for every rating just to see how much deviation there really is from that average ranking.  And for my second submission, I just use a random number between 1 and 5 to see how well  a random prediction fares with the rest of the leaderboard.  After setting those two scripts up and submitting,  I never got back a score.  I&#8217;m not that dissappointed but maybe they saw that i was just sending them random/constant data and decided I was not worth their time.  Made me feel kinda sad&#8230;</p>
<p>Also, I was having some difficulties initially writing my script in <a href="http://www.python.org/">python</a>, so I decided to just hurry up and do it in PHP and then port it python later.  The first thing i noticed between the two scripts was just how much faster python is than php.  I ran each script three times and calculated the averages.  Below are the results:</p>
<table width=100%>
<tr align=left>
<th>Language</th>
<th>Script</th>
<th>Time</th>
</tr>
<tr>
<td>Python</td>
<td>Constant</td>
<td>30.037 seconds</td>
</tr>
<tr>
<td>PHP</td>
<td>Constant</td>
<td>40.388 seconds</td>
</tr>
<tr>
<td>Python</td>
<td>Random</td>
<td>9.312 seconds</td>
</tr>
<tr>
<td>PHP</td>
<td>Random</td>
<td>19.464 seconds</td>
</tr>
</table>
<p>I know I&#8217;m probably beating a dead horse here but python is WAY faster.  And nothing really intensive or complex is going on here: string concatenation, random number generation, and writing to a file.  That is it.  Python performs the constant value prediction ~50% faster and the random value prediction ~25% faster.</p>
<p>As I get more comfortable with <a href="http://docs.python.org/modindex.html">python and its vast library of scripts</a>, it will definitely become my goto scripting language.  For all you Ruby enthusiasts, especially you, <a href="http://dailyvim.blogspot.com/">Travis</a>, the ruby language is very well thought out, but until anybody can come close to <a href="http://numpy.scipy.org/">NumPy/SciPy</a>, I will stick to python for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2008/12/08/netflix-entry-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEC Championship: Bring It On!</title>
		<link>http://cmunezero.com/2008/12/05/sec-championship-bring-it-on/</link>
		<comments>http://cmunezero.com/2008/12/05/sec-championship-bring-it-on/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 18:59:57 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=173</guid>
		<description><![CDATA[I just received this &#8220;question&#8221; from the Grooveshark contact page:

Name: Big Al
Question: Roll Tide!!!

Now being the good-sport that I am, I really love the enthusiasm.  Especially the fact they actually thought it was worth their time to send me that message.  This Saturday at 8pm, the SEC college football championship game will be [...]]]></description>
			<content:encoded><![CDATA[<p>I just received this &#8220;question&#8221; from the Grooveshark contact page:</p>
<blockquote><p>
Name: Big Al<br />
Question: Roll Tide!!!
</p></blockquote>
<p>Now being the good-sport that I am, I really love the enthusiasm.  Especially the fact they actually thought it was worth their time to send me that message.  This Saturday at 8pm, the <a href="http://en.wikipedia.org/wiki/SEC_Championship_Game">SEC college football championship game</a> will be played in Atlanta.  I went the last time UF won it in 2006 and Atlanta is a really fun city, especially <a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;geocode=&#038;q=3030+Peachtree+Rd+NW,+Atlanta,+GA&#038;sll=33.838126,-84.380898&#038;sspn=0,359.996795&#038;ie=UTF8&#038;ll=33.838189,-84.381888&#038;spn=0.006523,0.012821&#038;t=h&#038;z=17&#038;g=3030+Peachtree+Rd+NW,+Atlanta,+GA&#038;iwloc=addr">Peachtree Rd in Buckhead</a> (funny enough, its really near the EspnZone).</p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2008/12/05/sec-championship-bring-it-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Football and Statistics Unite!</title>
		<link>http://cmunezero.com/2008/12/04/football-and-statistics-unite/</link>
		<comments>http://cmunezero.com/2008/12/04/football-and-statistics-unite/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 06:13:40 +0000</pubDate>
		<dc:creator>chanel</dc:creator>
				<category><![CDATA[auburn]]></category>
		<category><![CDATA[college football]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[bcs]]></category>
		<category><![CDATA[bcs football]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[florida]]></category>
		<category><![CDATA[florida gators]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[gators]]></category>
		<category><![CDATA[guru]]></category>
		<category><![CDATA[mathematical]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[nfl]]></category>
		<category><![CDATA[smq]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[sunday]]></category>
		<category><![CDATA[sunday morning quaterback]]></category>

		<guid isPermaLink="false">http://cmunezero.com/?p=160</guid>
		<description><![CDATA[Being a huge football fan and nerd, I love it when the two actually combine.  There&#8217;s no need for brawn vs brain, or jocks vs geeks.  In a perfect world, they can live together.  Here are some sites that I&#8217;ve found that do a great job marrying the two:
Saurian Sagacity:  With [...]]]></description>
			<content:encoded><![CDATA[<p>Being a huge football fan and nerd, I love it when the two actually combine.  There&#8217;s no need for brawn vs brain, or jocks vs geeks.  In a perfect world, they can live together.  Here are some sites that I&#8217;ve found that do a great job marrying the two:</p>
<p><a href="http://sauriansagacity.blogspot.com/">Saurian Sagacity</a>:  With a major Florida Gator bias, this blog always have an interesting way of looking at football with great stats to back it up.  My favorite post is when he absolutely calls out Texas Tech, and every other team, for <a href="http://sauriansagacity.blogspot.com/2008/11/nothing-personal-texas-tech.html">not having a defense</a> worthy of stopping anybody.</p>
<p><a href="http://smartfootball.blogspot.com/">Smart Football</a>:  They are the most focused on X&#8217;s and O&#8217;s of any of the sites.  They really go into how and why certain formations, plays or schemes succeed.  The latest post is an absolute gem detailing exactly why the <a href="http://smartfootball.blogspot.com/2008/12/florida-gatorurban-meyer-offense.html">Florida Gators offense is so successful</a>.  But he also p0wnz my hometown Auburn Tigers for being <a href="http://smartfootball.blogspot.com/2008/10/auburns-offense-might-be-bad-but-dont.html">the exact opposite of good on offense</a> this year.</p>
<p><a href="http://www.advancednflstats.com/">Advanced NFL Stats</a>:  Geared towards the NFL, they always have really statistically oriented posts.  This post on <a href="http://www.advancednflstats.com/2008/03/singal-vs-noise-in-football-stats.html">signal vs noise in stats</a> and how they correlate to wins is especially intriguing.</p>
<p><a href="http://www.bcsguru.com/">BCS Guru</a>: For not being very mathematically or schematically involved, this site always stay on top of the lunacy that is the BCS.  This <a href="http://bcsguru.blogspot.com/2008/11/another-jam-packed-mailbag.html">mailbag-style post</a> really goes into the sheer wackiness of the BCS, and the Big 12 South this year.</p>
<p><a href="http://rivals.yahoo.com/ncaa/football/blog/dr_saturday">Dr Saturday</a>:  This is the most entertaining site and also contains the best writing.  This Yahoo! blog started out as the best college football blog in the world: <a href="http://www.sundaymorningqb.com/">Sunday Morning Quarterback</a>.  But like most people in his position, he decided to take more money and a larger audience and moved on to bigger and better things leaving behind his <a href="http://www.sundaymorningqb.com/search?order=date&#038;q=assessment&#038;type=Story">absolutely hilarious, yet informative pre-season previews</a>.  Despite not having as much of a statistical bent towards his stories nowadays,  Dr. Saturday still produces <a href="http://rivals.yahoo.com/ncaa/football/blog/dr_saturday/post/BCS-Realpolitik-Oklahoma-it-is-but-a-new-route?urn=ncaaf,125550">great articles</a>.</p>
<p>Now here&#8217;s some football music for your listening pleasure (thanks to <a href="http://widgets.grooveshark.com">Groovshark</a>):</p>
<p><object width="100%" height="275"><param name="movie" value="http://listen.grooveshark.com/widget.swf"></param><param name="wmode" value="window"></param><param name="allowScriptAccess" value="always"></param><param name="flashvars" value="hostname=cowbell.grooveshark.com&#038;widgetID=188473&#038;style=metal&#038;bbg=0033ff&#038;bfg=666666&#038;bt=ff8c00&#038;bth=0033ff&#038;pbg=ff8c00&#038;pbgh=666666&#038;pfg=0033ff&#038;pfgh=ff8c00&#038;si=ff8c00&#038;lbg=ff8c00&#038;lbgh=666666&#038;lfg=0033ff&#038;lfgh=ff8c00&#038;sb=ff8c00&#038;sbh=666666"></param> <embed src="http://listen.grooveshark.com/widget.swf" type="application/x-shockwave-flash" width="100%" height="275" flashvars="hostname=cowbell.grooveshark.com&#038;widgetID=188473&#038;style=metal&#038;bbg=0033ff&#038;bfg=666666&#038;bt=ff8c00&#038;bth=0033ff&#038;pbg=ff8c00&#038;pbgh=666666&#038;pfg=0033ff&#038;pfgh=ff8c00&#038;si=ff8c00&#038;lbg=ff8c00&#038;lbgh=666666&#038;lfg=0033ff&#038;lfgh=ff8c00&#038;sb=ff8c00&#038;sbh=666666" allowScriptAccess="always" wmode="window"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cmunezero.com/2008/12/04/football-and-statistics-unite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
