<?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 NickBloor.co.uk</title>
	<atom:link href="http://www.nickbloor.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickbloor.co.uk</link>
	<description>Experiment, learn, progress...</description>
	<lastBuildDate>Tue, 10 Jan 2012 10:01:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Shellcode Analysis by Channon Powell</title>
		<link>http://www.nickbloor.co.uk/2012/01/shellcode-analysis/#comment-419</link>
		<dc:creator>Channon Powell</dc:creator>
		<pubDate>Tue, 10 Jan 2012 10:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/?p=204#comment-419</guid>
		<description>Great write up, thanks. Going to have to learn how to drive gdb and this is a good start for me. :)</description>
		<content:encoded><![CDATA[<p>Great write up, thanks. Going to have to learn how to drive gdb and this is a good start for me. <img src='http://www.nickbloor.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BCS Programming Contest 2009 &#8211; Connect 4 AI by Eniola</title>
		<link>http://www.nickbloor.co.uk/portfolio/bcs-contest-2009-connect-4-ai/#comment-397</link>
		<dc:creator>Eniola</dc:creator>
		<pubDate>Sun, 13 Nov 2011 23:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/#comment-397</guid>
		<description>Nick, I am in the process of modifying your code so that 2 people can play it. I have a couple of questions:
i. How does the code know to loop back to the begining if the game isn&#039;t won. After the second AI move that is?

ii. Do I have to use seperate mouseclick events for both players?

Regards.</description>
		<content:encoded><![CDATA[<p>Nick, I am in the process of modifying your code so that 2 people can play it. I have a couple of questions:<br />
i. How does the code know to loop back to the begining if the game isn&#8217;t won. After the second AI move that is?</p>
<p>ii. Do I have to use seperate mouseclick events for both players?</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Inject jQuery into any web page by Nick Bloor</title>
		<link>http://www.nickbloor.co.uk/2011/02/inject-jquery-into-any-web-page/#comment-264</link>
		<dc:creator>Nick Bloor</dc:creator>
		<pubDate>Wed, 17 Aug 2011 11:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/?p=66#comment-264</guid>
		<description>Ah I didn&#039;t realise using &#039;1&#039; retrieved the latest version, good thinking on the if statement too. I&#039;ve updated the bookmarklet in the post, thanks!</description>
		<content:encoded><![CDATA[<p>Ah I didn&#8217;t realise using &#8217;1&#8242; retrieved the latest version, good thinking on the if statement too. I&#8217;ve updated the bookmarklet in the post, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Inject jQuery into any web page by Jason</title>
		<link>http://www.nickbloor.co.uk/2011/02/inject-jquery-into-any-web-page/#comment-260</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 14 Aug 2011 13:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/?p=66#comment-260</guid>
		<description>No need to inject it more than once. I also am using the protocol relative url.  And I used the &quot;1&quot; to get the latest version of jQuery from Google&#039;s CDN.
&lt;code&gt;
javascript:void((function(){if(typeof jQuery === &#039;undefined&#039;){var s=document.createElement(&#039;script&#039;);s.setAttribute(&#039;src&#039;,&#039;//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#039;);document.body.appendChild(s);}})());
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>No need to inject it more than once. I also am using the protocol relative url.  And I used the &#8220;1&#8243; to get the latest version of jQuery from Google&#8217;s CDN.<br />
<code><br />
javascript:void((function(){if(typeof jQuery === 'undefined'){var s=document.createElement('script');s.setAttribute('src','//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');document.body.appendChild(s);}})());<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Play Connect 4 Against SimpleBloor by Nick Bloor</title>
		<link>http://www.nickbloor.co.uk/portfolio/bcs-contest-2009-connect-4-ai/play-connect-4-against-simplebloor/#comment-107</link>
		<dc:creator>Nick Bloor</dc:creator>
		<pubDate>Wed, 25 May 2011 21:45:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/#comment-107</guid>
		<description>Haha well done - now try creating an AI that beats mine without using recursive search! I created the AI to enter into a competition where I had the restriction of being unable to track game/move history or use recursive search/evaluation methods. My AI placed first in this branch of the competition. The organisers of the competition believed my AI could have beaten the recursive entries too if I had of developed it into a recursive player - something I&#039;d like to do but I don&#039;t have the time at the moment!</description>
		<content:encoded><![CDATA[<p>Haha well done &#8211; now try creating an AI that beats mine without using recursive search! I created the AI to enter into a competition where I had the restriction of being unable to track game/move history or use recursive search/evaluation methods. My AI placed first in this branch of the competition. The organisers of the competition believed my AI could have beaten the recursive entries too if I had of developed it into a recursive player &#8211; something I&#8217;d like to do but I don&#8217;t have the time at the moment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Play Connect 4 Against SimpleBloor by Matt</title>
		<link>http://www.nickbloor.co.uk/portfolio/bcs-contest-2009-connect-4-ai/play-connect-4-against-simplebloor/#comment-97</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 19 May 2011 08:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/#comment-97</guid>
		<description>Muahahahahahaha!!  My AI beats yours!  Of course, mine doesn&#039;t run in a browser so it can search relatively deeply. . .  and I don&#039;t mean to downplay your AI.  After just wasting 40 hours of my life to program mine I understand what an undertaking it is.  Well done!</description>
		<content:encoded><![CDATA[<p>Muahahahahahaha!!  My AI beats yours!  Of course, mine doesn&#8217;t run in a browser so it can search relatively deeply. . .  and I don&#8217;t mean to downplay your AI.  After just wasting 40 hours of my life to program mine I understand what an undertaking it is.  Well done!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firefox extension to fix Google&#8217;s &#8220;define:&#8221; feature by R</title>
		<link>http://www.nickbloor.co.uk/2011/04/fix-google-define/#comment-91</link>
		<dc:creator>R</dc:creator>
		<pubDate>Sat, 14 May 2011 04:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/?p=150#comment-91</guid>
		<description>Many thanks!</description>
		<content:encoded><![CDATA[<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Play Connect 4 Against SimpleBloor by Nick Bloor</title>
		<link>http://www.nickbloor.co.uk/portfolio/bcs-contest-2009-connect-4-ai/play-connect-4-against-simplebloor/#comment-82</link>
		<dc:creator>Nick Bloor</dc:creator>
		<pubDate>Sat, 07 May 2011 22:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/#comment-82</guid>
		<description>Thanks for the comment! It isn&#039;t the strongest AI by a long shot but despite looking ahead one move it still put up quite a challenge to other AIs in the competition that looked ahead tens or hundreds of thousands of moves!

I see that you played 17 games against my AI and only beat it twice though!</description>
		<content:encoded><![CDATA[<p>Thanks for the comment! It isn&#8217;t the strongest AI by a long shot but despite looking ahead one move it still put up quite a challenge to other AIs in the competition that looked ahead tens or hundreds of thousands of moves!</p>
<p>I see that you played 17 games against my AI and only beat it twice though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Play Connect 4 Against SimpleBloor by tim</title>
		<link>http://www.nickbloor.co.uk/portfolio/bcs-contest-2009-connect-4-ai/play-connect-4-against-simplebloor/#comment-81</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Sat, 07 May 2011 21:31:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/#comment-81</guid>
		<description>ummm.. this computer is easy</description>
		<content:encoded><![CDATA[<p>ummm.. this computer is easy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firefox extension to fix Google&#8217;s &#8220;define:&#8221; feature by hallodom</title>
		<link>http://www.nickbloor.co.uk/2011/04/fix-google-define/#comment-66</link>
		<dc:creator>hallodom</dc:creator>
		<pubDate>Tue, 26 Apr 2011 11:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.nickbloor.co.uk/?p=150#comment-66</guid>
		<description>Mint</description>
		<content:encoded><![CDATA[<p>Mint</p>
]]></content:encoded>
	</item>
</channel>
</rss>

