<?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 Tony&#039;s Blog</title>
	<atom:link href="http://stolennotebook.com/anthony/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://stolennotebook.com/anthony</link>
	<description>Just another Stolen Notebook weblog</description>
	<lastBuildDate>Thu, 18 Mar 2010 16:04:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>Comment on Ecosystem Games by Maria</title>
		<link>http://stolennotebook.com/anthony/2006/11/11/ecosystem-games/comment-page-1/#comment-103</link>
		<dc:creator>Maria</dc:creator>
		<pubDate>Thu, 18 Mar 2010 16:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2006/11/11/ecosystem-games/#comment-103</guid>
		<description>Try Creatures Docking Station its a free game that can be downloaded from Creatures Labs at http://www.gamewaredevelopment.co.uk/ds/ and hundreds of 3rd party additions can be found for it giving you anything from new item to more room.

the game its self is an Ai simulator, your goal is to raise &amp; mate Creatures call Norns. Teach them whats good &amp; whats bad all while making sure they are well fed and do not get hurt.

If you buy Creatures 3 as well it connects to Docking Station giving you MUCH more room.

Docking station (AKA ds) is also the only online version of creatures allowing users to send Norns to one another.

Hope you like it. My user name in game is the same as my e-mail ariana_moon.</description>
		<content:encoded><![CDATA[<p>Try Creatures Docking Station its a free game that can be downloaded from Creatures Labs at <a href="http://www.gamewaredevelopment.co.uk/ds/" rel="nofollow">http://www.gamewaredevelopment.co.uk/ds/</a> and hundreds of 3rd party additions can be found for it giving you anything from new item to more room.</p>
<p>the game its self is an Ai simulator, your goal is to raise &amp; mate Creatures call Norns. Teach them whats good &amp; whats bad all while making sure they are well fed and do not get hurt.</p>
<p>If you buy Creatures 3 as well it connects to Docking Station giving you MUCH more room.</p>
<p>Docking station (AKA ds) is also the only online version of creatures allowing users to send Norns to one another.</p>
<p>Hope you like it. My user name in game is the same as my e-mail ariana_moon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on simple twitter mercurial hook by Daniel Macedo</title>
		<link>http://stolennotebook.com/anthony/2009/03/30/simple-twitter-mercurial-hook/comment-page-1/#comment-102</link>
		<dc:creator>Daniel Macedo</dc:creator>
		<pubDate>Thu, 21 Jan 2010 01:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/?p=33#comment-102</guid>
		<description>When you&#039;re using:

incoming.notify = python:hgext.hgtwitter.hook

You should place the hgtwitter.py file in your site-packages/hgext/ folder (in $PYHTONPATH)

See how modules work here:
http://docs.python.org/tutorial/modules.html

Cheers,
~ Dani</description>
		<content:encoded><![CDATA[<p>When you&#8217;re using:</p>
<p>incoming.notify = python:hgext.hgtwitter.hook</p>
<p>You should place the hgtwitter.py file in your site-packages/hgext/ folder (in $PYHTONPATH)</p>
<p>See how modules work here:<br />
<a href="http://docs.python.org/tutorial/modules.html" rel="nofollow">http://docs.python.org/tutorial/modules.html</a></p>
<p>Cheers,<br />
~ Dani</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on simple twitter mercurial hook by Reza</title>
		<link>http://stolennotebook.com/anthony/2009/03/30/simple-twitter-mercurial-hook/comment-page-1/#comment-101</link>
		<dc:creator>Reza</dc:creator>
		<pubDate>Fri, 11 Dec 2009 06:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/?p=33#comment-101</guid>
		<description>Hello, I tried to incorporate your hgtwitter script on my mercurial server but failed to work.

Here&#039;s what I did:
- I put hgtwitter.py in the same folder as mercurial (In my Ubuntu, it is in /usr/local/lib/python2.5/site-packages/hgext

- I added these lines in /etc/mercurial/hgrc (is it okay if I put it here, since I want it to update status on Twitter for all my repos)
[extensions]
hgext.hgrc=

[hooks]
incoming.notify = python:hgext.hgtwitter.hook

[twitter]
username = my_user_name (should it be a string?)
password = my_password (should this also be a string?)


But when I try to push changes to the server, I got:
abort: incoming.notify hook is invalid (import of &quot;hgext.hgtwitter&quot; failed)


It confuses me since in python shell, import hgext.hgtwitter seems to work.

Can you help me out?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hello, I tried to incorporate your hgtwitter script on my mercurial server but failed to work.</p>
<p>Here&#8217;s what I did:<br />
- I put hgtwitter.py in the same folder as mercurial (In my Ubuntu, it is in /usr/local/lib/python2.5/site-packages/hgext</p>
<p>- I added these lines in /etc/mercurial/hgrc (is it okay if I put it here, since I want it to update status on Twitter for all my repos)<br />
[extensions]<br />
hgext.hgrc=</p>
<p>[hooks]<br />
incoming.notify = python:hgext.hgtwitter.hook</p>
<p>[twitter]<br />
username = my_user_name (should it be a string?)<br />
password = my_password (should this also be a string?)</p>
<p>But when I try to push changes to the server, I got:<br />
abort: incoming.notify hook is invalid (import of &#8220;hgext.hgtwitter&#8221; failed)</p>
<p>It confuses me since in python shell, import hgext.hgtwitter seems to work.</p>
<p>Can you help me out?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using XBMC for Linux with an XBOX 360 Wireless Controller and the Userspace USB Driver xboxdrv by Lars</title>
		<link>http://stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/comment-page-1/#comment-92</link>
		<dc:creator>Lars</dc:creator>
		<pubDate>Sat, 14 Nov 2009 22:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/#comment-92</guid>
		<description>Found another way to autostart xboxdrv, which suited me better.

I&#039;m running karmic 9.10 and latest xbmc svn, with a minimal install.
Using /etc/rc.local stalled my system and it didn&#039;t load xbmc.

So here is the fix i&#039;m using :

sudo nano /etc/init/tty2.conf

replace this line :
exec /sbin/getty -8 38400 tty2

with :
exec /home/xbmc/xboxdrv/xboxdrv --silent --dpad-as-button --deadzone 3000

and it&#039;ll start on tty2 instead :)

Really really enjoyed this guide, been able to reuse my old logitech wireless xbox1 controller :)

Thanks !</description>
		<content:encoded><![CDATA[<p>Found another way to autostart xboxdrv, which suited me better.</p>
<p>I&#8217;m running karmic 9.10 and latest xbmc svn, with a minimal install.<br />
Using /etc/rc.local stalled my system and it didn&#8217;t load xbmc.</p>
<p>So here is the fix i&#8217;m using :</p>
<p>sudo nano /etc/init/tty2.conf</p>
<p>replace this line :<br />
exec /sbin/getty -8 38400 tty2</p>
<p>with :<br />
exec /home/xbmc/xboxdrv/xboxdrv &#8211;silent &#8211;dpad-as-button &#8211;deadzone 3000</p>
<p>and it&#8217;ll start on tty2 instead <img src='http://stolennotebook.com/anthony/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Really really enjoyed this guide, been able to reuse my old logitech wireless xbox1 controller <img src='http://stolennotebook.com/anthony/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting File Changes From Buildbot by Blog Updates &#187; Stolen Notebook - Just another Stolennotebook.com weblog</title>
		<link>http://stolennotebook.com/anthony/2007/01/19/18/comment-page-1/#comment-90</link>
		<dc:creator>Blog Updates &#187; Stolen Notebook - Just another Stolennotebook.com weblog</dc:creator>
		<pubDate>Fri, 13 Nov 2009 19:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2007/01/19/18/#comment-90</guid>
		<description>[...] colsen explains the architecture of our asset build system Denrei discusses techniques for creating grass Tony talks about getting file changes from buildbot [...]</description>
		<content:encoded><![CDATA[<p>[...] colsen explains the architecture of our asset build system Denrei discusses techniques for creating grass Tony talks about getting file changes from buildbot [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on simple twitter mercurial hook by Stodge</title>
		<link>http://stolennotebook.com/anthony/2009/03/30/simple-twitter-mercurial-hook/comment-page-1/#comment-88</link>
		<dc:creator>Stodge</dc:creator>
		<pubDate>Fri, 13 Nov 2009 13:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/?p=33#comment-88</guid>
		<description>Where do you save this file? In ~/.hg?

Thanks</description>
		<content:encoded><![CDATA[<p>Where do you save this file? In ~/.hg?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using XBMC for Linux with an XBOX 360 Wireless Controller and the Userspace USB Driver xboxdrv by alecos</title>
		<link>http://stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/comment-page-1/#comment-55</link>
		<dc:creator>alecos</dc:creator>
		<pubDate>Thu, 22 Oct 2009 20:35:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/#comment-55</guid>
		<description>Hey all,
I was wondering, could the control be used to replace the mouse?
Like with the dpad n toggle sticks to control the mouse movement.

Ofcourse outside the xbmc.

thanks</description>
		<content:encoded><![CDATA[<p>Hey all,<br />
I was wondering, could the control be used to replace the mouse?<br />
Like with the dpad n toggle sticks to control the mouse movement.</p>
<p>Ofcourse outside the xbmc.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using XBMC for Linux with an XBOX 360 Wireless Controller and the Userspace USB Driver xboxdrv by tonymagro</title>
		<link>http://stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/comment-page-1/#comment-47</link>
		<dc:creator>tonymagro</dc:creator>
		<pubDate>Sun, 18 Oct 2009 02:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/#comment-47</guid>
		<description>You might have a slightly different setup but in a more standard installation the default Keymap.xml file is installed globally which allows you to place my custom xboxdrv 360 Keymap.xml in your home directory at ~/.xbmc/userdata/Keymap.xml . As a result, it doesn&#039;t require you to overwrite any files and the custom 360 Keymap.xml is loaded in addition to the default global Keymap.xml so all your keyboard and joystick settings will load too. 

The reason why the provided Keymap.xml contains only the xboxdrv 360 entries is because the default Keymap.xml could change depending on which version of XBMC you have installed. If I pasted the default Keymap.xml bindings into my xboxdrv Keymap.xml then you wouldn&#039;t get the most up to date Keymap.xml settings from your installation of XMBC. This would mean that if XMBC added or changed keyboard or joystick bindings between versions and you used my xboxdrv Keymap.xml which contained old default bindings in addition to the custom xboxdrv 360 bindings then the old default bindings could cause problems with the new version. I would recommend using a setup where you load my xboxdrv 360 Keymap.xml in addition to a global default Keymap.xml but I do realize that not everybody can use standard installation paths and a person might want to load all their settings from one location. If you fall in this category and changing your setup is not possible then I would recommend just appending the contents of my xboxdrv 360 Keymap.xml to the end of your single default Keymap.xml file.</description>
		<content:encoded><![CDATA[<p>You might have a slightly different setup but in a more standard installation the default Keymap.xml file is installed globally which allows you to place my custom xboxdrv 360 Keymap.xml in your home directory at ~/.xbmc/userdata/Keymap.xml . As a result, it doesn&#8217;t require you to overwrite any files and the custom 360 Keymap.xml is loaded in addition to the default global Keymap.xml so all your keyboard and joystick settings will load too. </p>
<p>The reason why the provided Keymap.xml contains only the xboxdrv 360 entries is because the default Keymap.xml could change depending on which version of XBMC you have installed. If I pasted the default Keymap.xml bindings into my xboxdrv Keymap.xml then you wouldn&#8217;t get the most up to date Keymap.xml settings from your installation of XMBC. This would mean that if XMBC added or changed keyboard or joystick bindings between versions and you used my xboxdrv Keymap.xml which contained old default bindings in addition to the custom xboxdrv 360 bindings then the old default bindings could cause problems with the new version. I would recommend using a setup where you load my xboxdrv 360 Keymap.xml in addition to a global default Keymap.xml but I do realize that not everybody can use standard installation paths and a person might want to load all their settings from one location. If you fall in this category and changing your setup is not possible then I would recommend just appending the contents of my xboxdrv 360 Keymap.xml to the end of your single default Keymap.xml file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using XBMC for Linux with an XBOX 360 Wireless Controller and the Userspace USB Driver xboxdrv by Joe Anderson</title>
		<link>http://stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/comment-page-1/#comment-46</link>
		<dc:creator>Joe Anderson</dc:creator>
		<pubDate>Sun, 18 Oct 2009 01:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/#comment-46</guid>
		<description>What I find interesting that no one has noticed or said anything about, if you put the Keymap.xml in /userdata dir it will overwrite your original Keymal.xml which has support for keyboard, remote and various other gamepads etc..

Now why would someone completely  loose the keyboard support in xbmc for the joystick?

Why cant the provided xml file be merged with the other xml file and add the 360 wireless support in addition to the existing input devices configured there?</description>
		<content:encoded><![CDATA[<p>What I find interesting that no one has noticed or said anything about, if you put the Keymap.xml in /userdata dir it will overwrite your original Keymal.xml which has support for keyboard, remote and various other gamepads etc..</p>
<p>Now why would someone completely  loose the keyboard support in xbmc for the joystick?</p>
<p>Why cant the provided xml file be merged with the other xml file and add the 360 wireless support in addition to the existing input devices configured there?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using XBMC for Linux with an XBOX 360 Wireless Controller and the Userspace USB Driver xboxdrv by Darwin</title>
		<link>http://stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/comment-page-1/#comment-32</link>
		<dc:creator>Darwin</dc:creator>
		<pubDate>Thu, 03 Sep 2009 03:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.stolennotebook.com/anthony/2008/09/13/using-xbmc-for-linux-with-an-xbox-360-wireless-controller-and-the-userspace-usb-driver-xboxdrv/#comment-32</guid>
		<description>For people who may find this page via google, I have updated Tony&#039;s Keymap.xml for the changed behavior of xboxdrv under Ubuntu Jaunty / XBMC Live 9.04. Full credit to Tony for his file, I just modified it slightly for 9.04, and am distributing it with a precompiled copy of xboxdrv and startup scripts which works on Hardy, Intrepid, Jaunty, and XBMC Live 8.10 (Ubuntu 8.04) and XBMC Live 9.04. If you are having weird behavior with the shoulder buttons on your Xbox360 controller with xboxdrv, see this XBMC forum thread :

http://www.xbmc.org/forum/showthread.php?t=57304

=darwin</description>
		<content:encoded><![CDATA[<p>For people who may find this page via google, I have updated Tony&#8217;s Keymap.xml for the changed behavior of xboxdrv under Ubuntu Jaunty / XBMC Live 9.04. Full credit to Tony for his file, I just modified it slightly for 9.04, and am distributing it with a precompiled copy of xboxdrv and startup scripts which works on Hardy, Intrepid, Jaunty, and XBMC Live 8.10 (Ubuntu 8.04) and XBMC Live 9.04. If you are having weird behavior with the shoulder buttons on your Xbox360 controller with xboxdrv, see this XBMC forum thread :</p>
<p><a href="http://www.xbmc.org/forum/showthread.php?t=57304" rel="nofollow">http://www.xbmc.org/forum/showthread.php?t=57304</a></p>
<p>=darwin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
