<?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 blprnt.blg</title>
	<atom:link href="http://blog.blprnt.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.blprnt.com</link>
	<description>Jer Thorp &#124; There is an art to evolution...</description>
	<lastBuildDate>Fri, 08 Feb 2013 18:13:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on About by Progressing with Processing (for Ian) &#124; Human Plus Design</title>
		<link>http://blog.blprnt.com/about/comment-page-1#comment-22298</link>
		<dc:creator>Progressing with Processing (for Ian) &#124; Human Plus Design</dc:creator>
		<pubDate>Fri, 08 Feb 2013 18:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.blprnt.com/wordpress/?page_id=2#comment-22298</guid>
		<description>[...] made a New Year&#8217;s resolution to get into programming through Processing, partly inspired by Jer Thorpe&#8216;s recent talks &#8230;. (OCAD, [...]</description>
		<content:encoded><![CDATA[<p>[...] made a New Year&#8217;s resolution to get into programming through Processing, partly inspired by Jer Thorpe&#8216;s recent talks &#8230;. (OCAD, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATED: Quick Tutorial &#8211; Processing &amp; Twitter by mccoyspace</title>
		<link>http://blog.blprnt.com/blog/blprnt/updated-quick-tutorial-processing-twitter/comment-page-1#comment-22253</link>
		<dc:creator>mccoyspace</dc:creator>
		<pubDate>Thu, 07 Feb 2013 03:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=1456#comment-22253</guid>
		<description>Agreed. The new version of Twitter4j changes a bunch of stuff. Here is the middle part of the code showing the new necessary changes. (Also had to add &#039;Import java.util.Date;&#039; at the very top to get the Date line to work) 
 
 //Make the twitter object and prepare the query 
  Twitter twitter = new TwitterFactory(cb.build()).getInstance(); 
  Query query = new Query(&quot;art&quot;); 
  query.setCount(100); 
  
  //Try making the query request. 
  try { 
    QueryResult result = twitter.search(query); 
    ArrayList tweets = (ArrayList) result.getTweets(); 
  
    for (int i = 0; i &lt; tweets.size(); i++) { 
      Status t = (Status)tweets.get(i); 
      User user = t.getUser(); 
      String name = user.getName(); 
      String msg = t.getText(); 
      Date d = t.getCreatedAt(); 
      println(&quot;Tweet by &quot; + name + &quot; at &quot; + d + &quot;: &quot; + msg); 
        </description>
		<content:encoded><![CDATA[<p>Agreed. The new version of Twitter4j changes a bunch of stuff. Here is the middle part of the code showing the new necessary changes. (Also had to add &#039;Import java.util.Date;&#039; at the very top to get the Date line to work) </p>
<p> //Make the twitter object and prepare the query<br />
  Twitter twitter = new TwitterFactory(cb.build()).getInstance();<br />
  Query query = new Query(&quot;art&quot;);<br />
  query.setCount(100); </p>
<p>  //Try making the query request.<br />
  try {<br />
    QueryResult result = twitter.search(query);<br />
    ArrayList tweets = (ArrayList) result.getTweets(); </p>
<p>    for (int i = 0; i &lt; tweets.size(); i++) {<br />
      Status t = (Status)tweets.get(i);<br />
      User user = t.getUser();<br />
      String name = user.getName();<br />
      String msg = t.getText();<br />
      Date d = t.getCreatedAt();<br />
      println(&quot;Tweet by &quot; + name + &quot; at &quot; + d + &quot;: &quot; + msg); </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATED: Quick Tutorial &#8211; Processing &amp; Twitter by hugohil</title>
		<link>http://blog.blprnt.com/blog/blprnt/updated-quick-tutorial-processing-twitter/comment-page-1#comment-22134</link>
		<dc:creator>hugohil</dc:creator>
		<pubDate>Fri, 01 Feb 2013 17:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=1456#comment-22134</guid>
		<description>Thank you so much ! 
I just had to do some research on the new version of twitter4j (did this on the 3.0.3 with Processing 2.0b.7). Some classes or method changed a bit, for those I had to deal with in this tutorial (but I&#039;m sure many others had too) I found that: 
- Tweet became Status. 
- Rpp() became count(). 
- getFromUser() became getUser() so you need to add a line which get the name of you user with getName() like this: 
User u=(User) t.getUser(); 
String user=u.getName(); 
 
I hope I&#039;m not reposting, and I hope this helped someone because I&#039;m a noob and it&#039;s my very first help comment. 
Thanks again, and excuse my english i&#039;m french. 
 
H. </description>
		<content:encoded><![CDATA[<p>Thank you so much !<br />
I just had to do some research on the new version of twitter4j (did this on the 3.0.3 with Processing 2.0b.7). Some classes or method changed a bit, for those I had to deal with in this tutorial (but I&#039;m sure many others had too) I found that:<br />
- Tweet became Status.<br />
- Rpp() became count().<br />
- getFromUser() became getUser() so you need to add a line which get the name of you user with getName() like this:<br />
User u=(User) t.getUser();<br />
String user=u.getName(); </p>
<p>I hope I&#039;m not reposting, and I hope this helped someone because I&#039;m a noob and it&#039;s my very first help comment.<br />
Thanks again, and excuse my english i&#039;m french. </p>
<p>H. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATED: Quick Tutorial &#8211; Processing &amp; Twitter by @lisawilliams</title>
		<link>http://blog.blprnt.com/blog/blprnt/updated-quick-tutorial-processing-twitter/comment-page-1#comment-21952</link>
		<dc:creator>@lisawilliams</dc:creator>
		<pubDate>Mon, 28 Jan 2013 04:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=1456#comment-21952</guid>
		<description>Also, it&#039;s been awhile since this tutorial was written, so Twitter4j has gone through a few versions.  I fiddled with the recent versions of Twitter4j and found them pretty complicated (it&#039;s huge).  If you just want the .jar file listed above, you can find it here: &lt;a href=&quot;http://grepcode.com/snapshot/repo1.maven.org/maven2/org.twitter4j/twitter4j-core/2.2.5&quot; rel=&quot;nofollow&quot;&gt;http://grepcode.com/snapshot/repo1.maven.org/mave...&lt;/a&gt;   
 
I dragged &amp; dropped that file onto the Processing sketch window and it worked fine.   </description>
		<content:encoded><![CDATA[<p>Also, it&#039;s been awhile since this tutorial was written, so Twitter4j has gone through a few versions.  I fiddled with the recent versions of Twitter4j and found them pretty complicated (it&#039;s huge).  If you just want the .jar file listed above, you can find it here: <a href="http://grepcode.com/snapshot/repo1.maven.org/maven2/org.twitter4j/twitter4j-core/2.2.5" rel="nofollow"></a><a href="http://grepcode.com/snapshot/repo1.maven.org/mave" rel="nofollow">http://grepcode.com/snapshot/repo1.maven.org/mave</a>&#8230;   </p>
<p>I dragged &amp; dropped that file onto the Processing sketch window and it worked fine.   </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATED: Quick Tutorial &#8211; Processing &amp; Twitter by @lisawilliams</title>
		<link>http://blog.blprnt.com/blog/blprnt/updated-quick-tutorial-processing-twitter/comment-page-1#comment-21951</link>
		<dc:creator>@lisawilliams</dc:creator>
		<pubDate>Mon, 28 Jan 2013 04:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=1456#comment-21951</guid>
		<description>I tried this and got an error: &quot;Cannot find a type or class named &#039;Date.&#039;&quot;   
 
I was able to fix it by adding one line:  import java.util.*;    
 
Apparently newer versions of Processing only use &quot;official&quot; Java libraries.  In any case, after adding this the tutorial works like a charm! </description>
		<content:encoded><![CDATA[<p>I tried this and got an error: &quot;Cannot find a type or class named &#039;Date.&#039;&quot;   </p>
<p>I was able to fix it by adding one line:  import java.util.*;    </p>
<p>Apparently newer versions of Processing only use &quot;official&quot; Java libraries.  In any case, after adding this the tutorial works like a charm! </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UPDATED: Quick Tutorial &#8211; Processing &amp; Twitter by hyottt</title>
		<link>http://blog.blprnt.com/blog/blprnt/updated-quick-tutorial-processing-twitter/comment-page-1#comment-21799</link>
		<dc:creator>hyottt</dc:creator>
		<pubDate>Thu, 24 Jan 2013 10:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=1456#comment-21799</guid>
		<description>i have succeeded using twitter API, however, i do not know how to collect tweets from specific time(which i purposely setup) 
i used  
query.setSince(&quot;2013-01-01&quot;) 
 
but the result still gives me tweets from today.. 
can anyone fix this? 
 
also, does anyone know the limit of amout of tweets i can get from API?  
i have read API limiting ..but i am still confused. ..  
is the limit based on only the amount? or the time? or both? 
can i still collect tweets from past? 
 
help plz </description>
		<content:encoded><![CDATA[<p>i have succeeded using twitter API, however, i do not know how to collect tweets from specific time(which i purposely setup)<br />
i used<br />
query.setSince(&quot;2013-01-01&quot;) </p>
<p>but the result still gives me tweets from today..<br />
can anyone fix this? </p>
<p>also, does anyone know the limit of amout of tweets i can get from API?<br />
i have read API limiting ..but i am still confused. ..<br />
is the limit based on only the amount? or the time? or both?<br />
can i still collect tweets from past? </p>
<p>help plz </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multi-faceted Searching with the NYTimes APIs by Kamran</title>
		<link>http://blog.blprnt.com/blog/blprnt/multi-faceted-searching-with-the-nytimes-apis/comment-page-1#comment-21587</link>
		<dc:creator>Kamran</dc:creator>
		<pubDate>Sun, 20 Jan 2013 21:46:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=635#comment-21587</guid>
		<description>It was my mistake. Problem solved. Many thanks for your wonderful work. </description>
		<content:encoded><![CDATA[<p>It was my mistake. Problem solved. Many thanks for your wonderful work. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multi-faceted Searching with the NYTimes APIs by Kamran</title>
		<link>http://blog.blprnt.com/blog/blprnt/multi-faceted-searching-with-the-nytimes-apis/comment-page-1#comment-21560</link>
		<dc:creator>Kamran</dc:creator>
		<pubDate>Sun, 20 Jan 2013 16:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=635#comment-21560</guid>
		<description>When using these classes, I am just getting a runtime error: &quot; -- unexpected character &#039;&#039; --&quot; and I can&#039;t find whee that comes from. What am I ding wrong?</description>
		<content:encoded><![CDATA[<p>When using these classes, I am just getting a runtime error: &quot; &#8212; unexpected character &#039;&#039; &#8211;&quot; and I can&#039;t find whee that comes from. What am I ding wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Processing, JSON &amp; The New York Times by Genevieve</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-json-the-new-york-times/comment-page-1#comment-21351</link>
		<dc:creator>Genevieve</dc:creator>
		<pubDate>Mon, 14 Jan 2013 18:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=624#comment-21351</guid>
		<description>For anyone getting the Null Pointer Exception at that line, try changing the code in the url: 
 
It works for me when formatted like this: 
String url = baseURL + &quot;?query=&quot; + word + &quot;&amp;publication_year:[&quot; + yr + &quot;]publication_month:[&quot; + m + &quot;]&amp;fields=+&amp;facets=&quot; + facetString + &quot;&amp;api-key=&quot; + apiKey; </description>
		<content:encoded><![CDATA[<p>For anyone getting the Null Pointer Exception at that line, try changing the code in the url: </p>
<p>It works for me when formatted like this:<br />
String url = baseURL + &quot;?query=&quot; + word + &quot;&amp;publication_year:[&quot; + yr + &quot;]publication_month:[&quot; + m + &quot;]&amp;fields=+&amp;facets=&quot; + facetString + &quot;&amp;api-key=&quot; + apiKey; </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Open Science, H1N1, Processing, and the Google Spreadsheet API by kyle mckinley</title>
		<link>http://blog.blprnt.com/blog/blprnt/open-science-h1n1-processing-and-the-google-spreadsheet-api/comment-page-1#comment-21280</link>
		<dc:creator>kyle mckinley</dc:creator>
		<pubDate>Fri, 11 Jan 2013 00:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blprnt.com/?p=783#comment-21280</guid>
		<description>hi, 
I love your stuff. I&#039;m trying to create some fairly simple concept-map type graphs that are populated with &quot;data&quot; (just text and urls) pulled from a collectively edited google spreadsheet. I think that I could work it out with some help from this example, but I&#039;m wondering how much you think has changed with processing.js, and, I guess, whether you know of any other simple solutions off the top of your head. 
 
thanks for your time and all your generosity! 
-kyle </description>
		<content:encoded><![CDATA[<p>hi,<br />
I love your stuff. I&#039;m trying to create some fairly simple concept-map type graphs that are populated with &quot;data&quot; (just text and urls) pulled from a collectively edited google spreadsheet. I think that I could work it out with some help from this example, but I&#039;m wondering how much you think has changed with processing.js, and, I guess, whether you know of any other simple solutions off the top of your head. </p>
<p>thanks for your time and all your generosity!<br />
-kyle </p>
]]></content:encoded>
	</item>
</channel>
</rss>
