<?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 Divide and Conquer</title>
	<atom:link href="http://www.divideandconquer.se/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.divideandconquer.se</link>
	<description>David's Software Development Blog</description>
	<lastBuildDate>Fri, 23 Mar 2012 08:20:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on Bus Watch, a quite useless idea by Arthur</title>
		<link>http://www.divideandconquer.se/2008/01/08/bus-watch-a-quite-useless-idea/comment-page-1/#comment-1257</link>
		<dc:creator>Arthur</dc:creator>
		<pubDate>Fri, 23 Mar 2012 08:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/2008/01/08/bus-watch-a-quite-useless-idea/#comment-1257</guid>
		<description>You dont realize the significance of what you have written. &quot;a quite useless idea!&quot; Exactly the oppsite. EXACTLY.
What you need to do with a gumstick computer is this: Ride the bus to the next stop after yours. Look for the spot on the road where its 10 Mins exactly past your stop. Put a gumstick on a rooftop, with a motorcycle battery. Have the gumstick sniff for the bus, when it passes, ( 10 minutes prior ). it should Log something to a website, as each bus passes, it can update the website for the departure times. All you have to do is set your alarm to turn on your computer, and see when the last log was.

btw, WHERE IS RONNEBY?</description>
		<content:encoded><![CDATA[<p>You dont realize the significance of what you have written. &#8220;a quite useless idea!&#8221; Exactly the oppsite. EXACTLY.<br />
What you need to do with a gumstick computer is this: Ride the bus to the next stop after yours. Look for the spot on the road where its 10 Mins exactly past your stop. Put a gumstick on a rooftop, with a motorcycle battery. Have the gumstick sniff for the bus, when it passes, ( 10 minutes prior ). it should Log something to a website, as each bus passes, it can update the website for the departure times. All you have to do is set your alarm to turn on your computer, and see when the last log was.</p>
<p>btw, WHERE IS RONNEBY?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Inner-platform API anti-pattern by David</title>
		<link>http://www.divideandconquer.se/2012/03/09/the-inner-platform-api-anti-pattern/comment-page-1/#comment-1244</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 12 Mar 2012 20:09:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=768#comment-1244</guid>
		<description>By the way Per, what is your opinion about the Inner-platform API above?</description>
		<content:encoded><![CDATA[<p>By the way Per, what is your opinion about the Inner-platform API above?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Inner-platform API anti-pattern by David</title>
		<link>http://www.divideandconquer.se/2012/03/09/the-inner-platform-api-anti-pattern/comment-page-1/#comment-1243</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 12 Mar 2012 19:45:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=768#comment-1243</guid>
		<description>Absolutely Per, much better! 

My suggested version of the API did not take full advantage of the available HTTP verbs.</description>
		<content:encoded><![CDATA[<p>Absolutely Per, much better! </p>
<p>My suggested version of the API did not take full advantage of the available HTTP verbs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Inner-platform API anti-pattern by Per</title>
		<link>http://www.divideandconquer.se/2012/03/09/the-inner-platform-api-anti-pattern/comment-page-1/#comment-1242</link>
		<dc:creator>Per</dc:creator>
		<pubDate>Mon, 12 Mar 2012 19:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=768#comment-1242</guid>
		<description>Isn&#039;t the &quot;create&quot; part of the URL the fourth example? Why not just http://server/user instead of http://server/user/create and use the HTTP verbs to decide if its a createUser request? 

POST http://server/user (create a new user and let the API decide the id)

Then if you need support for &quot;getUser&quot;, &quot;updateUser&quot; or &quot;deleteUser&quot;, you have the possibility to use:

GET http://server/user/97580 (get information about user with id=97580)
PUT http://server/user/97580 (create, update or replace user with id=97580)
DELETE http://server/user/97580 (delete user with id=97580)</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t the &#8220;create&#8221; part of the URL the fourth example? Why not just <a href="http://server/user" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user?referer=');">http://server/user</a> instead of <a href="http://server/user/create" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user/create?referer=');">http://server/user/create</a> and use the HTTP verbs to decide if its a createUser request? </p>
<p>POST <a href="http://server/user" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user?referer=');">http://server/user</a> (create a new user and let the API decide the id)</p>
<p>Then if you need support for &#8220;getUser&#8221;, &#8220;updateUser&#8221; or &#8220;deleteUser&#8221;, you have the possibility to use:</p>
<p>GET <a href="http://server/user/97580" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user/97580?referer=');">http://server/user/97580</a> (get information about user with id=97580)<br />
PUT <a href="http://server/user/97580" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user/97580?referer=');">http://server/user/97580</a> (create, update or replace user with id=97580)<br />
DELETE <a href="http://server/user/97580" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/server/user/97580?referer=');">http://server/user/97580</a> (delete user with id=97580)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marker and polygon tooltips in Google Maps v3 by David</title>
		<link>http://www.divideandconquer.se/2011/09/15/marker-and-polygon-tooltips-in-google-maps-v3/comment-page-1/#comment-1099</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 15 Sep 2011 10:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=698#comment-1099</guid>
		<description>Thanks Danne, I actually have it bookmarked already but I decided against adding another dependency at this point.</description>
		<content:encoded><![CDATA[<p>Thanks Danne, I actually have it bookmarked already but I decided against adding another dependency at this point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marker and polygon tooltips in Google Maps v3 by Danne</title>
		<link>http://www.divideandconquer.se/2011/09/15/marker-and-polygon-tooltips-in-google-maps-v3/comment-page-1/#comment-1098</link>
		<dc:creator>Danne</dc:creator>
		<pubDate>Thu, 15 Sep 2011 09:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=698#comment-1098</guid>
		<description>I use this code to work with more advanced &quot;tooltips&quot;.

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/examples.html</description>
		<content:encoded><![CDATA[<p>I use this code to work with more advanced &#8220;tooltips&#8221;.</p>
<p><a href="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/examples.html" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/examples.html?referer=');">http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/examples.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert mailman translation to UTF-8 by CJP</title>
		<link>http://www.divideandconquer.se/2009/08/17/convert-mailman-translation-to-utf-8/comment-page-1/#comment-1070</link>
		<dc:creator>CJP</dc:creator>
		<pubDate>Thu, 09 Jun 2011 13:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=524#comment-1070</guid>
		<description>Thank you! Mailman&#039;s archive looked like a puzzle with question marks where all the swedish characters were supposed to be. It would have taken me days to figure out a solution, and it wouldn&#039;t have been this elegant.</description>
		<content:encoded><![CDATA[<p>Thank you! Mailman&#8217;s archive looked like a puzzle with question marks where all the swedish characters were supposed to be. It would have taken me days to figure out a solution, and it wouldn&#8217;t have been this elegant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote control of XBMC, but not too much by David</title>
		<link>http://www.divideandconquer.se/2010/01/23/remote-control-of-xbmc-but-not-too-much/comment-page-1/#comment-1052</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 03 Apr 2011 06:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=618#comment-1052</guid>
		<description>You can actually pull it from https://github.com/twogood/xbmcweb - but beware that it assumes that it can resolve &quot;xbox&quot; in DNS. The most interesting file is probably &lt;code&gt;application/services/Xbmc.php&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>You can actually pull it from <a href="https://github.com/twogood/xbmcweb" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/github.com/twogood/xbmcweb?referer=');">https://github.com/twogood/xbmcweb</a> &#8211; but beware that it assumes that it can resolve &#8220;xbox&#8221; in DNS. The most interesting file is probably <code>application/services/Xbmc.php</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remote control of XBMC, but not too much by David</title>
		<link>http://www.divideandconquer.se/2010/01/23/remote-control-of-xbmc-but-not-too-much/comment-page-1/#comment-1051</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sun, 03 Apr 2011 02:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=618#comment-1051</guid>
		<description>Hi there, 

Would you make this public?  I would be interested in something like this.

Thanks.

Dave</description>
		<content:encoded><![CDATA[<p>Hi there, </p>
<p>Would you make this public?  I would be interested in something like this.</p>
<p>Thanks.</p>
<p>Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Maverick Meerkat joys by David</title>
		<link>http://www.divideandconquer.se/2011/01/23/maverick-meerkat-joys/comment-page-1/#comment-983</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 24 Jan 2011 14:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.divideandconquer.se/?p=673#comment-983</guid>
		<description>Oh yes now I remember, my kitchen computer runs Unity, and I don&#039;t like it very much. Gnome 3.0 seems more interesting to me.</description>
		<content:encoded><![CDATA[<p>Oh yes now I remember, my kitchen computer runs Unity, and I don&#8217;t like it very much. Gnome 3.0 seems more interesting to me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

