<?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 on: #3 Play with the Twitter Search API and JSONP</title>
	<atom:link href="http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/feed/" rel="self" type="application/rss+xml" />
	<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/</link>
	<description>Free Cappuccino Screencasts, with a cool accent</description>
	<lastBuildDate>Thu, 01 Jul 2010 18:18:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Thomas</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-20</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sun, 08 Mar 2009 14:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-20</guid>
		<description>@Alex : That&#039;s correct! Thanks a lot for the feedback. The patch is here : http://github.com/suitmymind/cappuccinocasts-episodes/commit/5e8a6e8ff5de0b232a7a0d168d64f0b6337e8676</description>
		<content:encoded><![CDATA[<p>@Alex : That&#8217;s correct! Thanks a lot for the feedback. The patch is here : <a href="http://github.com/suitmymind/cappuccinocasts-episodes/commit/5e8a6e8ff5de0b232a7a0d168d64f0b6337e8676" rel="nofollow">http://github.com/suitmymind/cappuccinocasts-episodes/commit/5e8a6e8ff5de0b232a7a0d168d64f0b6337e8676</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-19</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 08 Mar 2009 14:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-19</guid>
		<description>Thanks for this cast! It&#039;s a great intro and opens the door on many possibilities of new apps based on this one. I just found one little mistake (hopefully I&#039;m not repeating what someone else said) but on line 58-61 of AppController.j:

var userInput = prompt(&quot;Enter a search keyword&quot;);
if (prompt) { // ...

should probably be:

var userInput = prompt(&quot;Enter a search keyword&quot;);
if (userInput) { // ...

Just thought I&#039;d point it out! Otherwise if you open the input box and press cancel, it&#039;ll search for quotes (I think)</description>
		<content:encoded><![CDATA[<p>Thanks for this cast! It&#8217;s a great intro and opens the door on many possibilities of new apps based on this one. I just found one little mistake (hopefully I&#8217;m not repeating what someone else said) but on line 58-61 of AppController.j:</p>
<p>var userInput = prompt(&#8220;Enter a search keyword&#8221;);<br />
if (prompt) { // &#8230;</p>
<p>should probably be:</p>
<p>var userInput = prompt(&#8220;Enter a search keyword&#8221;);<br />
if (userInput) { // &#8230;</p>
<p>Just thought I&#8217;d point it out! Otherwise if you open the input box and press cancel, it&#8217;ll search for quotes (I think)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Screencaster &#187; Cappuccino - Desenvolvimento de &#8220;desktop class apps&#8221; para web</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-18</link>
		<dc:creator>Screencaster &#187; Cappuccino - Desenvolvimento de &#8220;desktop class apps&#8221; para web</dc:creator>
		<pubDate>Wed, 04 Mar 2009 21:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-18</guid>
		<description>[...] Por este post é só! Convido todos a aprenderem sobre este Framework, bons estudos, e não deixem de me mandar qualquer coisa que criem utilizando ele. Eu criei uma busca simples no Twitter, usando JSONP e Cappuccino, baseada num Screencast do CappuccinoCasts que vocês podem assistir aqui. [...]</description>
		<content:encoded><![CDATA[<p>[...] Por este post é só! Convido todos a aprenderem sobre este Framework, bons estudos, e não deixem de me mandar qualquer coisa que criem utilizando ele. Eu criei uma busca simples no Twitter, usando JSONP e Cappuccino, baseada num Screencast do CappuccinoCasts que vocês podem assistir aqui. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-17</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 26 Feb 2009 21:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-17</guid>
		<description>@steve, @Miles Tinsley, @Nabil, @Boris : Thanks a lot for your feedback! Appreciated!

@Boris :

1. CPString indeed derives from CPObject. CPObject is the root class for most Cappuccino classes. What I can read here (http://cappuccino.org/discuss/2008/10/08/xmlhttprequest-jsonp-cappuccino/) is that it should be a CPString. It seems logic to me because the HTTP response is a string. 

2. This is an error, I&#039;ve corrected it here : http://github.com/suitmymind/cappuccinocasts-episodes/commit/80ddb53c73462312bde3038fd8341a04c46b0f12 . Thanks for noticing this!</description>
		<content:encoded><![CDATA[<p>@steve, @Miles Tinsley, @Nabil, @Boris : Thanks a lot for your feedback! Appreciated!</p>
<p>@Boris :</p>
<p>1. CPString indeed derives from CPObject. CPObject is the root class for most Cappuccino classes. What I can read here (<a href="http://cappuccino.org/discuss/2008/10/08/xmlhttprequest-jsonp-cappuccino/" rel="nofollow">http://cappuccino.org/discuss/2008/10/08/xmlhttprequest-jsonp-cappuccino/</a>) is that it should be a CPString. It seems logic to me because the HTTP response is a string. </p>
<p>2. This is an error, I&#8217;ve corrected it here : <a href="http://github.com/suitmymind/cappuccinocasts-episodes/commit/80ddb53c73462312bde3038fd8341a04c46b0f12" rel="nofollow">http://github.com/suitmymind/cappuccinocasts-episodes/commit/80ddb53c73462312bde3038fd8341a04c46b0f12</a> . Thanks for noticing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-16</link>
		<dc:creator>Boris</dc:creator>
		<pubDate>Thu, 26 Feb 2009 19:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-16</guid>
		<description>Thanks for the great tutorial, Thomas! I have a couple of questions:

1. In connection:didReceiveData: you seem to be getting a CPString&#039;s data.results. I suppose CPString should really be a CPObject, and this works because CPString derives from CPObject. Is that correct?

2. The declaration for connection:didFailWithError: seems to be missing a colon after connection. Is this alternative syntax reliable to use?</description>
		<content:encoded><![CDATA[<p>Thanks for the great tutorial, Thomas! I have a couple of questions:</p>
<p>1. In connection:didReceiveData: you seem to be getting a CPString&#8217;s data.results. I suppose CPString should really be a CPObject, and this works because CPString derives from CPObject. Is that correct?</p>
<p>2. The declaration for connection:didFailWithError: seems to be missing a colon after connection. Is this alternative syntax reliable to use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nabil</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-15</link>
		<dc:creator>Nabil</dc:creator>
		<pubDate>Tue, 24 Feb 2009 01:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-15</guid>
		<description>I&#039;m finding these tutorials really helpful and I thought the copy/paste idea was good so that you only spend time on the new/difficult bits.

thanks again Thomas!</description>
		<content:encoded><![CDATA[<p>I&#8217;m finding these tutorials really helpful and I thought the copy/paste idea was good so that you only spend time on the new/difficult bits.</p>
<p>thanks again Thomas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miles Tinsley</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-14</link>
		<dc:creator>Miles Tinsley</dc:creator>
		<pubDate>Tue, 24 Feb 2009 00:09:20 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-14</guid>
		<description>The copy and paste idea is great. It means getting to the good bits quicker! :P

Thanks!</description>
		<content:encoded><![CDATA[<p>The copy and paste idea is great. It means getting to the good bits quicker! <img src='http://cappuccinocasts.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://cappuccinocasts.com/2009/02/23/3-play-with-the-twitter-search-api-and-jsonp/comment-page-1/#comment-13</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Tue, 24 Feb 2009 00:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://cappuccinocasts.com/?p=45#comment-13</guid>
		<description>Thanks for another informative cast. 

About the copy pasting, it was fine. imo i would suggest even more copy/pasting thus allowing you more time to explain things, eg you could have copy pasted the label string you built of the tweet and saved some seconds to then not rush through the previous copy/paste bits.

but still, no complaints, very useful, as the others!

thanks alot!</description>
		<content:encoded><![CDATA[<p>Thanks for another informative cast. </p>
<p>About the copy pasting, it was fine. imo i would suggest even more copy/pasting thus allowing you more time to explain things, eg you could have copy pasted the label string you built of the tweet and saved some seconds to then not rush through the previous copy/paste bits.</p>
<p>but still, no complaints, very useful, as the others!</p>
<p>thanks alot!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
