<?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 Ikke&#039;s blog</title>
	<atom:link href="http://eikke.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://eikke.com</link>
	<description>&#039;cause this is what I do</description>
	<lastBuildDate>Sat, 19 May 2012 23:33:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Erlang, Python and Twisted mashup using TwOTP by Steve</title>
		<link>http://eikke.com/erlang-python-and-twisted-mashup-using-twotp/comment-page-1/#comment-76677</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 19 May 2012 23:33:01 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/?p=90#comment-76677</guid>
		<description>Also, if you&#039;ve downloaded release 0.7, you&#039;ll probably need to apply the fix suggested here:

https://bugs.launchpad.net/twotp/+bug/767842</description>
		<content:encoded><![CDATA[<p>Also, if you&#8217;ve downloaded release 0.7, you&#8217;ll probably need to apply the fix suggested here:</p>
<p><a href="https://bugs.launchpad.net/twotp/+bug/767842" rel="nofollow">https://bugs.launchpad.net/twotp/+bug/767842</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang, Python and Twisted mashup using TwOTP by Steve</title>
		<link>http://eikke.com/erlang-python-and-twisted-mashup-using-twotp/comment-page-1/#comment-76676</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 19 May 2012 23:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/?p=90#comment-76676</guid>
		<description>Note for current readers: Since this blog entry was published, twotp introduced backwards incompatible changes. These changes invalidate this blog entry. Download the latest twotp release and look in the doc folder for a few samples to get you going.</description>
		<content:encoded><![CDATA[<p>Note for current readers: Since this blog entry was published, twotp introduced backwards incompatible changes. These changes invalidate this blog entry. Download the latest twotp release and look in the doc folder for a few samples to get you going.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How not to write Python code by Trevor</title>
		<link>http://eikke.com/how-not-to-write-python-code/comment-page-1/#comment-73812</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 19 Apr 2012 14:42:53 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/how-not-to-write-python-code/#comment-73812</guid>
		<description>Regarding the switch statement discussion going on, Ale is correct, his points are all logically sound.  The question comes down to this: is the concept of the switch statement a good one?

The reason I say this is because you can apply his points to any programming construct, so if you believe the concept of switch is good (regardless of how poorly other languages implement it) then it should be added.

Anyone who says otherwise is bias based on their emotions for some strange reason.</description>
		<content:encoded><![CDATA[<p>Regarding the switch statement discussion going on, Ale is correct, his points are all logically sound.  The question comes down to this: is the concept of the switch statement a good one?</p>
<p>The reason I say this is because you can apply his points to any programming construct, so if you believe the concept of switch is good (regardless of how poorly other languages implement it) then it should be added.</p>
<p>Anyone who says otherwise is bias based on their emotions for some strange reason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django domain redirect middleware by Nicolas</title>
		<link>http://eikke.com/django-domain-redirect-middleware/comment-page-1/#comment-72281</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Wed, 28 Mar 2012 11:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/2007/12/26/django-domain-redirect-middleware/#comment-72281</guid>
		<description>oh and say         host = request.get_host().split(&#039;:&#039;)[0]  above there</description>
		<content:encoded><![CDATA[<p>oh and say         host = request.get_host().split(&#8216;:&#8217;)[0]  above there</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django domain redirect middleware by Nicolas</title>
		<link>http://eikke.com/django-domain-redirect-middleware/comment-page-1/#comment-72279</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Wed, 28 Mar 2012 09:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/2007/12/26/django-domain-redirect-middleware/#comment-72279</guid>
		<description>Thanks a lot! 
If you&#039;re running Django on a non-default port, you might want to add the port number to the newly constructed URI:

        new_uri = &#039;%s://%s%s%s%s&#039; % (
                request.is_secure() and &#039;https&#039; or &#039;http&#039;,
                site.domain,
                (&quot;:&quot; + request.META[&quot;SERVER_PORT&quot;]) if request.META[&quot;SERVER_PORT&quot;]!=80 else &quot;&quot;,
                urlquote(request.path),
                (request.method == &#039;GET&#039; and len(request.GET) &gt; 0) and &#039;?%s&#039; % request.GET.urlencode() or &#039;&#039;
            )</description>
		<content:encoded><![CDATA[<p>Thanks a lot!<br />
If you&#8217;re running Django on a non-default port, you might want to add the port number to the newly constructed URI:</p>
<p>        new_uri = &#8216;%s://%s%s%s%s&#8217; % (<br />
                request.is_secure() and &#8216;https&#8217; or &#8216;http&#8217;,<br />
                site.domain,<br />
                (&#8220;:&#8221; + request.META["SERVER_PORT"]) if request.META["SERVER_PORT"]!=80 else &#8220;&#8221;,<br />
                urlquote(request.path),<br />
                (request.method == &#8216;GET&#8217; and len(request.GET) &gt; 0) and &#8216;?%s&#8217; % request.GET.urlencode() or &#8221;<br />
            )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Django domain redirect middleware by trd</title>
		<link>http://eikke.com/django-domain-redirect-middleware/comment-page-1/#comment-65139</link>
		<dc:creator>trd</dc:creator>
		<pubDate>Tue, 29 Nov 2011 11:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/2007/12/26/django-domain-redirect-middleware/#comment-65139</guid>
		<description>Does the last solution of Nicolas keep the whole URL?

For example if I&#039;m poiting to http://website.org/cars/view/1/, I want to redirect to http://www.website.org/cars/view/1/, right?</description>
		<content:encoded><![CDATA[<p>Does the last solution of Nicolas keep the whole URL?</p>
<p>For example if I&#8217;m poiting to <a href="http://website.org/cars/view/1/" rel="nofollow">http://website.org/cars/view/1/</a>, I want to redirect to <a href="http://www.website.org/cars/view/1/" rel="nofollow">http://www.website.org/cars/view/1/</a>, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox launch script by Edzams</title>
		<link>http://eikke.com/virtualbox-launch-script/comment-page-1/#comment-62993</link>
		<dc:creator>Edzams</dc:creator>
		<pubDate>Mon, 31 Oct 2011 13:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/virtualbox-launch-script/#comment-62993</guid>
		<description>I&#039;m an absolute noob when it comes to scripting so how do I use this script. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I&#8217;m an absolute noob when it comes to scripting so how do I use this script. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wii head tracking explained: how it works by slyvality</title>
		<link>http://eikke.com/wii-head-tracking-explained-how-it-works/comment-page-1/#comment-61369</link>
		<dc:creator>slyvality</dc:creator>
		<pubDate>Mon, 17 Oct 2011 19:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/wii-head-tracking-explained-how-it-works/#comment-61369</guid>
		<description>Exaplananation is great, but I can&#039;t access the diagrams. How can i access diagrams? I am really interested in this subject</description>
		<content:encoded><![CDATA[<p>Exaplananation is great, but I can&#8217;t access the diagrams. How can i access diagrams? I am really interested in this subject</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CouchDB with Python by Manuel Vázquez</title>
		<link>http://eikke.com/couchdb-with-python/comment-page-1/#comment-57701</link>
		<dc:creator>Manuel Vázquez</dc:creator>
		<pubDate>Sun, 04 Sep 2011 15:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/couchdb-with-python/#comment-57701</guid>
		<description>Are you still working on django-couchdb? Can you put it on Github?

Best regards,
Mauel.</description>
		<content:encoded><![CDATA[<p>Are you still working on django-couchdb? Can you put it on Github?</p>
<p>Best regards,<br />
Mauel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wii head tracking explained: how it works by shankar</title>
		<link>http://eikke.com/wii-head-tracking-explained-how-it-works/comment-page-1/#comment-56004</link>
		<dc:creator>shankar</dc:creator>
		<pubDate>Sun, 14 Aug 2011 14:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://eikke.com/wii-head-tracking-explained-how-it-works/#comment-56004</guid>
		<description>Great post.. where are the images for the top view, front view etc... ??</description>
		<content:encoded><![CDATA[<p>Great post.. where are the images for the top view, front view etc&#8230; ??</p>
]]></content:encoded>
	</item>
</channel>
</rss>

