<?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>All This &#38; More</title>
	<atom:link href="http://jasonrutherford.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonrutherford.com</link>
	<description>connecting the thoughts</description>
	<lastBuildDate>Mon, 30 Mar 2009 04:58:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rock Band Competition Scoring</title>
		<link>http://jasonrutherford.com/2009/03/rock-band-competition-scoring/</link>
		<comments>http://jasonrutherford.com/2009/03/rock-band-competition-scoring/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 04:58:15 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[Rock Band]]></category>
		<category><![CDATA[scoring]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=21</guid>
		<description><![CDATA[At the first of the year it was announced that my company would be holding a Rock Band competition with the winning group receiving a cash prize. Shortly after I was tasked with putting together a scoring system for the competition. The performance scoring was fairly simple to figure, but for the technical side I [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>At the first of the year it was announced that my company would be holding a Rock Band competition with the winning group receiving a cash prize. Shortly after I was tasked with putting together a scoring system for the competition. The performance scoring was fairly simple to figure, but for the technical side I had to hit up Google and found that there wasn&#8217;t much out there as far as a balanced, solid Rock Band competition scoring system.</p>
<p><span id="more-21"></span></p>
<h3>Formula 1.0</h3>
<p>After numerous searches I found a formula on the <a href="http://www.rockband.com/forums/showthread.php?p=1222518" target="_blank">Rock Band forums</a> that was close enough to what I wanted to accomplish and was able to slightly tweak it for my own needs.</p>
<p>This technical score consisted of four parts: average song execution, combined difficulty level, song difficulty, and stars scored.</p>
<h5>Average song execution (max 10 pts)</h5>
<p>This element took the average of the accuracy percentage of your entire team and gave a score ranging from 10 points for 100% to 0 points for less than 82%.</p>
<ul>
<li>&lt;82% = 0 points</li>
<li>82 – 83% = 1 point</li>
<li>84 – 85 % = 2 points</li>
<li>86 – 87% = 3 points</li>
<li>88 – 89% = 4 points</li>
<li>90 – 91% = 5 points</li>
<li>92 – 93% = 6 points</li>
<li>94 – 95% = 7 points</li>
<li>96 – 97% = 8 points</li>
<li>98 – 99% = 9 points</li>
<li>100% = 10 points</li>
</ul>
<h5>Combined difficulty level (max 12 pts)</h5>
<p>This element gave point values to each individual difficulty level and then took the sum of the combined scores for the team.</p>
<ul>
<li>Easy = 0 points</li>
<li>Medium = 1 point</li>
<li>Hard = 2 points</li>
<li>Expert = 3 points</li>
</ul>
<h5>Song Difficulty (max 8 pts)</h5>
<p>For this element the songs were given points based on their difficulty category on the RB1 disc with a max of 8 points per song.</p>
<ul>
<li>Warm-up = 0 points</li>
<li>Apprentice = 1 point</li>
<li>Solid = 2 points</li>
<li>Moderate = 3 points</li>
<li>Skilled = 4 points</li>
<li>Challenging = 5 points</li>
<li>Blistering = 6 points</li>
<li>Nightmare = 7 points</li>
<li>Impossible = 8 points</li>
</ul>
<h5>Stars Scored (max 10 pts)</h5>
<p>This scoring element was simple enough. Take the number of stars your band received at the end of the song and multiply it by two.</p>
<ul>
<li>1 Star = 2 points</li>
<li>2 Stars = 4 points</li>
<li>3 Stars = 6 points</li>
<li>4 Stars = 8 points</li>
<li>5 Stars = 10 points</li>
</ul>
<p>Problem solved right? Apparently not. No sooner had I finished this formula and the associated spreadsheet than I was informed that one of the groups wanted to use the expansion pack and for the Wii, the formula above only works for the main disc.</p>
<p>I would later find that I could work around my initial scoring issue using the information mentioned below. However, this also brought back to the forefront another issue I had with my original scoring system: it rewarded playing really well on easy songs versus playing decent on much harder ones.</p>
<h3>Formula 2.0</h3>
<p>I knew that a change was need, but unfortunately had no idea how I was going to achieve this. My common sense finally kicked back in and took me to the back to the new <a href="http://www.rockband.com/" target="_blank">Rock Band website</a> and low and behold, <a href="http://www.rockband.com/music" target="_blank">all of the songs</a> were broken down by difficulty of instrument (a feature apparently new to RB2). With this new data I was able to put together what I felt was a more accurate scoring system that worked for any song available on any system.</p>
<h5>Song Execution (max 40 pts)</h5>
<p>This element is scored the same as the song execution from the first formula, however each individual&#8217;s percentage will earn points allowing for 40 possible points per song. <em>Note: If there&#8217;s a chance that some bands may have less members in your competition you will probably want to adjust this and the next formula to take the average rather than the sum.</em></p>
<ul>
<li>&lt;82% = 0 points</li>
<li>82 – 83% = 1 point</li>
<li>84 – 85 % = 2 points</li>
<li>86 – 87% = 3 points</li>
<li>88 – 89% = 4 points</li>
<li>90 – 91% = 5 points</li>
<li>92 – 93% = 6 points</li>
<li>94 – 95% = 7 points</li>
<li>96 – 97% = 8 points</li>
<li>98 – 99% = 9 points</li>
<li>100% = 10 points</li>
</ul>
<h5>Instrument Score (max 36 pts)</h5>
<p>Unlike the previous formula, this song factors in the difficulty of the instrument played vs. the song difficulty. Using the <a href="http://www.rockband.com/music" target="_blank">Rock Band website</a> (if you&#8217;re not playing RB2), you are able to track down the difficulty of each instrument for each song. That number is added to the score given for instrument difficulty per player and then combined to create the final instrument score for the team.</p>
<ul>
<li>Easy = 0 points</li>
<li>Medium = 1 point</li>
<li>Hard = 2 points</li>
<li>Expert = 3 points</li>
</ul>
<p><strong>Examples:</strong> Using the song <a href="http://www.rockband.com/songs/interstatelovesong" target="_blank">Interstate Love Song</a>, playing the drums on Expert would be worth 7 points where-as vocals on Expert would only be worth 3. In the case of <a href="http://www.rockband.com/songs/aceofspades" target="_blank">Ace of Spades</a> drums on Expert would be worth the max of 9 points since they&#8217;re devilishly hard for that song.</p>
<h3>Problem Solved?</h3>
<p>At this point I would say I&#8217;m still open to changing the formula, but at least it&#8217;s a start. Feel free to download the Excel spreadsheets I&#8217;ve posted. I would love to hear about real world use in RB competitions. I&#8217;m also open to improvements so feel free to submit any suggestions in the comments.</p>
<ul>
<li><a href="/wp-content/uploads/2009/03/rb_scoring-formula1.xlsx">Rock Band Scoring &#8211; Formula 1.0</a> (excel)</li>
<li><a href="/wp-content/uploads/2009/03/rb_scoring-formula2.xlsx">Rock Band Scoring &#8211; Formula 2.0</a> (excel)</li>
<li><a href="/wp-content/uploads/2009/03/rb_scoring-combined.xlsx">Rock Band Scoring &#8211; Combined with examples</a> (excel)</li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2009/03/rock-band-competition-scoring/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Conflicted</title>
		<link>http://jasonrutherford.com/2009/03/conflicted/</link>
		<comments>http://jasonrutherford.com/2009/03/conflicted/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:45:31 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/2009/03/conflicted/</guid>
		<description><![CDATA[Twitter is down and my initial reaction is to Tweet about it.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/">Twitter</a> is down and my initial reaction is to Tweet about it.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2009/03/conflicted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr Video Goes HD</title>
		<link>http://blog.flickr.net/2009/03/02/video-for-all-hd/</link>
		<comments>http://blog.flickr.net/2009/03/02/video-for-all-hd/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 14:38:14 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=26</guid>
		<description><![CDATA[Free or Pro, all of our members can now share video on Flickr. But wait, there’s more. If you’re a Pro member your HD videos are more better.
HD is great and all, but I probably won&#8217;t have a camera capable of taking HD video for quite a while and there is still the annoying 90 second limit [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<blockquote><p>Free or Pro, all of our members can now share video on Flickr. But wait, there’s more. If you’re a Pro member your HD videos are more better.</p></blockquote>
<p>HD is great and all, but I probably won&#8217;t have a camera capable of taking HD video for quite a while and there is still the annoying <a href="http://www.flickr.com/help/video/#2214">90 second limit</a> on videos. I understand what Flickr is trying to accomplish with this setting, but I would like to see at least 60 more seconds added.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.flickr.net/2009/03/02/video-for-all-hd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperDuper! v2.5 Released!</title>
		<link>http://jasonrutherford.com/2008/02/superduper-v25-released/</link>
		<comments>http://jasonrutherford.com/2008/02/superduper-v25-released/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 16:55:13 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=12</guid>
		<description><![CDATA[The long awaited release of the Leopard compatible SuperDuper! is finally released. I must say it would’ve come in handy a while back and I’ve been waiting for this update since a little before Leopard was released.


No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The long awaited release of the Leopard compatible <a href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html" target="_blank">SuperDuper</a>! is finally released. I must say it would’ve come in handy a while back and I’ve been waiting for this update since a little before Leopard was released.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2008/02/superduper-v25-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fluid &#8211; Free Site Specific Browser for Mac OS X Leopard</title>
		<link>http://jasonrutherford.com/2008/02/fluid-free-site-specific-browser-for-mac-os-x-leopard/</link>
		<comments>http://jasonrutherford.com/2008/02/fluid-free-site-specific-browser-for-mac-os-x-leopard/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 16:52:31 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=10</guid>
		<description><![CDATA[When I first read about Fluid on DaringFireball, my first thought was that it was a nice idea, but that I wouldn’t get any use out of it.
After reading/thinking more about it I’m going to change my tune. This is a great idea, and I’m looking forward to testing it out.


No related posts.
Related posts brought to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When I first read about <a href="http://fluidapp.com/" target="_blank">Fluid</a> on <a href="http://daringfireball.net/">DaringFireball</a>, my first thought was that it was a nice idea, but that I wouldn’t get any use out of it.</p>
<p>After reading/thinking more about it I’m going to change my tune. This is a great idea, and I’m looking forward to testing it out.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2008/02/fluid-free-site-specific-browser-for-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xScope 2.0 Released</title>
		<link>http://jasonrutherford.com/2008/01/xscope-20-released/</link>
		<comments>http://jasonrutherford.com/2008/01/xscope-20-released/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 16:39:35 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=6</guid>
		<description><![CDATA[The long awaited (by at least me) release of xScope was released today. After submitting some temporary Leopard menu icons for xScope 1.5, I was invited to join the xScope 2.0 beta so I’ve had a little bit of time to work with this release. The addition of the Guides tool has taken an already [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The long awaited (by at least me) release of <a href="http://iconfactory.com/software/xscope" target="_blank">xScope</a> was released today. After submitting some temporary Leopard menu icons for xScope 1.5, I was invited to join the xScope 2.0 beta so I’ve had a little bit of time to work with this release. The addition of the Guides tool has taken an already indispensable app to the next level. If you already own xScope it’s definitely worth the $10 price of upgrade.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2008/01/xscope-20-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3rd ID Clothing is Live</title>
		<link>http://jasonrutherford.com/2008/01/3rd-id-clothing-is-live/</link>
		<comments>http://jasonrutherford.com/2008/01/3rd-id-clothing-is-live/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 16:15:10 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://jasonrutherford.com/?p=3</guid>
		<description><![CDATA[I just finished up some minor dev work on a clothing website for my ex co-worker Travis Drake. Although I’m not sure if they’re my personal style, these are definitely some sweet lookin’ shirts and enjoyable if for nothing other than their artistic value.
If you are so inclined stop by his site, 3rd ID Clothing, [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I just finished up some minor dev work on a clothing website for my ex co-worker <a href="http://www.linkedin.com/pub/3/a4/23" target="_blank">Travis Drake</a>. Although I’m not sure if they’re my personal style, these are definitely some sweet lookin’ shirts and enjoyable if for nothing other than their artistic value.</p>
<p>If you are so inclined stop by his site, <a href="http://3rdidclothing.com/" target="_blank">3rd ID Clothing</a>, and pick something up. Portions of all proceeds will be donated to <a href="http://cancare.org/" target="_blank">CanCare, Cancer Support Network</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://jasonrutherford.com/2008/01/3rd-id-clothing-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
