<?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>Mon, 12 Dec 2011 18:11:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by Jan Jackque</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-166</link>
		<dc:creator>Jan Jackque</dc:creator>
		<pubDate>Mon, 12 Dec 2011 18:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-166</guid>
		<description>I have found the solution on how to find duplicates in array that to my mind is simplier:

 private function hasDuplicates(arr:Array):Boolean{
02	 
03	  var x:uint;
04	  var y:uint;
05	 
06	            for (x = 0; x &lt; arr.length ; x++){
07	 
08	                for (y = x + 1; y &lt; arr.length; y++){
09	 
10	                        if (arr[x] === arr[y]){
11	                            return true;
12	                        }
13	 
14	                }
15	            }
16	            return false;
17	    }


  Need to give a credit to author, i  found it here:

 http://myprogrammingblog.com/2011/12/12/actionscript-3-0-how-to-find-duplicate-array-elements-solved/</description>
		<content:encoded><![CDATA[<p>I have found the solution on how to find duplicates in array that to my mind is simplier:</p>
<p> private function hasDuplicates(arr:Array):Boolean{<br />
02<br />
03	  var x:uint;<br />
04	  var y:uint;<br />
05<br />
06	            for (x = 0; x &lt; arr.length ; x++){<br />
07<br />
08	                for (y = x + 1; y &lt; arr.length; y++){<br />
09<br />
10	                        if (arr[x] === arr[y]){<br />
11	                            return true;<br />
12	                        }<br />
13<br />
14	                }<br />
15	            }<br />
16	            return false;<br />
17	    }</p>
<p>  Need to give a credit to author, i  found it here:</p>
<p> <a href="http://myprogrammingblog.com/2011/12/12/actionscript-3-0-how-to-find-duplicate-array-elements-solved/" rel="nofollow">http://myprogrammingblog.com/2011/12/12/actionscript-3-0-how-to-find-duplicate-array-elements-solved/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OT: Remove duplicate values in an array, AS3 by AS3 script</title>
		<link>http://sub73.net/bikelog/2008/ot-how-to-remove-duplicate-values-in-an-array-actionscript-3/comment-page-1/#comment-162</link>
		<dc:creator>AS3 script</dc:creator>
		<pubDate>Fri, 29 Jul 2011 13:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=72#comment-162</guid>
		<description>Hi, nice code.. like it :-)

actually I am trying to do same but little bit diff... I want unique value from array elements. I don&#039;t want to repeat those values having same starting character. 

var mainArr:Array = [&quot;cat&quot;,&quot;dog&quot;,&quot;chocolate&quot;,&quot;fire&quot;,&quot;food&quot;,&quot;house&quot;,&quot;market&quot;,&quot;butter&quot;,
								 &quot;fruit&quot;,&quot;ham&quot;,&quot;computer&quot;,&quot;door&quot;,&quot;hen&quot;]
// c,d,f,m,b,h = 6
removeDuplicate(mainArr);

function removeDuplicate(arr:Array) : void{
    var i:int;
    var j: int;
    for (i = 0; i &lt; arr.length; i++){
        for (j = i + 1; j &lt; arr.length; j++){
		if (arr[i].substr(0,1) == arr[j].substr(0,1)){
				arr.splice(j,1);
            }
        }
    }
	trace(arr)
	trace(arr.length)
}</description>
		<content:encoded><![CDATA[<p>Hi, nice code.. like it <img src='http://sub73.net/bikelog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>actually I am trying to do same but little bit diff&#8230; I want unique value from array elements. I don&#8217;t want to repeat those values having same starting character. </p>
<p>var mainArr:Array = ["cat","dog","chocolate","fire","food","house","market","butter",<br />
								 "fruit","ham","computer","door","hen"]<br />
// c,d,f,m,b,h = 6<br />
removeDuplicate(mainArr);</p>
<p>function removeDuplicate(arr:Array) : void{<br />
    var i:int;<br />
    var j: int;<br />
    for (i = 0; i &lt; arr.length; i++){<br />
        for (j = i + 1; j &lt; arr.length; j++){<br />
		if (arr[i].substr(0,1) == arr[j].substr(0,1)){<br />
				arr.splice(j,1);<br />
            }<br />
        }<br />
    }<br />
	trace(arr)<br />
	trace(arr.length)<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ZXR 636 Front master cylinder swap by Neil</title>
		<link>http://sub73.net/bikelog/2010/zxr-636-front-master-cylinder-swap/comment-page-1/#comment-157</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Tue, 31 May 2011 20:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=225#comment-157</guid>
		<description>Hi there, yes it certainly looks very similar to the part I used - he doesn&#039;t say if it&#039;s a Nissin or not but it looks like it, I *think* I can see the logo embossed.  Remember you&#039;ll need to get a separate mirror bracket as that one doesn&#039;t have one built into it.  Apart from that it&#039;s fairly simple job to swap them over.  

Good luck and enjoy the Tiger!

Neil</description>
		<content:encoded><![CDATA[<p>Hi there, yes it certainly looks very similar to the part I used &#8211; he doesn&#8217;t say if it&#8217;s a Nissin or not but it looks like it, I *think* I can see the logo embossed.  Remember you&#8217;ll need to get a separate mirror bracket as that one doesn&#8217;t have one built into it.  Apart from that it&#8217;s fairly simple job to swap them over.  </p>
<p>Good luck and enjoy the Tiger!</p>
<p>Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ZXR 636 Front master cylinder swap by John Fairely</title>
		<link>http://sub73.net/bikelog/2010/zxr-636-front-master-cylinder-swap/comment-page-1/#comment-156</link>
		<dc:creator>John Fairely</dc:creator>
		<pubDate>Tue, 31 May 2011 19:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=225#comment-156</guid>
		<description>Hi Neil,
Saw this on ebay and would like your opinion on it for my own Tiger 955i,I have emailed the seller for details on compatibility and awaiting a reply.
KAWASAKI ZX636 A1P 2002 FRONT BRAKE MASTER CYLINDER  sold by Bernie&#039;s Bikes.
After reading your site and Adrian Malloy&#039;s site I thought it time to upgrade the Tiger.
The info you both put up on the sites has been a great help to me as I am new to the Tiger and back to two wheels after 30 years absence.

Many Thanks
John</description>
		<content:encoded><![CDATA[<p>Hi Neil,<br />
Saw this on ebay and would like your opinion on it for my own Tiger 955i,I have emailed the seller for details on compatibility and awaiting a reply.<br />
KAWASAKI ZX636 A1P 2002 FRONT BRAKE MASTER CYLINDER  sold by Bernie&#8217;s Bikes.<br />
After reading your site and Adrian Malloy&#8217;s site I thought it time to upgrade the Tiger.<br />
The info you both put up on the sites has been a great help to me as I am new to the Tiger and back to two wheels after 30 years absence.</p>
<p>Many Thanks<br />
John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tiger mods #1 by Garry Krasnansky</title>
		<link>http://sub73.net/bikelog/2008/test-post/comment-page-1/#comment-154</link>
		<dc:creator>Garry Krasnansky</dc:creator>
		<pubDate>Mon, 09 May 2011 11:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=26#comment-154</guid>
		<description>super tolle seite</description>
		<content:encoded><![CDATA[<p>super tolle seite</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New front Tourance EXP by Howard Millichap (blacktiger)</title>
		<link>http://sub73.net/bikelog/2010/new-front-tourance-exp/comment-page-1/#comment-150</link>
		<dc:creator>Howard Millichap (blacktiger)</dc:creator>
		<pubDate>Fri, 01 Apr 2011 09:37:30 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=241#comment-150</guid>
		<description>The most I&#039;ve had out of a rear tyre was around 8K on Metz Tourances. 12K from the fronts. They were OE fitment on my 2002 Tiger and I ran them until 48K when I decided to try something different. I&#039;d be interested to hear what you get from the EXP version because I&#039;ve read that they wear quicker than the old version.</description>
		<content:encoded><![CDATA[<p>The most I&#8217;ve had out of a rear tyre was around 8K on Metz Tourances. 12K from the fronts. They were OE fitment on my 2002 Tiger and I ran them until 48K when I decided to try something different. I&#8217;d be interested to hear what you get from the EXP version because I&#8217;ve read that they wear quicker than the old version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 24,000 mile service by Howard Millichap</title>
		<link>http://sub73.net/bikelog/2010/24000-mile-service/comment-page-1/#comment-149</link>
		<dc:creator>Howard Millichap</dc:creator>
		<pubDate>Fri, 01 Apr 2011 09:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://sub73.net/bikelog/?p=263#comment-149</guid>
		<description>Don&#039;t worry about the K&amp;N filter. I&#039;ve run one on my Tiger955 for 35000 miles and it&#039;s fine.
Not heard of that spring going in the clutch housing before and I&#039;ve been around Triumphs since 2000. I&#039;d put it down as a &quot;one off&quot;.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t worry about the K&amp;N filter. I&#8217;ve run one on my Tiger955 for 35000 miles and it&#8217;s fine.<br />
Not heard of that spring going in the clutch housing before and I&#8217;ve been around Triumphs since 2000. I&#8217;d put it down as a &#8220;one off&#8221;.</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

