<?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>ChrisBellini.com/Blog</title>
	<atom:link href="http://chrisbellini.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisbellini.com/blog</link>
	<description>Random (yet related) thoughts on code, music, hockey, internet culture, gaming and the human condition</description>
	<lastBuildDate>Sat, 19 Feb 2011 14:15:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The FizzWife Project: Variables and Functions with a side order of Parameters</title>
		<link>http://chrisbellini.com/blog/2011/02/19/the-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters/</link>
		<comments>http://chrisbellini.com/blog/2011/02/19/the-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 13:02:07 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The FizzWife Project]]></category>

		<guid isPermaLink="false">http://chrisbellini.com/blog/?p=1184</guid>
		<description><![CDATA[&#160;&#160;&#62;&#62;&#160;[0] Introduction &#160;&#160;&#62;&#62;&#160;[1] Hello World &#160;&#160;&#62;&#62;&#160;[2] Variables and Functions with a Side Order of Parameters After completing the &#8220;Hello, World!&#8221; exercise, Dena was ready to move onto the basics; variables and functions. In writing her &#8220;Hello, World!&#8221; program, she was introduced to her first function; Python&#8217;s print() function. The print() function simply directs supplied input [...]]]></description>
			<content:encoded><![CDATA[<div id="fizzwifeNav">
<p style="font-weight: bold">
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/01/17/the-fizzwife-project/">[0] Introduction</a><br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/01/27/the-fizzwife-project-hello-world/">[1] Hello World</a><br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;[2] Variables and Functions with a Side Order of Parameters
    </p>
</div>
<p>After completing the &#8220;Hello, World!&#8221; exercise, Dena was ready to move onto the basics; variables and functions.  In writing her &#8220;Hello, World!&#8221; program, she was introduced to her first function; Python&#8217;s print() function. The print() function simply directs supplied input to an output &#8211; sys.stdout (aka: the console) in our case.</p>
<p>As she was currently accustomed to directly passing a string literal to print(), I began by describing a few common data types:</p>
<ul>
<li>strings: a series of characters (Ex: &#8220;Hello, World!&#8221;)</li>
<li>integers: whole numbers (Ex: 42)</li>
<li>floats: decimal numbers (ex: 3.14)</li>
</ul>
<p>With her new-found knowledge of a few basic data types under her belt, variables were the next topic on the agenda.  I have a habit of using analogies, and my description of variables would not be an exception.  To convey the concept, I likened variables to labelled jars, thinking that it may be easier to understand rather than focusing too much on memory addressing.  Jars contain a single item and that item can change over time.  This led to an improved &#8220;Hello, World!&#8221; program:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">message = <span style="color: #483d8b;">&quot;Hello, World!&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>message<span style="color: black;">&#41;</span>            <span style="color: #808080; font-style: italic;"># displays &quot;Hello, World!&quot;</span></pre></div></div>

<p>The realization of the power of variables was unleashed!</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">message = <span style="color: #483d8b;">&quot;Hello, World!&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>message<span style="color: black;">&#41;</span>            <span style="color: #808080; font-style: italic;"># displays &quot;Hello, World!&quot;</span>
message = <span style="color: #483d8b;">&quot;Hi, World!&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>message<span style="color: black;">&#41;</span>            <span style="color: #808080; font-style: italic;"># displays &quot;Hi, World!&quot;</span></pre></div></div>

<p>Strings are fine and dandy, but numbers make the world go &#8217;round.  Keeping things simple with whole numbers, I asked her to create a variable to hold her age (actual ages have been changed to protect the innocent):</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">age = <span style="color: #483d8b;">&quot;22&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>age<span style="color: black;">&#41;</span>             <span style="color: #808080; font-style: italic;"># displays &quot;22&quot;</span></pre></div></div>

<p>Hmmm, it <em>seems</em> ok, but is it really?  We can find out by pretending it&#8217;s her birthday and incrementing her age by one year, as birthdays tend to do.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">age = <span style="color: #483d8b;">&quot;22&quot;</span> + <span style="color: #ff4500;">1</span>
age = age + <span style="color: #ff4500;">1</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>age<span style="color: black;">&#41;</span>             <span style="color: #808080; font-style: italic;"># TypeError: Can't convert 'int' object to str implicitly</span></pre></div></div>

<p>Oh noes!  Now the idea of types mentioned way back at the beginning is making sense.  A string of characters &#8211; two &#8220;2&#8243; characters beside eachother &#8211; can&#8217;t be added to the actual number 1 to produce any meaningful output.  Would the result be a string; an integer? Answer; it would be nothing because it&#8217;s not possible.  Dena takes another stab at it:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">age = <span style="color: #ff4500;">22</span>
age = age + <span style="color: #ff4500;">1</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>age<span style="color: black;">&#41;</span>             <span style="color: #808080; font-style: italic;"># displays 23</span></pre></div></div>

<p>Ah, that&#8217;s more like it.  Describing data types to non-programmers during their first programming attempts may initially feel like a lost cause.  At this point, the only differentiating factor between strings and integers in her mind is either the presense of absence of quotation marks around a value.  But Dena&#8217;s a quick learner, and she begins to understand what&#8217;s going on under the hood.  I ask her to display the sentence:</p>
<blockquote><p>
My name is [name] and I am [age] years old.
</p></blockquote>
<p>After rolling up her sleeves, she types out:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">name = <span style="color: #483d8b;">&quot;Dena&quot;</span>
age = <span style="color: #ff4500;">22</span>
message = <span style="color: #483d8b;">&quot;My name is &quot;</span> + name + <span style="color: #483d8b;">&quot; and I am &quot;</span> + age + <span style="color: #483d8b;">&quot; years old.&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>message<span style="color: black;">&#41;</span>    <span style="color: #808080; font-style: italic;"># TypeError: Can't convert 'int' object to str implicitly</span></pre></div></div>

<p>WTMFH?!?! (I&#8217;ll leave it to the reader to figure out what that means).  There&#8217;s that error again.  She&#8217;s unsure why printing her age, which is an integer, was totally doable before, but now it isn&#8217;t when she&#8217;s using it to build her sentence (which is a string).  As soon as the expletive was out of her mouth, she realised that her problem was attempting to mix data types.  What she didn&#8217;t know was how to convert variables data types from one type to another.  And so, I explained <a href="http://docs.python.org/release/3.0.1/library/functions.html#str" target="_blank">Python&#8217;s standard str() function</a>, and that its job is to cast variables from their data type to a string representation.  So she put str() to good use:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">name = <span style="color: #483d8b;">&quot;Dena&quot;</span>
age = <span style="color: #ff4500;">22</span>
message = <span style="color: #483d8b;">&quot;My name is &quot;</span> + name + <span style="color: #483d8b;">&quot; and I am &quot;</span> + <span style="color: #008000;">str</span><span style="color: black;">&#40;</span>age<span style="color: black;">&#41;</span> + <span style="color: #483d8b;">&quot; years old.&quot;</span>
<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>message<span style="color: black;">&#41;</span>    <span style="color: #808080; font-style: italic;"># displays &quot;My name is Dena and I am 22 years old.&quot;</span></pre></div></div>

<p>Success!</p>
<p>Through the past couple of lessons, Dena&#8217;s been using a few of Python&#8217;s built-in functions, like print() and str().  She knows what the do, but hasn&#8217;t learned what they are yet.  I briefly mentioned that functions are just like the functions that she saw in math class in high school; the function takes some variables (parameters) and produces a result.  Using str() as an example, I explained the passed in parameter (her age variable) and str() gave her back a result (string representation of her age variable&#8217;s value).  Her eyes glazed a little, but I assured her that it will all make sense soon, and she&#8217;ll even be creating her very own functions.  But first, there&#8217;s one more data type that she should know about.  Perhaps she can make a List of things that she&#8217;s learned thus far&#8230;</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F&amp;title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F&amp;title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F&amp;title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F&amp;headline=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F&amp;title=The+FizzWife+Project%3A+Variables+and+Functions+with+a+side+order+of+Parameters&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F02%2F19%2Fthe-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2011/02/19/the-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The FizzWife Project: Hello, World!</title>
		<link>http://chrisbellini.com/blog/2011/01/27/the-fizzwife-project-hello-world/</link>
		<comments>http://chrisbellini.com/blog/2011/01/27/the-fizzwife-project-hello-world/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 13:02:59 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The FizzWife Project]]></category>

		<guid isPermaLink="false">http://chrisbellini.com/blog/?p=1117</guid>
		<description><![CDATA[&#160;&#160;&#62;&#62;&#160;[0] Introduction &#160;&#160;&#62;&#62;&#160;[1] Hello World &#160;&#160;&#62;&#62;&#160;[2] Variables and Functions with a Side Order of Parameters Before Dena writes her FizzBuzz implementation, I felt it necessary to explain how a computer actually works and what is involved in the creation of software using a canonical &#8220;Hello World&#8221; program as an example. I spent the first hour [...]]]></description>
			<content:encoded><![CDATA[<div id="fizzwifeNav">
<p style="font-weight: bold">
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/01/17/the-fizzwife-project/">[0] Introduction</a><br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;[1] Hello World<br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/02/19/the-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters/">[2] Variables and Functions with a Side Order of Parameters</a>
    </p>
</div>
<p>Before Dena writes her FizzBuzz implementation, I felt it necessary to explain how a computer actually works and what is involved in the creation of software using a canonical <a href="http://en.wikipedia.org/wiki/Hello_world_program" target="_blank">&#8220;Hello World&#8221;</a> program as an example.  I spent the first hour covering the major components within a computer, how they work together and how software makes it all tick.  While drawing maniacally on a whiteboard, Dena witnessed my best attempt at describing the hardware&#8217;s inner workings of:</p>
<ul>
<li><acronym title="Central Processing Unit">CPU</acronym>s and how various architectures differ</li>
<li>storage, both primary (ex: <acronym title="Random Access Memory">RAM</acronym>) and secondary (ex: hard disks)</li>
</ul>
<p>After thoroughly confusing and then (hopefully) un-confusing her, the time had come for me to make sense of it all by proceeding to explain how software consists of instructions and how those instructions are executed by the hardware.  At some point, I ended up broaching the subject of bits, bytes and binary arithmetic, which eventually led to talk of <acronym title="American Standard Code for Information Interchange">ASCII</acronym> character tables.</p>
<p>At this point, she assured me that &#8211; after some additional explanation &#8211; she was indeed following along.  It would seem to me that people who don&#8217;t often have to think in terms of systems might have trouble grasping this deluge of techno mumbo-jumbo within the span of an hour, so I feared she was merely humouring me.  But she insisted she understood, so I&#8217;ll chalk it up more to her being a quick learner and less of me being a decent teacher.</p>
<p>With her newly-acquired knowledge of what those &#8220;ones and zeroes&#8221; actually mean, I then went on to the basics of software and how &#8220;in the old days&#8221;, programmers created software by feeding computers <a href="http://en.wikipedia.org/wiki/Punched_card" target="_blank">punch cards</a> which represented the binary data and instructions that it could understand.  This brought us to the first example program; &#8220;Hello World&#8221; writing in machine code:</p>

<div class="wp_syntax"><div class="code"><pre class="machine" style="font-family:monospace;">01001000 01100101 01101100 01101100 01101111 00100000 01010111 01101111 01110010 01101100 01100100 00100001 00100000</pre></div></div>

<p>Dena either had a look of terror, disgust or some combination thereof when she saw this.  I assured her that software development had come a long way since this sort of programming was the norm, and this would be the only time she&#8217;d see something like it.</p>
<p>Next up was the language of the <acronym title="Central Processing Unit">CPU</acronym>s; Assembly.  Harking back to the previous 60 minutes, Dena was made aware that the processors of the various architectures each had their own &#8220;readable&#8221; language that programmers could use to write software.  And so &#8220;Hello World&#8221; written in x86 Assembly was ready for viewing:</p>

<div class="wp_syntax"><div class="code"><pre class="asm" style="font-family:monospace;">       <span style="color: #000000; font-weight: bold;">.MODEL</span> Small
       <span style="color: #000000; font-weight: bold;">.STACK</span> <span style="color: #0000ff;">100h</span>
       <span style="color: #000000; font-weight: bold;">.DATA</span>
   msg <span style="color: #000000; font-weight: bold;">db</span> <span style="color: #7f007f;">'Hello, world!$'</span>
     <span style="color: #000000; font-weight: bold;">.CODE</span>
   start<span style="color: #339933;">:</span>
     <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">ah</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">09h</span>
     <span style="color: #00007f; font-weight: bold;">lea</span> <span style="color: #00007f;">dx</span><span style="color: #339933;">,</span> msg
     <span style="color: #00007f; font-weight: bold;">int</span> <span style="color: #0000ff;">21h</span>
     <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">ax</span><span style="color: #339933;">,</span><span style="color: #0000ff;">4C00h</span>
     <span style="color: #00007f; font-weight: bold;">int</span> <span style="color: #0000ff;">21h</span>
   <span style="color: #000000; font-weight: bold;">end</span> start</pre></div></div>

<p>While &#8220;English&#8221; was apparent in this code, I sensed that she was thinking that she bit off more than she could chew by (willfully, I must add) signing up for this experiment.  Fears were cast aside when I mentioned that technology evolves quickly and high-level programming languages from COBOL and Fortran, all the way to C/C++, Java, C#, Haskell and [drumroll] Python would make this all worth while.  I explained how modern compilers and linkers are special software that take readable code and turn it into machine code that computers can understand.  Often, I&#8217;d turn to examples that she could relate to in ways such as:</p>
<blockquote><p>You know at work when you launch Microsoft Word?  Well, Microsoft developers wrote a bunch of code (probably in C++) to enable you the user to do all sorts of things like letting you change fonts and their sizes, set margins, print, etc.  That code was compiled by a C++ compiler that they use to become that <em>winword.exe</em> file on your computer so that you can simply click on Word&#8217;s shortcut and magic happens.
</p></blockquote>
<p>Relating it all in that manner appeared to cement the understanding.  Without delving into functions just yet, Dena wrote her first program in a high level programming language.  In a style that&#8217;s clearly all her own, she wrote a &#8220;Hello World&#8221; program in Python:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;Hello, Bitches!&quot;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Some experimentation followed, where she attempted to add some indentation.  Her incorrect stabs at it looked like:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;">        <span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;Hello, Bitches!&quot;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>and:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">print</span>        <span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;Hello, Bitches!&quot;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>and:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span>        <span style="color: #483d8b;">&quot;Hello, Bitches!&quot;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Eventually, she realized what works:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;        Hello, Bitches!&quot;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>Slightly unsure of herself and why only the last attempt at indentation worked, I commended her first programming victory and that her experimentation conveniently leads us to the next lesson: Variables and Functions with a side order of Parameters.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F&amp;title=The+FizzWife+Project%3A+Hello%2C+World%21" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F&amp;title=The+FizzWife+Project%3A+Hello%2C+World%21" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F&amp;title=The+FizzWife+Project%3A+Hello%2C+World%21" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F&amp;headline=The+FizzWife+Project%3A+Hello%2C+World%21" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+FizzWife+Project%3A+Hello%2C+World%21&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+FizzWife+Project%3A+Hello%2C+World%21&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+FizzWife+Project%3A+Hello%2C+World%21&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+FizzWife+Project%3A+Hello%2C+World%21&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+FizzWife+Project%3A+Hello%2C+World%21&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F&amp;title=The+FizzWife+Project%3A+Hello%2C+World%21&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F27%2Fthe-fizzwife-project-hello-world%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2011/01/27/the-fizzwife-project-hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The FizzWife Project</title>
		<link>http://chrisbellini.com/blog/2011/01/17/the-fizzwife-project/</link>
		<comments>http://chrisbellini.com/blog/2011/01/17/the-fizzwife-project/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 23:30:32 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[The FizzWife Project]]></category>

		<guid isPermaLink="false">http://chrisbellini.com/blog/?p=3</guid>
		<description><![CDATA[&#160;&#160;&#62;&#62;&#160;[0] Introduction &#160;&#160;&#62;&#62;&#160;[1] Hello World &#160;&#160;&#62;&#62;&#160;[2] Variables and Functions with a Side Order of Parameters Welcome to The FizzWife Project! The goal of the experiment is to teach my wife Dena, a law clerk with little technical/scientific background, enough about the bare essentials of computer programming so that she is able to successfully implement FizzBuzz [...]]]></description>
			<content:encoded><![CDATA[<div id="fizzwifeNav">
<p style="font-weight: bold">
    &nbsp;&nbsp;&gt;&gt;&nbsp;[0] Introduction<br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/01/27/the-fizzwife-project-hello-world/">[1] Hello World</a><br />
    &nbsp;&nbsp;&gt;&gt;&nbsp;<a href="http://chrisbellini.com/blog/2011/02/19/the-fizzwife-project-variables-and-functions-with-a-side-order-of-parameters/">[2] Variables and Functions with a Side Order of Parameters</a>
    </p>
</div>
<p>Welcome to The FizzWife Project!</p>
<p>The goal of the experiment is to teach my wife Dena, a law clerk with little technical/scientific background, enough about the bare essentials of computer programming so that she is able to successfully implement FizzBuzz on her own.</p>
<p>FizzBuzz, of course, is <a href="http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html" target="_blank">a problem that Jeff Atwood (Internet) famously summarized as a test of programming ability (and not programming proficiency).</a>  FizzBuzz boils down to the following problem statement:</p>
<blockquote><p>
Write a program that prints the numbers from 1 to 100. But for multiples of three print &#8220;Fizz&#8221; instead of the number and for the multiples of five print &#8220;Buzz&#8221;. For numbers which are multiples of both three and five print &#8220;FizzBuzz&#8221;.
</p></blockquote>
<p>The problem is trivial for experienced programmers, but may present a challenge to non-programmers such as Dena.</p>
<p>A note to all coders out there: please don&#8217;t post your own solutions to FizzBuzz in the comments; I will delete them.</p>
<p>The impetus for this experiment actually had little influence from yours truly.  In August, Dena and I visited her brother in Kotzebue, Alaska.  For the long trip, I packed some books (GASP!  real dead-tree versions) to pass the time, and one of those books was <a href="http://www.codersatwork.com" target="_blank">Coders at Work</a>.  At various points during the trip, Dena &#8211; completely of her own volition &#8211; picked up and read some of Coders at Work; its conversational nature (and lack of any actual code) proved interesting to her.  So much so, that she approached me with interest in learning something relating to what the interviewees in Coders at Work spoke about.  I didn&#8217;t think she was serious, but she continued to broach the subject even after we returned.</p>
<p>My dilemma was to determine a project or a set of projects that would help her gain understanding of the bare essentials, while at the same time keeping her interest high.  The project had to avoid dependencies on computer science-y things like data structures and algorithms, engineering topics like methodologies/paradigms/architectures, and any sort of <acronym title="Application Programming Interface">API</acronym>s.  Robert &#8220;Uncle Bob&#8221; Martin recently <a href="http://blogs.msdn.com/b/cdndevs/archive/2010/07/05/uncle_2d00_bob_2d00_all_2d00_our_2d00_programming_2d00_languages_2d00_boil_2d00_down_2d00_to_2d00_sequence_2d00_selection_2d00_and_2d00_iteration.aspx" target="_blank">highlighted that programming, regardless of the language and environment boils down to three things; sequence, selection and iteration</a>.  And I think FizzBuzz, while being simple, is an excellent example of these three principles.  I also settled on <a href="http://www.python.org" target="_blank">Python</a> as the language she&#8217;ll use, to avoid strongly typed languages for the time being and the benefit of using <a href="http://en.wikipedia.org/wiki/IDLE_%28Python%29" target="_blank">IDLE</a> for <acronym title="read-eval-print loop">REPL</acronym> purposes.  Immediate feedback is a good thing!  Also, I feel Python&#8217;s syntax is easy for a beginner to understand.</p>
<p>Join Dena and I as she&#8217;s introduced to the essence of programming, with the goal of her creating her own FizzBuzz implementation.  I&#8217;ll post updates on her progress and code snippets, so stay tuned!</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F&amp;title=The+FizzWife+Project" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F&amp;title=The+FizzWife+Project" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F&amp;title=The+FizzWife+Project" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F&amp;headline=The+FizzWife+Project" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+FizzWife+Project&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+FizzWife+Project&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+FizzWife+Project&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+FizzWife+Project&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+FizzWife+Project&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F&amp;title=The+FizzWife+Project&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2011%2F01%2F17%2Fthe-fizzwife-project%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2011/01/17/the-fizzwife-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fave albums of 2010</title>
		<link>http://chrisbellini.com/blog/2010/12/23/fave-albums-of-2010/</link>
		<comments>http://chrisbellini.com/blog/2010/12/23/fave-albums-of-2010/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 21:44:52 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Annual Fave Albums]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://chrisbellini.com/blog/?p=1115</guid>
		<description><![CDATA[One could say that my blog has become merely a historical overview of the albums that I like each year. I do have plans to re-enter the blogosphere (does anybody even use that term anymore?) instead of solely Tweeting or posting Facebook status updates. Until then, like I do every year, here&#8217;s my list of [...]]]></description>
			<content:encoded><![CDATA[<p>One could say that my blog has become merely a historical overview of the albums that I like each year.  I do have plans to re-enter the blogosphere (does anybody even use that term anymore?) instead of solely <a href="http://twitter.com/#!/bullines">Tweeting</a> or posting Facebook status updates.</p>
<p>Until then, <a href="http://www.chrisbellini.com/blog/category/music/annual-fave-albums/">like I do every year</a>, here&#8217;s my list of albums released in 2010 that I particularly liked.  And for the first time, I&#8217;ve chosen not one, not two, but three &#8220;Albums of the Year&#8221;.  Honestly, I couldn&#8217;t decide on a single one, so you&#8217;ll see three of those little trophy icons (<img border="0" alt="Album Of The Year" title="Album Of The Year" src="/images/trophy.gif"/>) this year.</p>
<p><a href="http://www.amusementparksonfire.com" target="_blank">Amusement Parks on Fire</a> &#8211; <em>Road Eyes</em><br />
<img border="0" alt="Album Of The Year" title="Album Of The Year" src="/images/trophy.gif"/><img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.arcadefire.com" target="_blank">Arcade Fire</a> &#8211; <em>The Suburbs</em><br />
<a href="http://www.autolux.net" target="_blank">Autolux </a>- <em>Transit Transit</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.thebesnardlakes.com" target="_blank">The Besnard Lakes</a> &#8211; <em>Are The Roaring Night</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.brokensocialscene.ca" target="_blank">Broken Social Scene</a> – <em>Forgiveness Rock Record</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.caribou.fm" target="_blank">Caribou</a> &#8211; <em>Swim</em><br />
<a href="http://www.killrockstars.com/artists/viewartist.php?id=2631" target="_blank">Corin Tucker Band</a> &#8211; <em>1000 Years</em><br />
<a href="http://www.myspace.com/deerhunter" target="_blank">Deerhunter</a> &#8211; <em>Halcyon Digest</em><br />
<a href="http://www.kscopemusic.com/engineers/" target="_blank">Engineers</a> &#8211; <em>In Praise Of More</em><br />
<a href="http://www.myspace.com/filmschool" target="_blank">Film School</a> &#8211; <em>Fission</em><br />
<a href="http://www.fourtet.net" target="_blank">Four Tet</a> &#8211; <em>There Is Love In You</em><br />
<a href="http://www.myspace.com/godisanastronaut">God Is An Astronaut</a> &#8211; <em>Age of the Fifth Sun</em><br />
<a href="http://www.grinderman.com" target="_blank">Grinderman</a> &#8211; <em>Grinderman 2</em><br />
<a href="http://theholdsteady.net" target="_blank">The Hold Steady</a> -<em> Heaven Is Whenever</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://holyfuckmusic.com" target="_blank">Holy Fuck</a> &#8211; <em>Latin</em><br />
<a href="http://www.myspace.com/frightenedrabbit" target="_blank">Frightened Rabbit</a> &#8211; <em>The Winter of Mixed Drinks</em><br />
<a href="http://www.killingjoke.com" target="_blank">Killing Joke</a> &#8211; <em>Absolute Dissent</em><br />
<a href="http://www.manicstreetpreachers.com" target="_blank">Manic Street Preachers</a> &#8211; <em>Postcards From A Young Man</em><br />
<a href="http://www.myspace.com/marniestern1" target="_blank">Marnie Stern</a> &#8211; <em>Marnie Stern</em><br />
<a href="http://www.themelvins.net" target="_blank">Melvins</a> &#8211; <em>The Bride Screamed Murder</em><br />
<a href="http://menomena.com" target="_blank">Menomena</a> &#8211; <em>Mines</em><br />
<a href="http://www.myspace.com/nonoage" target="_blank">No Age</a> &#8211; <em>Everything In Between</em><br />
<a href="http://www.sviib.com" target="_blank">School Of Seven Bells</a> &#8211; <em>Disconnect From Desire</em><br />
<a href="http://www.teenagefanclub.com" target="_blank">Teenage Fanclub</a> &#8211; <em>Shadows</em><br />
<img border="0" alt="Album Of The Year" title="Album Of The Year" src="/images/trophy.gif"/><a href="http://www.myspace.com/thesenewpuritans" target="_blank">These New Puritans</a> &#8211; <em>Hidden</em><br />
<img border="0" alt="Album Of The Year" title="Album Of The Year" src="/images/trophy.gif"/><a href="http://www.titusandronicus.net" target="_blank">Titus Andronicus</a> &#8211; <em>The Monitor</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://tokyopoliceclub.com" target="_blank">Tokyo Police Club</a> &#8211; <em>Champ</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.wintersleep.com" target="_blank">Wintersleep</a> &#8211; <em>New Inheritors</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.myspace.com/wolfparade" target="_blank">Wolf Parade</a> &#8211; <em>Expo 86</em></p>
<p>A few hornorable mentions:</p>
<p><a href="http://www.myspace.com/thedepreciationguild" target="_blank">The Depreciation Guild</a> &#8211; <em>Spirit Youth</em><br />
<a href="http://www.jimmyeatworld.com" target="_blank">Jimmy Eat World</a> &#8211; <em>Invented</em><br />
<a href="http://lcdsoundsystem.com" target="_blank">LCD Soundsystem</a> &#8211; <em>This Is Happening</em><br />
<a href="http://minusthebear.com" target="_blank">Minus the Bear</a> &#8211; <em>OMNI</em><br />
<a href="http://www.americanmary.com" target="_blank">The National</a> &#8211; <em>High Violet</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.thenewpornographers.com" target="_blank">The New Pronographers</a> &#8211; <em>Together</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.myspace.com/owenpallettmusic" target="_blank">Owen Pallett</a> &#8211; <em>Heartland</em><br />
<a href="http://www.myspace.com/officialradiodept" target="_blank">The Radio Dept.</a> &#8211; <em>Clinging To A Scheme</em><br />
<a href="http://www.redsparowes.com" target="_blank">Red Sparowes</a> &#8211; <em>The Fear Is Excruciating, But Therein Lies the Answer</em><br />
<a href="http://www.spoontheband.com" target="_blank">Spoon</a> &#8211; <em>Transference</em></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F&amp;title=fave+albums+of+2010" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F&amp;title=fave+albums+of+2010" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F&amp;title=fave+albums+of+2010" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F&amp;headline=fave+albums+of+2010" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=fave+albums+of+2010&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=fave+albums+of+2010&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=fave+albums+of+2010&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=fave+albums+of+2010&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=fave+albums+of+2010&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F&amp;title=fave+albums+of+2010&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F12%2F23%2Ffave-albums-of-2010%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2010/12/23/fave-albums-of-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zombies are so hot right now</title>
		<link>http://chrisbellini.com/blog/2010/10/12/zombies-are-so-hot-right-now/</link>
		<comments>http://chrisbellini.com/blog/2010/10/12/zombies-are-so-hot-right-now/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 16:13:29 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[ChrisBellini.com]]></category>

		<guid isPermaLink="false">http://chrisbellini.com/blog/?p=1081</guid>
		<description><![CDATA[For those still paying attention, yes, this blog still exists.  And while life happens and I&#8217;ve been too busy to maintain it, I do plan to resurrect it from time to time and post again.  One thing to note is that the blog&#8217;s address has changed; it&#8217;s now: http://www.chrisbellini.com/blog Of course, the RSS feed location [...]]]></description>
			<content:encoded><![CDATA[<p>For those still paying attention, yes, this blog still exists.  And while life happens and I&#8217;ve been too busy to maintain it, I do plan to resurrect it from time to time and post again.  One thing to note is that the blog&#8217;s address has changed; it&#8217;s now:</p>
<p><a href="http://www.chrisbellini.com/blog">http://www.chrisbellini.com/blog</a></p>
<p>Of course, the RSS feed location has changed as well:</p>
<p><a href="http://chrisbellini.com/blog/?feed=rss2">http://chrisbellini.com/blog/?feed=rss2</a></p>
<p>Stay tuned, because I will be posting more frequently very soon, starting with an experiment that I&#8217;m working on.  Watch this space for more info.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F&amp;title=zombies+are+so+hot+right+now" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F&amp;title=zombies+are+so+hot+right+now" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F&amp;title=zombies+are+so+hot+right+now" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F&amp;headline=zombies+are+so+hot+right+now" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=zombies+are+so+hot+right+now&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=zombies+are+so+hot+right+now&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=zombies+are+so+hot+right+now&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=zombies+are+so+hot+right+now&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=zombies+are+so+hot+right+now&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F&amp;title=zombies+are+so+hot+right+now&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2010%2F10%2F12%2Fzombies-are-so-hot-right-now%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2010/10/12/zombies-are-so-hot-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fave albums of 2009</title>
		<link>http://chrisbellini.com/blog/2009/12/20/fave-albums-of-2009/</link>
		<comments>http://chrisbellini.com/blog/2009/12/20/fave-albums-of-2009/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 01:59:01 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Annual Fave Albums]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.chrisbellini.com/?p=1055</guid>
		<description><![CDATA[It seems fitting that I end the year with a post about the only thing that it seemed that I could write about in the last 365 days &#8211; music. Honestly, to those who are able to work a hectic job, spend time with a significant other and do whatever else life requires of them [...]]]></description>
			<content:encoded><![CDATA[<p>It seems fitting that I end the year with a post about the only thing that it seemed that I could write about in the last 365 days &#8211; music.  Honestly, to those who are able to work a hectic job, spend time with a significant other and do whatever else life requires of them and still find time to regularly blog about a variety of topics of interest to them&#8230;kudos!  2009 simply didn&#8217;t now allow me that luxury, and there&#8217;s no telling if 2010 will relent.  The benefit to developing software in a fast-paced environment is that when I&#8217;m not in meetings or manically scrawling ideas on a whiteboard, it&#8217;s &#8220;nose to the grindstone&#8221; coding and I require a soundtrack for that.</p>
<p>Like <a href="http://www.chrisbellini.com/category/music/annual-fave-albums/">bygone years</a>, I have assembled a list of albums released this year that I found to be to my liking.  As per usual, here it is in alphabetical order and includes my selection for &#8220;album of the year&#8221;.</p>
<p><a href="http://www.trailofdead.com" target="_blank">&#8230;And You Will Know Us By The Trail of Dead</a> &#8211; <em>The Century of Self</em><br />
<a href="http://www.bearinheaven.com" target="_blank">Bear In Heaven</a> &#8211; <em>Beast Rest Forth Mouth</em><br />
<a href="http://www.builttospill.com" target="_blank">Built To Spill</a> &#8211; <em>There Is No Enemy</em><br />
<a href="http://cymbalseatguitars.com" target="_blank">Cymbals Eat Guitars</a> &#8211; <em>Why There Are Mountains</em><br />
<a href="http://www.dandeacon.com" target="_blank">Dan Deacon</a> &#8211; <em>Bromst</em><br />
<a href="http://www.dinosaurjr.com" target="_blank">Dinosaur Jr.</a> &#8211; <em>Farm</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.domakesaythink.com" target="_blank">Do Make Say Think</a>  -<em>The Other Truths</em><br />
<a href="http://www.bunnymen.com" target="_blank">Echo &amp; the Bunnymen</a> &#8211; <em>The Fountain</em><br />
<a href="http://www.flaminglips.com" target="_blank">The Flaming Lips</a> &#8211; <em>Embryonic</em><br />
<a href="http://www.fuckbuttons.co.uk" target="_blank">Fuck Buttons</a> &#8211; <em>Tarot Sport</em><br />
<a href="http://www.futureoftheleft.com" target="_blank">Future of the Left</a> &#8211; <em>Travels With Myself And Another</em><br />
<img border="0" alt="Album Of The Year" title="Album Of The Year" src="/images/trophy.gif"/><a href="http://thehorrors.co.uk" target="_blank">The Horrors</a> &#8211; <em>Primary Colours</em><br />
<a href="http://www.idlewild.co.uk" target="_blank">Idlewild</a> &#8211; <em>Post Electric Blues</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://japandroids.com" target="_blank">Japandroids</a> &#8211; <em>Post-Nothing</em><br />
<a href="http://www.manicstreetpreachers.com" target="_blank">Manic Street Preachers</a> &#8211; <em>Journal For Plague Lovers</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.matthewgood.org" target="_blank">Matthew Good</a> &#8211; <em>Vancouver</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.ilovemetric.com" target="_blank">Metric</a> &#8211; <em>Fantasies</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.themostserenerepublic.com" target="_blank">The Most Serene Republic</a> &#8211; <em>&#8230;And The Ever Expanding Universe</em><br />
<a href="http://www.thepainsofbeingpureatheart.com" target="_blank">The Pains of Being Pure of Heart</a> &#8211; <em>The Pains of Being Pure of Heart</em><br />
<a href="http://www.wearephoenix.com" target="_blank">Phoenix</a> &#8211; <em>Wolfgang Amadeus Phoenix</em><br />
<a href="http://www.aplacetoburystrangers.com" target="_blank">A Place To Bury Strangers</a> &#8211; <em>Exploding Head</em><br />
<a href="http://www.silversunpickups.com" target="_blank">Silversun Pickups</a> &#8211; <em>Swoon</em><br />
<a href="http://www.sonicyouth.com" target="_blank">Sonic Youth</a> &#8211; <em>The Eternal</em><br />
<a href="http://www.myspace.com/flightofthebehemoth" target="_blank">Sunn O)))</a> &#8211; <em>Monoliths and Dimensions</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.thinkaboutlife.org" target="_blank">Think About Life</a> &#8211; <em>Family</em><br />
<a href="http://www.twilightsad.com" target="_blank">The Twilight Sad</a> &#8211; <em>Forget The Night Ahead</em><br />
<a href="http://www.yeahyeahyeahs.com" target="_blank">Yeah Yeah Yeahs</a> &#8211; <em>It&#8217;s Blitz</em><br />
<a href="http://www.yolatengo.com" target="_blank">Yo La Tengo</a> &#8211; <em>Popular Songs</em></p>
<p>Some honourable mentions:<br />
<a href="http://musicfromthebigpink.com" target="_blank">The Big Pink</a> &#8211; <em>A Brief History Of Love</em><br />
<a href="http://www.loobiecore.com" target="_blank">Lou Barlow</a> &#8211; <em>Goodnight Unknown</em><br />
<a href="http://muse.mu" target="_blank">Muse</a> &#8211; <em>The Resistance</em><br />
<a href="http://www.nofxofficialwebsite.com" target="_blank">NOFX</a> &#8211; <em>Coaster</em><br />
<a href="http://www.pearljam.com" target="_blank">Pearl Jam</a> &#8211; <em>Backspacer</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.thehip.com" target="_blank">The Tragically Hip</a> &#8211; <em>We Are The Same</em><br />
<img border="0" alt="Canadian" title="Canadian Artist" src="/images/tiny_flag.gif"/><a href="http://www.ubiquitoussynergyseeker.com" target="_blank">Ubiquitous Synergy Seeker</a> &#8211; <em>Questamation</em><br />
<a href="http://www.myspace.com/wewerepromisedjetpacks" target="_blank">We Were Promised Jetpacks</a> &#8211; <em>These Four Walls</em><br />
<a href="http://www.wilcoworld.net" target="_blank">Wilco</a> &#8211; <em>Wilco (The Album)</em></p>
<p>I had hoped for the best of <a href="http://www.myspace.com/prestonschool" target="_blank">Spiral Stairs</a>&#8216; <em>The Real Feel</em> but I simply would rather see the reunited Pavement come to Toronto.  And I was really anticipating <a href="http://www.mewsite.com" target="_blank">Mew</a>&#8216;s follow-up to their excellent <em>And the Glass Handed Kite</em> album, <em>No More Stories</em>, but I found it quite &#8220;meh&#8221;.</p>
<p>Finally, I&#8217;m not <a href="http://www.pitchfork.com" target="_blank">Pitchfork</a> nor am I some hipster with black-rimmed glasses, skinny jeans, ironic t-shirts and an iPhone in my hand.  That being said, I always try to like an <a href="http://www.myspace.com/animalcollective" target="_blank">Animal Collective</a> album when it&#8217;s released but I&#8217;m ultimately disappointed at how unlistenable (to me) their music is.  <em>Merriweather Post Pavilion</em> is no exception.  It&#8217;ll appear at the top of all of the &#8220;cool&#8221; year end lists, and maybe even some uncool lists too.  However, it won&#8217;t be on mine.  Yuck.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F&amp;title=fave+albums+of+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F&amp;title=fave+albums+of+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F&amp;title=fave+albums+of+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F&amp;headline=fave+albums+of+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=fave+albums+of+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=fave+albums+of+2009&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=fave+albums+of+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=fave+albums+of+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=fave+albums+of+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F&amp;title=fave+albums+of+2009&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F12%2F20%2Ffave-albums-of-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2009/12/20/fave-albums-of-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>simpler times in a simpler city</title>
		<link>http://chrisbellini.com/blog/2009/11/06/simpler-times-in-a-simpler-city/</link>
		<comments>http://chrisbellini.com/blog/2009/11/06/simpler-times-in-a-simpler-city/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 02:33:50 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[geocities]]></category>

		<guid isPermaLink="false">http://www.chrisbellini.com/?p=1040</guid>
		<description><![CDATA[Last week, Yahoo! discontinued Geocities; the free web hosting service. Although Geocities hadn&#8217;t been relevant since 1998, I&#8217;m still a bit sad at the thought of a piece of Web history coming to an end. I have fond memories of Geocities, before it was owned by Yahoo! Back in 1995, the Internet came to my [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, Yahoo! discontinued Geocities; the free web hosting service.  Although Geocities hadn&#8217;t been relevant since 1998, I&#8217;m still a bit sad at the thought of a piece of Web history coming to an end.  I have fond memories of Geocities, before it was owned by Yahoo!</p>
<p>Back in 1995, the Internet came to my hometown of Timmins, Ontario.  Vianet was the lone <acronym title="Internet Service Provider">ISP</acronym> and I signed up for an account while I was still in highschool living with my parents (yes, I myself paid for the service).  With the floppy disks of tools provided by Vianet (Trumpet Winsock, Netscape Navigator, Eudora and PowWow) a new world unveiled itself to me that was far beyond the local <acronym title="Bulletin Board System">BBS</acronym> I had become accustomed to.  The sheer amount of information available on the burgeoning World Wide Web fascinated me.  I had to learn how websites were made.</p>
<p>After learning what a search engine was and how to use one (in this case, it was Altavista), I queried to find out what a web page actually was and how to make it available to the world.  I learned that in order to allow people to access the web pages you create with HTML, you need someone to host them for you.  In 1996, when I began to seriously experiment with HTML, Geocities was <em>the</em> free web host to use.</p>
<p>A friend and I put together our first website, the Lords of Digital Consciousness.  It was, by today&#8217;s standard, extremely basic and horribly tacky.  We abused repeating background  images, the MARQUEE tag and animated GIFs.  The point I&#8217;m trying to make, though, is that Geocities made it super-simple to put together a site for the entire world to see at no cost. Geocities allowed you to store your website in neighbourhoods that matched your site&#8217;s theme; Area51 for sci-fi, WallStreet for business, Colosseum for sports and so on.  Naturally, we parked our Lords of Digital Consciousness website in Silicon Valley &#8211; the neighbourhood for computer-related websites.</p>
<p>Even if Geocities becomes just another footnote in Internet history, I won&#8217;t forget the impact it made on me.  In 1996, while working on the Lords of Digital Consciousness in my spare time while I was in university, I wanted to improve and understand the process of creating websites by reading more.  Being a pre-pharmacy major at the time, I should have had my nose in biochem and human physiology text books, instead of the HTML, JavaScript and Perl books I had been buying and reading for &#8220;fun&#8221;.  I eventually switched my major to Computer Science and the rest is, as they say, history.  However, every once and a while &#8211; when I&#8217;m deep into modern frameworks, n-tier architectures, and enterprise design patterns, I think back to simpler times when completing a project only involved editing some HTML and JavaScript in Windows Notepad and storing it in my place in one of Geocities&#8217; neighbourhoods.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F&amp;title=simpler+times+in+a+simpler+city" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F&amp;title=simpler+times+in+a+simpler+city" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F&amp;title=simpler+times+in+a+simpler+city" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F&amp;headline=simpler+times+in+a+simpler+city" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=simpler+times+in+a+simpler+city&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=simpler+times+in+a+simpler+city&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=simpler+times+in+a+simpler+city&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=simpler+times+in+a+simpler+city&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=simpler+times+in+a+simpler+city&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F&amp;title=simpler+times+in+a+simpler+city&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F11%2F06%2Fsimpler-times-in-a-simpler-city%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2009/11/06/simpler-times-in-a-simpler-city/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>what i&#039;m listening to &#8211; september 2009</title>
		<link>http://chrisbellini.com/blog/2009/09/22/what-im-listening-to-september-2009/</link>
		<comments>http://chrisbellini.com/blog/2009/09/22/what-im-listening-to-september-2009/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:45:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[what i'm listening to]]></category>

		<guid isPermaLink="false">http://www.chrisbellini.com/?p=1033</guid>
		<description><![CDATA[I know this blog exists, but you wouldn&#8217;t believe it based on the frequency of my posts. I can honestly say that I haven&#8217;t been this busy in a very long time. That&#8217;s a good thing! Although it&#8217;s not such a good thing if you faithfully followed this blog &#8216;o mine (perhaps by subscribing to [...]]]></description>
			<content:encoded><![CDATA[<p>I know this blog exists, but you wouldn&#8217;t believe it based on the frequency of my posts.  I can honestly say that I haven&#8217;t been this busy in a very long time.  That&#8217;s a good thing!  Although it&#8217;s not such a good thing if you faithfully followed this blog &#8216;o mine (perhaps by subscribing to the RSS feed) and have seen the rate of new posts drop off like Kanye West&#8217;s respectability (wow, topical!).</p>
<p>There&#8217;s a lot of exciting tech, sports and life topics I&#8217;m hoping to write about, but until I get the chance (again, not a bad thing), we&#8217;ll all have to make-do merely knowing what kind of music I&#8217;m listening to lately.</p>
<p><a href="http://www.futureoftheleft.com" target="_blank">Future of the Left</a> &#8211; <em>Travels With Myself and Another</em><br />
Like a more-accomplished mclusky, <em>Travels With Myself and Another</em> is an energetic and entertaining scuzz-rock record.</p>
<p><a href="http://www.manicstreetpreachers.com" target="_blank">Manic Street Preachers</a> &#8211; <em>Journal for Plague Lovers</em><br />
With lyrics entirely provided by notes left behind by Richey Edwards, <em>Journal for Plague Lovers</em> makes it look like the Manics have been reinvigorated with a sense of urgency.</p>
<p><a href="http://www.mewsite.com" target="_blank">Mew</a> &#8211; <em>No More Stories&#8230;</em><br />
Even more grandiose than <em>&#8230;And the Glass Handed Kite</em> and much peppier and hopeful.</p>
<p><a href="http://www.modestmousemusic.com" target="_blank">Modest Mouse</a> &#8211; <em>No One&#8217;s First and You&#8217;re Next</em><br />
Holding me over until we see a new Modest Mouse full-length.</p>
<p><a href="http://muse.mu" target="_blank">Muse</a> &#8211; <em>The Resistance</em><br />
Operatic, classical and rocking.</p>
<p><a href="http://www.nofxofficialwebsite.com" target="_blank">NOFX</a> &#8211; <em>Coaster</em><br />
The anti-Bush sentiments are no longer required, so they boys have settled back into their old ways, with a couple of mature tricks (Example: &#8220;My Orphan Year&#8221;).</p>
<p><a href="http://www.pearljam.com" target="_blank">Pearl Jam</a> &#8211; <em>Backspacer</em><br />
Best PJ album since <em>Yield</em>.</p>
<p><a href="http://www.yolatengo.com" target="_blank">Yo La Tengo</a> &#8211; <em>Popular Songs</em><br />
Combines all of YLT&#8217;s best fuzz-pop, drone, twee elements into a single cohesive album.  My easy fave is &#8220;More Stars Than There Are In Heaven&#8221;.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+september+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+september+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+september+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F&amp;headline=what+i%26%23039%3Bm+listening+to+-+september+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+september+2009&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F09%2F22%2Fwhat-im-listening-to-september-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2009/09/22/what-im-listening-to-september-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what i&#039;m listening to &#8211; july 2009</title>
		<link>http://chrisbellini.com/blog/2009/07/22/what-im-listening-to-july-2009/</link>
		<comments>http://chrisbellini.com/blog/2009/07/22/what-im-listening-to-july-2009/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:28:10 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[what i]]></category>

		<guid isPermaLink="false">http://www.chrisbellini.com/?p=1027</guid>
		<description><![CDATA[July is the marriage month and I have two weddings to go to; I&#8217;m the best man in one of them and wife is the maid of honour in the other. Does this mean my tunes taste has turned to wistful songs of love and devotion? Friendly Fires &#8211; Friendly Fires Funky and tuneful with [...]]]></description>
			<content:encoded><![CDATA[<p>July is the marriage month and I have two weddings to go to; I&#8217;m the best man in one of them and wife is the maid of honour in the other.  Does this mean my tunes taste has turned to wistful songs of love and devotion?</p>
<p><a href="http://www.wearefriendlyfires.com" target="_blank">Friendly Fires</a> &#8211; <em>Friendly Fires</em><br />
Funky and tuneful with a splash of shoegaze.  Hip wedding receptions would play some tracks off this album to get people to kick off their shoes and spaz out on the dance floor; &#8220;On Board&#8221; (made famous by <a href="http://www.youtube.com/watch?v=5SqI7SWx5Fg" target="_blank">the original Wii Fit TV commercial</a>) at the very least.</p>
<p><a href="http://thehorrors.co.uk" target="_blank">The Horrors</a> &#8211; <em>Primary Colours</em><br />
The Cure + Bauhaus + My Bloody Valentine = The Horror&#8217;s <em>Primary Colours</em>; that&#8217;s the best way for me to describe it.</p>
<p><a href="http://themostserenerepublic.com" target="_blank">The Most Serene Republic</a> &#8211; <em>&#8230;And the Ever Expanding Universe</em><br />
Grandiose songs for a hip romantic comedy.  Too bad &#8220;hip&#8221; and &#8220;romantic comedy&#8221; are mutually exclusive.  With love, from Milton, ON.</p>
<p><a href="http://www.theraa.com" target="_blank">The Rural Alberta Advantage</a> &#8211; <em>Hometowns</em><br />
A friend of mine knows the folks in this band and gushed about them for so long, I gave in.  Turns out, he&#8217;s right.  Bedroom rock with big ambitions.</p>
<p><a href="http://www.wilcoworld.net" target="_blank">Wilco</a> &#8211; <em>Wilco (The Album)</em><br />
Wilco, Wilco, Wilco will love you, baby.  Need I say more?</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+july+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+july+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+july+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F&amp;headline=what+i%26%23039%3Bm+listening+to+-+july+2009" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F&amp;title=what+i%26%23039%3Bm+listening+to+-+july+2009&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F22%2Fwhat-im-listening-to-july-2009%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2009/07/22/what-im-listening-to-july-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>firefox 3.5 &#8211; an exercise in poor design</title>
		<link>http://chrisbellini.com/blog/2009/07/10/firefox-35-an-exercise-in-poor-design/</link>
		<comments>http://chrisbellini.com/blog/2009/07/10/firefox-35-an-exercise-in-poor-design/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 13:52:25 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox 3.5]]></category>

		<guid isPermaLink="false">http://www.chrisbellini.com/?p=1018</guid>
		<description><![CDATA[Lucifer is putting on a sweater &#8211; I&#8217;m posting something technical again! Mozilla released Firefox 3.5 last week with loads of new features like the zippy TraceMonkey JavaScript engine. It also includes another feature that I don&#8217;t think I can ever warm up to &#8211; a revamped NSS module that causes ridiculously long launch times [...]]]></description>
			<content:encoded><![CDATA[<p>Lucifer is putting on a sweater &#8211; I&#8217;m posting something technical again!</p>
<p>Mozilla released Firefox 3.5 last week with loads of new features like the zippy TraceMonkey JavaScript engine.  It also includes another feature that I don&#8217;t think I can ever warm up to &#8211; a revamped <a href="http://www.mozilla.org/projects/security/pki/nss/" target="_blank"><acronym title="Network Security Services">NSS</acronym></a> module that causes ridiculously long launch times on Windows computers.</p>
<p>The NSS is responsible for handling encryption tasks via <acronym title="Secure Sockets Layer">SSL, </acronym><acronym title="Transport Layer Security">TLS</acronym>, etc.  When we&#8217;re talking about encryption, random numbers are par for the course.  I&#8217;m not sure how they generated random numbers in previous NSS versions, but for 3.5, Mozilla decided that using various temporary files on people&#8217;s computers was a stellar way to calculate a seed for a random number generator.  Generating truly random numbers on computers is hard.  Hell, randomness itself is hard.  Yet whatever Mozilla was doing before seemed to work well.  Why they decided to use temp files now is anybody&#8217;s guess.  Especially given the fact that typical computer users don&#8217;t even know of the existence of the various temporary folders on their systems, so we could be talking thousands of files that the NSS has to iterate over to generate a random number generator&#8217;s seed.  Thankfully, <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=501605">this issue has been logged as a Priority 1 bug</a>, so we (hopefully) can anticipate a speedy resolution.  In the meantime, if you like Firefox 3.5 on Windows but its slow startup has you at your wits&#8217; end (and you don&#8217;t want to revert to a 3.0.x version), keep the following folders on your computer as clean as possible until this is fixed in a point release:</p>
<p><strong>Windows 2000, XP and 2003</strong></p>
<ul>
<li>C:\Documents and Settings\[user_name]\Temp\</li>
<li>C:\Documents and Settings\[user_name]\Local Settings\Temp</li>
<li>C:\Documents and Settings\[user_name]\My Recent Documents</li>
<li>C:\Documents and Settings\[user_name]\Local Settings\Temporary Internet Files</li>
<li>C:\Documents and Settings\[user_name]\Local Settings\History</li>
</ul>
<p><strong>Windows Vista, 2008 and 7</strong></p>
<ul>
<li>C:\Users\[user_name]\Temp\</li>
<li>C:\Users\[user_name]\AppData\Local\Temp</li>
<li>C:\Users\[user_name]\AppData\Roaming\Microsoft\Windows\Recent</li>
<li>C:\Users\[user_name]\Local Settings\Temporary Internet Files</li>
<li>C:\Users\[user_name]\Local Settings\History</li>
</ul>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F&amp;title=firefox+3.5+-+an+exercise+in+poor+design" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F&amp;title=firefox+3.5+-+an+exercise+in+poor+design" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F&amp;title=firefox+3.5+-+an+exercise+in+poor+design" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F&amp;headline=firefox+3.5+-+an+exercise+in+poor+design" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=firefox+3.5+-+an+exercise+in+poor+design&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=firefox+3.5+-+an+exercise+in+poor+design&amp;u=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=firefox+3.5+-+an+exercise+in+poor+design&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=firefox+3.5+-+an+exercise+in+poor+design&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=firefox+3.5+-+an+exercise+in+poor+design&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F&amp;title=firefox+3.5+-+an+exercise+in+poor+design&amp;summary=&amp;source=" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fchrisbellini.com%2Fblog%2F2009%2F07%2F10%2Ffirefox-35-an-exercise-in-poor-design%2F" target="_blank"><img class="lightsocial_img" src="http://chrisbellini.com/blog/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://chrisbellini.com/blog/2009/07/10/firefox-35-an-exercise-in-poor-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

