<?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 IONCANNON</title>
	<atom:link href="http://www.ioncannon.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ioncannon.net</link>
	<description>Thoughts on Software Development and Engineering</description>
	<lastBuildDate>Thu, 05 Jan 2012 16:35:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on The Search for Timezone Maps by Jens</title>
		<link>http://www.ioncannon.net/utilities/137/the-search-for-timezone-maps/comment-page-1/#comment-228569</link>
		<dc:creator>Jens</dc:creator>
		<pubDate>Thu, 05 Jan 2012 16:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=137#comment-228569</guid>
		<description>Carson,

I am in the same boat as you are. Unfortunately the link to the USGS site is no longer any good. Do you have any idea where I can find the latest version of the data the you were able to track down?

Jens</description>
		<content:encoded><![CDATA[<p>Carson,</p>
<p>I am in the same boat as you are. Unfortunately the link to the USGS site is no longer any good. Do you have any idea where I can find the latest version of the data the you were able to track down?</p>
<p>Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone HTTP Streaming with FFMpeg and an Open Source Segmenter by startx</title>
		<link>http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/comment-page-4/#comment-228401</link>
		<dc:creator>startx</dc:creator>
		<pubDate>Wed, 04 Jan 2012 16:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=452#comment-228401</guid>
		<description>i came across the same problem, a segmentation fault when hitting the 40th segment.

interestingly m3u8 segmenter has the same problem ( at segment 50 )

any ideas whats causing that?</description>
		<content:encoded><![CDATA[<p>i came across the same problem, a segmentation fault when hitting the 40th segment.</p>
<p>interestingly m3u8 segmenter has the same problem ( at segment 50 )</p>
<p>any ideas whats causing that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone HTTP Streaming with FFMpeg and an Open Source Segmenter by Padma</title>
		<link>http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/comment-page-4/#comment-228280</link>
		<dc:creator>Padma</dc:creator>
		<pubDate>Tue, 03 Jan 2012 23:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=452#comment-228280</guid>
		<description>Hi,

Are there any tools available to parse the master index file and the alternate index files for the URLs? I am working something that requires to parse the files and downloads the segments. I am hoping that there is a tool/API available to parse the index files.

Appreciate your help.

Thanks,
Padma.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Are there any tools available to parse the master index file and the alternate index files for the URLs? I am working something that requires to parse the files and downloads the segments. I am hoping that there is a tool/API available to parse the index files.</p>
<p>Appreciate your help.</p>
<p>Thanks,<br />
Padma.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FreeRADIUS with Oracle by Nicolas Mosso</title>
		<link>http://www.ioncannon.net/system-administration/136/freeradius-with-oracle/comment-page-1/#comment-228263</link>
		<dc:creator>Nicolas Mosso</dc:creator>
		<pubDate>Tue, 03 Jan 2012 19:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=136#comment-228263</guid>
		<description>Thanks a lot for this guide.
I&#039;m also use this (http://wiki.freeradius.org/Rlm_sql_oracle) and a lot of patience, and works for me.
I&#039;m using radius 2.1.12 and oracle instant client 11.2</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this guide.<br />
I&#039;m also use this (<a href="http://wiki.freeradius.org/Rlm_sql_oracle" rel="nofollow">http://wiki.freeradius.org/Rlm_sql_oracle</a>) and a lot of patience, and works for me.<br />
I&#039;m using radius 2.1.12 and oracle instant client 11.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Example Mongrel2 Handler in Ruby by lex lapax</title>
		<link>http://www.ioncannon.net/programming/1384/example-mongrel2-handler-in-ruby/comment-page-1/#comment-227934</link>
		<dc:creator>lex lapax</dc:creator>
		<pubDate>Sun, 01 Jan 2012 06:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=1384#comment-227934</guid>
		<description>is there a reason you&#039;re using two different ZMQ contexts in the same process?

as per zmq&#039;s spec, it&#039;s supposed to be 1 ctx per os process..
the reason i&#039;m asking is: what you&#039;ve done here seems to be the only way to get it working in ruby. The thread that fires up first seems to lock up the whole vm (ruby vm).. i&#039;ve tried jruby, mri 1.9X, mri 1.8x etc..</description>
		<content:encoded><![CDATA[<p>is there a reason you&#039;re using two different ZMQ contexts in the same process?</p>
<p>as per zmq&#039;s spec, it&#039;s supposed to be 1 ctx per os process..<br />
the reason i&#039;m asking is: what you&#039;ve done here seems to be the only way to get it working in ruby. The thread that fires up first seems to lock up the whole vm (ruby vm).. i&#039;ve tried jruby, mri 1.9X, mri 1.8x etc..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Heroku Tips for the Cheap by Tim</title>
		<link>http://www.ioncannon.net/programming/842/heroku-tips-for-the-cheap/comment-page-1/#comment-227141</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 27 Dec 2011 04:01:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=842#comment-227141</guid>
		<description>Heroku now has a free cron-like addon called scheduler. It will run jobs daily, hourly or every 10 minutes. 10 minutes is granular enough for my needs. http://addons.heroku.com/scheduler</description>
		<content:encoded><![CDATA[<p>Heroku now has a free cron-like addon called scheduler. It will run jobs daily, hourly or every 10 minutes. 10 minutes is granular enough for my needs. <a href="http://addons.heroku.com/scheduler" rel="nofollow">http://addons.heroku.com/scheduler</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone HTTP Streaming with FFMpeg and an Open Source Segmenter by rdkls</title>
		<link>http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/comment-page-4/#comment-218883</link>
		<dc:creator>rdkls</dc:creator>
		<pubDate>Wed, 02 Nov 2011 02:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=452#comment-218883</guid>
		<description>Please note the svn mentioned above is quite old, and the  latest version is here https://github.com/carsonmcdonald/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2

I&#039;ve just sent Carson pull request for minor changes fixing compilation against new versions of libav, not sure how active he is with it though.
Until applied, my fixed fork is here:
https://github.com/rdkls/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2</description>
		<content:encoded><![CDATA[<p>Please note the svn mentioned above is quite old, and the  latest version is here <a href="https://github.com/carsonmcdonald/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2" rel="nofollow">https://github.com/carsonmcdonald/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2</a></p>
<p>I&#039;ve just sent Carson pull request for minor changes fixing compilation against new versions of libav, not sure how active he is with it though.<br />
Until applied, my fixed fork is here:<br />
<a href="https://github.com/rdkls/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2" rel="nofollow">https://github.com/rdkls/HTTP-Live-Video-Stream-Segmenter-and-Distributor/tree/v2</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone HTTP Streaming with FFMpeg and an Open Source Segmenter by Sandeep Suresh</title>
		<link>http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/comment-page-4/#comment-218720</link>
		<dc:creator>Sandeep Suresh</dc:creator>
		<pubDate>Mon, 31 Oct 2011 09:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=452#comment-218720</guid>
		<description>Dear Carson,
    Is there a package with FFMpeg and stream segmenter which can be compiled, linked and built for an emmedded system (ARM, MIPS, x86 etc). Currently there seems to be a lot of dependency on a number of libraries. I got a link at http://www.users.on.net/~belles/software/ffmpeg/
but this again does not contain the sources, but only libraries for a RISC architecture.
Regards
Sandeep Suresh.</description>
		<content:encoded><![CDATA[<p>Dear Carson,<br />
    Is there a package with FFMpeg and stream segmenter which can be compiled, linked and built for an emmedded system (ARM, MIPS, x86 etc). Currently there seems to be a lot of dependency on a number of libraries. I got a link at <a href="http://www.users.on.net/~belles/software/ffmpeg/" rel="nofollow">http://www.users.on.net/~belles/software/ffmpeg/</a><br />
but this again does not contain the sources, but only libraries for a RISC architecture.<br />
Regards<br />
Sandeep Suresh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating S3 URLs that expire using PHP by Robbie</title>
		<link>http://www.ioncannon.net/programming/21/creating-s3-urls-that-expire-using-php/comment-page-1/#comment-213909</link>
		<dc:creator>Robbie</dc:creator>
		<pubDate>Tue, 13 Sep 2011 22:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/uncategorized/21/creating-s3-urls-that-expire-using-php/#comment-213909</guid>
		<description>Developers who copy / paste this and try to use it as is won&#039;t work. You need to replace the &amp;&#039;s with actual &amp;, &lt; with &lt;. And FWIW, Crypt/HMAC.php is a PEAR module. You can install both from the command line without downloading anything.</description>
		<content:encoded><![CDATA[<p>Developers who copy / paste this and try to use it as is won&#039;t work. You need to replace the &amp;&#039;s with actual &amp;, &lt; with &lt;. And FWIW, Crypt/HMAC.php is a PEAR module. You can install both from the command line without downloading anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spring 3 File Upload Example by Karl Minor</title>
		<link>http://www.ioncannon.net/programming/975/spring-3-file-upload-example/comment-page-1/#comment-213589</link>
		<dc:creator>Karl Minor</dc:creator>
		<pubDate>Fri, 09 Sep 2011 16:47:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=975#comment-213589</guid>
		<description>Oops . . . previous post swallowed my markup:

                &lt;!--form:input path=&quot;multipartfile&quot; type=&quot;file&quot;/--&gt;
                &lt;input id=&quot;multipartfile&quot; name=&quot;multipartfile&quot; type=&quot;file&quot; value=&quot;&quot;/&gt;</description>
		<content:encoded><![CDATA[<p>Oops . . . previous post swallowed my markup:</p>
<p>                &lt;!&#8211;form:input path=&#034;multipartfile&#034; type=&#034;file&#034;/&#8211;&gt;<br />
                &lt;input id=&#034;multipartfile&#034; name=&#034;multipartfile&#034; type=&#034;file&#034; value=&#034;"/&gt;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.146 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-07 09:46:47 -->

