<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments for Blast from the past</title>
	<atom:link href="http://www.blastfromthepast.se/blabbermouth/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blastfromthepast.se/blabbermouth</link>
	<description>Sharing code is like sex, only not quite as messy</description>
	<pubDate>Wed, 10 Mar 2010 02:31:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Geany - as good as IDEs get? by dmaphy</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/10/geany-as-good-as-ides-get/comment-page-1/#comment-151</link>
		<dc:creator>dmaphy</dc:creator>
		<pubDate>Sat, 27 Feb 2010 20:17:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=750#comment-151</guid>
		<description>Hi Tommy,
I've added your article on http://www.geany.org/Main/Reviews. Hope this is okay for you.
Please let me know if you don't want it to be listed there.

Regards,
Dominic</description>
		<content:encoded><![CDATA[<p>Hi Tommy,<br />
I&#8217;ve added your article on <a href="http://www.geany.org/Main/Reviews"  rel="nofollow">http://www.geany.org/Main/Reviews</a>. Hope this is okay for you.<br />
Please let me know if you don&#8217;t want it to be listed there.</p>
<p>Regards,<br />
Dominic</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Console emulation in Linux: The Nintendo family by yauch</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/04/console-emulation-in-linux-part-1-nintendo-family/comment-page-1/#comment-149</link>
		<dc:creator>yauch</dc:creator>
		<pubDate>Fri, 26 Feb 2010 16:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/?p=166#comment-149</guid>
		<description>Any one know how to use a xbox360 controler that has been set up with xboxdrv with vba-m? I don't know what to put in the cfg file!
it looks like this:

#
# Key configuration (all numbers are in hexadecimal!)
#
# Keys values are in the format YYYYXXXX where YYYY is the device number.
# 0 means keyboard and XXXX is the SDL define for the desired key
# (read SDL_keysym.h).
#
# If YYYY is greater than 0, it means joystick number YYYY-1 and it uses the
# following format for XXXX:
#
# - if XXXX = XXXX &gt; 30, then XXXX is the HAT number multiplied by 4 plus the
#   direction: 0 for up, 1 for down, 2 for right and 3 for left. Example:
#   0021 is HAT 0 down, 0026 is HAT 1 right.
# - if 80 &gt;= XXXX &gt; 100, XXXX is the joystick button number (XXXX-0080).
#
# Default key configuration is (value in parenthesis):
#
# Left          Left Arrow  (00000114)
# Right         Right Arrow (00000113)
# Up            Up Arrow    (00000111)
# Down          Down Arrow  (00000112)
# A             Z           (0000007a)
# B             X           (00000078)
# L             A           (00000061)
# R             S           (00000073)
# Start         ENTER       (0000000d)
# Select        BACKSPACE   (00000008)
# Speed up      SPACE       (00000020)
# Capture       F12         (00000125)
# Auto A        Q           (00000071)
# Auto B        W           (00000077)
#
Joy0_Left=0114
Joy0_Right=0113
Joy0_Up=0111
Joy0_Down=0112
Joy0_A=007a
Joy0_B=0078
Joy0_L=0061
Joy0_R=0073
Joy0_Start=000d
Joy0_Select=0008
Joy0_Speed=0020
Joy0_Capture=0125
Joy0_AutoA=0071
Joy0_AutoB=0077

For other emulators I'd use something like 

joy1 
joy7
axis3
etc and here they have hex numbers</description>
		<content:encoded><![CDATA[<p>Any one know how to use a xbox360 controler that has been set up with xboxdrv with vba-m? I don&#8217;t know what to put in the cfg file!<br />
it looks like this:</p>
<p>#<br />
# Key configuration (all numbers are in hexadecimal!)<br />
#<br />
# Keys values are in the format YYYYXXXX where YYYY is the device number.<br />
# 0 means keyboard and XXXX is the SDL define for the desired key<br />
# (read SDL_keysym.h).<br />
#<br />
# If YYYY is greater than 0, it means joystick number YYYY-1 and it uses the<br />
# following format for XXXX:<br />
#<br />
# - if XXXX = XXXX &gt; 30, then XXXX is the HAT number multiplied by 4 plus the<br />
#   direction: 0 for up, 1 for down, 2 for right and 3 for left. Example:<br />
#   0021 is HAT 0 down, 0026 is HAT 1 right.<br />
# - if 80 &gt;= XXXX &gt; 100, XXXX is the joystick button number (XXXX-0080).<br />
#<br />
# Default key configuration is (value in parenthesis):<br />
#<br />
# Left          Left Arrow  (00000114)<br />
# Right         Right Arrow (00000113)<br />
# Up            Up Arrow    (00000111)<br />
# Down          Down Arrow  (00000112)<br />
# A             Z           (0000007a)<br />
# B             X           (00000078)<br />
# L             A           (00000061)<br />
# R             S           (00000073)<br />
# Start         ENTER       (0000000d)<br />
# Select        BACKSPACE   (00000008)<br />
# Speed up      SPACE       (00000020)<br />
# Capture       F12         (00000125)<br />
# Auto A        Q           (00000071)<br />
# Auto B        W           (00000077)<br />
#<br />
Joy0_Left=0114<br />
Joy0_Right=0113<br />
Joy0_Up=0111<br />
Joy0_Down=0112<br />
Joy0_A=007a<br />
Joy0_B=0078<br />
Joy0_L=0061<br />
Joy0_R=0073<br />
Joy0_Start=000d<br />
Joy0_Select=0008<br />
Joy0_Speed=0020<br />
Joy0_Capture=0125<br />
Joy0_AutoA=0071<br />
Joy0_AutoB=0077</p>
<p>For other emulators I&#8217;d use something like </p>
<p>joy1<br />
joy7<br />
axis3<br />
etc and here they have hex numbers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Caffeine 0.3 is out! by Tommy Brunn</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/08/caffeine-03/comment-page-1/#comment-148</link>
		<dc:creator>Tommy Brunn</dc:creator>
		<pubDate>Sun, 21 Feb 2010 09:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=702#comment-148</guid>
		<description>I have no idea where I found it, but &lt;a href="http://i49.tinypic.com/68djxh.jpg" rel="nofollow"&gt;here it is now&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I have no idea where I found it, but <a href="http://i49.tinypic.com/68djxh.jpg"  rel="nofollow">here it is now</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Caffeine 0.3 is out! by Nobody</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/08/caffeine-03/comment-page-1/#comment-147</link>
		<dc:creator>Nobody</dc:creator>
		<pubDate>Sun, 21 Feb 2010 07:19:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=702#comment-147</guid>
		<description>I hate to be *that guy* but what wallpaper is showing in this picture (http://www.blastfromthepast.se/blabbermouth/wp-content/uploads/2009/08/screenshot_002.png)? I've seen and probably even used it before, but I can't find it. Thanks!</description>
		<content:encoded><![CDATA[<p>I hate to be *that guy* but what wallpaper is showing in this picture (http://www.blastfromthepast.se/blabbermouth/wp-content/uploads/2009/08/screenshot_002.png)? I&#8217;ve seen and probably even used it before, but I can&#8217;t find it. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Caffeine 0.3 is out! by Tommy Brunn</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/08/caffeine-03/comment-page-1/#comment-146</link>
		<dc:creator>Tommy Brunn</dc:creator>
		<pubDate>Fri, 12 Feb 2010 14:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=702#comment-146</guid>
		<description>Mariana: Sure. You should be able to install Caffeine on Linpais. It's just plain old Ubuntu with a couple of pre-installed packages. However, the instructions in this post are kind of old. Caffeine is actually at version 1.0.1, and the installation instructions have changed a bit. Check the wiki at http://www.blastfromthepast.se/caffeine/index.php?title=Downloads for newer information. Simply follow the instructions for Ubuntu and it should work just fine.</description>
		<content:encoded><![CDATA[<p>Mariana: Sure. You should be able to install Caffeine on Linpais. It&#8217;s just plain old Ubuntu with a couple of pre-installed packages. However, the instructions in this post are kind of old. Caffeine is actually at version 1.0.1, and the installation instructions have changed a bit. Check the wiki at <a href="http://www.blastfromthepast.se/caffeine/index.php?title=Downloads"  rel="nofollow">http://www.blastfromthepast.se/caffeine/index.php?title=Downloads</a> for newer information. Simply follow the instructions for Ubuntu and it should work just fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Caffeine 0.3 is out! by Mariana</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/08/caffeine-03/comment-page-1/#comment-145</link>
		<dc:creator>Mariana</dc:creator>
		<pubDate>Fri, 12 Feb 2010 13:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=702#comment-145</guid>
		<description>Hi There, I am new to Linux, a friend of mine has just installed ubuntu linpais to my old laptop and I have to say I like it a lot and find it easy to work with. I was wondering if I can install caffeine on to it.

Thank you</description>
		<content:encoded><![CDATA[<p>Hi There, I am new to Linux, a friend of mine has just installed ubuntu linpais to my old laptop and I have to say I like it a lot and find it easy to work with. I was wondering if I can install caffeine on to it.</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geany - as good as IDEs get? by auriza</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/10/geany-as-good-as-ides-get/comment-page-1/#comment-142</link>
		<dc:creator>auriza</dc:creator>
		<pubDate>Tue, 26 Jan 2010 06:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=750#comment-142</guid>
		<description>Geany is light and fast and has just the important features. It's my favorite IDE for over 2 years. You can generate your custom tag from scanning the source code, I like this feature. But it lacks of color theme, you have to download them separately.</description>
		<content:encoded><![CDATA[<p>Geany is light and fast and has just the important features. It&#8217;s my favorite IDE for over 2 years. You can generate your custom tag from scanning the source code, I like this feature. But it lacks of color theme, you have to download them separately.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Made on Ubuntu by Made on Arch &#124; Blast from the past</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/08/made-on-ubuntu/comment-page-1/#comment-141</link>
		<dc:creator>Made on Arch &#124; Blast from the past</dc:creator>
		<pubDate>Sun, 24 Jan 2010 16:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=675#comment-141</guid>
		<description>[...] those snazzy badges I made some time ago? Well, after having been featured on OMG! Ubuntu! I felt like getting back on [...]</description>
		<content:encoded><![CDATA[<p>[...] those snazzy badges I made some time ago? Well, after having been featured on OMG! Ubuntu! I felt like getting back on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Caffeine for Linux 1.0 is released! by Winston</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/10/caffeine-for-linux-1-released/comment-page-1/#comment-140</link>
		<dc:creator>Winston</dc:creator>
		<pubDate>Fri, 22 Jan 2010 18:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/blabbermouth/?p=757#comment-140</guid>
		<description>This is a very nice application. Kudos mate.</description>
		<content:encoded><![CDATA[<p>This is a very nice application. Kudos mate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 15 wallpapers from my collection by wallz</title>
		<link>http://www.blastfromthepast.se/blabbermouth/2009/04/top-ten-wallpapers-from-my-collection/comment-page-1/#comment-139</link>
		<dc:creator>wallz</dc:creator>
		<pubDate>Sat, 16 Jan 2010 16:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.blastfromthepast.se/?p=81#comment-139</guid>
		<description>a great collection!,you really have a good taste!,thank's !,by the way I study software engineering !,so if you need anything !,I'm here!</description>
		<content:encoded><![CDATA[<p>a great collection!,you really have a good taste!,thank&#8217;s !,by the way I study software engineering !,so if you need anything !,I&#8217;m here!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
