<?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 Neils bike page</title>
	<atom:link href="http://sub73.net/bikelog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sub73.net/bikelog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Aug 2010 16:08:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on 18000 Mile Service by Neils bike page &#187; Blog Archive &#187; EBC &#8220;Floating&#8221; front disc&#8217;s installed.</title>
		<link>http://sub73.net/bikelog/2010/18000-mile-service/comment-page-1/#comment-63</link>
		<dc:creator>Neils bike page &#187; Blog Archive &#187; EBC &#8220;Floating&#8221; front disc&#8217;s installed.</dc:creator>
		<pubDate>Sun, 29 Aug 2010 16:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=151#comment-63</guid>
		<description>[...] I was at it I discovered that not only had the system not been bled, but my calipers and pistons had not been &#8216;stripped and cleaned&#8216; as I had paid Carl [...]</description>
		<content:encoded><![CDATA[<p>[...] I was at it I discovered that not only had the system not been bled, but my calipers and pistons had not been &#8216;stripped and cleaned&#8216; as I had paid Carl [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Racetech cartridge emulators fitted by Neils bike page &#187; Blog Archive &#187; Hyperpro rear shock fitted.</title>
		<link>http://sub73.net/bikelog/2010/racetech-cartdige-emulators/comment-page-1/#comment-62</link>
		<dc:creator>Neils bike page &#187; Blog Archive &#187; Hyperpro rear shock fitted.</dc:creator>
		<pubDate>Sun, 29 Aug 2010 15:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=196#comment-62</guid>
		<description>[...] before things start getting sprightly.  Very happy with this set-up &#8211; combined with the Racetech front-end &#8211; I reckon the handling up now up there or there abouts with the big GS&#8217;s [...]</description>
		<content:encoded><![CDATA[<p>[...] before things start getting sprightly.  Very happy with this set-up &#8211; combined with the Racetech front-end &#8211; I reckon the handling up now up there or there abouts with the big GS&#8217;s [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by as-flash</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-48</link>
		<dc:creator>as-flash</dc:creator>
		<pubDate>Wed, 21 Oct 2009 09:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-48</guid>
		<description>Thank you too for example of using array.some() ;)</description>
		<content:encoded><![CDATA[<p>Thank you too for example of using array.some() <img src='http://sub73.net/bikelog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by Neil</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-47</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Wed, 21 Oct 2009 09:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-47</guid>
		<description>Haven&#039;t tested it, but I&#039;m sure you&#039;re right - thanks!

Neil</description>
		<content:encoded><![CDATA[<p>Haven&#8217;t tested it, but I&#8217;m sure you&#8217;re right &#8211; thanks!</p>
<p>Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by as-flash</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-46</link>
		<dc:creator>as-flash</dc:creator>
		<pubDate>Wed, 21 Oct 2009 09:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-46</guid>
		<description>May be below code would be more simple and clear:

var originalArray:Array = new Array(&quot;yellow&quot;, &quot;red&quot;, &quot;blue&quot;, &quot;red&quot;, &quot;yellow&quot;, &quot;green&quot;, &quot;yellow&quot;, &quot;purple&quot;, &quot;ginger&quot;, &quot;red&quot;, &quot;blue&quot;);

var dedupedArray:Array = new Array();

function ArrayTest() 
{
 for each (var colour:String in originalArray)
 {
  if (dedupedArray.indexOf(colour)===-1)
  {
   dedupedArray.push(colour);
  }
 }
 trace(&quot;dedupedArray: &quot;+dedupedArray);
}

ArrayTest();</description>
		<content:encoded><![CDATA[<p>May be below code would be more simple and clear:</p>
<p>var originalArray:Array = new Array(&#8220;yellow&#8221;, &#8220;red&#8221;, &#8220;blue&#8221;, &#8220;red&#8221;, &#8220;yellow&#8221;, &#8220;green&#8221;, &#8220;yellow&#8221;, &#8220;purple&#8221;, &#8220;ginger&#8221;, &#8220;red&#8221;, &#8220;blue&#8221;);</p>
<p>var dedupedArray:Array = new Array();</p>
<p>function ArrayTest()<br />
{<br />
 for each (var colour:String in originalArray)<br />
 {<br />
  if (dedupedArray.indexOf(colour)===-1)<br />
  {<br />
   dedupedArray.push(colour);<br />
  }<br />
 }<br />
 trace(&#8220;dedupedArray: &#8220;+dedupedArray);<br />
}</p>
<p>ArrayTest();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by Jacob</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-44</link>
		<dc:creator>Jacob</dc:creator>
		<pubDate>Fri, 18 Sep 2009 18:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-44</guid>
		<description>I can&#039;t believe you figured that out!
Nice job man. I didn&#039;t think anyone could do it!</description>
		<content:encoded><![CDATA[<p>I can&#8217;t believe you figured that out!<br />
Nice job man. I didn&#8217;t think anyone could do it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New front tyre &#8211; Bridgestone BT020 by Neil</title>
		<link>http://sub73.net/bikelog/2009/new-front-tyre-bridgestone-bt020/comment-page-1/#comment-33</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Tue, 05 May 2009 17:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=132#comment-33</guid>
		<description>Good luck with it - makes all the difference :-)</description>
		<content:encoded><![CDATA[<p>Good luck with it &#8211; makes all the difference <img src='http://sub73.net/bikelog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New front tyre &#8211; Bridgestone BT020 by alun</title>
		<link>http://sub73.net/bikelog/2009/new-front-tyre-bridgestone-bt020/comment-page-1/#comment-32</link>
		<dc:creator>alun</dc:creator>
		<pubDate>Tue, 05 May 2009 06:34:51 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=132#comment-32</guid>
		<description>Hi Neil, some great ideas and advice here especially about ways to sort the buffeting with the Tiger. I own a Tiger (and a Sprint) and have ordered a touratec screen, and shall be giving it a go.
Alun
adventurebikerider.com</description>
		<content:encoded><![CDATA[<p>Hi Neil, some great ideas and advice here especially about ways to sort the buffeting with the Tiger. I own a Tiger (and a Sprint) and have ordered a touratec screen, and shall be giving it a go.<br />
Alun<br />
adventurebikerider.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New rear tyre &#8211; old-style Tourance by Neil</title>
		<link>http://sub73.net/bikelog/2008/new-rear-tyre-old-style-tourance/comment-page-1/#comment-29</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Mon, 06 Apr 2009 16:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=128#comment-29</guid>
		<description>Thanks Tony - I&#039;ll be sure to look you up next time I&#039;m in the area.  Good luck with the Tiger :-)

Neil</description>
		<content:encoded><![CDATA[<p>Thanks Tony &#8211; I&#8217;ll be sure to look you up next time I&#8217;m in the area.  Good luck with the Tiger <img src='http://sub73.net/bikelog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Move screen out from cockpit by Stuart Clarke</title>
		<link>http://sub73.net/bikelog/2008/screen-gap/comment-page-1/#comment-28</link>
		<dc:creator>Stuart Clarke</dc:creator>
		<pubDate>Sat, 04 Apr 2009 19:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=40#comment-28</guid>
		<description>What a great idea, iv just owned my tiger for a day now and have noticed this already . will defo be giveing this a try !!!</description>
		<content:encoded><![CDATA[<p>What a great idea, iv just owned my tiger for a day now and have noticed this already . will defo be giveing this a try !!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
