<?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: Quick Tutorial: Twitter &amp; Processing</title>
	<atom:link href="http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing</link>
	<description>Jer Thorp &#124; There is an art to evolution...</description>
	<lastBuildDate>Wed, 18 Aug 2010 10:40:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: jbobrow</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-2039</link>
		<dc:creator>jbobrow</dc:creator>
		<pubDate>Sun, 08 Aug 2010 19:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-2039</guid>
		<description>if you check out Processing.org, that will explain everything you need to get going.  You probably didn&#039;t realize that processing is an application  to write and compile code, written in the Processing language.  Once you have the application downloaded, opening the application automatically starts a new window which is called a Sketch.  Sounds like you can handle the tougher parts :)</description>
		<content:encoded><![CDATA[<p>if you check out Processing.org, that will explain everything you need to get going.  You probably didn&#039;t realize that processing is an application  to write and compile code, written in the Processing language.  Once you have the application downloaded, opening the application automatically starts a new window which is called a Sketch.  Sounds like you can handle the tougher parts <img src='http://blog.blprnt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gef</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-2025</link>
		<dc:creator>gef</dc:creator>
		<pubDate>Wed, 04 Aug 2010 16:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-2025</guid>
		<description>Any idea how to implement the new twitter streaming api ? It use json - and I would guess it wouldn&#039;t work like this script right ? </description>
		<content:encoded><![CDATA[<p>Any idea how to implement the new twitter streaming api ? It use json &#8211; and I would guess it wouldn&#039;t work like this script right ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bheem</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-2022</link>
		<dc:creator>Bheem</dc:creator>
		<pubDate>Mon, 02 Aug 2010 08:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-2022</guid>
		<description>Thank you, this code is very helpful </description>
		<content:encoded><![CDATA[<p>Thank you, this code is very helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sebastian Harley</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1994</link>
		<dc:creator>sebastian Harley</dc:creator>
		<pubDate>Sun, 25 Jul 2010 20:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1994</guid>
		<description>I must admit I am one of the few people that do not have a face book account. I have a twitter account, but have only really started to understand how powerful it can be by reading articles like this &#8211; cheers </description>
		<content:encoded><![CDATA[<p>I must admit I am one of the few people that do not have a face book account. I have a twitter account, but have only really started to understand how powerful it can be by reading articles like this &ndash; cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: topy</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1947</link>
		<dc:creator>topy</dc:creator>
		<pubDate>Wed, 30 Jun 2010 17:57:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1947</guid>
		<description>hey nice work man, though i need ur help in posting to twitter using javascript and xml, im a novice in this and will really appreciate if u can help me out, cheers </description>
		<content:encoded><![CDATA[<p>hey nice work man, though i need ur help in posting to twitter using javascript and xml, im a novice in this and will really appreciate if u can help me out, cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skwinte</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1821</link>
		<dc:creator>skwinte</dc:creator>
		<pubDate>Sat, 01 May 2010 17:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1821</guid>
		<description>Dear Jer, when i run the sketch i get  static page with number of tweets, how would you implement self-updating tweets? 
i used ur code. Thank you! 
 
Twitter myTwitter; 
PFont fontA; 
 
void setup() { 
  size(800,600); 
  background(0); 
  smooth(); 
  fontA = loadFont(&quot;Baskerville-48.vlw&quot;); 
 
  textFont(fontA, 20); 
  textAlign(LEFT, CENTER); 
  noLoop(); 
  noStroke(); 
 
   
}; 
 
void draw() { 
   
  myTwitter = new Twitter(&quot;yourTwitterUserName&quot;, &quot;yourTwitterPassword&quot;); 
  try { 
 
    Query query = new Query(&quot;jer&quot;); 
    query.setRpp(40); 
    QueryResult result = myTwitter.search(query); 
 
    ArrayList tweets = (ArrayList) result.getTweets(); 
 
    for (int i = 0; i &lt; tweets.size(); i++) { 
      Tweet t = (Tweet) tweets.get(i); 
      String user = t.getFromUser(); 
      String msg = t.getText(); 
      Date d = t.getCreatedAt(); 
      println(&quot;Tweet by &quot; + user + &quot; at &quot; + d + &quot;: &quot; + msg); 
     // println(msg); 
      fill((127), (0), (0)); 
      colorMode(RGB,100,500,10, 255); 
      text(msg, random(500), random(500),width/2, height/2); 
      textAlign(CENTER);//posX = 100; 
      //posY = 10; 
       //text(msg,100*2 ,10+50 ); 
    }; 
 
  } 
  catch (TwitterException te) { 
    println(&quot;Couldn&#039;t connect: &quot; + te); 
  }; 
}; </description>
		<content:encoded><![CDATA[<p>Dear Jer, when i run the sketch i get  static page with number of tweets, how would you implement self-updating tweets?</p>
<p>i used ur code. Thank you!</p>
<p>Twitter myTwitter;</p>
<p>PFont fontA;</p>
<p>void setup() {</p>
<p>  size(800,600);</p>
<p>  background(0);</p>
<p>  smooth();</p>
<p>  fontA = loadFont(&#8220;Baskerville-48.vlw&#8221;);</p>
<p>  textFont(fontA, 20);</p>
<p>  textAlign(LEFT, CENTER);</p>
<p>  noLoop();</p>
<p>  noStroke();</p>
<p>};</p>
<p>void draw() {</p>
<p>  myTwitter = new Twitter(&#8220;yourTwitterUserName&#8221;, &#8220;yourTwitterPassword&#8221;);</p>
<p>  try {</p>
<p>    Query query = new Query(&#8220;jer&#8221;);</p>
<p>    query.setRpp(40);</p>
<p>    QueryResult result = myTwitter.search(query);</p>
<p>    ArrayList tweets = (ArrayList) result.getTweets();</p>
<p>    for (int i = 0; i &lt; tweets.size(); i++) {</p>
<p>      Tweet t = (Tweet) tweets.get(i);</p>
<p>      String user = t.getFromUser();</p>
<p>      String msg = t.getText();</p>
<p>      Date d = t.getCreatedAt();</p>
<p>      println(&quot;Tweet by &quot; + user + &quot; at &quot; + d + &quot;: &quot; + msg);</p>
<p>     // println(msg);</p>
<p>      fill((127), (0), (0));</p>
<p>      colorMode(RGB,100,500,10, 255);</p>
<p>      text(msg, random(500), random(500),width/2, height/2);</p>
<p>      textAlign(CENTER);//posX = 100;</p>
<p>      //posY = 10;</p>
<p>       //text(msg,100*2 ,10+50 );</p>
<p>    };</p>
<p>  }</p>
<p>  catch (TwitterException te) {</p>
<p>    println(&quot;Couldn&#39;t connect: &quot; + te);</p>
<p>  };</p>
<p>};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Faz</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1596</link>
		<dc:creator>Faz</dc:creator>
		<pubDate>Thu, 25 Feb 2010 06:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1596</guid>
		<description>Hi @davypaperboy. I am facing the same problem. Have you found a solution? 
 
My Twitter-Java application is on 1.4.2_05, and the Exception thrown is as below: 
java.lang.NoClassDefFoundError: java/net/Proxy 
at twitter4j.http.HttpClient.getConnection(HttpClient.java:409) 
at twitter4j.http.HttpClient.request(HttpClient.java:243) 
at twitter4j.http.HttpClientWrapper.request(HttpClientWrapper.java:66) 
at twitter4j.http.HttpClientWrapper.post(HttpClientWrapper.java:97) 
at twitter4j.Twitter.updateStatus(Twitter.java:428) </description>
		<content:encoded><![CDATA[<p>Hi @davypaperboy. I am facing the same problem. Have you found a solution? </p>
<p>My Twitter-Java application is on 1.4.2_05, and the Exception thrown is as below:<br />
java.lang.NoClassDefFoundError: java/net/Proxy<br />
at twitter4j.http.HttpClient.getConnection(HttpClient.java:409)<br />
at twitter4j.http.HttpClient.request(HttpClient.java:243)<br />
at twitter4j.http.HttpClientWrapper.request(HttpClientWrapper.java:66)<br />
at twitter4j.http.HttpClientWrapper.post(HttpClientWrapper.java:97)<br />
at twitter4j.Twitter.updateStatus(Twitter.java:428)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blprnt</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1437</link>
		<dc:creator>blprnt</dc:creator>
		<pubDate>Thu, 14 Jan 2010 03:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1437</guid>
		<description>Sorry for the late response. This is strange - have yo had any luck finding a fix?  </description>
		<content:encoded><![CDATA[<p>Sorry for the late response. This is strange &#8211; have yo had any luck finding a fix?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davypaperboy</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1404</link>
		<dc:creator>davypaperboy</dc:creator>
		<pubDate>Thu, 17 Dec 2009 15:06:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1404</guid>
		<description>I have tried putting in the code and installing twitter4j into processing. I&#039;m getting no error messages, but always get a Couldn&#039;t connect: twitter4j.TwitterException: connect timed out 
Is this message an internet connection problem with processing (login on browser works fine) or a problem with connecting to twitter? 
 
Can someone help please? 
 </description>
		<content:encoded><![CDATA[<p>I have tried putting in the code and installing twitter4j into processing. I&#039;m getting no error messages, but always get a Couldn&#039;t connect: twitter4j.TwitterException: connect timed out<br />
Is this message an internet connection problem with processing (login on browser works fine) or a problem with connecting to twitter? </p>
<p>Can someone help please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agent-based Generative Patterns &#124; christianmeinke.com</title>
		<link>http://blog.blprnt.com/blog/blprnt/quick-tutorial-twitter-processing/comment-page-1#comment-1399</link>
		<dc:creator>Agent-based Generative Patterns &#124; christianmeinke.com</dc:creator>
		<pubDate>Tue, 15 Dec 2009 03:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=833#comment-1399</guid>
		<description>[...] various interfaces and input formats (i.e. sound, image-analysys and various data formats &amp; sources) to create interactive structures not only producing decorative drawings, but creating generative [...]</description>
		<content:encoded><![CDATA[<p>[...] various interfaces and input formats (i.e. sound, image-analysys and various data formats &amp; sources) to create interactive structures not only producing decorative drawings, but creating generative [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
