<?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: Chrome OS the Web based OS of 2010? Nah, Win 3.11 :)</title>
	<atom:link href="http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 17 May 2012 07:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Elena4ka</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278278</link>
		<dc:creator>Elena4ka</dc:creator>
		<pubDate>Wed, 27 Jan 2010 16:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278278</guid>
		<description>It&#039;s really interesting article. Thanks for good information.</description>
		<content:encoded><![CDATA[<p>It&#8217;s really interesting article. Thanks for good information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timdown</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278267</link>
		<dc:creator>timdown</dc:creator>
		<pubDate>Wed, 27 Jan 2010 12:07:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278267</guid>
		<description>@eyelidlessness,

Thanks for the compliment. It predates the existence of WebKit on Windows and also my ownership of a Mac, so it didn&#039;t get fully tested. Middle-click does work on IE and Firefox on Windows. I did do enough testing on the Mac at the time to find a bug in Mozilla where it misreports the mouse button in mousedown and mouseup events ( https://bugzilla.mozilla.org/show_bug.cgi?id=264922 ) and thought I&#039;d worked around it. I&#039;m sufficiently interested now that I will revisit the code and try and fix it.

Minefields are generated entirely at random. It does follow the winmine convention of preventing the first cleared space from being a mine but simply reassigns it to a random space on the grid, not the top left corner. That was a deliberate choice because I didn&#039;t like the idea of it going in the top left, but I suppose it violates the aim of trying to be a proper winmine clone.

As ever with 5-year-old code, I&#039;m slightly embarrassed by it but shall manage to resist the temptation to rewrite it all :)</description>
		<content:encoded><![CDATA[<p>@eyelidlessness,</p>
<p>Thanks for the compliment. It predates the existence of WebKit on Windows and also my ownership of a Mac, so it didn&#8217;t get fully tested. Middle-click does work on IE and Firefox on Windows. I did do enough testing on the Mac at the time to find a bug in Mozilla where it misreports the mouse button in mousedown and mouseup events ( <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=264922" rel="nofollow">https://bugzilla.mozilla.org/show_bug.cgi?id=264922</a> ) and thought I&#8217;d worked around it. I&#8217;m sufficiently interested now that I will revisit the code and try and fix it.</p>
<p>Minefields are generated entirely at random. It does follow the winmine convention of preventing the first cleared space from being a mine but simply reassigns it to a random space on the grid, not the top left corner. That was a deliberate choice because I didn&#8217;t like the idea of it going in the top left, but I suppose it violates the aim of trying to be a proper winmine clone.</p>
<p>As ever with 5-year-old code, I&#8217;m slightly embarrassed by it but shall manage to resist the temptation to rewrite it all :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyelidlessness</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278220</link>
		<dc:creator>eyelidlessness</dc:creator>
		<pubDate>Tue, 26 Jan 2010 19:21:05 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278220</guid>
		<description>timdown,

That is by far the best web winmine clone I&#039;ve encountered.

No mouse events at all seem to work in WebKit (not even left-click). I tried it in Firefox though and was really impressed. I did notice that it doesn&#039;t capture middle-click (which, in Win 3.1 winmine.exe at least, performs the same action as left-right-click). That may be Mac Firefox specific? I do see middle-click code in the source.

Timing is of course an issue with any time-sensitive Javascript-based app, but I&#039;m sure it&#039;s accurate enough for this purpose—but I&#039;ve also heard tell that the original winmine&#039;s timing was itself inaccurate. I can&#039;t find any sources to back that up now though.

I&#039;m curious how you&#039;re generating minefields. Do you follow winmine&#039;s rules that prevent the first cleared space from being a mine (this seems to be the case from playing with it), and if it is a mine, move that mine to as close to the top left corner as possible?

I know that winmine also has only a limited set of predefined fields, but even as obsessed as I am I would never expect anyone to reproduce that.

Sorry for the nitpicky questions, I&#039;m just really impressed and curious.</description>
		<content:encoded><![CDATA[<p>timdown,</p>
<p>That is by far the best web winmine clone I&#8217;ve encountered.</p>
<p>No mouse events at all seem to work in WebKit (not even left-click). I tried it in Firefox though and was really impressed. I did notice that it doesn&#8217;t capture middle-click (which, in Win 3.1 winmine.exe at least, performs the same action as left-right-click). That may be Mac Firefox specific? I do see middle-click code in the source.</p>
<p>Timing is of course an issue with any time-sensitive Javascript-based app, but I&#8217;m sure it&#8217;s accurate enough for this purpose—but I&#8217;ve also heard tell that the original winmine&#8217;s timing was itself inaccurate. I can&#8217;t find any sources to back that up now though.</p>
<p>I&#8217;m curious how you&#8217;re generating minefields. Do you follow winmine&#8217;s rules that prevent the first cleared space from being a mine (this seems to be the case from playing with it), and if it is a mine, move that mine to as close to the top left corner as possible?</p>
<p>I know that winmine also has only a limited set of predefined fields, but even as obsessed as I am I would never expect anyone to reproduce that.</p>
<p>Sorry for the nitpicky questions, I&#8217;m just really impressed and curious.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wahlgren</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278217</link>
		<dc:creator>Wahlgren</dc:creator>
		<pubDate>Tue, 26 Jan 2010 13:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278217</guid>
		<description>I use icloud but this was really cool! :-)</description>
		<content:encoded><![CDATA[<p>I use icloud but this was really cool! :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timdown</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278215</link>
		<dc:creator>timdown</dc:creator>
		<pubDate>Tue, 26 Jan 2010 12:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278215</guid>
		<description>I wrote a JS Minesweeper clone about 5 years ago. Don&#039;t think the mouse event handling quite works properly in WebKit, but I may fix that. http://www.timdown.co.uk/code/minesweeper/</description>
		<content:encoded><![CDATA[<p>I wrote a JS Minesweeper clone about 5 years ago. Don&#8217;t think the mouse event handling quite works properly in WebKit, but I may fix that. <a href="http://www.timdown.co.uk/code/minesweeper/" rel="nofollow">http://www.timdown.co.uk/code/minesweeper/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyelidlessness</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278203</link>
		<dc:creator>eyelidlessness</dc:creator>
		<pubDate>Mon, 25 Jan 2010 19:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278203</guid>
		<description>mrclay, I had the same thought til I tried to use it. It&#039;s very much incomplete. Not that I expected anything else lol. It would be awesome if there were a fully compatible winmine.exe (win16) online though.</description>
		<content:encoded><![CDATA[<p>mrclay, I had the same thought til I tried to use it. It&#8217;s very much incomplete. Not that I expected anything else lol. It would be awesome if there were a fully compatible winmine.exe (win16) online though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrclay</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278202</link>
		<dc:creator>mrclay</dc:creator>
		<pubDate>Mon, 25 Jan 2010 18:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278202</guid>
		<description>Finally, Minesweeper 3.1 online.</description>
		<content:encoded><![CDATA[<p>Finally, Minesweeper 3.1 online.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eyelidlessness</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278198</link>
		<dc:creator>eyelidlessness</dc:creator>
		<pubDate>Mon, 25 Jan 2010 15:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278198</guid>
		<description>Obligatory: I&#039;m holding out for Chrome OS for Workgroups.</description>
		<content:encoded><![CDATA[<p>Obligatory: I&#8217;m holding out for Chrome OS for Workgroups.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raiku</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278197</link>
		<dc:creator>raiku</dc:creator>
		<pubDate>Mon, 25 Jan 2010 15:43:23 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278197</guid>
		<description>Amazing</description>
		<content:encoded><![CDATA[<p>Amazing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kea</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278185</link>
		<dc:creator>kea</dc:creator>
		<pubDate>Mon, 25 Jan 2010 12:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278185</guid>
		<description>Haha great!</description>
		<content:encoded><![CDATA[<p>Haha great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skilldrick</title>
		<link>http://ajaxian.com/archives/chrome-os-the-web-based-os-of-2010-nah-win-3-11/comment-page-1#comment-278183</link>
		<dc:creator>Skilldrick</dc:creator>
		<pubDate>Mon, 25 Jan 2010 12:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=8481#comment-278183</guid>
		<description>Windows 3.11, my first operating system :)

Very impressively done!</description>
		<content:encoded><![CDATA[<p>Windows 3.11, my first operating system :)</p>
<p>Very impressively done!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

