<?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>programming with passion &#187; Uncategorized</title>
	<atom:link href="http://www.jasonrowland.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonrowland.com</link>
	<description>Learning Mac, Ruby, iPhone, BlackBerry, Android, WinMobile</description>
	<lastBuildDate>Fri, 30 Jul 2010 21:01:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Homebrew</title>
		<link>http://www.jasonrowland.com/2010/07/homebrew/</link>
		<comments>http://www.jasonrowland.com/2010/07/homebrew/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 20:38:47 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=311</guid>
		<description><![CDATA[I am currently trying out a new package management system called Homebrew.  I am not really sure how it&#8217;s any better than MacPorts yet.  I think the only thing I know is that you aren&#8217;t forced to download multiple versions of a package if you don&#8217;t need to.
http://mxcl.github.com/homebrew/
]]></description>
			<content:encoded><![CDATA[<p>I am currently trying out a new package management system called Homebrew.  I am not really sure how it&#8217;s any better than MacPorts yet.  I think the only thing I know is that you aren&#8217;t forced to download multiple versions of a package if you don&#8217;t need to.</p>
<p>http://mxcl.github.com/homebrew/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2010/07/homebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RVM (Ruby Version Manager)</title>
		<link>http://www.jasonrowland.com/2010/02/rvm-ruby-version-manager/</link>
		<comments>http://www.jasonrowland.com/2010/02/rvm-ruby-version-manager/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 07:09:52 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=282</guid>
		<description><![CDATA[Motivation
The Rails 2.x has felt&#8230; hacky to me.  When I&#8217;ve looked at some of the code that has been generated, I&#8217;ve been turned off by the inline javascript I&#8217;ve seen.  I want the code that my framework creates to be extremely clean and standards oriented.  Inline javascript just doesn&#8217;t cut it for me.  Another thing [...]]]></description>
			<content:encoded><![CDATA[<h2>Motivation</h2>
<p>The Rails 2.x has felt&#8230; hacky to me.  When I&#8217;ve looked at some of the code that has been generated, I&#8217;ve been turned off by the inline javascript I&#8217;ve seen.  I want the code that my framework creates to be extremely clean and standards oriented.  Inline javascript just doesn&#8217;t cut it for me.  Another thing that has bugged me is the disregard for other points of view.  In &#8220;Agile Web Development with Rails&#8221; book I read, the authors decided to denigrate the importance of having a very clean ORM layer because Rails didn&#8217;t have it.  It has felt that the Rails core team didn&#8217;t really care about correctness, they seemed hacky.  The merb team seemed to care about correctness in implementation which is why they were creating a lightweight, flexible foundation.  Because of this, Rails 3.0 excites me.</p>
<p>I&#8217;ve decided to do all my Rails development using 3.0.  I have no plans on releasing my software any time soon, and I really want to use the new bundler and the new routing features.  In order to do this, I want to be able to run multiple versions of Ruby on my machine.  My good friend Andrew Kavanaugh pointed me to <a href="http://rvm.beginrescueend.com/">RVM (Ruby Version Manager)</a>.</p>
<h2>RVM Installation</h2>
<p>I had no trouble following the directions to install RVM.  It installed without errors.  I encountered an error when I went to install a different Ruby version.  Inside the configure.error.log file, I had this line: &#8220;configure: error: C compiler cannot create executables&#8221;  Inside the configure.log file, I had &#8220;checking whether the C compiler works&#8230; no.&#8221;   When I upgraded to Snow Leopard, I didn&#8217;t upgrade my dev tools.  Once I installed Xcode 3.2.1, I had no problems installing my ruby versions.</p>
<h2>RVM Usage</h2>
<p>Install a new version of Ruby:</p>
<pre>rvm install 1.9.2</pre>
<p>List installed versions of Ruby:</p>
<pre>rvm list</pre>
<p>Change version of Ruby</p>
<pre>rvm 1.9.2
rvm system</pre>
<p>Change default</p>
<pre>rvm 1.9.1 --default
rvm system --default</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2010/02/rvm-ruby-version-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails and Forms</title>
		<link>http://www.jasonrowland.com/2010/02/ruby-on-rails-and-forms/</link>
		<comments>http://www.jasonrowland.com/2010/02/ruby-on-rails-and-forms/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 02:30:43 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=279</guid>
		<description><![CDATA[Just found a cool form tool I&#8217;m going to try out for Rails:
http://github.com/justinfrench/formtastic
He built the output to be based on a presentation given by Aaron Gustafson
http://github.com/justinfrench/formtastic
I&#8217;ve been doing web development for a LONG time so it&#8217;s easy to fall into the trap of thinking I know everything there is to know about something as basic [...]]]></description>
			<content:encoded><![CDATA[<p>Just found a cool form tool I&#8217;m going to try out for Rails:</p>
<p><a href="http://github.com/justinfrench/formtastic">http://github.com/justinfrench/formtastic</a></p>
<p>He built the output to be based on a presentation given by Aaron Gustafson</p>
<p><a href="http://github.com/justinfrench/formtastic">http://github.com/justinfrench/formtastic</a></p>
<p>I&#8217;ve been doing web development for a LONG time so it&#8217;s easy to fall into the trap of thinking I know everything there is to know about something as basic as forms.  I&#8217;ve learned some really good stuff by Aaron Gustafson&#8217;s presentation that I&#8217;m going to immediately incorporate into my applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2010/02/ruby-on-rails-and-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Financial Consequences of Being Self Employed</title>
		<link>http://www.jasonrowland.com/2010/02/financial-consequences-of-being-self-employed/</link>
		<comments>http://www.jasonrowland.com/2010/02/financial-consequences-of-being-self-employed/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 18:03:11 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=275</guid>
		<description><![CDATA[I discovered a few interesting things while preparing for my quarterly taxes.  I don&#8217;t have to pay them until April 15th.  Also, I don&#8217;t base it on the total taxes I will owe.  I only have to pre pay 1/4 of last year&#8217;s total federal tax.  So I can ignore the [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered a few interesting things while preparing for my quarterly taxes.  I don&#8217;t have to pay them until April 15th.  Also, I don&#8217;t base it on the total taxes I will owe.  I only have to pre pay 1/4 of last year&#8217;s total federal tax.  So I can ignore the medicare and social security if I want to owe a ton of money at the end of the year.  I think what I&#8217;ll actually do is save the difference between what I will owe and what I have to pre pay into a savings account.  That way at the end of the year, I won&#8217;t have to scramble to pay a huge tax bill.</p>
<p>What I can tell so far, there are four major financial differences between being an employee and being a self employed individual. These four are health care, retirement, taxes (social security/medicare), and time.  I&#8217;m speaking from the perspective of someone who bills by the hour.</p>
<p>Health care is really dependent upon what your employer provides.  I can get similar coverage to my old job for roughly the same as what my former employer was providing.  I wasn&#8217;t getting fantastic health coverage before though.  Some of the plans with low deductibles are quite expensive to get on your own.  I&#8217;m settling on a plan with a $10,000 family max out of pocket plan for around $350/mo for my family of five through Blue Cross.  On the plus side, it is an HSA.  So I can contribute to this account tax free money.  If I don&#8217;t use it on health care, it stays in the account.</p>
<p>Retirement is interesting.  As an employee, you are limited to a maximum contribution of $16,500.  With a SEP, the max you can contribute is 20% of business income up to $45,000.  With a solo-401k, you can contribute more than 20% but still with a limit of $45,000.  I wouldn&#8217;t reach these maximum contributions in either case, but it is a nice benefit if you are earning lots of money.</p>
<p>A third area is taxes.  I knew that the employer paid the other half of the employment tax.  I never really thought about the implications of it.  I didn&#8217;t see the actual dollar amount, and it was never reported on any of my W2s.  Employees pay this tax in the form of reduced wages so it is a hidden tax.  Employees only see 7.65% taken out for social security and medicare.  Self-Employed individuals pay 15.3%.  In order to compare your wages as an employee vs your income as a self employed individual, you need to make adjustments.  What this means practically is that you either need to work an extra 3 hours per a 40/hr week at the same pay rate as an employee, or you need to increase your rate by $0.83 for every $10 you were getting paid as an employee.</p>
<p>The fourth area is time.  As a self employed individual, time does indeed equal money.  If I&#8217;m not working, I&#8217;m not getting paid.  What this means practically is that holidays have a different feel to me.  I am not able to work or bill during a holiday.  It also means that when I take vacations, I am not getting paid.  It means that if a client doesn&#8217;t need me for any reason, I&#8217;m not getting paid.  If I&#8217;m actively seeking out new contracts, I&#8217;m not getting paid for this time.  You need to factor in this down time into your bill rate otherwise, you will find yourself making a lot less than you were previously.  The upside to this time factor is that if you are a hard worker, you can work a lot more than 40/hrs a week and can increase your income that way.</p>
<p>The biggest change for me in being self employed is that I love what I do.  I get to work on different and interesting projects.  This is strange, but I no longer am sad it&#8217;s monday or happy it&#8217;s friday.  This really doesn&#8217;t have anything to do with working for myself.  It is entirely dependent on liking what I do.  I am pretty sure I could be just as happy working as an employee if the work was interesting.  I am getting to work on the Blackberry, the iPhone, Windows Mobile.  I am using Java and C#.  The Blackberry project is especially fulfilling.  Because of the Blackberry, the sales team are getting many more opportunities to sell.  I will have directly contributed to increasing the revenue of this company.  I love it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2010/02/financial-consequences-of-being-self-employed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>css @font-face</title>
		<link>http://www.jasonrowland.com/2010/01/css-font-face/</link>
		<comments>http://www.jasonrowland.com/2010/01/css-font-face/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 01:41:43 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=261</guid>
		<description><![CDATA[Embedded fonts are almost a reality in web development.  All the modern browsers support the @font-face attribute.  Microsoft gets a lot of criticism for innovation, but they have had this ability since 1997 in Internet Explorer 4.0.  Unfortunately, they do not simply let you use a TTF font or an OTF font.  It uses an [...]]]></description>
			<content:encoded><![CDATA[<p>Embedded fonts are almost a reality in web development.  All the modern browsers support the @font-face attribute.  Microsoft gets a lot of criticism for innovation, but they have had this ability since 1997 in Internet Explorer 4.0.  Unfortunately, they do not simply let you use a TTF font or an OTF font.  It uses an EOT file.</p>
<p>The key to embedding fonts is to use the @font-face  css rule.</p>
<pre>@font-face {
  font-family: "myfontname";
  src: url(myfont.ttf) format("truetype");
}</pre>
<p>Once you&#8217;ve added this, you can simply use your font as you would any other font.</p>
<pre>&lt;p style="font-family:myfontname"&gt;My font name looks like this&lt;/p&gt;</pre>
<p>It is really simple&#8230;<br />
EXCEPT</p>
<p>If you happen to choose a free font that is similarly named, you will run into troubles using Google Chrome.  I chose a font called Dakota that is almost identical to Handwriting Dakota on my Mac.  When I installed this font to try it out, my Mac warned me that it was a duplicate font, except the menu tool to remove duplicates was disabled.  No matter what I tried, I could not get it to work in Chrome.  Safari and Firefox both worked just fine.  The only way I could fix it was to edit the font and change the name.  I used the free tool Font Forge to do this.  While I was in the font, I had to fix a bunch of issues with the font and I changed the name to Dakkota.  Once I did that, I got it working in all three browsers on my Mac.</p>
<p>Tomorrow, I&#8217;m going to tackle IE and the EOT file format&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2010/01/css-font-face/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six degrees of Barack Obama</title>
		<link>http://www.jasonrowland.com/2009/09/six-degrees-of-barack-obama/</link>
		<comments>http://www.jasonrowland.com/2009/09/six-degrees-of-barack-obama/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 23:27:56 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=127</guid>
		<description><![CDATA[You&#8217;ve heard of the six degrees of Kevin Bacon?  It is the concept that you can connect to anyone in the world in six steps or less.  Microsoft has demonstrated this after checking (snooping?) through 30 billion IM conversations.  Well, anyone who knows me can (if they couldn&#8217;t before) trace their route to President Barack Obama.  Today my [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve heard of the <a href="http://en.wikipedia.org/wiki/Six_Degrees_of_Kevin_Bacon">six degrees of Kevin Bacon</a>?  It is the concept that you can connect to anyone in the world in six steps or less.  <a href="http://research.microsoft.com/en-us/um/people/horvitz/leskovec_horvitz_www2008.pdf">Microsoft has demonstrated</a> this after checking (snooping?) through 30 billion IM conversations.  Well, anyone who knows me can (if they couldn&#8217;t before) trace their route to President <a href="http://en.wikipedia.org/wiki/Barack_Obama">Barack Obama</a>.  Today my sister introduced me to her boss of many years, <a href="http://en.wikipedia.org/wiki/Ted_Mondale">Ted Mondale</a>.  Ted is a former MN state senator, and the son of the former <a href="http://en.wikipedia.org/wiki/Vice_President_of_the_United_States">Vice President </a>of the United States <a href="http://en.wikipedia.org/wiki/Walter_Mondale">Walter Mondale</a>.  Walter&#8217;s boss was <a href="http://en.wikipedia.org/wiki/Jimmy_Carter">JimmyCarter</a>, the <a href="http://en.wikipedia.org/wiki/President_of_the_United_States">President of the United States</a> (POTUS for you <a href="http://en.wikipedia.org/wiki/The_West_Wing">West Wing</a> fans).  Jimmy is in the very exclusive club of men who answer to the title &#8220;<a href="http://en.wikipedia.org/wiki/Mr._President_(title)">Mr. President</a>&#8221; of which Barack Obama is the newest member.  So there you have it.</p>
<p>Step 1: you -&gt; me  :^)<br />
Step 2: me -&gt; Shawna Rosso (my lovely sister)<br />
Step 3: Shawna -&gt; Ted Mondale (son of former Vice President)<br />
Step 4: Ted -&gt; Walter Mondale (former Vice President)<br />
Step 5: Walter -&gt; Jimmy Carter (former President)<br />
Step 6: Jimmy -&gt; Barack Obama (current President)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2009/09/six-degrees-of-barack-obama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do certain languages attract bad developers?</title>
		<link>http://www.jasonrowland.com/2009/08/do-certain-languages-attract-bad-developers/</link>
		<comments>http://www.jasonrowland.com/2009/08/do-certain-languages-attract-bad-developers/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 03:27:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=111</guid>
		<description><![CDATA[Why is it that every time I come in to fix a VB project, the code is awful?  This current one is probably the worst.  It is sloppy.  It is riddled with security vulnerabilities.  it is filled with files named &#8220;checkout.aspx&#8221;, &#8220;checkout2.aspx&#8221;, etc.  No source control.  No dev or staging enviornment.  They were using the [...]]]></description>
			<content:encoded><![CDATA[<p>Why is it that every time I come in to fix a VB project, the code is awful?  This current one is probably the worst.  It is sloppy.  It is riddled with security vulnerabilities.  it is filled with files named &#8220;checkout.aspx&#8221;, &#8220;checkout2.aspx&#8221;, etc.  No source control.  No dev or staging enviornment.  They were using the production database for development. They don&#8217;t understand the concept of reuse or refactoring.  I fixed the exact same bug 20 times because they have cut and paste this code everywhere.   I&#8217;m not getting paid to clean up the code, just fix the vulnerabilities.</p>
<p>So my question is why does VB attract so many BAD developers. Javascript tends to do the same thing.</p>
<p>Why?  You can write really good javascript code.  You can write really good vb code (although it will always be ugly).  I just don&#8217;t understand why every vb project I look at appears that 10 year olds wrote it.</p>
<p>Now that I think about this some more, I&#8217;ve seen some really really horrible C++ code too.  I&#8217;m going to have to think about this one.  I&#8217;m just so tired of cleaning up after VB coders.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2009/08/do-certain-languages-attract-bad-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gas guzzling hog vs. Chevy Volt</title>
		<link>http://www.jasonrowland.com/2009/08/gas-guzzling-hog-vs-chevy-volt/</link>
		<comments>http://www.jasonrowland.com/2009/08/gas-guzzling-hog-vs-chevy-volt/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 06:01:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=70</guid>
		<description><![CDATA[I recently read a USA Today article talking about the Chevy Volt.  In this article, they mentioned 230 mpg which sounds awesome.  Later in the article, I read that the Chevy Volt would cost about $0.03/mile to operate.  I have a neighbor that wanted to sell both of his cars and buy hybrid vehicles to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read a <a href="http://www.usatoday.com/money/autos/2009-08-11-chevrolet-volt_N.htm">USA Today article</a> talking about the Chevy Volt.  In this article, they mentioned 230 mpg which sounds awesome.  Later in the article, I read that the Chevy Volt would cost about $0.03/mile to operate.  I have a neighbor that wanted to sell both of his cars and buy hybrid vehicles to save money.  I really wish people used their brain before they made ridiculous statements like that.  If you want to buy a Chevy Volt to cut down on our national dependence on Oil, fine.  If you want to buy it to cut down the green house gases, ok.  But don&#8217;t buy a Chevy Volt thinking you are going to save money. Buying a new car can never be justified by the finances alone.  It is better to buy used than to buy new in terms of bottom line dollars.  We will take my used 1999 Dodge Durango for worst case comparison purposes.  It is a gas hog but it will tow a boat quite nicely thank you.  Let&#8217;s do the math&#8230;</p>
<p><strong>Gasoline</strong></p>
<p>MPG seems to be the only thing that these articles focus on so let&#8217;s start there.  The VOLT is expected to get 230MPG.  The actual MPG is typically 15%-20% less than the reported MPG.  So that 230MPG is actually 195MPG (still awesome).  <a href="http://www.epa.gov/OMS/climate/420f05004.htm">According to the EPA</a>, the average passenger vehicle is driven about 12,000 miles per year.  So the cost per year of gasoline for the Volt will be (12,000 miles / 195 MPG) * (2.50$ per gallon of gas) = $153/year in gasoline.  Wow.</p>
<p>Like I said, my Dodge Durango is a gas HOG.  I&#8217;ve calculated the gas mileage ad I can&#8217;t get it above 12MPG.  The cost of gasoline is (12,000 miles / 12 MPG) * ($2.50 per gallon of gas) = $2,500/year in gasoline.  This means over the course of 6 years I will spend $15,000.  Ouch.</p>
<p><em>Note: I put closer to 8,000miles/year on my Durango,  so it really doesn&#8217;t cost me that much in fuel. </em></p>
<p><strong>New vs. Used<br />
</strong></p>
<p><a href="http://www.forbes.com/2009/06/17/toughest-car-models-lifestyle-vehicles-toughest-models.html">According to J.D. Power</a>, the average length of time a consumer owns a vehicle is 6 years.  In order to compare these vehicles to see which one is cheaper, we will assume we sell this vehicle at the end of 6 years.  According to <a href="http://editorial.autos.msn.com/article.aspx?cp-documentid=435466">consumer reports</a>, the depreciation on a car for the first 6 years is roughly 70%.  This means six years later, your new car will be worth 30% of what you paid for it.</p>
<p>The cost of a new Chevy Volt will be $40,000.  6 years later, it will be worth $12,000.  That is a decrease in net worth of $28,000.  Used Dodge Durango with 120,000 miles = $4,280.  For this comparison, we will just assume you have to pay someone $50 to haul it away after 6 years.  Not really fair since I&#8217;m still driving a 1994 Pontiac Grand Am and it has some value.</p>
<p>This right here is the real issue with the ownership costs of the Chevy Volt.  It isn&#8217;t specific to the Volt.  Really, this article boils down to new vs. used.  This right here is why if you are trying to save money, you should go out and buy a cheap gas gusling clunker instead of that shiny new hybrid.</p>
<p><strong>Maintenance</strong></p>
<p>Cars break down.  Older cars break down more often than newer cars.  I have no idea how to even quantify this.  My Durango doesn&#8217;t really go into the shop very often.  My 15 year old Grand Am goes in more regularly so I will use it to estimate my future Durango costs.  My Grand Am seems to break down a few times a year now and cost me $300-500 each time.  I am just going to use $1,000/year as a guess.</p>
<p>According to <a href="http://www.consumerreports.org/cro/cars/pricing/what-that-car-really-costs-to-own-4-08/overview/what-that-car-really-costs-to-own-ov.htm">Consumer reports</a>, repairs cost about 4% of the total cost of ownership in new cars for the first five years so I&#8217;m just going to use 4% of the depreciation of the vehicle.  This works out to be about $1,120 over the course of six years.  The actual repair costs will probably be higher since consumer reports only measured a five year period.</p>
<p><strong>Sales Tax</strong></p>
<p><a href="http://www.consumerreports.org/cro/cars/pricing/what-that-car-really-costs-to-own-4-08/overview/what-that-car-really-costs-to-own-ov.htm">Consumer Reports</a> used national average of 4.9% to determine the sales tax in their evaluation of total cost of ownership.  I&#8217;ll do the same.  Chevy Volt sales tax is $1,932.  Sales tax on a used Durango is $206.</p>
<p><strong>Interest on loan</strong></p>
<p>I don&#8217;t think it&#8217;s a good idea to borrow money for a car, but that is a different post.  Since most Americans have car payments, I will factor it into this discussion.</p>
<p>According to J.D. Power, the average length of loan for a car is 5 years. <a href="http://www.consumerreports.org/cro/cars/pricing/what-that-car-really-costs-to-own-4-08/overview/what-that-car-really-costs-to-own-ov.htm">Consumer reports</a> used a 15% down payment and 6.8% interest rate to determine interest on the loan.  Using these numbers, the interest for a $40,000 Chevy Volt is $6,200.  Interest on the Durango would be $660.</p>
<p><strong>Government subsities</strong></p>
<p>The government will give you some of my money to buy yourself a new Volt.  They will <a href="http://gm-volt.com/2008/10/03/along-with-wall-street-bailout-plug-in-car-tax-credit-is-passed-chevy-volt-now-7500-less/">give you $7,500</a> in fact.</p>
<p><strong>Insurance, Registration Fees</strong></p>
<p>All these would be higher for a new car.  I&#8217;m feeling lazy so I&#8217;ll be generous and assume they are equal.  Just keep in mind that insurance alone would be quite a bit more for a $40,000 car vs. a $4,000 car.</p>
<p><strong>Adding it all up</strong></p>
<table border="0">
<tbody>
<tr>
<td></td>
<th>2009 Chevy volt</th>
<th>1999 Dodge Durango</th>
</tr>
<tr>
<th>Capital Expense</th>
<td>$40,000</td>
<td>$4,200</td>
</tr>
<tr>
<th>Sales Tax @4.9%</th>
<td>$1,960</td>
<td>$206</td>
</tr>
<tr>
<th>Loan Interest @6.8%</th>
<td>$2,720</td>
<td>$660</td>
</tr>
<tr>
<th>Gasoline @$2.50/gal</th>
<td>$153/yr = $918</td>
<td>$2,500/yr = $15,000</td>
</tr>
<tr>
<th>Maintenance</th>
<td>$1,120</td>
<td>$1,000/yr = $6,000</td>
</tr>
<tr>
<th>Government Subsidy</th>
<td>-$7,500</td>
<td>0</td>
</tr>
<tr>
<th>Resale after 6 years</th>
<td>-$12,000 ($12K in my pocket)</td>
<td>$50 (tow away cost money)</td>
</tr>
<tr>
<th>Total Cost of Ownership</th>
<td>$30,218</td>
<td>$26,116</td>
</tr>
</tbody>
</table>
<p><strong>Conclusion</strong><br />
Don&#8217;t buy a brand new hybrid expecting to save money in the long run.  The math does not work.  If you want to buy a hybrid for enviornmental concerns, then by all means.  But don&#8217;t try to justify your purchase as a cheaper alternative.  I used one of the worst possible vehicle to compare.  I gave the hybrid every benefit and made assumptions in it&#8217;s favor.  I used the government subsidy.  I did all these things and the Durango still beat the Volt by $1,000.  If I used a 1999 Pontiac Grand Am for comparison, it would be $15,000 cheaper than the Volt over 6 years.</p>
<p>Just to be clear, I&#8217;m not against hybrid vehicles and I want our country to be cleaner and free from dependence on foreign oil.  I just don&#8217;t appreciate articles that distort the financial picture of these vehicles like the USA Today did claiming $0.03/mile.  The total cost of the Volt is much much higher. Of course, if they factored in the <a href="http://virtualhybrid.org/ForeignOil.aspx">actual cost</a> to secure foreign oil, this would be a different article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2009/08/gas-guzzling-hog-vs-chevy-volt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rekindled</title>
		<link>http://www.jasonrowland.com/2009/06/rekindled/</link>
		<comments>http://www.jasonrowland.com/2009/06/rekindled/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 08:09:36 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.jasonrowland.com/?p=3</guid>
		<description><![CDATA[I am going to write about rekindling my passion for programming.  Working for go nowhere corporate giants for the past eight years really sucked the life out of me.  It left me with a fat wallet but no passion.  When I worked for startups, I had a passion for writing code.  I miss the days when I&#8217;d work until I was [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to write about rekindling my passion for programming.  Working for go nowhere corporate giants for the past eight years really sucked the life out of me.  It left me with a fat wallet but no passion.  When I worked for startups, I had a passion for writing code.  I miss the days when I&#8217;d work until I was so exhausted I would take a nap under my desk at 4am.  I hope to take a sabbatical over the next six months to reignite my passion.  My wallet will get thinner but my passion for coding will be renewed.  I have <a href="http://startupweekend.com/">Startup Weekend </a>Boulder 2009 partially to thank for this.  It was during this weekend where I rediscovered what it is that I am passionate about.  I&#8217;ve always been happiest in my career when I&#8217;ve learned new technology.  I am going to learn lots of new technology.</p>
<p>I wrote my first program as an 8 year old in 1980 after my dad gave me my first computer.  It was the Commodore Vic 20.  The 20 stood for 20kilobytes of RAM.  My new MacBook Pro has 2,000,000 times more RAM.  I saved my first program to a cassette tape.  I felt so powerful with my little 10 line basic program.  It wasn&#8217;t until 1990 that I truly fell in love with programming using Turbo Pascal 5.5.   I loved it because it was Object Oriented and I just &#8220;got it&#8221;.  In 1995 I became obsessed with the thought that I could put web pages on the school network and anybody in the world could see them.  In 1996, I learned Perl so I could write my first CGI programs.  I did this while I was supposed to be learning scheme I think.  In 1999, I fell in love with Java because it made programming for the Internet easy and object oriented.  In 2003 I learned C# because it was like java but you could write Windows apps.  In every single one of these situations, I learned the language just for the love of coding.</p>
<p>I met some passionate coders at the Startup Weekend in Boulder.  I went hoping to meet people who love technology and I was not disappointed.  There were lots of folks with passion.  <a href="http://twitter.com/atmos">Corey Donohoe</a> especially reminded me of the passion I used to have.  Since I&#8217;m most passionate when I&#8217;m learning new things, I&#8217;ve decided to learn a new (to me) operating system, new (to me) programming languages, and I&#8217;ll even use technologies I previously thought were kinda dumb (twitter, facebook, etc).  During the weekend we were also encouraged to start a blog by Startup Weekend founder, <a href="http://twitter.com/andrewhyde">Andrew Hyde </a>.  I&#8217;ve toyed with the idea a while, but didn&#8217;t really think I had anything worth while to contribute.  Even if what I write has been written somewhere else, at the very least, I will be another entry that will show up in google when other people have problems with code.  Maybe a different perspective on the same solution will help others out.</p>
<p>This will basically chronical my experience as primarily a Windows/Java/C# developer learning all things Mac/Ruby/iPhone.  I&#8217;m learning how to use a Mac because they are just so darn pretty.  Well, the real reason is because I want to do mobile development.  Mobile development reminds me of 1995 when I first discovered the web.  And the king of all mobile devices is the iPhone.  Also, I can do blackberry and gphone apps on my Mac using Java.  I can even do windows mobile if I install Windows in a virtual machine on my Mac.  So logically it just makes sense to own a Mac.  Plus, I think the OS is a work of art and it&#8217;s past time I learn it.  I want to learn Ruby primarily because the folks I noticed that were most passionate were Ruby coders.  The <a href="http://www.ruby-lang.org/en/about/">Ruby website</a> excites me when I read things like: &#8220;Its fans call it a beautiful, artful language.&#8221;   The <a href="http://rubyonrails.org/">Ruby on Rails website</a> excites me with these statements: &#8220;optimized for developer happiness&#8221; and &#8220;lets you write beautiful code&#8221;.  I can&#8217;t wait to get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonrowland.com/2009/06/rekindled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
