<?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: Introducing Torrent Utility, an Apollo application</title>
	<atom:link href="http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:51:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Steve</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-9811</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sun, 15 May 2011 10:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-9811</guid>
		<description>Not good enough ! I want to read the whole contents of a torrent file in human readable maner ! Why ? Some torrent file caries much info abaut files when is more than one file included ! I can view this with TCM Lister plugin but not in human readable way ! So what to use to not encode edit and losse much time to do all by the hand ?</description>
		<content:encoded><![CDATA[<p>Not good enough ! I want to read the whole contents of a torrent file in human readable maner ! Why ? Some torrent file caries much info abaut files when is more than one file included ! I can view this with TCM Lister plugin but not in human readable way ! So what to use to not encode edit and losse much time to do all by the hand ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Humbert HARDY</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-441</link>
		<dc:creator>Humbert HARDY</dc:creator>
		<pubDate>Fri, 09 Nov 2007 13:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-441</guid>
		<description>I have found a little error in ByteUtil.as, in the byteArrayToHexString function.You have forgotten to initialize the data.position before the &quot;while&quot; instruction. It is usefull if you wanna use this function in other applications.


public static function byteArrayToHexString(data:ByteArray):String{
			var oldPosition:int = data.position;
			var joinedBytes:String = &quot;&quot;;
[...]


Must be replace by:

public static function byteArrayToHexString(data:ByteArray):String
		{
			var oldPosition:int = data.position;
			data.position=0;
			var joinedBytes:String = &quot;&quot;;
[...]
Thanks for this application!!</description>
		<content:encoded><![CDATA[<p>I have found a little error in ByteUtil.as, in the byteArrayToHexString function.You have forgotten to initialize the data.position before the &#8220;while&#8221; instruction. It is usefull if you wanna use this function in other applications.</p>
<p>public static function byteArrayToHexString(data:ByteArray):String{<br />
			var oldPosition:int = data.position;<br />
			var joinedBytes:String = &#8220;&#8221;;<br />
[...]</p>
<p>Must be replace by:</p>
<p>public static function byteArrayToHexString(data:ByteArray):String<br />
		{<br />
			var oldPosition:int = data.position;<br />
			data.position=0;<br />
			var joinedBytes:String = &#8220;&#8221;;<br />
[...]<br />
Thanks for this application!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TorrentUtility AIR application now runs on beta &#187; Zeus Labs</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-440</link>
		<dc:creator>TorrentUtility AIR application now runs on beta &#187; Zeus Labs</dc:creator>
		<pubDate>Thu, 26 Jul 2007 18:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-440</guid>
		<description>[...] may remember I posted about an AIR app I built to read and create BitTorrent files a while back. I released the first version of TorrentUtility targeting the alpha version of (still [...]</description>
		<content:encoded><![CDATA[<p>[...] may remember I posted about an AIR app I built to read and create BitTorrent files a while back. I released the first version of TorrentUtility targeting the alpha version of (still [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-439</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Fri, 30 Mar 2007 18:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-439</guid>
		<description>Okay, I found the problem. I had heard that downloading AIR files doesn&#039;t always work. The problem is with Internet Explorer. I use Firefox on both PC and Mac, so I never noticed the issue.

The link truly does point to an AIR file. You can see that when you put your mouse over it, even in IE. For some strange reason, IE thinks it should actually be a ZIP file when you try to download the file. Just change the ZIP extension to AIR and it will work fine.

I&#039;ll see if I can find the fix Adobe recommends.</description>
		<content:encoded><![CDATA[<p>Okay, I found the problem. I had heard that downloading AIR files doesn&#8217;t always work. The problem is with Internet Explorer. I use Firefox on both PC and Mac, so I never noticed the issue.</p>
<p>The link truly does point to an AIR file. You can see that when you put your mouse over it, even in IE. For some strange reason, IE thinks it should actually be a ZIP file when you try to download the file. Just change the ZIP extension to AIR and it will work fine.</p>
<p>I&#8217;ll see if I can find the fix Adobe recommends.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juraj Varady</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-438</link>
		<dc:creator>Juraj Varady</dc:creator>
		<pubDate>Fri, 30 Mar 2007 18:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-438</guid>
		<description>I have downloaded right file,not source ,(AIR file),but there is no *.AIR file there.
Check &quot;AIR file&quot; link and archive it downloads pls. Thx</description>
		<content:encoded><![CDATA[<p>I have downloaded right file,not source ,(AIR file),but there is no *.AIR file there.<br />
Check &#8220;AIR file&#8221; link and archive it downloads pls. Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-437</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Fri, 30 Mar 2007 15:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-437</guid>
		<description>Juraj, the zip file only contains the &lt;a href=&quot;http://www.zeuslabs.us/download/TorrentUtility03202007.zip&quot; rel=&quot;nofollow&quot;&gt;source code&lt;/a&gt;. The &lt;a href=&quot;http://www.zeuslabs.us/download/Torrent%20Utility%200.1.air&quot; rel=&quot;nofollow&quot;&gt;AIR file&lt;/a&gt; is seperate. I have updated my post to make it more clear.</description>
		<content:encoded><![CDATA[<p>Juraj, the zip file only contains the <a href="http://www.zeuslabs.us/download/TorrentUtility03202007.zip" rel="nofollow">source code</a>. The <a href="http://www.zeuslabs.us/download/Torrent%20Utility%200.1.air" rel="nofollow">AIR file</a> is seperate. I have updated my post to make it more clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juraj Varady</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-436</link>
		<dc:creator>Juraj Varady</dc:creator>
		<pubDate>Fri, 30 Mar 2007 12:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-436</guid>
		<description>Seems that instalation AIR file is missing in downloaded zip file</description>
		<content:encoded><![CDATA[<p>Seems that instalation AIR file is missing in downloaded zip file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Tynjala</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-435</link>
		<dc:creator>Josh Tynjala</dc:creator>
		<pubDate>Wed, 21 Mar 2007 15:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-435</guid>
		<description>Thanks, Ian. I&#039;ll take a look. I think I tested that situation at one point, but maybe I&#039;m not remembering correctly.</description>
		<content:encoded><![CDATA[<p>Thanks, Ian. I&#8217;ll take a look. I think I tested that situation at one point, but maybe I&#8217;m not remembering correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Chia</title>
		<link>http://joshblog.net/2007/03/20/introducing-torrent-utility-an-apollo-application/#comment-434</link>
		<dc:creator>Ian Chia</dc:creator>
		<pubDate>Wed, 21 Mar 2007 11:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeuslabs.us/archives/129/introducing-torrent-utility-an-apollo-application/#comment-434</guid>
		<description>Very nice work. Needs a minor error check at the start - I created a new torrent using the utility by accident, but didn&#039;t populate it. Then opened the same torrent file and it hangs the Torrent Utility app - have to kill the process. Worked very nicely on &quot;normal&quot; torrents though. (-;

- Ian</description>
		<content:encoded><![CDATA[<p>Very nice work. Needs a minor error check at the start &#8211; I created a new torrent using the utility by accident, but didn&#8217;t populate it. Then opened the same torrent file and it hangs the Torrent Utility app &#8211; have to kill the process. Worked very nicely on &#8220;normal&#8221; torrents though. (-;</p>
<p>- Ian</p>
]]></content:encoded>
	</item>
</channel>
</rss>

