<?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 Two Ideas</title>
	<atom:link href="http://www.twoideas.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.twoideas.org</link>
	<description>When I think something, sometimes I write it up.</description>
	<lastBuildDate>Tue, 09 Apr 2013 16:47:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Vacation Advice for Playa del Carmen and Cozumel? by Alex</title>
		<link>http://www.twoideas.org/2010/01/vacation-advice-for-playa-del-carmen-and-cozumel/comment-page-1/#comment-8284</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 09 Apr 2013 16:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/2010/01/vacation-advice-for-playa-del-carmen-and-cozumel/#comment-8284</guid>
		<description><![CDATA[What did you end up doing? I was reading this article (http://playascubaclub.com/top-5-reasons-pick-playa-del-carmen-cozumel/) and I&#039;m learning towards Playa since I want to do more than just dive.]]></description>
		<content:encoded><![CDATA[<p>What did you end up doing? I was reading this article (<a href="http://playascubaclub.com/top-5-reasons-pick-playa-del-carmen-cozumel/" rel="nofollow">http://playascubaclub.com/top-5-reasons-pick-playa-del-carmen-cozumel/</a>) and I&#8217;m learning towards Playa since I want to do more than just dive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPad interface quirk: scrolling frames lack scrollbars by Cacaito</title>
		<link>http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/comment-page-1/#comment-8214</link>
		<dc:creator>Cacaito</dc:creator>
		<pubDate>Fri, 01 Mar 2013 16:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/#comment-8214</guid>
		<description><![CDATA[ATHY is right OPERA is the solution it will works for anyone... thanks Athy]]></description>
		<content:encoded><![CDATA[<p>ATHY is right OPERA is the solution it will works for anyone&#8230; thanks Athy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Today&#8217;s Python funny: C style increment operator fails silently by Jon</title>
		<link>http://www.twoideas.org/2012/02/todays-python-funny-c-style-increment-operator-fails-silently/comment-page-1/#comment-8190</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 13 Feb 2013 03:52:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=454#comment-8190</guid>
		<description><![CDATA[Paul, &quot;+= n&quot; or &quot;-= n&quot; aren&#039;t increment (go to the next item) or decrement (go to the previous item). If you&#039;re dealing with integers, you can increment and decrement because you know what those next values are (plus or minus 1). But for anything other than an integer, += and -= don&#039;t really count as incrementing and decrementing (though they&#039;re useful).]]></description>
		<content:encoded><![CDATA[<p>Paul, &#8220;+= n&#8221; or &#8220;-= n&#8221; aren&#8217;t increment (go to the next item) or decrement (go to the previous item). If you&#8217;re dealing with integers, you can increment and decrement because you know what those next values are (plus or minus 1). But for anything other than an integer, += and -= don&#8217;t really count as incrementing and decrementing (though they&#8217;re useful).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Today&#8217;s Python funny: C style increment operator fails silently by Paul</title>
		<link>http://www.twoideas.org/2012/02/todays-python-funny-c-style-increment-operator-fails-silently/comment-page-1/#comment-8188</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 12 Feb 2013 10:32:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=454#comment-8188</guid>
		<description><![CDATA[&quot;Python doesn&#039;t support any increment operator&quot;

It has both an increment and decrement operator : 

variable += n
variable -= n]]></description>
		<content:encoded><![CDATA[<p>&#8220;Python doesn&#8217;t support any increment operator&#8221;</p>
<p>It has both an increment and decrement operator : </p>
<p>variable += n<br />
variable -= n</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Today&#8217;s Python funny: C style increment operator fails silently by Scanner</title>
		<link>http://www.twoideas.org/2012/02/todays-python-funny-c-style-increment-operator-fails-silently/comment-page-1/#comment-8176</link>
		<dc:creator>Scanner</dc:creator>
		<pubDate>Thu, 31 Jan 2013 09:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=454#comment-8176</guid>
		<description><![CDATA[this increment thing for python is fucked up.
any function to do that ?
python has a range() but no relating how with ++
tried:
++n , n+=1, n++, n+, +n, etc...
error,error... UnboundLocalError
i dont want to mess with java c++ and other bullshit stuff.]]></description>
		<content:encoded><![CDATA[<p>this increment thing for python is fucked up.<br />
any function to do that ?<br />
python has a range() but no relating how with ++<br />
tried:<br />
++n , n+=1, n++, n+, +n, etc&#8230;<br />
error,error&#8230; UnboundLocalError<br />
i dont want to mess with java c++ and other bullshit stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPad interface quirk: scrolling frames lack scrollbars by Athy</title>
		<link>http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/comment-page-1/#comment-8171</link>
		<dc:creator>Athy</dc:creator>
		<pubDate>Mon, 28 Jan 2013 12:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/#comment-8171</guid>
		<description><![CDATA[I have had this same problem for a long time and have finally found a working solution. 

Opera browser is free and instead of making the PDF imbedded, it puts a link which you can click to open the full document. Another option, it seems to work fine in browsers that support flash, they cost a few $ but its useful to have.]]></description>
		<content:encoded><![CDATA[<p>I have had this same problem for a long time and have finally found a working solution. </p>
<p>Opera browser is free and instead of making the PDF imbedded, it puts a link which you can click to open the full document. Another option, it seems to work fine in browsers that support flash, they cost a few $ but its useful to have.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;Unix Beards&#8221; part of a distinguished tradition by Enterprise Efficiency - Aaron Weiss - Rudolph the Red-Nosed Logisitics Specialist</title>
		<link>http://www.twoideas.org/2009/07/unix-beards/comment-page-1/#comment-8158</link>
		<dc:creator>Enterprise Efficiency - Aaron Weiss - Rudolph the Red-Nosed Logisitics Specialist</dc:creator>
		<pubDate>Fri, 21 Dec 2012 17:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=235#comment-8158</guid>
		<description><![CDATA[[...] himself, with his long scruffy beard and generous belly, is obviously a Unix guy. An early adopter of the open-source philosophy, Santa [...]]]></description>
		<content:encoded><![CDATA[<p>[...] himself, with his long scruffy beard and generous belly, is obviously a Unix guy. An early adopter of the open-source philosophy, Santa [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Early Thanksgiving by quasilaur</title>
		<link>http://www.twoideas.org/2012/11/early-thanksgiving/comment-page-1/#comment-7888</link>
		<dc:creator>quasilaur</dc:creator>
		<pubDate>Wed, 14 Nov 2012 17:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=473#comment-7888</guid>
		<description><![CDATA[RT @disappearinjon: Early Thanksgiving: I&#039;m thankful to live in a country where, when my 11 month old son is vomiting, I can walk to t.. ...]]></description>
		<content:encoded><![CDATA[<p>RT @disappearinjon: Early Thanksgiving: I&#8217;m thankful to live in a country where, when my 11 month old son is vomiting, I can walk to t.. &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Protect the Giant Pacific Octopus by quasilaur</title>
		<link>http://www.twoideas.org/2012/11/protect-the-giant-pacific-octopus/comment-page-1/#comment-7831</link>
		<dc:creator>quasilaur</dc:creator>
		<pubDate>Mon, 05 Nov 2012 21:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=471#comment-7831</guid>
		<description><![CDATA[RT @disappearinjon: Protect the Giant Pacific Octopus: http://t.co/ckqSborb]]></description>
		<content:encoded><![CDATA[<p>RT @disappearinjon: Protect the Giant Pacific Octopus: <a href="http://t.co/ckqSborb" rel="nofollow">http://t.co/ckqSborb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Protect the Giant Pacific Octopus by punctuated</title>
		<link>http://www.twoideas.org/2012/11/protect-the-giant-pacific-octopus/comment-page-1/#comment-7830</link>
		<dc:creator>punctuated</dc:creator>
		<pubDate>Mon, 05 Nov 2012 20:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/?p=471#comment-7830</guid>
		<description><![CDATA[RT @disappearinjon: Protect the Giant Pacific Octopus: http://t.co/ckqSborb]]></description>
		<content:encoded><![CDATA[<p>RT @disappearinjon: Protect the Giant Pacific Octopus: <a href="http://t.co/ckqSborb" rel="nofollow">http://t.co/ckqSborb</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPad interface quirk: scrolling frames lack scrollbars by Innovative participatory conference session: a case study using online tools &#124; Conferences That Work</title>
		<link>http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/comment-page-1/#comment-7813</link>
		<dc:creator>Innovative participatory conference session: a case study using online tools &#124; Conferences That Work</dc:creator>
		<pubDate>Thu, 18 Oct 2012 11:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.twoideas.org/2010/04/ipad-interface-quirk-scrolling-frames-lack-scrollbars/#comment-7813</guid>
		<description><![CDATA[[...] A number of people commented early on that they couldn&#8217;t use their iPads effectively for the exercise. We needed multiple windows open to be able to work efficiently, and the Cover It Live transcript wouldn&#8217;t scroll in Safari on the iPad (though there appears to be a work-around). [...]]]></description>
		<content:encoded><![CDATA[<p>[...] A number of people commented early on that they couldn&#8217;t use their iPads effectively for the exercise. We needed multiple windows open to be able to work efficiently, and the Cover It Live transcript wouldn&#8217;t scroll in Safari on the iPad (though there appears to be a work-around). [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
