<?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>Brit Gardner &#187; gaming</title>
	<atom:link href="http://britg.com/tags/gaming/feed/" rel="self" type="application/rss+xml" />
	<link>http://britg.com</link>
	<description>The big yellow one&#039;s the sun.</description>
	<lastBuildDate>Thu, 15 Mar 2012 14:33:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Forging Forgecraft: A Hybrid SQL MongoDB Data Solution</title>
		<link>http://britg.com/2012/01/07/forging-forgecraft-a-hybrid-sql-mongodb-data-solution/</link>
		<comments>http://britg.com/2012/01/07/forging-forgecraft-a-hybrid-sql-mongodb-data-solution/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 14:27:39 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[forgecraft]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[postgres]]></category>

		<guid isPermaLink="false">http://britg.com/?p=26402</guid>
		<description><![CDATA[Forgecraft is a game currently in development using Ruby on Rails, Backbone.js, and all sorts of HTML5 buzzwords. Read an introduction here, and play the demo here. One of my primary goals while building Forgecraft is to learn as many new technologies as possible. I&#8217;ve learned the hard way that it&#8217;s better to leave this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://playforgecraft.com"><img src="http://britg.com.s3.amazonaws.com/forgecraft/logo-shadow.jpg" style="float: right; margin-left: 10px; margin-bottom: 10px; height: 45px;" /></a><em><a href="http://playforgecraft.com">Forgecraft</a> is a game currently in development using Ruby on Rails, Backbone.js, and all sorts of HTML5 buzzwords. Read an introduction <a href="http://britg.com/2011/12/29/forging-forgecraft-part-1-introduction/">here</a>, and play the demo <a href="http://playforgecraft.com">here</a>.</em></p>
<p>One of my primary goals while building Forgecraft is to learn as many new technologies as possible. I&#8217;ve learned the hard way that it&#8217;s better to leave this kind of exploration in your hobby projects and out of your production &#8220;for real&#8221; stuff. And, seeing as how there are so many emergent technologies right now in web development there&#8217;s a lot to explore!</p>
<h4>Whole Hog is Too Much Hog</h4>
<p><a href="http://mongodb.org">MongoDB</a> has quite a bit of steam behind it in the Rails/Ruby community (and plenty of other places too), and with projects like <a href="http://mongoid.org">Mongoid</a> and <a href="http://mongomapper.com/">MongoMapper</a> (I went with Mongoid) it&#8217;s an easy drop-in replacement for Active Record that maintains all those ORM conventions you know and love. I decided against the <em>replacement</em> approach for one primary reason: <strong>I wanted to use existing, robust, and actively developed libraries that rely on Active Record</strong>.</p>
<p>Example: There&#8217;s no reason to roll your own authentication/user system when there are insanely popular and feature-full libraries already in place for them like <a href="https://github.com/plataformatec/Devise">Devise</a> and <a href="https://github.com/binarylogic/authlogic">authlogic</a> (I went with Devise).</p>
<p>Fortunately combining Active Record with Mongoid and getting the best of both worlds proved to be easy and painless.</p>
<h4>The Set Up</h4>
<p>The <a href="http://mongoid.org/docs/installation/configuration.html">instructions</a> for Mongoid include a step to remove the Active Record libraries from being loaded and delete your database.yml. Simply skip that step and both systems will run in conjunction.</p>
<p>One small operational change you&#8217;ll have to make during development is explicitly defining when your rails generators should use Active Record. If you want to make an AR-driven model, your generators will look like:</p>
<p><code>rails g active_record:model Player …</code> produces a model the extends from ActiveRecord::Base.</p>
<p>And by default, the data generators will use Mongoid:</p>
<p><code>rails g model Skill …</code> produces a model that includes Mongoid::Document.</p>
<h4>The Implementation</h4>
<p>Here&#8217;s how this combo system really shines in my opinion: get all the great features of gems built on AR with all the schema less features of Mongo. I&#8217;ll walk through an example:</p>
<p>In Forgecraft, the authenticating object is the <code>Player</code> and players have many <code>Skills</code> which, right now, are Accuracy, Craftsmanship, and Perception. But, the skill list will likely grow and change over time as the game evolves. A typical AR/SQL based approach would be to create a skills table and a join table between players and skills resulting in a complex multi-table query to get a player&#8217;s complete skills.</p>
<p>It&#8217;s clear here that the Player and Skills would fit well together as a single document in Mongo, queried all at once in one tidy object. But, since the Player is also our authentication model, using Mongo would prevent us from using Devise to handle all of that boring and complex auth stuff for us.</p>
<p>Enter Hybridization. Forgecraft&#8217;s implementation uses the typical Devise set up around the Player object (again all on top of AR). All of a player&#8217;s skills go into a single document with a reference to the player, like so:</p>
<p><script src="https://gist.github.com/1575059.js?file=skill.rb"></script><br />
<noscript>
<pre>class Skill
  include Mongoid::Document
  field :player_id, :type => Integer

  field :accuracy, :type => Integer, :default => 0
  field :craftsmanship, :type => Integer, :default => 0
  field :perception, :type => Integer, :default => 0

  index :player_id, :unique => true

  def player
    Player.find_by_id(player_id)
  end
end</pre>
<p></noscript></p>
<p>To set up the relationships like one would expect with Active Record is a simple method on your Player object:</p>
<p><script src="https://gist.github.com/1575059.js?file=player.rb"></script><br />
<noscript>
<pre>class Player < ActiveRecord::Base

  # ...

  def skills
    @skills ||= (Skill.where(:player_id => self.id).first || \
                 Skill.create(:player_id => self.id))
  end

end</pre>
<p></noscript></p>
<p>Bam! Now we can retrieve our skills as a single document (fast), and add new skills with ease (easy). Since Mongo is schema less, you could even have a different set of skills per player. Again, all of this is achievable through SQL &#8212; it&#8217;s been done for decades &#8212; but it just makes more conceptual sense to treat these as a single document.</p>
<p>Querying and working with these objects and their relationships looks and feels just like active record:</p>
<pre>player.skills
player.skills.accuracy
player.skills.update_attributes(:accuracy => 5)
player.skills.inc(:accuracy, 1)</pre>
<h4>Benefits Outweight the Consequences</h4>
<p>I know, I know &#8212; any time you introduce an additional system, especially a datastore, you introduce a lot of complexity, failure modes, testing, etc. But, I honestly think the benefits are worth this extra complexity. Speed, ease of development, and the potential for less schema-driven growth make this an ideal environment for me. I highly recommend it, and will be using it in the future!</p>
<hr />
<p><em>More Forging Forgecraft:</em></p>
<ul>
<li> <a href="http://britg.com/2011/12/29/forging-forgecraft-part-1-introduction/">Introducing Forgecraft</a></li>
<li> <a href="http://britg.com/2012/01/15/forging-forgecraft-integrating-css3-transitions-with-javascript/">Integrating CSS3 Transitions with Javascript</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2012/01/07/forging-forgecraft-a-hybrid-sql-mongodb-data-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Forging Forgecraft Part 1: Introduction</title>
		<link>http://britg.com/2011/12/29/forging-forgecraft-part-1-introduction/</link>
		<comments>http://britg.com/2011/12/29/forging-forgecraft-part-1-introduction/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 23:50:58 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[coffeescript]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[forgecraft]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://britg.com/?p=26154</guid>
		<description><![CDATA[For the past few months I&#8217;ve been hacking away at a game partly, well, to make a game, and partly to play with a bunch of web technologies I&#8217;ve been interested in. That game is Forgecraft! Check it out and tell me what you think. What is Forgecraft? If you&#8217;ve played bejeweled you&#8217;ve got an [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://playforgecraft.com"><img src="http://britg.com.s3.amazonaws.com/forgecraft/intro.jpg" style="float: right; margin-left: 10px; margin-bottom: 10px;" /></a>For the past few months I&#8217;ve been hacking away at a game partly, well, to make a game, and partly to play with a bunch of web technologies I&#8217;ve been interested in. That game is <a href="http://playforgecraft.com">Forgecraft</a>! Check it out and tell me what you think.</p>
<h3>What is Forgecraft?</h3>
<p>If you&#8217;ve played bejeweled you&#8217;ve got an idea of the primary game mechanic: move gems into patterns. If you&#8217;ve played Minecraft you&#8217;ve got an idea of the gameplay twist: patterns. You&#8217;re not just matching 3, but moving ores into patterns that resemble weapons and armor. And finally, if you&#8217;ve played any loot-based game ever you&#8217;ve got an idea of reward structure: loot!</p>
<p>The target player is the casual player, but the game may also appeal to people who just like loot. And the target platforms are any modern web browser. Right now things are working ok in Chrome, Firefox, and Safari. Oh, and the game plays well as an installable web app on the iPad. In fact, all of the design decisions were made with this play mode in mind. Go ahead and save-to-homescreen on your iPad!</p>
<p><strong>Warning:</strong> It&#8217;s rough around the edges. There&#8217;s no tutorial and there may be bugs/features just flat out missing. I consider the game&#8217;s state as &#8216;playable demo.&#8217; But do let me know if you run into any bugs.</p>
<h3>The Tech</h3>
<p>Over the next few months I hope to put together a series of posts on the different technologies I played with while making Forgecraft. You know, go in-depth on each of them and all that jazz. For now, here&#8217;s just a run-down of the fun stuff I used:</p>
<h4>Back End</h4>
<ul>
<li>Hosted on <a href="http://heroku.com">Heroku</a> (Cedar stack)</li>
<li><a href="http://rubyonrails.org">Rails 3.1</a> with the asset pipeline</li>
<li><a href="http://mongodb.org">MongoDB</a></li>
</ul>
<h4>Front End</h4>
<ul>
<li>Haml/Sass through <a href="http://compass-style.org/">Compass</a></li>
<li><a href="http://jashkenas.github.com/coffee-script/">Coffeescript</a></li>
<li><a href="http://jquery.com">jQuery</a></li>
<li><a href="http://documentcloud.github.com/backbone/">Backbone.js</a></li>
<li><a href="http://twitter.github.com/bootstrap/">Bootstrap</a> from Twitter</li>
</ul>
<h4>HTML5 Buzzwords</h4>
<ul>
<li>CSS3 Animations</li>
<li>Web Audio API</li>
<li>History API / Pushstate API</li>
<li>iOS web-app installable</li>
</ul>
<p>My plan is to continue developing Forgecraft, expanding the items, mines, etc. and digging further into these emergent HTML5 technologies. I also would like to continue improving performance across the board. Things can get pretty choppy on the iPad when there are a lot of animations running at the same time.</p>
<p>Please, give <a href="http://playforgecraft.com">Forgecraft</a> a try and let me know how you like it and if you have any suggestions. The number one question I have is, is it fun? A game should be fun, I&#8217;m told.</p>
<hr />
<p><em>More Forging Forgecraft:</em></p>
<ul>
<li> <a href="http://britg.com/2012/01/07/forging-forgecraft-a-hybrid-sql-mongodb-data-solution/">A Hybrid SQL MongoDB Data Solution</a></li>
<li> <a href="http://britg.com/2012/01/15/forging-forgecraft-integrating-css3-transitions-with-javascript/">Integrating CSS3 Transitions with Javascript</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2011/12/29/forging-forgecraft-part-1-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IGF Pirate Kart Pack 1</title>
		<link>http://britg.com/2011/10/29/igf-pirate-kart-pack-1/</link>
		<comments>http://britg.com/2011/10/29/igf-pirate-kart-pack-1/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 14:39:20 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://britg.com/?p=24850</guid>
		<description><![CDATA[If you&#8217;re unfamiliar with the IGF Pirate kart, it&#8217;s a neat collection of over 300 indie video games: a FREE and LEGAL compilation of over 300 games by over 100 developers! It was put together at the last minute for entry into the 2012 Independent Games Festival Main Competition. I&#8217;ll be honest, it&#8217;s pretty dense [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re unfamiliar with the <a href="http://www.piratekart.com/">IGF Pirate kart</a>, it&#8217;s a neat collection of over 300 indie video games:</p>
<blockquote><p>a FREE and LEGAL compilation of over 300 games by over 100 developers! It was put together at the last minute for entry into the 2012 Independent Games Festival Main Competition.</p></blockquote>
<p>I&#8217;ll be honest, it&#8217;s pretty dense and the fun-to-meh ratio is pretty low, haha. But, there are a few games I&#8217;ve stumbled upon in there that have neat concepts or neat execution. Here&#8217;s a package of 4 that I thought were playable at least. Grab the full torrent if you want to check them all out, otherwise grab this pack:</p>
<p><a href="https://filerelay.it/pickup/35d9e37284c512ed7fb50de07979795388f353ff">IGF Pirate Kart Pack 1</a></p>
<p>Perhaps my favorite of the bunch is &#8220;A Friendship in 4 Colours&#8221; by Damian Sommer. I may try to cull a few more gems out of the pack if I can find the time. Enjoy!</p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2011/10/29/igf-pirate-kart-pack-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linear Algebra, I am in You</title>
		<link>http://britg.com/2011/08/30/linear-algebra-i-am-in-you/</link>
		<comments>http://britg.com/2011/08/30/linear-algebra-i-am-in-you/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 01:00:51 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://britg.com/?p=21089</guid>
		<description><![CDATA[Speaking of coordinate systems, the following 3 part primer from the Wolfire Dev Team is an excellent refresher on linear algebra. I studied this in school, but having been out of the engineering game for a while I find my &#8220;bow staff skillz&#8221; are shamefully rusty. Linear Algebra For Game Developers Part 1 Part 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Speaking of <a href="http://britg.com/2011/08/29/working-with-the-myriad-coordinate-systems-available-in-cocos2d/">coordinate systems</a>, the following 3 part primer from the <a href="http://www.wolfire.com/">Wolfire Dev Team</a> is an excellent refresher on linear algebra. I studied this in school, but having been out of the engineering game for a while I find my &#8220;bow staff skillz&#8221; are shamefully rusty.</p>
<ul>
<li><a href="http://blog.wolfire.com/2009/07/linear-algebra-for-game-developers-part-1/">Linear Algebra For Game Developers Part 1</a></li>
<li><a href="http://blog.wolfire.com/2009/07/linear-algebra-for-game-developers-part-2/">Part 2</a></li>
<li><a href="http://blog.wolfire.com/2010/07/Linear-algebra-for-game-developers-part-3">Part 3</a></li>
</ul>
<p>Fortunately, Cocos2d takes care of a lot of this for you with their <a href="http://www.cocos2d-iphone.org/api-ref/0.8.2/_c_g_point_extension_8h.html">CGPoint Extensions</a>. But, it&#8217;s still good to understand the basics.</p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2011/08/30/linear-algebra-i-am-in-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with the Myriad Coordinate Systems Available in Cocos2d</title>
		<link>http://britg.com/2011/08/29/working-with-the-myriad-coordinate-systems-available-in-cocos2d/</link>
		<comments>http://britg.com/2011/08/29/working-with-the-myriad-coordinate-systems-available-in-cocos2d/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 23:13:25 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[dev]]></category>

		<guid isPermaLink="false">http://britg.com/?p=20967</guid>
		<description><![CDATA[Lately, I find myself spending more of my free time working on a little game using Cocos2d. One of the things I was surprised to discover is that there&#8217;s not just a single coordinate system &#8212; there are four (that I know of &#8212; please correct me if I&#8217;m wrong). The four I know of: [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, I find myself spending more of my free time working on a little game using <a href="http://www.cocos2d-iphone.org/">Cocos2d</a>. One of the things I was surprised to discover is that there&#8217;s not just a single coordinate system &#8212; there are four (that I know of &#8212; please correct me if I&#8217;m wrong).</p>
<p>The four I know of:</p>
<ul>
<li><code>Core Graphics space</code></li>
<li><code>Open GL space</code></li>
<li><code>Node space</code></li>
<li><code>Node space relative to anchor point</code></li>
</ul>
<p>I wasn&#8217;t totally clear on these going in, and I regret it. I ended up writing a lot of code that mish-mashed these and had to refactor it all.</p>
<p>Most likely you&#8217;re going to be processing a touch input on an iOS device and translating that to a coordinate system inside of a Cocos2d node (most likely a CCLayer) as such:</p>
<p>
<code><br />
	UITouch *touch = [touches anyObject];<br />
    CGPoint point = [touch locationInView: [touch view]];<br />
    CGPoint glPoint = [[CCDirector sharedDirector] convertToGL:point];<br />
    CGPoint nodePoint = [self convertTouchToNodeSpace:touch];<br />
    CGPoint nodePointAR = [self convertTouchToNodeSpaceAR:touch];<br />
</code>
</p>
<p>With that in mind, here&#8217;s how I understand them:</p>
<p><strong><code>Core Graphics (point)</code></strong> &#8212; This is what you normally work in if you&#8217;re accustomed to iOS development with UIKit and similar APIs. <code>CGPoint(0, 0)</code> is in the top left corner of the screen and ascending Y values go down towards the bottom of the screen.</p>
<p><strong><code>Open GL (glPoint)</code></strong> &#8212; This coordinate system has <code>(0, 0)</code> in the <em>bottom</em> left of the screen, and ascending Y values go up towards the top of the screen.</p>
<p><strong><code>Node space (nodePoint)</code></strong> &#8212; This space is relative to the origin of the reference node with which you are observing the point, and follows the same rules as the Open GL system. If your node is full-screen and unshifted (e.g. a default CCLayer), this coordinate system is exactly the same as the Open GL system.</p>
<p><strong><code>Node space relative to anchor point (nodePointAR)</code></strong> &#8212; In Cocos2d, the default anchor point of any node is its center point. This coordinate system is relative to that center point. If you redefine the anchor point, this system is adjusted.</p>
<p>The big <em>gotcha</em> that I ran into was that I was doing something frowned upon in Cocos2d: shifting Layers! I was then using the Node space throughout my code but expecting points to resolve to Open GL space. So, word to wise: understand these coordinate systems going in, and don&#8217;t shift the position of your Layers!</p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2011/08/29/working-with-the-myriad-coordinate-systems-available-in-cocos2d/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Minecraft</title>
		<link>http://britg.com/2011/05/22/minecraft/</link>
		<comments>http://britg.com/2011/05/22/minecraft/#comments</comments>
		<pubDate>Sun, 22 May 2011 14:14:30 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://britg.com/?p=2601</guid>
		<description><![CDATA[So much has been written about Minecraft that anything I say is just superfluous, but I will recount a chat with a friend. Magrath: man, Minecraft Magrath: so nice and relaxing Magrath: just put a game or some music on in the background and I can play for hours Yeah, that about sums it up. [...]]]></description>
			<content:encoded><![CDATA[<p>So much has been written about <a href="http://www.minecraft.net/">Minecraft</a> that anything I say is just superfluous, but I will recount a chat with a friend.</p>
<blockquote><p>
<a href="http://britg.com.s3.amazonaws.com/minecraft.png" rel="facebox"><img src="http://britg.com.s3.amazonaws.com/minecraft_thumb.png" style="float:left; margin-right: 10px; margin-bottom:10px; border:0;" /></a></p>
<p style="margin-top:20px;">Magrath: man, Minecraft</p>
<p>Magrath: so nice and relaxing</p>
<p>Magrath: just put a game or some music on in the background and I can play for hours</p>
<div style="clear:both;"></div>
</blockquote>
<div style="clear:both;"></div>
<p>Yeah, that about sums it up. There&#8217;s so much value in being able to enter that &#8216;zone&#8217; that I&#8217;d gladly pay a monthly fee for it. Fortunately, we don&#8217;t have to.</p>
<p>Oh, and if you find yourself liking Minecraft definitely follow its creator, <a href="http://twitter.com/notch">@notch</a>, on Twitter. You&#8217;ll get the inside perspective on development (like <a href="https://twitter.com/#!/notch/status/71133661768065024">this tweet</a> about the upcoming sky dimension) as well as the random thoughts of a humble and passionate gamer.</p>
<p><!-- <a href="https://twitter.com/#!/notch/status/71133661768065024" rel="nofollow">https://twitter.com/#!/notch/status/71133661768065024</a> --><br />
<style type='text/css'>.bbpBox71133661768065024 {background:url(http://a0.twimg.com/profile_background_images/184588200/klouds.png) #C0DEED;padding:20px;} p.bbpTweet{background:#fff;padding:10px 12px 10px 12px;margin:0;min-height:48px;color:#000;font-size:18px !important;line-height:22px;-moz-border-radius:5px;-webkit-border-radius:5px} p.bbpTweet span.metadata{display:block;width:100%;clear:both;margin-top:8px;padding-top:12px;height:40px;border-top:1px solid #fff;border-top:1px solid #e6e6e6} p.bbpTweet span.metadata span.author{line-height:19px} p.bbpTweet span.metadata span.author img{float:left;margin:0 7px 0 0px;width:38px;height:38px} p.bbpTweet a:hover{text-decoration:underline}p.bbpTweet span.timestamp{font-size:12px;display:block}</style>
<div class='bbpBox71133661768065024'>
<p class='bbpTweet'>Some pics of the sky dimension thing I was working on last night: <a href="http://imgur.com/a/cvsYW" rel="nofollow">http://imgur.com/a/cvsYW</a><span class='timestamp'><a title='Thu May 19 08:42:41 +0000 2011' href='https://twitter.com/#!/notch/status/71133661768065024'>less than a minute ago</a> via web </span><span class='metadata'><span class='author'><a href='http://twitter.com/notch'><img src='http://a3.twimg.com/profile_images/1187185449/notchface_normal.png' /></a><strong><a href='http://twitter.com/notch'>Markus Persson</a></strong><br/>notch</span></span></p>
</div>
<p> <!-- end of tweet --></p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2011/05/22/minecraft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Revolt Against Spore&#8217;s DRM On Amazon &#8211; I Love It!</title>
		<link>http://britg.com/2008/09/09/revolt-against-spores-drm-on-amazon-i-love-it/</link>
		<comments>http://britg.com/2008/09/09/revolt-against-spores-drm-on-amazon-i-love-it/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 15:15:46 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[spore]]></category>

		<guid isPermaLink="false">http://britg.com/?p=447</guid>
		<description><![CDATA[Right now there is a revolt going on in the gaming world.  Literally thousands of people have given Spore a 1 star rating on Amazon because of the DRM it carries.  I love it!   But, I also hate it.  Spore is the type of game the industry needs &#8211; innovative, fresh, and well polished. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://britg.com/wordpress/wp-content/uploads/2008/09/510cqiyv2bl_sl500_aa280_.jpg"><img class="alignleft size-medium wp-image-448" title="510cqiyv2bl_sl500_aa280_" src="http://britg.com/wordpress/wp-content/uploads/2008/09/510cqiyv2bl_sl500_aa280_.jpg" alt="" width="280" height="280" /></a>Right now there is a <a href="http://www.amazon.com/review/product/B000FKBCX4/ref=cm_cr_dp_all_summary?_encoding=UTF8&amp;showViewpoints=1&amp;sortBy=bySubmissionDateDescending">revolt </a>going on in the gaming world.  Literally thousands of people have given Spore a 1 star rating on Amazon because of the DRM it carries.  I love it!  </p>
<p>But, I also hate it.  <a href="http://www.spore.com/">Spore</a> is the type of game the industry needs &#8211; innovative, fresh, and well polished.  It&#8217;s a damn shame that publishers care more about pirating software than the fidelity of the gaming experience.</p>
<p>I hope this revolt affects EA&#8217;s bottom dollar so much that they realize that pissing off your customers with computer-destroying DRM is much, much more damaging than underground software pirating.  I personally will never install this game on my computer &#8211; I can&#8217;t stand hidden processes, can&#8217;t stand spyware, and can&#8217;t stand the audacity of some publisher who thinks they can get away with this trash on my computer.</p>
<p>Sorry to all the people who poured their creative effort into what appears to be an amazing game.</p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2008/09/09/revolt-against-spores-drm-on-amazon-i-love-it/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>On the Rain Slick Precipice of Darkness</title>
		<link>http://britg.com/2008/05/21/on-the-rain-slick-precipice-of-evil/</link>
		<comments>http://britg.com/2008/05/21/on-the-rain-slick-precipice-of-evil/#comments</comments>
		<pubDate>Thu, 22 May 2008 02:13:54 +0000</pubDate>
		<dc:creator>britg</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[greenhouse games]]></category>
		<category><![CDATA[penny arcade]]></category>

		<guid isPermaLink="false">http://britg.com/?p=3</guid>
		<description><![CDATA[Just grabbed the new Penny Arcade game off xbox live and I have to say that it&#8217;s a lot better than I though it would be. The animation and asthetics are great, the dialog is witty, just as you&#8217;d expect from PA, and the pacing seems nice a quick so far. I look forward to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://britg.com/wp-content/uploads/2008/05/rspd_1.jpg"><img class="alignleft size-medium wp-image-4" title="rspd_1" src="http://britg.com/wp-content/uploads/2008/05/rspd_1-213x300.jpg" alt="" width="213" height="300" /></a>Just grabbed the new <a href="http://penny-arcade.com">Penny Arcade</a> game off xbox live and I have to say that it&#8217;s a lot better than I though it would be.  The animation and asthetics are great, the dialog is witty, just as you&#8217;d expect from PA, and the pacing seems nice a quick so far.  I look forward to playing the rest of it.</p>
<p>If you&#8217;re not an xbox live-er, you go grab the game at <a href="http://www.playgreenhouse.com/">greenhouse games</a>.  I want to say they have it available for PC, Mac, and Linux but I&#8217;m not sure and too lazy to follow my own link.</p>
<p>I highly recommend checking this out.  On XBLA  it&#8217;s 1600 points but well worth it.</p>]]></content:encoded>
			<wfw:commentRss>http://britg.com/2008/05/21/on-the-rain-slick-precipice-of-evil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

