<?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/"
	>

<channel>
	<title>D-Pad Hero</title>
	<atom:link href="http://dpadhero.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://dpadhero.com/blog</link>
	<description>2 is out, 2 is out!</description>
	<pubDate>Tue, 21 Jun 2011 20:03:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>NES-Bit interview</title>
		<link>http://dpadhero.com/blog/?p=168</link>
		<comments>http://dpadhero.com/blog/?p=168#comments</comments>
		<pubDate>Tue, 21 Jun 2011 20:03:43 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=168</guid>
		<description><![CDATA[NES-Bit is a UK-based site that aims to catalogue every NES release for the UK, and also features articles, interviews, and reviews, among other things. Now there&#8217;s even a D-Pad Hero developers interview there, so make sure to have a look!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nes-bit.com">NES-Bit</a> is a UK-based site that aims to catalogue every NES release for the UK, and also features articles, interviews, and reviews, among other things. Now there&#8217;s even a D-Pad Hero developers interview there, so make sure to have a look!</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=168</wfw:commentRss>
		</item>
		<item>
		<title>D-Pad Hero 1 &#38; 2 NSFs</title>
		<link>http://dpadhero.com/blog/?p=164</link>
		<comments>http://dpadhero.com/blog/?p=164#comments</comments>
		<pubDate>Tue, 05 Oct 2010 20:27:51 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[nsf]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=164</guid>
		<description><![CDATA[Gil Galad was kind enough to create NSFs for both games! Head on over to http://gilgalad.arc-nova.org to download (links are in the News section).
There&#8217;s a lot of other cool stuff worth checking out at his site, including an extensive NSF archive and a video game source code repository.
]]></description>
			<content:encoded><![CDATA[<p>Gil Galad was kind enough to create NSFs for both games! Head on over to <a href="http://gilgalad.arc-nova.org">http://gilgalad.arc-nova.org</a> to download (links are in the News section).</p>
<p>There&#8217;s a lot of other cool stuff worth checking out at his site, including an extensive NSF archive and a video game source code repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=164</wfw:commentRss>
		</item>
		<item>
		<title>Behind the Scenes of D-Pad Hero 2: Song Data</title>
		<link>http://dpadhero.com/blog/?p=155</link>
		<comments>http://dpadhero.com/blog/?p=155#comments</comments>
		<pubDate>Sat, 02 Oct 2010 23:26:39 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[behind the scenes development]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=155</guid>
		<description><![CDATA[With the full D-Pad Hero 2 source code in hand, you might be interested in some more information on how it all works; what would it take to, say, add new playable songs? Let&#8217;s begin by examining the core of DH2: The song data.
The song data consists of two distinct parts: The music data, and [...]]]></description>
			<content:encoded><![CDATA[<p>With the <a href="http://repo.or.cz/w/dpadhero2.git">full D-Pad Hero 2 source code</a> in hand, you might be interested in some more information on how it all works; what would it take to, say, add new playable songs? Let&#8217;s begin by examining the core of DH2: The song data.</p>
<p>The song data consists of two distinct parts: The music data, and the level data (AKA &#8220;object data&#8221; or &#8220;target data&#8221;). The music data is, unsurprisingly, the song (background music) itself. The level data defines the objects that come flying down the screen during play; their position (lane), timing and type.</p>
<p>Songs are composed as described in <a href="http://www.youtube.com/watch?v=k4usxbg17Wg">this video</a>. At the composing stage, no consideration needs to be made with regards to how a song will be played in D-Pad Hero, i.e. the song can be composed freely.</p>
<p>Once the core song is ready, it must be &#8220;mapped&#8221; in order to make it playable in D-Pad Hero &#8212; that is, level data must be created. The mapping process is technically very similar to composing; instead of sequencing musical notes, you sequence the objects that the player can hit. In fact, we&#8217;re using the same tool (FastTracker 2) for creating both the music data and level data! The level data is placed in a separate channel (track), one per difficulty level (beginner - normal - expert). In such a channel, a note corresponds to one or more lanes in the game; for example, C corresponds to the left-most lane, E corresponds to the middle lane, and A corresponds to the two right-most lanes. Furthermore, the effect columns are used to encode the object type (0 = orb, 1 = skull, 2 = POW, and so on). It&#8217;s maybe not the most visually luxurious approach to mapping, and it&#8217;s not &#8220;realtime&#8221;; you typically map a small segment of the song, load up the game, try the song, make adjustments to the mapping; repeat. But it&#8217;s pretty effective once you get used to it (ask Andreas <img src='http://dpadhero.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p><img alt="" src="http://www.dpadhero.com/blog/images/dpadhero2-mapping.png" class="aligncenter" width="720" height="502" /></p>
<p><em>Excerpt from &#8220;Whip Man&#8221;. Channels 0 through 4 contain the music (square 0, square 1, triangle, noise, DPCM). Channels 5 through 7 contain the mapping (beginner, normal, expert).<br />
</em></p>
<p>The xm2btn tool (part of the DH2 source code repository) extracts the song&#8217;s mapping and creates level data in a packed format that is essentially a list of <em>(lane specifier(s), object type(s), time units until next occurrence)</em> tuples. The level data is completely decoupled from the music data; the music is only used to drive the level data processing (by issuing a callback every time the song advances by one unit (row)). This means that changes can be made to a song or its mapping without affecting the other, and entirely new mappings can easily be accommodated (in order to support more difficulty levels, for instance).</p>
<p>Markers can be inserted in a mapping to define segments (&#8221;clips&#8221;) of a song. These segments are used in DH2&#8217;s final (&#8221;boss battle&#8221;) stage to create the &#8220;mega-mix&#8221; containing parts from all songs. FT2 effect 700 indicates the beginning/end of a segment in the mapping. The order of segments in the DH2 &#8220;mega-mix&#8221; is hard-coded (see the <code>clips</code> label in <code>game.asm</code>).</p>
<p>In D-Pad Hero 2 there are eight possible &#8220;challenges&#8221; that can be completed for each song (e.g. &#8220;Streak over 100&#8243;, &#8220;Blow up all POWs&#8221;). Care must be taken when designing a mapping to ensure that the challenges are actually possible to complete (e.g. are all letters that spell &#8220;D-PAD HERO&#8221; present?), and that there&#8217;s some balance between the various difficulty levels. To help with this, the xm2btn tool prints some statistics about the objects that occur in each lane, per difficulty level:</p>
<pre>
***** Statistics for targetdata/ripetargets.xm *****
  EASY
                L       R       S       B       A       Total
    Orb         75      56      49      53      62      295
    Skull       22      17      6       16      16      77
    POW         4       3       6       3       2       18
    Star        1       0       1       0       1       3
    Clock       4       0       2       0       1       7
    Letter      1       2       3       0       2       8
    F-skull     0       0       2       1       0       3
  NORMAL
                L       R       S       B       A       Total
    Orb         90      79      44      86      102     401
    Skull       28      50      19      57      32      186
    POW         3       1       10      1       0       15
    Star        1       1       0       1       1       4
    Clock       2       1       0       1       0       4
    Letter      0       1       3       0       4       8
    F-skull     0       2       0       0       1       3
  HARD
                L       R       S       B       A       Total
    Orb         113     92      46      128     133     512
    Skull       70      69      30      78      56      303
    POW         1       0       0       0       0       1
    Star        0       0       0       1       1       2
    Clock       1       0       0       0       1       2
    Letter      4       2       2       0       0       8
    F-skull     0       1       1       1       0       3
</pre>
</p>
<p>In D-Pad Hero 2, the challenges are the same for all songs; the only variable is the score limit in the &#8220;Score over XXXXX&#8221; challenge, which should reflect the difficulty and maximum obtainable score. These limits are defined in <code>rock_score_table</code> in <code>game.asm</code>.</p>
<p>That should cover the basics of song data in D-Pad Hero 2. The game engine takes care of the rest; I&#8217;ll leave that for a future behind-the-scenes special.</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=155</wfw:commentRss>
		</item>
		<item>
		<title>Windows binaries for development tools</title>
		<link>http://dpadhero.com/blog/?p=153</link>
		<comments>http://dpadhero.com/blog/?p=153#comments</comments>
		<pubDate>Sat, 31 Jul 2010 19:32:52 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[dev tools windows]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=153</guid>
		<description><![CDATA[Windows binaries for the latest versions of xorcyst and xm2nes are now available at
http://dpadhero.com/dev
]]></description>
			<content:encoded><![CDATA[<p>Windows binaries for the latest versions of xorcyst and xm2nes are now available at</p>
<p><a href="http://dpadhero.com/dev">http://dpadhero.com/dev</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=153</wfw:commentRss>
		</item>
		<item>
		<title>D-Pad Hero 2 source code released</title>
		<link>http://dpadhero.com/blog/?p=141</link>
		<comments>http://dpadhero.com/blog/?p=141#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:35:26 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=141</guid>
		<description><![CDATA[The source code to D-Pad Hero 2 has been released. Get it at
http://repo.or.cz/w/dpadhero2.git
In order to build, you need to have xorcyst (from http://repo.or.cz/w/xorcyst.git) and xm2nes (from http://repo.or.cz/w/kents-nes-stuff.git) installed.
After cloning the dpadhero2 repository, first build tools/xm2btn:
cd tools/xm2btn &#38;&#38; make
Then build dpadhero2.nes:
cd ../../src &#38;&#38; make
If all goes well, there will be a dpadhero2.nes under src/build/.
D-Pad Hero 2 should [...]]]></description>
			<content:encoded><![CDATA[<p>The source code to D-Pad Hero 2 has been released. Get it at</p>
<p><a href="http://repo.or.cz/w/dpadhero2.git">http://repo.or.cz/w/dpadhero2.git</a></p>
<p>In order to build, you need to have xorcyst (from <a href="http://repo.or.cz/w/xorcyst.git">http://repo.or.cz/w/xorcyst.git</a>) and xm2nes (from <a href="http://repo.or.cz/w/kents-nes-stuff.git">http://repo.or.cz/w/kents-nes-stuff.git</a>) installed.</p>
<p>After cloning the dpadhero2 repository, first build <code>tools/xm2btn</code>:</p>
<p><code>cd tools/xm2btn &amp;&amp; make</code></p>
<p>Then build dpadhero2.nes:</p>
<p><code>cd ../../src &amp;&amp; make</code></p>
<p>If all goes well, there will be a dpadhero2.nes under <code>src/build/</code>.</p>
<p>D-Pad Hero 2 should build on Linux, Mac and Windows/Cygwin. If you have problems, let me know.</p>
<p>Brief structural overview:</p>
<ul>
<li><code>src/</code>: Game code.</li>
<li><code>src/common/</code>: Support (&#8221;library&#8221;) code.</li>
<li><code>src/sound/</code>: Sound engine.</li>
<li><code>src/songs/</code>: The game music.</li>
<li><code>src/targetdata/</code>: &#8220;Level data&#8221; for the playable songs.</li>
<li><code>tools/xm2btn/</code>: Converts target data to a packed format.</li>
</ul>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=141</wfw:commentRss>
		</item>
		<item>
		<title>D-Pad Hero cartridges</title>
		<link>http://dpadhero.com/blog/?p=138</link>
		<comments>http://dpadhero.com/blog/?p=138#comments</comments>
		<pubDate>Wed, 28 Jul 2010 19:52:44 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=138</guid>
		<description><![CDATA[In case you&#8217;d like to have D-Pad Hero 1 &#38; 2 on real cartridges, this place can help you out:
http://www.thenesdump.com
BombSweeper also recommended.
]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;d like to have D-Pad Hero 1 &amp; 2 on real cartridges, this place can help you out:</p>
<p><a title="The NES Dump" href="http://www.thenesdump.com">http://www.thenesdump.com</a></p>
<p>BombSweeper also recommended.</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=138</wfw:commentRss>
		</item>
		<item>
		<title>D-Pad Hero 2 released!</title>
		<link>http://dpadhero.com/blog/?p=111</link>
		<comments>http://dpadhero.com/blog/?p=111#comments</comments>
		<pubDate>Sat, 15 May 2010 22:02:52 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[d-pad hero 2 release]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=111</guid>
		<description><![CDATA[What are you waiting for? Download the game already!
Getting Started
We recommend playing D-Pad Hero 2 on the Nestopia emulator. Mac users, we recommend getting the Emulator Enhancer (for fullscreen mode and USB gamepad support). D-Pad Hero 2 has also been tested on FCEUX and NESticle (!).
We strongly recommend playing D-Pad Hero 2 with a proper [...]]]></description>
			<content:encoded><![CDATA[<p>What are you waiting for? <a href="http://www.dpadhero.com/Download.html">Download the game</a> already!</p>
<p><strong>Getting Started</strong></p>
<p>We recommend playing D-Pad Hero 2 on the <a href="http://nestopia.sourceforge.net/downloads.html">Nestopia</a> emulator. Mac users, we recommend getting the <a href="http://www.bannister.org/software/ee.htm">Emulator Enhancer</a> (for fullscreen mode and USB gamepad support). D-Pad Hero 2 has also been tested on FCEUX and NESticle (!).</p>
<p>We strongly recommend playing D-Pad Hero 2 with a proper controller (e.g. &#8220;Retrolink NES controller&#8221;). <strong>Warning</strong>: Playing with a keyboard is likely to cause great aggravation and stress. The emulator&#8217;s default keyboard layout has the D-pad mapped to the arrow keys on the <em>right</em> side of the keyboard, whereas the D-pad on a NES controller is on the <em>left</em> side. Either swap the sides mentally in realtime, or change the emulator settings.</p>
<p><strong>How To Play</strong></p>
<p>Please refer to <a href="http://www.dpadhero.com/manuals/dpadhero2/index.html">the D-Pad Hero 2 manual</a>. Inspired by Ubisoft&#8217;s <a href="http://xbox360.ign.com/articles/108/1084483p1.html">green decision to ditch paper manuals</a>, we will not be offering printed manuals. Oh yeah, that&#8217;s also why we&#8217;re not producing a cartridge.</p>
<p>Here are some video demonstrations:</p>
<p><a href="http://www.youtube.com/watch?v=qpeckzjzTlE">D-Pad Hero 2 gameplay (1 player)</a></p>
<p><a href="http://www.youtube.com/watch?v=TiVGAQI1Yy8">D-Pad Hero 2: Free Man - Expert - 98%</a></p>
<p><a href="http://www.youtube.com/watch?v=3MvOcWEAvbQ">D-Pad Hero 2: Whip Man - Expert - 99%</a></p>
<p><strong>Features</strong></p>
<p>Whew, a lot has happened since the first game. We&#8217;ve tried to incorporate as many of your suggestions as possible. We&#8217;ve tried to make a game that&#8217;s richer and longer lasting. In short, we&#8217;ve tried to make a game that we would have loved to play had it been released when we were kids (we don&#8217;t think it&#8217;s too shabby to play as grown-ups either, mind you!). Here are the 8 most notable additions and improvements:</p>
<ul>
<li><strong>More songs</strong>. D-Pad Hero 2 has 50% more songs than the first game.</li>
<li><strong>Difficulty levels</strong>. You have the choice between Beginner, Normal and Expert.</li>
<li><strong>Challenge-based</strong>. In addition to playing a song till the end and aiming for the high score, there&#8217;s much more to do.</li>
<li><strong>Special items / power-ups</strong>. POW blocks, stars, and clocks can help you out in tricky spots.</li>
<li><strong>Slicker visuals</strong>. D-Pad Hero has gone 3-D (glasses sold separately). We hope you too find this view more lucid than the old one.</li>
<li><strong>Improved presentation</strong>. Menu screens and status screens have a cohesive design and interaction.</li>
<li><strong>Two can play</strong>. New exciting modes for two players: Co-operative and Versus. It&#8217;s possibly the coolest new feature; give it a try if you have a friend!</li>
<li><strong>Multiple endings</strong>. If you get a sub-par ending, you should try to complete more challenges on your next play.</li>
</ul>
<p><strong>Artists and Inspirations</strong></p>
<p>Obviously we owe a lot to the artists whose music we&#8217;ve remixed and sprinkled with 8-bit flavor. Like with the first game, we&#8217;ve chosen artists and songs that we hold in the highest regard, and we&#8217;ve done our best to do them justice on the NES. Similarly, there are several games (old and new) that have inspired us in achieving the look, style and elements of the game. We recommend that everyone support the work of the following artists and companies (in alphabetical order):</p>
<ul>
<li><a href="http://www.activision.com">Activision</a> (Guitar Hero)</li>
<li><a href="http://www.capcom.com">Capcom</a> (Mega Man)</li>
<li><a href="http://www.elvis.com">Elvis Presley</a> <a href="http://itunes.apple.com/us/album/burning-love/id217633715?i=217636919&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Elvis Presley - The Essential Elvis Presley (Remastered) - Burning Love" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/0tE6F0Umv0e9E4ZXqX61jQ">Spotify</a></li>
<li><a href="http://www.konami.com">Konami</a> (Castlevania)</li>
<li><a href="http://www.ledzeppelin.com">Led Zeppelin</a> <a href="http://itunes.apple.com/us/album/the-ocean/id266077709?i=266078497&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Led Zeppelin - The Complete Led Zeppelin (Remastered) - The Ocean" width="61" height="15" /></a></li>
<li><a href="http://www.megadeth.com">Megadeth</a> <a href="http://itunes.apple.com/us/album/countdown-to-extinction/id19034385?i=19034331&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Megadeth - Countdown to Extinction - Countdown to Extinction" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/3TUf2gxjEvrAUBMKLrqq9q">Spotify</a></li>
<li><a href="http://www.metallica.com">Metallica</a> <a href="http://itunes.apple.com/us/album/my-friend-of-misery/id278116714?i=278116754&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Metallica - Metallica - My Friend of Misery" width="61" height="15" /></a></li>
<li><a href="http://www.michaeljackson.com">Michael Jackson</a> <a href="http://itunes.apple.com/us/album/smooth-criminal/id159292399?i=159294551&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Michael Jackson - The Essential Michael Jackson - Smooth Criminal" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/1mzn6CQ71eUmgCSfbVmicN">Spotify</a></li>
<li><a href="http://www.nintendo.com">Nintendo</a> (The Legend of Zelda, Mario Bros, Punch Out!, Super Mario Bros, Super Mario 64, &#8230;)</li>
<li><a href="http://www.queenonline.com">Queen</a> <a href="http://itunes.apple.com/us/album/i-want-to-break-free/id27243463?i=27243524&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Queen - Live at Wembley '86 - I Want to Break Free" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/4qHmvftBgJRH7lhKMvmayC">Spotify</a></li>
<li><a href="http://www.van-halen.com">Van Halen</a> <a href="http://itunes.apple.com/us/album/aint-talkin-bout-love/id220364749?i=220364792&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="Van Halen - Van Halen - Ain't Talkin' 'Bout Love" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/6GvXbZOlqZfGs0L7xxzwaH">Spotify</a></li>
<li><a href="http://www.levvalivet.no">Åge Aleksandersen</a> <a href="http://itunes.apple.com/us/album/levva-livet/id295940331?i=295940338&amp;uo=6" target="itunes_store"><img src="http://ax.phobos.apple.com.edgesuite.net/images/badgeitunes61x15dark.gif" alt="?ge Aleksandersen - Levva Livet! - Levva Livet" width="61" height="15" /></a>, <a href="http://open.spotify.com/track/1MkVrMW0EtP9ZblKgoBYE5">Spotify</a></li>
</ul>
<p><strong>Feedback</strong></p>
<p>We&#8217;ve worked hard to ensure that there are no issues with this release. If you do find a bug or something else you think we should know about (e.g. glitches on certain emulators; experiences with other input devices; game is too easy), please <a href="http://www.dpadhero.com/Contact.html">let us know</a>, so that we may consider making corrections in a future release.</p>
<p>Thanks to everyone who has supported us in one way or another. We hope you will get much enjoyment from the game!</p>
<p>- Kent and Andreas</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=111</wfw:commentRss>
		</item>
		<item>
		<title>Site facelift</title>
		<link>http://dpadhero.com/blog/?p=108</link>
		<comments>http://dpadhero.com/blog/?p=108#comments</comments>
		<pubDate>Tue, 11 May 2010 19:11:40 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[web makeover]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=108</guid>
		<description><![CDATA[Gearing up for the release, Andreas has updated the dpadhero.com design. Follow the release countdown on the Downloads page!
If you find issues with the site design or content let us know.
]]></description>
			<content:encoded><![CDATA[<p>Gearing up for the release, Andreas has updated the dpadhero.com design. Follow the release countdown on the <a href="http://dpadhero.com/Download.html">Downloads</a> page!</p>
<p>If you find issues with the site design or content let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=108</wfw:commentRss>
		</item>
		<item>
		<title>Rocker of the day (6/6)</title>
		<link>http://dpadhero.com/blog/?p=105</link>
		<comments>http://dpadhero.com/blog/?p=105#comments</comments>
		<pubDate>Mon, 10 May 2010 15:53:27 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[rocker]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=105</guid>
		<description><![CDATA[Another day, another rocker associated with a DH2 song. Actually, this is the last one.
Today&#8217;s rocker: LIFE MAN
 
Speciality: Coming of aage
]]></description>
			<content:encoded><![CDATA[<p>Another day, another rocker associated with a DH2 song. Actually, this is the last one.</p>
<p style="text-align: center;"><strong>Today&#8217;s rocker: LIFE MAN</strong></p>
<p style="text-align: center;"><img class="alignnone" src="http://dpadhero.com/blog/images/noflag.png" alt="" width="64" height="64" /> <img class="alignnone" src="http://dpadhero.com/blog/images/lifeman64x64.png" alt="" width="64" height="64" /></p>
<p style="text-align: center;">Speciality: Coming of aage</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=105</wfw:commentRss>
		</item>
		<item>
		<title>Rocker of the day (5/6)</title>
		<link>http://dpadhero.com/blog/?p=98</link>
		<comments>http://dpadhero.com/blog/?p=98#comments</comments>
		<pubDate>Sun, 09 May 2010 15:32:36 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[rocker]]></category>

		<guid isPermaLink="false">http://dpadhero.com/blog/?p=98</guid>
		<description><![CDATA[Another day, another rocker associated with a DH2 song.
Today&#8217;s rocker: FREE MAN
 
Speciality: Quicksilver poisoning
]]></description>
			<content:encoded><![CDATA[<p>Another day, another rocker associated with a DH2 song.</p>
<p style="text-align: center;"><strong>Today&#8217;s rocker: FREE MAN</strong></p>
<p style="text-align: center;"><img class="alignnone" src="http://dpadhero.com/blog/images/zzflag.png" alt="" width="64" height="64" /> <img class="alignnone" src="http://dpadhero.com/blog/images/freeman64x64.png" alt="" width="64" height="64" /></p>
<p style="text-align: center;">Speciality: Quicksilver poisoning</p>
]]></content:encoded>
			<wfw:commentRss>http://dpadhero.com/blog/?feed=rss2&amp;p=98</wfw:commentRss>
		</item>
	</channel>
</rss>

