<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>In.Search.Of(...)</title>
	<atom:link href="http://mickdelaney.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mickdelaney.com</link>
	<description>my thoughts on tech, music and anythng else i can think of...</description>
	<lastBuildDate>Fri, 21 Oct 2011 21:50:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mickdelaney.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>In.Search.Of(...)</title>
		<link>http://mickdelaney.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mickdelaney.com/osd.xml" title="In.Search.Of(...)" />
	<atom:link rel='hub' href='http://mickdelaney.com/?pushpress=hub'/>
		<item>
		<title>Simplify your test assertions</title>
		<link>http://mickdelaney.com/2011/02/04/simplify-your-test-assertions/</link>
		<comments>http://mickdelaney.com/2011/02/04/simplify-your-test-assertions/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 12:18:13 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mickdelaney.com/?p=135</guid>
		<description><![CDATA[Came across this failing test, immediately felt a bit verbose&#8230; with testing in general the simpler and cleaner your tests can stay the better, otherwise test rot starts to creep up, developers procrastinate about fixing them etc&#8230;. The test assertion &#8230; <a href="http://mickdelaney.com/2011/02/04/simplify-your-test-assertions/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=135&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Came across this failing test, immediately felt a bit verbose&#8230;  with testing in general the simpler and cleaner your tests can stay the better, otherwise test rot starts to creep up, developers procrastinate<br />
about fixing them etc&#8230;. </p>
<p>The test assertion was:</p>
<p><code><br />
It Should_be_add_a_message_to_the_contractor_conversation = () =&gt;<br />
{<br />
     Assert.That(_contractor.Messages, Has.Some.InstanceOf().And.All.With.Property("Content").EqualTo(messageContent));<br />
};<br />
</code></p>
<p>Changed to:</p>
<p><code><br />
It Should_be_add_a_message_to_the_contractor_conversation = () =&gt;<br />
{<br />
     _contractor.Messages.ShouldContainAny(m =&gt; m.Content == messageContent);<br />
};<br />
</code><br />
The extension method:</p>
<p><code><br />
public static void ShouldContainAny(this IEnumerable list, Func comparer, params T[] items)<br />
{<br />
   if (items.Any(comparer))<br />
   {<br />
        throw new SpecificationException(string.Format(@"Should contain any matching item but contains none"));<br />
   }<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=135&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2011/02/04/simplify-your-test-assertions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Shared Transformable App/Web Config</title>
		<link>http://mickdelaney.com/2011/01/21/shared-transformable-appweb-config/</link>
		<comments>http://mickdelaney.com/2011/01/21/shared-transformable-appweb-config/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 19:22:06 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mickdelaney.com/?p=116</guid>
		<description><![CDATA[Nice way to keep your config in one place for all types of projects is using web config transformations in addition to using shared (using Link) config files with DependentUpon back to the root config file, e.g. App.Config Using the &#8230; <a href="http://mickdelaney.com/2011/01/21/shared-transformable-appweb-config/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=116&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice way to keep your config in one place for all types of projects is using web config transformations in addition to using shared (using Link) config files with DependentUpon back to the root config file, e.g. App.Config</p>
<p>Using the standard web config transforms, e.g:</p>
<p><em>In App.config</em></p>
<pre class="brush: xml;">
 &lt;connectionStrings&gt;
    &lt;add name=&quot;Db&quot; connectionString=&quot;Server=localhost;Port=3306;Database=myapp;
Uid=myappuser;Pwd=secret;/&gt;
  &lt;/connectionStrings&gt;
</pre>
<p><em>In App.Production.config</em></p>
<pre class="brush: xml;">
 &lt;add name=&quot;Db&quot; connectionString=&quot;Server=production;Port=3306;Database=myappprod;
UId=produser;Pwd=supersecret;&quot; xdt:Transform=&quot;SetAttributes&quot; xdt:Locator=&quot;Match(name)&quot;/&gt;
</pre>
<p>This will transform your out so you have a production config file which overrides the standard config file. as documented here:<br />
<a href="http://msdn.microsoft.com/en-us/library/dd465326.aspx">Web Config Transforms</a></p>
<p>But what if you need the config shared across projects, e.g. Unit Testing, Integration testing, Tasks project etc&#8230; </p>
<p>Well you can use the standard Linked file approach, where you Add an existing item but select the little drop down on the add button.<br />
The project file items will look like below.</p>
<pre class="brush: xml;">

&lt;ItemGroup&gt;
	&lt;Content Include=&quot;..\Shared\App.config&quot;&gt;
	&lt;Link&gt;App.config&lt;/Link&gt;
	&lt;CopyToOutputDirectory&gt;PreserveNewest&lt;/CopyToOutputDirectory&gt;
&lt;/Content&gt;

&lt;Content Include=&quot;..\Shared\App.Local.config&quot;&gt;
	&lt;Link&gt;App.Local.config&lt;/Link&gt;
	&lt;DependentUpon&gt;App.config&lt;/DependentUpon&gt;
&lt;/Content&gt;

&lt;Content Include=&quot;..\Shared\App.Staging.config&quot;&gt;
	&lt;Link&gt;App.Staging.config&lt;/Link&gt;
	&lt;DependentUpon&gt;App.config&lt;/DependentUpon&gt;
&lt;/Content&gt;

&lt;Content Include=&quot;..\Shared\App.Production.config&quot;&gt;
	&lt;Link&gt;App.Production.config&lt;/Link&gt;
	&lt;DependentUpon&gt;App.config&lt;/DependentUpon&gt;
&lt;/Content&gt;
&lt;/ItemGroup&gt;

&lt;Import Project=&quot;$(MSBuildToolsPath)\Microsoft.CSharp.targets&quot; /&gt;
&lt;Import Project=&quot;$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets&quot; /&gt;

&lt;Target Name=&quot;PostTransformAppConfig&quot; AfterTargets=&quot;TransformWebConfig&quot;&gt;
	&lt;Copy Condition=&quot;Exists('$(TransformWebConfigIntermediateLocation)\transformed\App.config')&quot;
                  SourceFiles=&quot;$(TransformWebConfigIntermediateLocation)\transformed\App.config&quot; DestinationFiles=&quot;$(OutputPath)\App.config&quot; /&gt;
	&lt;Copy Condition=&quot;Exists('$(TransformWebConfigIntermediateLocation)\transformed\App.config')&quot;
                  SourceFiles=&quot;$(TransformWebConfigIntermediateLocation)\transformed\App.config&quot; DestinationFiles=&quot;$(OutputPath)\App.config&quot; /&gt;
&lt;/Target&gt;
</pre>
<p>Then Just Call:</p>
<pre class="brush: bash;">
  msbuild myproject.proj /t:TransformWebConfig /p:Configuration=Production
</pre>
<p>And the output will be </p>
<pre class="brush: xml;">
 &lt;add name=&quot;Db&quot; connectionString=&quot;Server=production;Port=3306;Database=myappprod;
UId=produser;Pwd=supersecret;&quot;/&gt;
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=116&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2011/01/21/shared-transformable-appweb-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Win place at the TDD Masterclass!!</title>
		<link>http://mickdelaney.com/2009/08/27/win-place-at-the-tdd-masterclass/</link>
		<comments>http://mickdelaney.com/2009/08/27/win-place-at-the-tdd-masterclass/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 21:35:45 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mickdelaney.com/?p=103</guid>
		<description><![CDATA[Roy Osherove is giving an hands-on TDD Masterclass in the UK, September 21-25. Roy is author of &#8220;The Art of Unit Testing&#8221; (http://www.artofunittesting.com/), a leading tdd &#38; unit testing book; he maintains a blog at http://iserializable.com (which amoung other things &#8230; <a href="http://mickdelaney.com/2009/08/27/win-place-at-the-tdd-masterclass/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=103&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Roy Osherove is giving an hands-on TDD Masterclass in the UK, September 21-25. Roy is author of &#8220;The Art of Unit Testing&#8221; (<a href="http://www.artofunittesting.com/">http://www.artofunittesting.com/</a>), a leading tdd &amp; unit testing book; he maintains a blog at <a href="http://iserializable.com/">http://iserializable.com</a> (which amoung other things has critiqued tests written by Microsoft for <a href="http://asp.net/">asp.net</a> MVC &#8211; check out the testreviews category) and has recently been on the Scott Hanselman podcast (<a href="http://bit.ly/psgYO">http://bit.ly/psgYO</a>) where he educated Scott on best practices in Unit Testing techniques. For a further insight into Roy&#8217;s style, be sure to also check out Roy&#8217;s talk at the recent Norwegian Developer&#8217;s Conference (<a href="http://bit.ly/NuJVa">http://bit.ly/NuJVa</a>).</p>
<p>Full Details here: <a href="http://bbits.co.uk/tddmasterclass">http://bbits.co.uk/tddmasterclass</a></p>
<p>bbits are holding a raffle for a free ticket for the event. To be eligible to win the ticket (worth £2395!) you MUST paste this text, including all links, into your blog and email <a href="mailto:Ian@bbits.co.uk">Ian@bbits.co.uk</a> with the url to the blog entry.  The draw will be made on September 1st and the winner informed by email and on <a href="http://bbits.co.uk/blog">bbits.co.uk/blog</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=103&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/08/27/win-place-at-the-tdd-masterclass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>asp.net mvc &#8211; The virtual path maps to another application, which is not allowed</title>
		<link>http://mickdelaney.com/2009/08/07/asp-net-mvc-the-virtual-path-maps-to-another-application-which-is-not-allowed/</link>
		<comments>http://mickdelaney.com/2009/08/07/asp-net-mvc-the-virtual-path-maps-to-another-application-which-is-not-allowed/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 09:08:24 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.mickdelaney.com/?p=101</guid>
		<description><![CDATA[what a waste of time&#8230; i was getting this error: Error 1 The virtual path &#8216;/Views/Shared/Site.Master&#8217; maps to another application, which is not allowed. C:\temp\Views\Cart\New.aspx this didn&#8217;t really help me, some searching said stuff about IIS mappings etc&#8230; anyways it &#8230; <a href="http://mickdelaney.com/2009/08/07/asp-net-mvc-the-virtual-path-maps-to-another-application-which-is-not-allowed/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=101&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>what a waste of time&#8230; i was getting this error:</p>
<blockquote><p>Error	1<br />
The virtual path &#8216;/Views/Shared/Site.Master&#8217; maps to another application, which is not allowed.	C:\temp\Views\Cart\New.aspx</p></blockquote>
<p>this didn&#8217;t really help me, some searching said stuff about IIS mappings etc&#8230; anyways it turns out to be very simple&#8230; one of my views had a missing tilde ~</p>
<p><strong><span style="text-decoration:underline;">&#8220;/Views/Shared/Site.Master&#8221;</span> i changed it to   <span style="text-decoration:underline;">&#8220;~/Views/Shared/Site.Master&#8221;</span></strong><strong> and the problem was gone&#8230;</strong></p>
<p>as i said what a waste of time !!!!</p>
<p><strong><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=101&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/08/07/asp-net-mvc-the-virtual-path-maps-to-another-application-which-is-not-allowed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>ApplicationPoolIdentity IIS 7, Asp.net Gotcha!!!!</title>
		<link>http://mickdelaney.com/2009/07/16/applicationpoolidentity-iis-7-asp-net-gotcha/</link>
		<comments>http://mickdelaney.com/2009/07/16/applicationpoolidentity-iis-7-asp-net-gotcha/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 13:49:34 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mickdelaney.wordpress.com/2009/07/16/applicationpoolidentity-iis-7-asp-net-gotcha/</guid>
		<description><![CDATA[&#160; What a waste of an hour…&#160;&#160; I was running an asp.net mvc app&#160; on my VMWare Fusion VM, with Windows 7 RC &#38; IIS 7. When i kept getting this error: System.Security.SecurityException: Request for the permission of type &#8216;System.Web.AspNetHostingPermission, &#8230; <a href="http://mickdelaney.com/2009/07/16/applicationpoolidentity-iis-7-asp-net-gotcha/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=95&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>What a waste of an hour…&#160;&#160; I was running an asp.net mvc app&#160; on my VMWare Fusion VM, with Windows 7 RC &amp; IIS 7. When i kept getting this error: </p>
<blockquote><p><b></b>System.Security.SecurityException: Request for the permission of type &#8216;System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&#8242; failed.</p>
</blockquote>
<p>The thing that threw me off was that it only seemed to happen doing certain stuff, like the mvc future strongly typed links and html helper submits.. </p>
<p>&lt;% Html.SubmitImage(….. </p>
<p>Also if you search for posts/forums on it you;’ll bump into the UNC path issue, which again threw me a little.. “was it because of my VM, was iis seeing my C drive as a share?” crazy talk but still that’s the kind of shit that goes through your head when debugging these kinds of issues… </p>
<p>&#160;</p>
<p>Anyways in the end it was the identity that the Application pool for my site was running under, funnily enough&#160; called “ApplicationPoolIdentity”. </p>
<p>I changed it to network service and all is fine.. </p>
<p>check out this <a href="http://www.dotnetnuke.com/Community/Blogs/tabid/825/EntryId/2157/The-Adventures-of-VMWare-Windows-7-Web-Platform-Installer-SQL-Server-2008-Express-IIS-7-and-installing-DNN-otherwise-known-as-HELL.aspx">post</a> which covers the issue… </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=95&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/07/16/applicationpoolidentity-iis-7-asp-net-gotcha/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio CSS Formatting&#8230; nice!!</title>
		<link>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice-2/</link>
		<comments>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice-2/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 11:19:15 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mickdelaney.wordpress.com/2009/07/16/visual-studio-css-formatting-nice/</guid>
		<description><![CDATA[&#160; Now that I’m back doing alot of CSS i came across a post describing the CSS formatting feature in visual studio… My preference is for single line css. I dont like to expand to one line per rule, thats &#8230; <a href="http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=110&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Now that I’m back doing alot of CSS i came across a <a href="http://blog.sb2.fr/post/2009/01/03/How-To-Change-Visual-Studio-CSS-Editor-Default-Format-Settings.aspx">post</a> describing the CSS formatting feature in visual studio… </p>
<p>My preference is for single line css. I dont like to expand to one line per rule, thats just my personal preference. But it can be a pain to maintain. </p>
<p>Enter visual studio: </p>
<p>here’s some code i had….</p>
<p>&#160;</p>
<blockquote><p>body      <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; background: #123;       <br />&#160;&#160;&#160;&#160;&#160; border-top: 5px solid #000;       <br />&#160;&#160;&#160;&#160;&#160; color: #333;       <br />&#160;&#160;&#160;&#160;&#160; font-size: 11px;       <br />&#160;&#160;&#160;&#160;&#160; padding: 20px 0 40px;       <br />&#160; }       <br />&#160; a       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; color: #fff;       <br />&#160;&#160;&#160;&#160;&#160; text-decoration: none;       <br />&#160; }       <br />&#160; a:hover       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; text-decoration: underline;       <br />&#160; }       <br />&#160; h1       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; font-family: Georgia, serif;       <br />&#160;&#160;&#160;&#160;&#160; font-weight: normal;       <br />&#160;&#160;&#160;&#160;&#160; text-align: center;       <br />&#160; }</p>
</blockquote>
<p>and with a quick Format!!!</p>
<blockquote><p>body { background: #123; border-top: 5px solid #000; color: #333; font-size: 11px; padding: 20px 0 40px; }      <br />a { color: #fff; text-decoration: none; }       <br />a:hover { text-decoration: underline; }       <br />h1 { font-family: Georgia, serif; font-weight: normal; text-align: center; }       </p>
</blockquote>
<p>nice…. </p>
<p>&#160;</p>
<p>now if only the formatter would make the rules <u><a href="http://net.tutsplus.com/tutorials/html-css-techniques/5-tips-to-writing-better-css/"><strong>alphabetical</strong></a>&#160;</u>!!!! </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=110&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio CSS Formatting&#8230; nice!!</title>
		<link>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice/</link>
		<comments>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 11:19:15 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mickdelaney.wordpress.com/2009/07/16/visual-studio-css-formatting-nice/</guid>
		<description><![CDATA[&#160; Now that I’m back doing alot of CSS i came across a post describing the CSS formatting feature in visual studio… My preference is for single line css. I dont like to expand to one line per rule, thats &#8230; <a href="http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=93&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Now that I’m back doing alot of CSS i came across a <a href="http://blog.sb2.fr/post/2009/01/03/How-To-Change-Visual-Studio-CSS-Editor-Default-Format-Settings.aspx">post</a> describing the CSS formatting feature in visual studio… </p>
<p>My preference is for single line css. I dont like to expand to one line per rule, thats just my personal preference. But it can be a pain to maintain. </p>
<p>Enter visual studio: </p>
<p>here’s some code i had….</p>
<p>&#160;</p>
<blockquote><p>body      <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; background: #123;       <br />&#160;&#160;&#160;&#160;&#160; border-top: 5px solid #000;       <br />&#160;&#160;&#160;&#160;&#160; color: #333;       <br />&#160;&#160;&#160;&#160;&#160; font-size: 11px;       <br />&#160;&#160;&#160;&#160;&#160; padding: 20px 0 40px;       <br />&#160; }       <br />&#160; a       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; color: #fff;       <br />&#160;&#160;&#160;&#160;&#160; text-decoration: none;       <br />&#160; }       <br />&#160; a:hover       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; text-decoration: underline;       <br />&#160; }       <br />&#160; h1       <br />&#160; {       <br />&#160;&#160;&#160;&#160;&#160; font-family: Georgia, serif;       <br />&#160;&#160;&#160;&#160;&#160; font-weight: normal;       <br />&#160;&#160;&#160;&#160;&#160; text-align: center;       <br />&#160; }</p>
</blockquote>
<p>and with a quick Format!!!</p>
<blockquote><p>body { background: #123; border-top: 5px solid #000; color: #333; font-size: 11px; padding: 20px 0 40px; }      <br />a { color: #fff; text-decoration: none; }       <br />a:hover { text-decoration: underline; }       <br />h1 { font-family: Georgia, serif; font-weight: normal; text-align: center; }       </p>
</blockquote>
<p>nice…. </p>
<p>&#160;</p>
<p>now if only the formatter would make the rules <u><a href="http://net.tutsplus.com/tutorials/html-css-techniques/5-tips-to-writing-better-css/"><strong>alphabetical</strong></a>&#160;</u>!!!! </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=93&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/07/16/visual-studio-css-formatting-nice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Will IronRuby take off???</title>
		<link>http://mickdelaney.com/2009/07/15/will-ironruby-take-off/</link>
		<comments>http://mickdelaney.com/2009/07/15/will-ironruby-take-off/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 19:57:05 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mickdelaney.com/?p=78</guid>
		<description><![CDATA[Hi, I&#8217;ve been working with ruby for about 6 months now on and off but the majority of my development is still in C#. So i&#8217;ve been keen to try out the possibility of using IronRuby with C#. I think &#8230; <a href="http://mickdelaney.com/2009/07/15/will-ironruby-take-off/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=78&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;ve been working with ruby for about 6 months now on and off but the majority of my development is still in C#. So i&#8217;ve been keen to try out the possibility of using IronRuby with C#. I think the mixture of both langauges is compelling as there&#8217;s cases where a dynamic language is a better choice, more flexible and faster (development time).</p>
<p>Also with ruby there&#8217;s a really good opportunity to build internal DSL&#8217;s fast, and with an elegant end product. You only have to look at ActiveRecord in rails:</p>
<pre><code>class Post &lt; ActiveRecord::Base
  has_many :comments
  validates_presence_of :text

  ...
end

class Comment &lt; ActiveRecord::Base
  belongs_to :post
  ...
end

and RSpec:
</code>
<pre><code>describe "(empty)" do
    it { @stack.should be_empty }
    it_should_behave_like "non-full Stack"
    it "should complain when sent #peek" do
      lambda { @stack.peek }.should raise_error(StackUnderflowError)
    end
    it "should complain when sent #pop" do
      lambda { @stack.pop }.should raise_error(StackUnderflowError)
    end
end
</code></pre>
</pre>
<p>to be fair with the increasing number of fluent interface API&#8217;s in the .net world the drive towards more understandable code is not the preserve of the dynamic people.  With tools like <code>StructureMap,<br />
</code></p>
<pre>
<pre><span style="color:#000000;">registry.AddInstanceOf&lt;IWidget&gt;()
 .WithName(<span style="color:#848284;">"DarkGreen"</span>)
 .UsingConcreteType&lt;ColorWidget&gt;()
 .WithProperty(<span style="color:#848284;">"Color"</span>).EqualTo(<span style="color:#848284;">"DarkGreen"</span>);</span></pre>
</pre>
<p>we get a very intuitive, understandable API which is also a DSL as far as i&#8217;m concerned. But i still believe that ruby&#8217;s looser syntax allows us to build nicer looking DSL&#8217;s <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I guess ultimately it&#8217;ll come down to how easy it is to use IronRuby with C#, <span style="text-decoration:underline;">how good the tooling is</span>, for example RubyMine is a ruby IDE from Jetbrains (resharper) which provides refactoring support and with these guys on the case i feel confident that the ruby refactoring story will only get better.</p>
<p>I did a <a title="talk" href="http://skillsmatter.com/podcast/design-architecture/iron-ruby" target="_blank">talk</a> on Ruby/IronRuby for skillmatter a while back and speaking to everyone at the talk there was a consistent message, we like/love ruby, love the tools available, rspec, cucumber, rake etc but we really need stability &amp; ide support.</p>
<p>Its arguable whether you need an ide, i used textmate for the majority of my rails dev, however i did find it alot easier once i started to use it in <span style="text-decoration:underline;">combination</span> with rubymine. Textmate for cranking out the code (its gr8, no clunky huge ide in the way), but when things got messy (i.e. i couldnt figure out a problem) i was able to boot up rubymine and get the full visual studio like experience with debugging, break points, watches, hover over variables etc, all that good stuff.</p>
<p>So if we get this for IronRuby i.e. a texteditor (which there are already loads of, e.g. e-editior, notepad++ etc) and full visual studio support I think people would jump all over Ruby/IronRuby.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=78&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/07/15/will-ironruby-take-off/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>visual studio team system very slow right click&#8230;</title>
		<link>http://mickdelaney.com/2009/06/05/visual-studio-team-system-very-slow-right-click/</link>
		<comments>http://mickdelaney.com/2009/06/05/visual-studio-team-system-very-slow-right-click/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 13:23:34 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mickdelaney.com/?p=75</guid>
		<description><![CDATA[if your having performance problems in VS2008 with Team Explorer on with large projects where you right click on the solution explorer and it takes a long fixed amount of time to load up each context menu then this could &#8230; <a href="http://mickdelaney.com/2009/06/05/visual-studio-team-system-very-slow-right-click/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=75&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>if your having performance problems in VS2008 with Team Explorer on with large projects where you right click on the solution explorer and it takes a long fixed amount of time to load up each context menu then this could be for you.</p>
<p>it drove me crazy for a while until i found this patch that sorted it out..</p>
<p>http://code.msdn.microsoft.com/KB947751/Release/ProjectReleases.aspx?ReleaseId=1022</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=75&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/06/05/visual-studio-team-system-very-slow-right-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
		<item>
		<title>starting a new website &#8211; use a css framework</title>
		<link>http://mickdelaney.com/2009/06/03/starting-a-new-website-use-a-css-framework/</link>
		<comments>http://mickdelaney.com/2009/06/03/starting-a-new-website-use-a-css-framework/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 21:07:12 +0000</pubDate>
		<dc:creator>mickdelaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.mickdelaney.com/?p=72</guid>
		<description><![CDATA[i&#8217;ve been doing web development for a number of years, although most of those were asp.net, i did some jsp and have also recently built a site using ruby on rails, it was during the development of that site that &#8230; <a href="http://mickdelaney.com/2009/06/03/starting-a-new-website-use-a-css-framework/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=72&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>i&#8217;ve been doing web development for a number of years, although most of those were asp.net, i did some jsp and have also recently built a site using ruby on rails, it was during the development of that site that i came across the blueprint css framework.</p>
<p>my conclusion, unless your a real css freak/hacker then save yourself alot of time and either use this or something similar such as yahoo grids &#8211; <cite>developer.<strong>yahoo</strong>.com/yui/<strong>grids</strong></cite> ,   or 960 grids &#8211; http://960.gs</p>
<p>you&#8217;ll find a good example here:</p>
<p>http://wiki.github.com/joshuaclayton/blueprint-css/quick-start-tutorial</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mickdelaney.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mickdelaney.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mickdelaney.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mickdelaney.com&amp;blog=7395477&amp;post=72&amp;subd=mickdelaney&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mickdelaney.com/2009/06/03/starting-a-new-website-use-a-css-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8bdeb4fc2c03d71b90a599dc1210933d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mickdelaney</media:title>
		</media:content>
	</item>
	</channel>
</rss>
