<?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>London Calling</title>
	<atom:link href="http://www.kieranbenton.com/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.kieranbenton.com</link>
	<description>Ramblings of a lead C# developer living in London.</description>
	<lastBuildDate>Mon, 17 May 2010 16:43:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM</title>
		<link>http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/#comments</comments>
		<pubDate>Mon, 17 May 2010 16:40:03 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[msbuild]]></category>
		<category><![CDATA[vsnet-2010]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/</guid>
		<description><![CDATA[What a palaver. Prior to RTM you could use VS.NET 2008 and 2010 web application projects alongside each other with no issues (after having 2010 upgrade them). With RTM, you get horrible issues with the line: &#60;Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\     v10.0\WebApplications\Microsoft.WebApplication.targets" /&#62; Added to the bottom of your .csproj files. After much soul searching I’ve found a [...]]]></description>
			<content:encoded><![CDATA[<p>What a palaver. Prior to RTM you could use VS.NET 2008 and 2010 web application projects alongside each other with no issues (after having 2010 upgrade them). With RTM, you get horrible issues with the line:</p>
<pre class="csharpcode">&lt;Import Project=<span class="str">"$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\
    v10.0\WebApplications\Microsoft.WebApplication.targets"</span> /&gt;</pre>
<p>Added to the bottom of your .csproj files. After much soul searching I’ve found a solution with a bit of MSBuild cleverness. Turns out you can conditioanlly include MSBuild targets depending on the version of Visual Studio being used.</p>
<p>So, for each web application project in your solution:</p>
<ol>
<li>a) Have VS.NET 2010 upgrade your projects to the newer version.</li>
<li>b) Replace the above line with:</li>
</ol>
<pre class="csharpcode">&lt;Import Project=<span class="str">"$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\
    v9.0\WebApplications\Microsoft.WebApplication.targets"</span> <br/>&nbsp;&nbsp;&nbsp;&nbsp;Condition=<span class="str">"'$(Solutions.VSVersion)' == '9.0'"</span> /&gt;
&lt;Import Project=<span class="str">"$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\
    v10.0\WebApplications\Microsoft.WebApplication.targets"</span> <br/>&nbsp;&nbsp;&nbsp;&nbsp;Condition=<span class="str">"'$(Solutions.VSVersion)' == '10.0'"</span> /&gt;</pre>
<ol>
<li>c) Blank out &lt;FileUpgradeFlags&gt;&lt;/FileUpgradeFlags&gt; which VS.NET 2010 has probably put “4.0” in, this will trip 2008 up otherwise.</li>
<li>d) Blank out &lt;UpgradeBackupLocation&gt;&lt;/UpgradeBackupLocation&gt; in the same manner.</li>
</ol>
<p>As long as you can then live with working with a seperate solution file for VS.NET 2010, you should be away and can stop annoying anyone else working on your files!</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F&amp;title=Using+VS.NET+web+application+projects+with+both+VS.NET+2008+and+2010+RTM" title="Bookmark this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F&amp;title=Using+VS.NET+web+application+projects+with+both+VS.NET+2008+and+2010+RTM&amp;bodytext=What+a+palaver.+Prior+to+RTM+you+could+use+VS.NET+2008+and+2010+web+application+projects+alongside+each+other+with+no+issues+%28after+having+2010+upgrade+them%29.+With+RTM%2C+you+get+horrible+issues+with+the+line%3A%0D%0A%26lt%3BImport+Project%3D%22%24%28MSBuildExtensionsPath32%29%5CMicrosoft%5CVisualStudio%5C%0D%0A%C2%A0%C2%A0%C2%A0%C2%A0v10.0%5CWebApplications%5CMicrosoft" title="Digg this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F&amp;t=Using+VS.NET+web+application+projects+with+both+VS.NET+2008+and+2010+RTM" title="Recommend this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F&amp;title=Using+VS.NET+web+application+projects+with+both+VS.NET+2008+and+2010+RTM" title="Buzz up this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F&amp;title=Using+VS.NET+web+application+projects+with+both+VS.NET+2008+and+2010+RTM" title="Share this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fusing-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm%2F" title="Tweet this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/feed" title="Follow this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/" title="Tell a friend about this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : Using VS.NET web application projects with both VS.NET 2008 and 2010 RTM for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/05/using-vs-net-web-application-projects-with-both-vs-net-2008-and-2010-rtm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>.NET Settings Providers</title>
		<link>http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:33:25 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/</guid>
		<description><![CDATA[I’m researching different methods of persisting, updating and managing configuration in .NET, as I’ve become a bit tired of rolling my own static “Config” class. Having used the newer Settings architecture (as opposed to the old fashioned non-typed AppSettings) on a small scale site, I’ve been interested in how it might be possible to extend [...]]]></description>
			<content:encoded><![CDATA[<p>I’m researching different methods of persisting, updating and managing configuration in .NET, as I’ve become a bit tired of rolling my own static “Config” class.</p>
<p>Having used the newer Settings architecture (as opposed to the old fashioned non-typed AppSettings) on a small scale site, I’ve been interested in how it might be possible to extend these over a distributed system.</p>
<p>Turns out you can, the system is pluggable. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/8eyb2ct1.aspx">http://msdn.microsoft.com/en-us/library/8eyb2ct1.aspx</a></p>
<p><a href="http://www.sellsbrothers.com/writing/default.aspx?content=dotnet2customsettingsprovider.htm">http://www.sellsbrothers.com/writing/default.aspx?content=dotnet2customsettingsprovider.htm</a></p>
<p>Over the next few weeks I’ll be exploring how this might benefit an application – especially in the area of not having to restart when writing to app.config files!</p>
</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F&amp;title=.NET+Settings+Providers" title="Bookmark this post : .NET Settings Providers on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F&amp;title=.NET+Settings+Providers&amp;bodytext=I%E2%80%99m+researching+different+methods+of+persisting%2C+updating+and+managing+configuration+in+.NET%2C+as+I%E2%80%99ve+become+a+bit+tired+of+rolling+my+own+static+%E2%80%9CConfig%E2%80%9D+class.++Having+used+the+newer+Settings+architecture+%28as+opposed+to+the+old+fashioned+non-typed+AppSettings%29+on+a+small+scale+site%2C+I%E2%80%99ve+been+interested+in+" title="Digg this post : .NET Settings Providers"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F&amp;t=.NET+Settings+Providers" title="Recommend this post : .NET Settings Providers on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F&amp;title=.NET+Settings+Providers" title="Buzz up this post : .NET Settings Providers "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F&amp;title=.NET+Settings+Providers" title="Share this post : .NET Settings Providers on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F05%2Fnet-settings-providers%2F" title="Tweet this post : .NET Settings Providers on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/feed" title="Follow this post : .NET Settings Providers comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : .NET Settings Providers&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/" title="Tell a friend about this post : .NET Settings Providers "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : .NET Settings Providers for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/05/net-settings-providers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending E-Mails (the longer than usual story)</title>
		<link>http://www.kieranbenton.com/index.php/2010/04/sending-emails-the-longer-than-usual-story/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/04/sending-emails-the-longer-than-usual-story/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 22:45:00 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=43</guid>
		<description><![CDATA[http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html Very interesting article (fewer and farther between unfortunately these days) from Jeff Atwood about some of their experiences with building Stack Overflow and sending out mails and having them actually arrive! Quite pertinent as I’m currently working in a similar area. Essentially, firstly send mail from your client to: check-auth@verifier.port25.com and get a free [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html">http://www.codinghorror.com/blog/2010/04/so-youd-like-to-send-some-email-through-code.html</a></p>
<p>Very interesting article (fewer and farther between unfortunately these days) from Jeff Atwood about some of their experiences with building Stack Overflow and sending out mails and having them actually arrive! Quite pertinent as I’m currently working in a similar area.</p>
<p>Essentially, firstly send mail from your client to: <a href="mailto:check-auth@verifier.port25.com">check-auth@verifier.port25.com</a> and get a free report on basically what you’re missing from your setup. You can do this over and over again to get a picture for how you’re progressing.</p>
<p>Obviously the article goes into detail, but in summary:</p>
<p><strong>1. Make sure the computer sending the email has a Reverse PTR record</strong></p>
<p><strong>2. Configure DomainKeys Identified Mail in your DNS and code</strong></p>
<p><strong>3. Set up a SenderID record in your DNS</strong></p>
<p>Basically they are all a combination of adding the correct TXT and PTR records to your domain names, as well as generating a public/private key pair, signing your mails with the private one and making the public part available via DNS.</p>
<p>They use a commercial piece of software called Mailbee.NET to do the signing work, but this is possible using good old SmtpClient with something like this: <a href="http://tinisles.blogspot.com/2009/09/sending-dkim-email-from-c.html">http://tinisles.blogspot.com/2009/09/sending-dkim-email-from-c.html</a>.</p>
<p>Not production code by any stretch of the imagination, and some of the work he does to build a CN and do the actual signing could be done using the built-in BCL classes but you get the picture. I’ll post again when I have this working.</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F&amp;title=Sending+E-Mails+%28the+longer+than+usual+story%29" title="Bookmark this post : Sending E-Mails (the longer than usual story) on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F&amp;title=Sending+E-Mails+%28the+longer+than+usual+story%29&amp;bodytext=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2010%2F04%2Fso-youd-like-to-send-some-email-through-code.html%0D%0A%0D%0AVery+interesting+article+%28fewer+and+farther+between+unfortunately+these+days%29+from+Jeff+Atwood+about+some+of+their+experiences+with+building+Stack+Overflow+and+sending+out+mails+and+having+them+actually+arrive%21+Quite+pertinent" title="Digg this post : Sending E-Mails (the longer than usual story)"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F&amp;t=Sending+E-Mails+%28the+longer+than+usual+story%29" title="Recommend this post : Sending E-Mails (the longer than usual story) on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F&amp;title=Sending+E-Mails+%28the+longer+than+usual+story%29" title="Buzz up this post : Sending E-Mails (the longer than usual story) "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F&amp;title=Sending+E-Mails+%28the+longer+than+usual+story%29" title="Share this post : Sending E-Mails (the longer than usual story) on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fsending-emails-the-longer-than-usual-story%2F" title="Tweet this post : Sending E-Mails (the longer than usual story) on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/04/sending-emails-the-longer-than-usual-story/feed" title="Follow this post : Sending E-Mails (the longer than usual story) comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : Sending E-Mails (the longer than usual story)&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/04/sending-emails-the-longer-than-usual-story/" title="Tell a friend about this post : Sending E-Mails (the longer than usual story) "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : Sending E-Mails (the longer than usual story) for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/04/sending-emails-the-longer-than-usual-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC vs. Ruby on Rails</title>
		<link>http://www.kieranbenton.com/index.php/2010/04/asp-net-mvc-vs-ruby-on-rails/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/04/asp-net-mvc-vs-ruby-on-rails/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 17:42:20 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[aspnet]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=42</guid>
		<description><![CDATA[http://anders.janmyr.com/2010/04/aspnet-mvc-vs-rails3.html Quite an interesting article on this, if extremely biased towards RoR. A few salient points: RoR is entirely command line based, ASP MVC is obviously more tied to Visual Studio (although I would debate that as you could do everything by command line, ms build and notepad) Very similar in all basic respects. No [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://anders.janmyr.com/2010/04/aspnet-mvc-vs-rails3.html">http://anders.janmyr.com/2010/04/aspnet-mvc-vs-rails3.html</a></p>
<p>Quite an interesting article on this, if extremely biased towards RoR.</p>
<p>A few salient points:</p>
<ul>
<li>RoR is entirely command line based, ASP MVC is obviously more tied to Visual Studio (although I would debate that as you could do everything by command line, ms build and notepad)</li>
<li>Very similar in all basic respects.</li>
<li>No analysis of more important and “edgy” factors such as model binding (ASP MVC is very good at this) and validation frameworks.</li>
<li>I’m still jealous in some respects of RoR DB migrations – I wonder if there is a .NET based port of this going anywhere? I should lend a hand if so.</li>
<li>Routing is a tie, both good.</li>
<li>Pretty much parity beyond that (at least as far as the article is concerned).</li>
</ul>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F&amp;title=ASP.NET+MVC+vs.+Ruby+on+Rails" title="Bookmark this post : ASP.NET MVC vs. Ruby on Rails on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F&amp;title=ASP.NET+MVC+vs.+Ruby+on+Rails&amp;bodytext=http%3A%2F%2Fanders.janmyr.com%2F2010%2F04%2Faspnet-mvc-vs-rails3.html%0D%0A%0D%0AQuite+an+interesting+article+on+this%2C+if+extremely+biased+towards+RoR.%0D%0A%0D%0AA+few+salient+points%3A%0D%0A%0D%0A%09RoR+is+entirely+command+line+based%2C+ASP+MVC+is+obviously+more+tied+to+Visual+Studio+%28although+I+would+debate+that+as+you+could+do+everything+by+command+line%2C+" title="Digg this post : ASP.NET MVC vs. Ruby on Rails"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F&amp;t=ASP.NET+MVC+vs.+Ruby+on+Rails" title="Recommend this post : ASP.NET MVC vs. Ruby on Rails on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F&amp;title=ASP.NET+MVC+vs.+Ruby+on+Rails" title="Buzz up this post : ASP.NET MVC vs. Ruby on Rails "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F&amp;title=ASP.NET+MVC+vs.+Ruby+on+Rails" title="Share this post : ASP.NET MVC vs. Ruby on Rails on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F04%2Fasp-net-mvc-vs-ruby-on-rails%2F" title="Tweet this post : ASP.NET MVC vs. Ruby on Rails on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/04/asp-net-mvc-vs-ruby-on-rails/feed" title="Follow this post : ASP.NET MVC vs. Ruby on Rails comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : ASP.NET MVC vs. Ruby on Rails&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/04/asp-net-mvc-vs-ruby-on-rails/" title="Tell a friend about this post : ASP.NET MVC vs. Ruby on Rails "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : ASP.NET MVC vs. Ruby on Rails for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/04/asp-net-mvc-vs-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes 9 Live Playlists and &#8220;limit&#8221; options</title>
		<link>http://www.kieranbenton.com/index.php/2010/02/itunes-9-live-playlists-and-limit-options/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/02/itunes-9-live-playlists-and-limit-options/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 21:49:05 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=38</guid>
		<description><![CDATA[More for my own reference really, but this might be useful to others – certainly been driving me mad enough over the last few weeks! I’ve got an iTouch 64Gb and have previously been synching it with iTunes 8.x without issue, but on upgrade to 9, all of my “most played”, “most recently added” etc [...]]]></description>
			<content:encoded><![CDATA[<p>More for my own reference really, but this might be useful to others – certainly been driving me mad enough over the last few weeks!</p>
<p>I’ve got an iTouch 64Gb and have previously been synching it with iTunes 8.x without issue, but on upgrade to 9, all of my “most played”, “most recently added” etc playlists suddenly show random tracks (on the handset only).</p>
<p>This is down to the issues described at: <a href="http://discussions.info.apple.com/thread.jspa?threadID=2227108&amp;tstart=1">http://discussions.info.apple.com/thread.jspa?threadID=2227108&amp;tstart=1</a>.</p>
<p>Basically, to cut a long story short, you need to add this option to each playlist with a “limit” set:</p>
<p><a href="http://www.kieranbenton.com/wp-content/uploads/2010/02/image.png"><img style="display: inline; border: 0px;" title="image" src="http://www.kieranbenton.com/wp-content/uploads/2010/02/image_thumb.png" border="0" alt="image" width="486" height="60" /></a></p>
<p>Re-sync and voila, life is sane again. That said the performance and literary of niggly bugs with iTunes (as well as the heavy handed updater) is getting on my nerves. Roll on Windows Mobile 7!</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F&amp;title=iTunes+9+Live+Playlists+and+%26ldquo%3Blimit%26rdquo%3B+options" title="Bookmark this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F&amp;title=iTunes+9+Live+Playlists+and+%26ldquo%3Blimit%26rdquo%3B+options&amp;bodytext=More+for+my+own+reference+really%2C+but+this+might+be+useful+to+others+%E2%80%93+certainly+been+driving+me+mad+enough+over+the+last+few+weeks%21%0D%0A%0D%0AI%E2%80%99ve+got+an+iTouch+64Gb+and+have+previously+been+synching+it+with+iTunes+8.x+without+issue%2C+but+on+upgrade+to+9%2C+all+of+my+%E2%80%9Cmost+played%E2%80%9D%2C+%E2%80%9Cmost+recently+added%E2%80%9D+etc+playlist" title="Digg this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F&amp;t=iTunes+9+Live+Playlists+and+%26ldquo%3Blimit%26rdquo%3B+options" title="Recommend this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F&amp;title=iTunes+9+Live+Playlists+and+%26ldquo%3Blimit%26rdquo%3B+options" title="Buzz up this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F&amp;title=iTunes+9+Live+Playlists+and+%26ldquo%3Blimit%26rdquo%3B+options" title="Share this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fitunes-9-live-playlists-and-limit-options%2F" title="Tweet this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/02/itunes-9-live-playlists-and-limit-options/feed" title="Follow this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/02/itunes-9-live-playlists-and-limit-options/" title="Tell a friend about this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : iTunes 9 Live Playlists and &ldquo;limit&rdquo; options for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/02/itunes-9-live-playlists-and-limit-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercurial Tutorial</title>
		<link>http://www.kieranbenton.com/index.php/2010/02/mercurial-tutorial-2/</link>
		<comments>http://www.kieranbenton.com/index.php/2010/02/mercurial-tutorial-2/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:08:25 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[source-control]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=45</guid>
		<description><![CDATA[http://hginit.com/ The best thing (Stackoverflow related aside) that Joel Spolsky has written in a long time, a really accessible tutorial to Mercurial (espeically for Subversion users). EDIT: This is the essence of the workflow. Bookmark on Delicious Digg this post Recommend on Facebook Buzz it up share via Reddit Tweet about it Subscribe to the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hginit.com/">http://hginit.com/</a></p>
<p>The best thing (Stackoverflow related aside) that Joel Spolsky has written in a long time, a really accessible tutorial to Mercurial (espeically for Subversion users).</p>
<p>EDIT: <a href="http://secretgeek.net/image/mercurial_workflow_image.png">This</a> is the essence of the workflow.</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F&amp;title=Mercurial+Tutorial" title="Bookmark this post : Mercurial Tutorial on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F&amp;title=Mercurial+Tutorial&amp;bodytext=http%3A%2F%2Fhginit.com%2F%0D%0A%0D%0AThe+best+thing+%28Stackoverflow+related+aside%29+that+Joel+Spolsky+has+written+in+a+long+time%2C+a+really+accessible+tutorial+to+Mercurial+%28espeically+for+Subversion+users%29.%0D%0A%0D%0AEDIT%3A+This+is+the+essence+of+the+workflow." title="Digg this post : Mercurial Tutorial"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F&amp;t=Mercurial+Tutorial" title="Recommend this post : Mercurial Tutorial on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F&amp;title=Mercurial+Tutorial" title="Buzz up this post : Mercurial Tutorial "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F&amp;title=Mercurial+Tutorial" title="Share this post : Mercurial Tutorial on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2010%2F02%2Fmercurial-tutorial-2%2F" title="Tweet this post : Mercurial Tutorial on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2010/02/mercurial-tutorial-2/feed" title="Follow this post : Mercurial Tutorial comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : Mercurial Tutorial&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2010/02/mercurial-tutorial-2/" title="Tell a friend about this post : Mercurial Tutorial "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : Mercurial Tutorial for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2010/02/mercurial-tutorial-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MiniDumpWriteDump</title>
		<link>http://www.kieranbenton.com/index.php/2009/03/minidumpwritedump/</link>
		<comments>http://www.kieranbenton.com/index.php/2009/03/minidumpwritedump/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 13:19:23 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[debugging]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=28</guid>
		<description><![CDATA[http://www.codeproject.com/KB/debug/postmortemdebug_standalone1.aspx I’m trying to come up with a standard and reliable way to trigger a core dump from within the logging/exception handling of a C# executable. The above article indicates that this should be possible, but it sounds as if making this work across platforms would be a fairly large nightmare. If anyone has done [...]]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.codeproject.com/KB/debug/postmortemdebug_standalone1.aspx" href="http://www.codeproject.com/KB/debug/postmortemdebug_standalone1.aspx">http://www.codeproject.com/KB/debug/postmortemdebug_standalone1.aspx</a></p>
<p>I’m trying to come up with a standard and reliable way to trigger a core dump from within the logging/exception handling of a C# executable. The above article indicates that this should be possible, but it sounds as if making this work across platforms would be a fairly large nightmare.</p>
<p>If anyone has done anything similar to this, I’d be interested to see how you went about it, and if possible maybe we could share/release some code to make this easier.</p>
</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F&amp;title=MiniDumpWriteDump" title="Bookmark this post : MiniDumpWriteDump on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F&amp;title=MiniDumpWriteDump&amp;bodytext=http%3A%2F%2Fwww.codeproject.com%2FKB%2Fdebug%2Fpostmortemdebug_standalone1.aspx++I%E2%80%99m+trying+to+come+up+with+a+standard+and+reliable+way+to+trigger+a+core+dump+from+within+the+logging%2Fexception+handling+of+a+C%23+executable.+The+above+article+indicates+that+this+should+be+possible%2C+but+it+sounds+as+if+making+this+work+across+platf" title="Digg this post : MiniDumpWriteDump"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F&amp;t=MiniDumpWriteDump" title="Recommend this post : MiniDumpWriteDump on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F&amp;title=MiniDumpWriteDump" title="Buzz up this post : MiniDumpWriteDump "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F&amp;title=MiniDumpWriteDump" title="Share this post : MiniDumpWriteDump on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fminidumpwritedump%2F" title="Tweet this post : MiniDumpWriteDump on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2009/03/minidumpwritedump/feed" title="Follow this post : MiniDumpWriteDump comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : MiniDumpWriteDump&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2009/03/minidumpwritedump/" title="Tell a friend about this post : MiniDumpWriteDump "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : MiniDumpWriteDump for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2009/03/minidumpwritedump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genius at Work</title>
		<link>http://www.kieranbenton.com/index.php/2009/03/genius-at-work/</link>
		<comments>http://www.kieranbenton.com/index.php/2009/03/genius-at-work/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 16:30:03 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=17</guid>
		<description><![CDATA[Here’s a Channel 9 interview with Anders Hejlsberg, the creator and head designer of C# as a language (as well as Delphi back in the day). Interesting in that it examines some of the improvements in C# 4.0, as well as features that are being bandied around for even further out. Also contains the best [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s a Channel 9 interview with Anders Hejlsberg, the creator and head designer of C# as a language (as well as Delphi back in the day).</p>
<p>Interesting in that it examines some of the improvements in C# 4.0, as well as features that are being bandied around for even further out.</p>
<p>Also contains the best description of contra-variance and co-variance that I’ve seen so far.</p>
<p><a title="http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Anders-Hejlsberg-The-Future-of-C/" href="http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Anders-Hejlsberg-The-Future-of-C/">http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Anders-Hejlsberg-The-Future-of-C/</a></p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F&amp;title=Genius+at+Work" title="Bookmark this post : Genius at Work on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F&amp;title=Genius+at+Work&amp;bodytext=Here%E2%80%99s+a+Channel+9+interview+with+Anders+Hejlsberg%2C+the+creator+and+head+designer+of+C%23+as+a+language+%28as+well+as+Delphi+back+in+the+day%29.%0D%0A%0D%0AInteresting+in+that+it+examines+some+of+the+improvements+in+C%23+4.0%2C+as+well+as+features+that+are+being+bandied+around+for+even+further+out.%0D%0A%0D%0AAlso+contains+the+best+descriptio" title="Digg this post : Genius at Work"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F&amp;t=Genius+at+Work" title="Recommend this post : Genius at Work on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F&amp;title=Genius+at+Work" title="Buzz up this post : Genius at Work "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F&amp;title=Genius+at+Work" title="Share this post : Genius at Work on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fgenius-at-work%2F" title="Tweet this post : Genius at Work on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2009/03/genius-at-work/feed" title="Follow this post : Genius at Work comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : Genius at Work&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2009/03/genius-at-work/" title="Tell a friend about this post : Genius at Work "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : Genius at Work for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2009/03/genius-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Versioning Strategies</title>
		<link>http://www.kieranbenton.com/index.php/2009/03/database-versioning-strategies/</link>
		<comments>http://www.kieranbenton.com/index.php/2009/03/database-versioning-strategies/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 13:08:24 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqlserver]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=16</guid>
		<description><![CDATA[http://flux88.com/blog/net-database-migration-tool-roundup/ Microblog to bring attention to this for myself in the future. Strategies on how to maintain scripts for database versioning, and how upgrades and downgrades can be managed in a much more automated and reliable fashion than manual scripting. Bookmark on Delicious Digg this post Recommend on Facebook Buzz it up share via Reddit [...]]]></description>
			<content:encoded><![CDATA[<p><a title="http://flux88.com/blog/net-database-migration-tool-roundup/" href="http://flux88.com/blog/net-database-migration-tool-roundup/">http://flux88.com/blog/net-database-migration-tool-roundup/</a></p>
<p>Microblog to bring attention to this for myself in the future.</p>
<p>Strategies on how to maintain scripts for database versioning, and how upgrades and downgrades can be managed in a much more automated and reliable fashion than manual scripting.</p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F&amp;title=Database+Versioning+Strategies" title="Bookmark this post : Database Versioning Strategies on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F&amp;title=Database+Versioning+Strategies&amp;bodytext=http%3A%2F%2Fflux88.com%2Fblog%2Fnet-database-migration-tool-roundup%2F%0D%0A%0D%0AMicroblog+to+bring+attention+to+this+for+myself+in+the+future.%0D%0A%0D%0AStrategies+on+how+to+maintain+scripts+for+database+versioning%2C+and+how+upgrades+and+downgrades+can+be+managed+in+a+much+more+automated+and+reliable+fashion+than+manual+scripting." title="Digg this post : Database Versioning Strategies"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F&amp;t=Database+Versioning+Strategies" title="Recommend this post : Database Versioning Strategies on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F&amp;title=Database+Versioning+Strategies" title="Buzz up this post : Database Versioning Strategies "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F&amp;title=Database+Versioning+Strategies" title="Share this post : Database Versioning Strategies on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fdatabase-versioning-strategies%2F" title="Tweet this post : Database Versioning Strategies on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2009/03/database-versioning-strategies/feed" title="Follow this post : Database Versioning Strategies comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : Database Versioning Strategies&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2009/03/database-versioning-strategies/" title="Tell a friend about this post : Database Versioning Strategies "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : Database Versioning Strategies for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2009/03/database-versioning-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EC2 for Windows now in Europe</title>
		<link>http://www.kieranbenton.com/index.php/2009/03/ec2-for-windows-now-in-europe/</link>
		<comments>http://www.kieranbenton.com/index.php/2009/03/ec2-for-windows-now-in-europe/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 18:28:14 +0000</pubDate>
		<dc:creator>kieranbenton</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[ec2]]></category>

		<guid isPermaLink="false">http://www.kieranbenton.com/?p=15</guid>
		<description><![CDATA[Quick post to say ‘thanks’! This has suddenly got a whole lot more viable for use as testing/staging boxes outside of the US! http://www.allthingsdistributed.com/2009/03/expanding_ec2_for_windows.html Bookmark on Delicious Digg this post Recommend on Facebook Buzz it up share via Reddit Tweet about it Subscribe to the comments on this post Tell a friend Print for later]]></description>
			<content:encoded><![CDATA[<p>Quick post to say ‘thanks’! This has suddenly got a whole lot more viable for use as testing/staging boxes outside of the US!</p>
<p><a title="http://www.allthingsdistributed.com/2009/03/expanding_ec2_for_windows.html" href="http://www.allthingsdistributed.com/2009/03/expanding_ec2_for_windows.html">http://www.allthingsdistributed.com/2009/03/expanding_ec2_for_windows.html</a></p>
<ul class="socialwrap size32 row">
<li class="iconOnly"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F&amp;title=EC2+for+Windows+now+in+Europe" title="Bookmark this post : EC2 for Windows now in Europe on Delicious"><span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F&amp;title=EC2+for+Windows+now+in+Europe&amp;bodytext=Quick+post+to+say+%E2%80%98thanks%E2%80%99%21+This+has+suddenly+got+a+whole+lot+more+viable+for+use+as+testing%2Fstaging+boxes+outside+of+the+US%21%0D%0A%0D%0Ahttp%3A%2F%2Fwww.allthingsdistributed.com%2F2009%2F03%2Fexpanding_ec2_for_windows.html" title="Digg this post : EC2 for Windows now in Europe"><span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F&amp;t=EC2+for+Windows+now+in+Europe" title="Recommend this post : EC2 for Windows now in Europe on Facebook"><span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="google_buzz" href="http://www.google.com/reader/link?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F&amp;title=EC2+for+Windows+now+in+Europe" title="Buzz up this post : EC2 for Windows now in Europe "><span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F&amp;title=EC2+for+Windows+now+in+Europe" title="Share this post : EC2 for Windows now in Europe on Reddit"><span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fwww.kieranbenton.com%2Findex.php%2F2009%2F03%2Fec2-for-windows-now-in-europe%2F" title="Tweet this post : EC2 for Windows now in Europe on Twitter"><span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="rss" href="http://www.kieranbenton.com/index.php/2009/03/ec2-for-windows-now-in-europe/feed" title="Follow this post : EC2 for Windows now in Europe comments"><span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a rel="_blank" class="email" href="mailto:?subject=London Calling : EC2 for Windows now in Europe&#038;body=here is a link to a site I really like.   http://www.kieranbenton.com/index.php/2009/03/ec2-for-windows-now-in-europe/" title="Tell a friend about this post : EC2 for Windows now in Europe "><span class="head">Tell a friend</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" class="print" href="javascript:window.print();" title="Print this post : EC2 for Windows now in Europe for reading later"><span class="head">Print for later</span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kieranbenton.com/index.php/2009/03/ec2-for-windows-now-in-europe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
