<?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: FreeSound Quark Update</title>
	<atom:link href="http://www.batuhanbozkurt.com/news/freesound-quark-update/feed" rel="self" type="application/rss+xml" />
	<link>http://www.batuhanbozkurt.com/news/freesound-quark-update</link>
	<description>...adding to noise...</description>
	<lastBuildDate>Tue, 15 Jun 2010 15:59:36 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chadwick Wood</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-449</link>
		<dc:creator>Chadwick Wood</dc:creator>
		<pubDate>Mon, 01 Mar 2010 16:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-449</guid>
		<description>I think maybe the change was me accidentally reverting to an older version of the quark!  Oops.  So, maybe my code change is not needed :)  Thanks for the response.  I&#039;m looking forward to making lots of crazy sound!</description>
		<content:encoded><![CDATA[<p>I think maybe the change was me accidentally reverting to an older version of the quark!  Oops.  So, maybe my code change is not needed <img src='http://www.batuhanbozkurt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Thanks for the response.  I&#8217;m looking forward to making lots of crazy sound!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Batuhan</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-448</link>
		<dc:creator>Batuhan</dc:creator>
		<pubDate>Mon, 01 Mar 2010 05:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-448</guid>
		<description>Hi Chadwick,

Thanks for your kind comments and for looking into this! I remember this being reported before and I vaguely remember fixing it. :) 

Now I&#039;ve tried from my copy and things seem to work fine. When did you download the Quark? Maybe it was before the update?

Do the responses change after using it for sometime or did they change all together suddenly (probably because of a change in freesound)?

In anyway, using regexp is better, it&#039;s just that I&#039;m not really good at it. :) I&#039;ll update the Quark with your code as this is a more error proof approach for the long run. I suspect there is a better way to get the redirect URL other than parsing the response string but couldn&#039;t find one.

Anyway, thanks to you too!</description>
		<content:encoded><![CDATA[<p>Hi Chadwick,</p>
<p>Thanks for your kind comments and for looking into this! I remember this being reported before and I vaguely remember fixing it. <img src='http://www.batuhanbozkurt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Now I&#8217;ve tried from my copy and things seem to work fine. When did you download the Quark? Maybe it was before the update?</p>
<p>Do the responses change after using it for sometime or did they change all together suddenly (probably because of a change in freesound)?</p>
<p>In anyway, using regexp is better, it&#8217;s just that I&#8217;m not really good at it. <img src='http://www.batuhanbozkurt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll update the Quark with your code as this is a more error proof approach for the long run. I suspect there is a better way to get the redirect URL other than parsing the response string but couldn&#8217;t find one.</p>
<p>Anyway, thanks to you too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chadwick Wood</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-447</link>
		<dc:creator>Chadwick Wood</dc:creator>
		<pubDate>Mon, 01 Mar 2010 04:51:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-447</guid>
		<description>Hi Batuhan,

Thanks so much for this great addition to SuperCollider!  I downloaded it today and started using it, but after a couple of hours it stopped working.  I dug in to find out why, and it looks like the responses I was getting from Freesound had changed (the &quot;Keep-Alive&quot; line was no longer there), and your code for parsing the responses to get the file download location was breaking as a result of the change.  I went in to the source and made a change that fixes the problem I was having, and is perhaps more robust, as it doesn&#039;t rely on the order of the text in the response.  Here are my changes (inside of the downloadSample method):

responseHeader = String.readNew(File(&quot;/tmp/scdlresponseheader&quot;++sampleIDBucket[argIndex]++uniqueID, &quot;r&quot;));
responseHeader = responseHeader.findRegexp(&quot;^Location: (.*?)$&quot;)[1][1];
fileName = responseHeader[responseHeader.findBackwards(&quot;/&quot;)+1..responseHeader.size-1];
downloadFunc.value;

... basically, all I&#039;m doing is not erasing the spaces and line breaks like you did, and instead using a regular expression to find the line that starts with &quot;Location: &quot;.  It seems to work fine so far, although I&#039;m not very experienced with SC, so maybe you had your reasons for your approach.  Anyway, thanks again!</description>
		<content:encoded><![CDATA[<p>Hi Batuhan,</p>
<p>Thanks so much for this great addition to SuperCollider!  I downloaded it today and started using it, but after a couple of hours it stopped working.  I dug in to find out why, and it looks like the responses I was getting from Freesound had changed (the &#8220;Keep-Alive&#8221; line was no longer there), and your code for parsing the responses to get the file download location was breaking as a result of the change.  I went in to the source and made a change that fixes the problem I was having, and is perhaps more robust, as it doesn&#8217;t rely on the order of the text in the response.  Here are my changes (inside of the downloadSample method):</p>
<p>responseHeader = String.readNew(File(&#8221;/tmp/scdlresponseheader&#8221;++sampleIDBucket[argIndex]++uniqueID, &#8220;r&#8221;));<br />
responseHeader = responseHeader.findRegexp(&#8221;^Location: (.*?)$&#8221;)[1][1];<br />
fileName = responseHeader[responseHeader.findBackwards("/")+1..responseHeader.size-1];<br />
downloadFunc.value;</p>
<p>&#8230; basically, all I&#8217;m doing is not erasing the spaces and line breaks like you did, and instead using a regular expression to find the line that starts with &#8220;Location: &#8220;.  It seems to work fine so far, although I&#8217;m not very experienced with SC, so maybe you had your reasons for your approach.  Anyway, thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reaktorplayer</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-440</link>
		<dc:creator>reaktorplayer</dc:creator>
		<pubDate>Mon, 25 Jan 2010 17:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-440</guid>
		<description>Thank you for the information.  I&#039;ve subscribed to the list and the search has helped already.  Thanks again.</description>
		<content:encoded><![CDATA[<p>Thank you for the information.  I&#8217;ve subscribed to the list and the search has helped already.  Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Batuhan</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-438</link>
		<dc:creator>Batuhan</dc:creator>
		<pubDate>Mon, 25 Jan 2010 14:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-438</guid>
		<description>Hi reaktorplayer,

If you are just startin out with SuperCollider, I suggest you subscribe to sc-users mailing list:
http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml

You can search the archives from here:
http://n2.nabble.com/New-SuperCollider-Mailing-Lists-Forums-Use-These-f2681727.html

See the Quark and Quarks help file in SuperCollider for an answer to your question. You can also run Quarks.gui in SC environment and it&#039;s more or less self explanatory from there. Feel free to ask questions if you run into problems.</description>
		<content:encoded><![CDATA[<p>Hi reaktorplayer,</p>
<p>If you are just startin out with SuperCollider, I suggest you subscribe to sc-users mailing list:<br />
<a href="http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml" rel="nofollow">http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml</a></p>
<p>You can search the archives from here:<br />
<a href="http://n2.nabble.com/New-SuperCollider-Mailing-Lists-Forums-Use-These-f2681727.html" rel="nofollow">http://n2.nabble.com/New-SuperCollider-Mailing-Lists-Forums-Use-These-f2681727.html</a></p>
<p>See the Quark and Quarks help file in SuperCollider for an answer to your question. You can also run Quarks.gui in SC environment and it&#8217;s more or less self explanatory from there. Feel free to ask questions if you run into problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reaktorplayer</title>
		<link>http://www.batuhanbozkurt.com/news/freesound-quark-update/comment-page-1#comment-434</link>
		<dc:creator>reaktorplayer</dc:creator>
		<pubDate>Sun, 24 Jan 2010 18:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.batuhanbozkurt.com/?p=396#comment-434</guid>
		<description>I&#039;m sorry, how do I &quot;Just obtain / update the FreeSound Quark in your SC environment to get it.&quot;
Thanks</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry, how do I &#8220;Just obtain / update the FreeSound Quark in your SC environment to get it.&#8221;<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
