<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Michael S. Clark &#187; Opinion</title>
	<atom:link href="http://www.ne0ge0.com/tags/opinion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ne0ge0.com</link>
	<description>When I talk, the world ignores me...</description>
	<lastBuildDate>Mon, 12 Dec 2011 15:44:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Nope</title>
		<link>http://www.ne0ge0.com/2011/03/29/nope/</link>
		<comments>http://www.ne0ge0.com/2011/03/29/nope/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 12:58:30 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=527</guid>
		<description><![CDATA[I did not brandish two knives outside a nightclub. Nor did I say &#8220;&#8216;Mon then! I&#8217;ll hae ye a&#8217;!&#8221;.]]></description>
			<content:encoded><![CDATA[<p>I did not <a title="Arbroath man brandished two kitchen knives outside nightclub" href="http://www.thecourier.co.uk/News/Angus/article/12326/arbroath-man-brandished-two-kitchen-knives-outside-nightclub.html">brandish two knives outside a nightclub</a>.</p>
<p>Nor did I say &#8220;&#8216;Mon then! I&#8217;ll hae ye a&#8217;!&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2011/03/29/nope/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DataGridView Flickering When Changing Background Colour</title>
		<link>http://www.ne0ge0.com/2010/08/04/datagridview-flickering-when-changing-background-colour/</link>
		<comments>http://www.ne0ge0.com/2010/08/04/datagridview-flickering-when-changing-background-colour/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 08:05:50 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Interests]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=511</guid>
		<description><![CDATA[Since implementing crossfading of tracks in Karaokidex, I&#8217;ve indicated the crossfading by gradually fading out the background colour of the first track&#8217;s row in the playlist DataGridView and fading in the background colour of the second track&#8217;s row. This caused a really annoying flickering. The problem is the DataGridView is not double-buffered by default, nor [...]]]></description>
			<content:encoded><![CDATA[<p>Since implementing crossfading of tracks in Karaokidex, I&#8217;ve indicated the crossfading by gradually fading out the background colour of the first track&#8217;s row in the playlist DataGridView and fading in the background colour of the second track&#8217;s row. This caused a really annoying flickering.</p>
<p>The problem is the DataGridView is not double-buffered by default, nor is there any visible property on the DataGridView object to set it as double-buffered.</p>
<p>Google to the rescue!</p>
<p>Thanks to the guys at StackOverflow.com for this elegant solution that uses reflection rather than defining a custom class.</p>
<pre class="brush: csharp; title: ; notranslate">
typeof(DataGridView).InvokeMember(
   &quot;DoubleBuffered&quot;,
   BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.SetProperty,
   null,
   myDataGridViewObject,
   new object[] { true });
</pre>
<p>[<em>Via: <a href="http://stackoverflow.com/questions/118528/horrible-redraw-performance-of-the-datagridview-on-one-of-my-two-screens">stackoverflow</a></em>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2010/08/04/datagridview-flickering-when-changing-background-colour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox.com for ClickOnce</title>
		<link>http://www.ne0ge0.com/2010/05/07/dropbox-com-for-clickonce/</link>
		<comments>http://www.ne0ge0.com/2010/05/07/dropbox-com-for-clickonce/#comments</comments>
		<pubDate>Fri, 07 May 2010 19:12:52 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=473</guid>
		<description><![CDATA[I&#8217;ve recently been using Dropbox.com to keep my files in sync between home and work. I&#8217;ve also been on the hunt for a (free) site to host ClickOnce deployments. It was only in a revelation whilst I was in bed last night that I wondered if I could use Dropbox&#8217;s Public directory as the target [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been using <a title="Dropbox.com" href="https://www.dropbox.com/gs" rel="external">Dropbox.com</a> to keep my files in sync between home and work. I&#8217;ve also been on the hunt for a (free) site to host ClickOnce deployments.</p>
<p>It was only in a revelation whilst I was in bed last night that I wondered if I could use Dropbox&#8217;s Public directory as the target to publish my files.</p>
<p>It works! Here&#8217;s how&#8230;</p>
<ol>
<li>Install the <a title="Dropbox Client" href="https://www.dropbox.com/downloading" rel="external">Dropbox client</a>,</li>
<li>Once installed, navigate to the Public sub-directory in whichever directory you assigned as the Dropbox directory,</li>
<li>Right-click on the &#8220;How to use the Public folder.rtf&#8221; file,</li>
<li>In the Dropbox menu item, click &#8220;Copy Public Link&#8221;,</li>
<li>Paste it into any notepad application,</li>
<li>In Visual Studio, in the Publish tab of your project&#8217;s properties, use the following information (substituting your own locations as required):
<ul>
<li><strong>Publishing Folder Location:</strong> <code>C:\My Documents\My Dropbox\Public\Project1\</code></li>
<li><strong>Installation Folder Location:</strong> <code>http://dl.dropbox.com/u/xxxxxx/Project1/</code> (Paste the link from step 4, removing the <code>How to use the Public folder.rtf</code> portion and adding the project directory)</li>
<li>Click the &#8220;Updates&#8221; button,</li>
<li><strong>Update Location:</strong> <code>http://dl.dropbox.com/u/xxxxxx/Project1/</code> (I always do this just to be on the safe side)</li>
</ul>
</li>
<li>Publish</li>
<li>That&#8217;s it! The files will sync to the Dropbox servers, and the project is deployed!</li>
</ol>
<p>Now all you have to give out is the URL to either the <code>http://dl.dropbox.com/u/xxxxxx/Project1/index.html</code> file if you chose to generate one in your publishing options, or <code>http://dl.dropbox.com/u/xxxxxx/Project1/setup.exe</code> directly.</p>
<p>Easy-peasy, lemon-squeezy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2010/05/07/dropbox-com-for-clickonce/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beautiful</title>
		<link>http://www.ne0ge0.com/2010/02/18/beautiful/</link>
		<comments>http://www.ne0ge0.com/2010/02/18/beautiful/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 08:47:22 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Galleries]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=436</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ne0ge0.com/?attachment_id=436" rel="attachment wp-att-436"><img src="http://www.ne0ge0.com/wp-content/uploads/2010/02/CIMG2969-e1266482818822.jpg" alt="" title="CIMG2969" width="400" height="300" class="aligncenter size-full wp-image-436" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2010/02/18/beautiful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#039;m A Flipper Now!</title>
		<link>http://www.ne0ge0.com/2010/01/13/im-a-flipper-now/</link>
		<comments>http://www.ne0ge0.com/2010/01/13/im-a-flipper-now/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 19:21:44 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Gadgets & Gizmos]]></category>
		<category><![CDATA[Interests]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=394</guid>
		<description><![CDATA[I&#8217;d been looking into getting a compact video camera for a while now, and more recently since Alfie came along. I&#8217;d initially looked at the RCA EZ409HD, but after reading the disappointing reviews, I decided on the Flip Ultra HD. It&#8217;s fairly inexpensive and very easy to use, and the quality is excellent. You can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d been looking into getting a compact video camera for a while now, and more recently since Alfie came along.</p>
<p>I&#8217;d initially looked at the <a href="http://www.amazon.com/RCA-EZ409HD-Wonder-Camcorder-Silver/dp/B001RIYOBK/ref=cm_cr_pr_product_top">RCA EZ409HD</a>, but after reading the <a href="http://www.amazon.com/RCA-EZ409HD-Wonder-Camcorder-Silver/product-reviews/B001RIYOBK/ref=cm_cr_dp_all_summary?ie=UTF8&amp;showViewpoints=1&amp;sortBy=bySubmissionDateDescending">disappointing reviews</a>, I decided on the <a href="http://www.theflip.com/en-gb/Products/ultra.aspx">Flip Ultra HD</a>. It&#8217;s fairly inexpensive and very easy to use, and the quality is excellent.</p>
<p>You can see some of the early camera work by me and Laura on <a href="http://www.alfieclark.com">Alfie&#8217;s blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2010/01/13/im-a-flipper-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad Things Happen In Threes?</title>
		<link>http://www.ne0ge0.com/2009/12/21/bad-things-happen-in-threes/</link>
		<comments>http://www.ne0ge0.com/2009/12/21/bad-things-happen-in-threes/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 09:18:30 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=389</guid>
		<description><![CDATA[We though uur indoor bunny, Sonny, had had a mild stroke, but after a visit to the vet, it appears he has a parasite or deep ear infection Alfie has caught a bad cold, and is coughing like a barking dog We had to get Rentokil in (at a cost of £174!) to deal with [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>We though uur indoor bunny, Sonny, had had a mild stroke, but after a visit to the vet, it appears he has a parasite or deep ear infection</li>
<li>Alfie has caught a bad cold, and is coughing like a barking dog</li>
<li>We had to get <a href="http://www.rentokil.co.uk/index.html">Rentokil</a> in (at a cost of £174!) to deal with a small outbreak of _mice in me kitchen_</li>
<li>We had no water all of yesterday as there was a problem with the local <a href="http://en.wikipedia.org/wiki/Pressure_reducing_valve">PRV</a></li>
</ul>
<p>That&#8217;s four so far; roll on Christmas!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2009/12/21/bad-things-happen-in-threes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Spurious Loading on Need For Speed Shift?</title>
		<link>http://www.ne0ge0.com/2009/11/07/spurious-loading-on-need-for-sped-shift/</link>
		<comments>http://www.ne0ge0.com/2009/11/07/spurious-loading-on-need-for-sped-shift/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 17:04:06 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Interests]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[XBox 360]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=387</guid>
		<description><![CDATA[Why does loading take so long between legs of the &#8220;Duel&#8221; events? It&#8217;s the same course and the same cars, so why does it feel like it loads everything all over again? Have they never heard of caching? &#60;/$0.02&#62;]]></description>
			<content:encoded><![CDATA[<p>Why does loading take so long between legs of the &#8220;Duel&#8221; events?</p>
<p>It&#8217;s the same course and the same cars, so why does it feel like it loads everything all over again?</p>
<p>Have they never heard of caching?</p>
<p>&lt;/$0.02&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2009/11/07/spurious-loading-on-need-for-sped-shift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X360 Media Update Requires Sign-In</title>
		<link>http://www.ne0ge0.com/2009/11/05/x360-media-update-requires-sign-in/</link>
		<comments>http://www.ne0ge0.com/2009/11/05/x360-media-update-requires-sign-in/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 10:28:58 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets & Gizmos]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[XBox 360]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=385</guid>
		<description><![CDATA[Why? Why do I have to be signed in to XBox Live to use a media codec? I was trying to watch a programme last night with was encoded using the ISO-MPEG4 compatible XviD codec, but I was having trouble signing in, so it wouldn&#8217;t let me. Why can&#8217;t they add it to a dashboard [...]]]></description>
			<content:encoded><![CDATA[<p>Why?</p>
<p>Why do I have to be signed in to XBox Live to use a media codec?</p>
<p>I was trying to watch a programme last night with was encoded using the ISO-MPEG4 compatible XviD codec, but I was having trouble signing in, so it wouldn&#8217;t let me.</p>
<p>Why can&#8217;t they add it to a dashboard update and have it available all the time?</p>
<p>Grrr.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2009/11/05/x360-media-update-requires-sign-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Sync Failing with 0&#215;85010004?</title>
		<link>http://www.ne0ge0.com/2009/11/04/google-sync-failing-with-0x85010004/</link>
		<comments>http://www.ne0ge0.com/2009/11/04/google-sync-failing-with-0x85010004/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 08:53:31 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Gadgets & Gizmos]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/2009/11/04/google-sync-failing-with-0x85010004/</guid>
		<description><![CDATA[The ActiveSync on my phone, which I’d used to sync with my Google Apps account recently began failing with the error &#8220;Your account in Microsoft Exchange Server does not have permission to synchronize with your current settings.&#8221;; code 0&#215;85010004. Now I hadn’t changed anything, so I was a bit bemused to say the least. Today [...]]]></description>
			<content:encoded><![CDATA[<p>The ActiveSync on my phone, which I’d used to sync with my Google Apps account recently began failing with the error &#8220;Your account in Microsoft Exchange Server does not have permission to synchronize with your current settings.&#8221;; code 0&#215;85010004.</p>
<p>Now I hadn’t changed anything, so I was a bit bemused to say the least.</p>
<p>Today I found the solution.</p>
<p>It appears as though Google have added an “Enable Google Sync” setting to the “Service Settings –&gt; Mobile” section of the dashboard for your Google Apps domain.</p>
<p>Thanks for letting us all know, Google! I know Google Sync is still in beta, but adding a setting that effectively kills your calendar, contacts and email without letting us know is a bit much.</p>
<p>So this is a bit of a heads up or anyone else who is having this problem; there’s nothing wrong with your phone, your Google account, your sync settings or anything else.</p>
<p>All it takes is one little unchecked checkbox.</p>
<p>[<em>Via: <a href="http://www.google.co.uk/support/forum/p/Google+Mobile/thread?tid=0e727bfd00176fd7&amp;hl=en">Google Support</a></em>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2009/11/04/google-sync-failing-with-0x85010004/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What A Way To Go&#8230;</title>
		<link>http://www.ne0ge0.com/2009/06/05/what-a-way-to-go/</link>
		<comments>http://www.ne0ge0.com/2009/06/05/what-a-way-to-go/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 08:14:09 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.ne0ge0.com/?p=342</guid>
		<description><![CDATA[Kill Bill and Kung Fu star David Carradine has been found dead in a Bangkok hotel room on Thursday. Thai police told the BBC a hotel maid found the 72-year-old naked in a wardrobe with a cord around his neck and other parts of his body. [Via: BBC News]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Kill Bill and Kung Fu star David Carradine has been found dead in a Bangkok hotel room on Thursday.</p>
<p>Thai police told the BBC a hotel maid found the 72-year-old naked in a wardrobe with a cord around his neck and other parts of his body. </p></blockquote>
<p>[<em>Via: <a href="http://news.bbc.co.uk/1/hi/entertainment/8083479.stm">BBC News</a></em>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ne0ge0.com/2009/06/05/what-a-way-to-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

