<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Noocyte's Weblog</title>
	<atom:link href="http://noocyte.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://noocyte.wordpress.com</link>
	<description>Ramblings of a geek</description>
	<lastBuildDate>Mon, 26 Oct 2009 09:28:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='noocyte.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/83e67bcde05005d6e4dcc6786bea3e8b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Noocyte's Weblog</title>
		<link>http://noocyte.wordpress.com</link>
	</image>
			<item>
		<title>Paying the IE6 tax</title>
		<link>http://noocyte.wordpress.com/2009/10/26/paying-the-ie6-tax/</link>
		<comments>http://noocyte.wordpress.com/2009/10/26/paying-the-ie6-tax/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 09:28:33 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/?p=337</guid>
		<description><![CDATA[Lately I&#8217;ve done some work on XSLT and search results from FAST. One of the features of FAST are navigators, they basically make it possible to do faceted searches. And the default XSLT that we were working on did not include counters for the navigators, making it harder for the user to guess/understand the impact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=337&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Lately I&#8217;ve done some work on XSLT and search results from <a href="http://www.microsoft.com/enterprisesearch/en/us/fast.aspx">FAST</a>. One of the features of FAST are navigators, they basically make it possible to do <a href="http://en.wikipedia.org/wiki/Faceted_search">faceted searches</a>. And the default XSLT that we were working on did not include counters for the navigators, making it harder for the user to guess/understand the impact of adding a new search term. So I had to add the counters (actually I&#8217;m working with a collegue on this). The navigators were outputted like this in the XSLT:</p>
<blockquote><p>&lt;xsl:element name=&#8221;option&#8221;&gt;<br />
&lt;xsl:attribute name=&#8221;value&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@VALUE&#8221;/&gt;<br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:attribute name=&#8221;title&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt;<br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:attribute name=&#8221;label&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt;<br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:call-template name=&#8221;trunctext&#8221;&gt;<br />
&lt;xsl:with-param name=&#8221;param&#8221;&gt;&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt;&lt;/xsl:with-param&gt;<br />
&lt;xsl:with-param name=&#8221;length&#8221;&gt;45&lt;/xsl:with-param&gt;<br />
&lt;/xsl:call-template&gt;<br />
&lt;/xsl:element&gt;</p></blockquote>
<p>So we changed it like this:</p>
<blockquote><p>&lt;xsl:element name=&#8221;option&#8221;&gt;<br />
&lt;xsl:attribute name=&#8221;value&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@VALUE&#8221;/&gt;<br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:attribute name=&#8221;title&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt;<br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:attribute name=&#8221;label&#8221;&gt;<br />
&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt; <span style="color:#0000ff;">(&lt;xsl:value-of select=&#8221;@COUNT&#8221;/&gt;)</span><br />
&lt;/xsl:attribute&gt;<br />
&lt;xsl:call-template name=&#8221;trunctext&#8221;&gt;<br />
&lt;xsl:with-param name=&#8221;param&#8221;&gt;&lt;xsl:value-of select=&#8221;@NAME&#8221;/&gt;&lt;/xsl:with-param&gt;<br />
&lt;xsl:with-param name=&#8221;length&#8221;&gt;45&lt;/xsl:with-param&gt;<br />
&lt;/xsl:call-template&gt;<br />
&lt;/xsl:element&gt;</p></blockquote>
<p>This would indicate to the user that at 12 documents should remain if that navigator was selected. And on our VPCs this worked as expected. It would ouput a listbox with the navigators and the counters would show up. So we commited the change and went home.</p>
<p>The very next day we checked our daily build, expecting the counters to show up. To to our surprise they did not! At first we figured it was just a deployment issue; maybe an old XSLT was causing problems for us? We navigated directly to the .xsl file and inspected it. Imagine our surprise when the XSLT file was the correct file. We fired up our VPCs and tried again; success on the VPC! Now we&#8217;re basically kicking into debugmode; look att differences! There might be a minor difference in the source Xml! We run diff tools but no difference is detected, the source is the same! A lot of head scratching and and ohing and uhing later I realize what the difference is (remember kids; when it looks the same, but behave differently; something is different!); on our physical machines we&#8217;re running Windows XP and IE6, but on the VPCs we&#8217;re running Windows Server 2003 and IE7/8&#8230; Our problem isn&#8217;t serverside, but a browser compatability issue! OMG! The problem is, IE6 ignores the label attribute! And IE7/8 will display the label value, but not the actual value (if label attribute is present). Once we realized this the solution was easy enough; we just added the counter after the &#8220;xsl:call-template&#8221; (trunctext) and removed the label attribute all together. Happy days!</p>
<p>Sorry about hte bad formatting&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/337/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=337&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2009/10/26/paying-the-ie6-tax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Incredible new utility</title>
		<link>http://noocyte.wordpress.com/2009/10/08/incredible-new-utility/</link>
		<comments>http://noocyte.wordpress.com/2009/10/08/incredible-new-utility/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 06:40:00 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[virtual machine]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/?p=335</guid>
		<description><![CDATA[I just discovered a cool new utility from Microsoft: Disk2vhd. It&#8217;s built by the Sysinternals team; Mark Russinovich and Bryce Cogswell. It&#8217;ll capture any disk on your system as a VHD; meaning you can transfer a physical machine to a virtual environment in a snap. I&#8217;m going to try to use it to get away [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=335&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just discovered a cool new utility from Microsoft: <a href="http://technet.microsoft.com/en-us/sysinternals/ee656415.aspx">Disk2vhd</a>. It&#8217;s built by the Sysinternals team; Mark Russinovich and Bryce Cogswell. It&#8217;ll capture any disk on your system as a VHD; meaning you can transfer a physical machine to a virtual environment in a snap. I&#8217;m going to try to use it to get away from Hyper-V on my laptop, so I can install Windows 7 and run just Virtual PC. I&#8217;m thinking I can use this to make  a &#8220;running&#8221; backup of old computers as well. So when I&#8217;m ready to ditch a computer and get a replacement or <a href="http://www.hanselman.com/blog/PavingMyMachineForAFresh2006.aspx">pave</a> it I can just capture the disk and store it on my <a href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx">Windows Home Server</a> for later. Why would I do this? Because I always forget something; a document on my dekstop or some odd file in the temp folder&#8230; Or I can just boot it and see what that great litt utility I  installed 2 years ago on the old Dell laptop was called, because I can&#8217;t remember anymore&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/335/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=335&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2009/10/08/incredible-new-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>DRY in the real world</title>
		<link>http://noocyte.wordpress.com/2009/08/27/dry-in-the-real-world/</link>
		<comments>http://noocyte.wordpress.com/2009/08/27/dry-in-the-real-world/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 08:24:00 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[code nazi]]></category>
		<category><![CDATA[dry]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2009/08/27/dry-in-the-real-world/</guid>
		<description><![CDATA[In programming there are many, many principles. One of the more useful ones that I’ve discovered lately is DRY: Don’t Repeat Yourself. It’s simple really, never ever copy code and don’t write the same code twice. In the real world it might not be as easy though… 
Today I was about to check in some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=334&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In programming there are many, many principles. One of the more useful ones that I’ve discovered lately is <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself">DRY</a>: <strong>Don’t Repeat Yourself</strong>. It’s simple really, never ever copy code and don’t write the same code twice. In the real world it might not be as easy though… </p>
<p>Today I was about to check in some code and I went through my regular check-in routine (you have one as well I presume?) and discovered that I was violating DRY! At least if you’re being anal about it… The code in question was a little like this: (slightly altered to protect the innocents)</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">using</span> (SPSite site = <span style="color:#0000ff;">new</span> SPSite(url)) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span>     <span style="color:#0000ff;">using</span> (SPWeb web = site.OpenWeb()) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>         lang = web.Language;</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>(I didn’t really return the language, but no need to include all of the source code)</p>
<p>So I was doing the double using in 4-5 places; a clear violation of DRY in my book. So what I did was this:</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">private</span> T OpenSiteWeb&lt;T&gt;(<span style="color:#0000ff;">string</span> url, Func&lt;SPSite, SPWeb, T&gt; implementingMember) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span>    <span style="color:#0000ff;">using</span> (SPSite site = <span style="color:#0000ff;">new</span> SPSite(url)) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>        <span style="color:#0000ff;">using</span> (SPWeb web = site.OpenWeb()) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>            <span style="color:#0000ff;">return</span> implementingMember(site, web);</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>        }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>    }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>This method I can use like this:</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> lang = OpenSiteWeb&lt;<span style="color:#0000ff;">uint</span>&gt;(url, (s, w) =&gt;</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>     <span style="color:#0000ff;">return</span> w.Language;</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>Pretty neat, no? It might be overkill, but fun code to write anyway! </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/334/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/334/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/334/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=334&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2009/08/27/dry-in-the-real-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Announcing Isolator for Sharepoint with a free full license for bloggers &#8211; ISerializable &#8211; Roy Osherove&#8217;s Blog</title>
		<link>http://noocyte.wordpress.com/2008/11/27/announcing-isolator-for-sharepoint-with-a-free-full-license-for-bloggers-iserializable-roy-osheroves-blog/</link>
		<comments>http://noocyte.wordpress.com/2008/11/27/announcing-isolator-for-sharepoint-with-a-free-full-license-for-bloggers-iserializable-roy-osheroves-blog/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 14:45:49 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[isolator]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[typemock]]></category>
		<category><![CDATA[unit testing]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/11/27/announcing-isolator-for-sharepoint-with-a-free-full-license-for-bloggers-iserializable-roy-osheroves-blog/</guid>
		<description><![CDATA[We’re just now starting a huge Sharepoint project and this new edition of Isolator might be good for that project. I’ll need to try it out!
And they’re even giving it away for free! 50 licenses anyways. I’m hoping there’s one for me! For that to happen I have to include this text:
Typemock are offering their [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=333&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We’re just now starting a huge Sharepoint project and this new edition of Isolator might be good for that project. I’ll need to try it out!</p>
<p>And they’re even giving it away for free! 50 licenses anyways. I’m hoping there’s one for me! For that to happen I have to include this text:</p>
<blockquote><p>Typemock are offering their new product for <a href="http://www.typemock.com/sharepointpage.php?utm_source=sp_bb&amp;utm_medium=blog_4sp&amp;utm_campaign=sp_bb">unit testing SharePoint</a> called Isolator For SharePoint, for a special introduction price. it is the only tool that allows you to <a href="http://blog.typemock.com/2008/11/newisolatorforsharepointtoolforunittest.html?utm_source=typeblog&amp;utm_medium=sp_bb&amp;utm_campaign=typeblog">unit test SharePoint</a> without a SharePoint server. To learn more <a href="http://www.typemock.com/sharepointpage.php?utm_source=sp_bb&amp;utm_medium=blog_4sp&amp;utm_campaign=sp_bb">click here</a>. </p>
<p><strong>The first 50 bloggers </strong>who blog this text in their blog and tell us about it, will get a Full Isolator license, Free. for rules and info <a href="http://blog.typemock.com/2008/11/newisolatorforsharepointtoolforunittest.html">click here</a>. </p>
<p><a href="http://weblogs.asp.net/rosherove/archive/2008/11/24/announcing-isolator-for-sharepoint-with-a-free-full-license-for-bloggers.aspx">Announcing Isolator for Sharepoint with a free full license </a></p>
</blockquote>
<p><font color="#777777">So that’s cool! So, if I do happen to get a free license I’ll tell you all about it, right here!</font></p>
<p>for bloggers &#8211; ISerializable &#8211; Roy Osherove&#8217;s Blog</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=333&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/11/27/announcing-isolator-for-sharepoint-with-a-free-full-license-for-bloggers-iserializable-roy-osheroves-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Update on Silverlight 2 &#8211; and a glimpse of Silverlight 3 &#8211; ScottGu&#8217;s Blog</title>
		<link>http://noocyte.wordpress.com/2008/11/17/update-on-silverlight-2-and-a-glimpse-of-silverlight-3-scottgus-blog/</link>
		<comments>http://noocyte.wordpress.com/2008/11/17/update-on-silverlight-2-and-a-glimpse-of-silverlight-3-scottgus-blog/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 08:13:20 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[betting the farm]]></category>
		<category><![CDATA[holy cow]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/11/17/update-on-silverlight-2-and-a-glimpse-of-silverlight-3-scottgus-blog/</guid>
		<description><![CDATA[Holy cow! Silverlight 2 was just released and ScottGu mentions some of the improvements coming in the next major versjon; Silverlight 3. 
Next year we will ship our next major Silverlight release &#8212; Silverlight 3. 
Silverlight 3 will include major media enhancements (including H.264 video support), major graphics improvements (including 3D support and GPU hardware [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=332&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Holy cow! Silverlight 2 was just released and ScottGu mentions some of the improvements coming in the next major versjon; Silverlight 3. </p>
<blockquote><p>Next year we will ship our next major Silverlight release &#8212; Silverlight 3. </p>
<p>Silverlight 3 will include major media enhancements (including H.264 video support), major graphics improvements (including 3D support and GPU hardware acceleration), as well as major application development improvements (including richer data-binding support and additional controls). Note these are just a small sampling of the improvements &#8211; we have plenty of additional cool features we are going to keep up our sleeves a little longer.</p>
</blockquote>
<p><font color="#777777">Looks like Microsoft is pouring a lot of resources into Silverlight. I’d have no issues <a href="http://idioms.thefreedictionary.com/betting+the+farm">betting the farm</a> on Silverlight.</font></p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2008/11/16/update-on-silverlight-2-and-a-glimpse-of-silverlight-3.aspx">Update on Silverlight 2 &#8211; and a glimpse of Silverlight 3 &#8211; ScottGu&#8217;s Blog</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=332&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/11/17/update-on-silverlight-2-and-a-glimpse-of-silverlight-3-scottgus-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>James Shore: Successful Software</title>
		<link>http://noocyte.wordpress.com/2008/11/17/james-shore-successful-software/</link>
		<comments>http://noocyte.wordpress.com/2008/11/17/james-shore-successful-software/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 07:39:03 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/11/17/james-shore-successful-software/</guid>
		<description><![CDATA[So today I read two blog posts on Agile that talks about the failures of Agile. Basically what they’re saying is that Agile+SCRUM is HARD and a lot of teams are failing hard and fast with it. 
There are a lot of teams right now failing with Agile. These teams are working in short cycles. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=331&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So today I read two blog posts on Agile that talks about the failures of Agile. Basically what they’re saying is that Agile+SCRUM is HARD and a lot of teams are failing hard and fast with it. </p>
<blockquote><p>There are a lot of teams right now failing with Agile. These teams are working in short cycles. The increased planning frequency has given them more control over their work and they&#8217;re discovering and fixing some problems. They feel good, and they really are seeing more success than they were before. </p>
<p>But they aren&#8217;t working in shared workspaces or emphasizing high-bandwidth communication. They&#8217;re don&#8217;t have on-site customers or work in cross-functional teams. They don&#8217;t even finish all of their stories by the end of each Sprint, let alone deliver releasable software, and they certainly don&#8217;t use good engineering practices.</p>
</blockquote>
<p><font color="#777777">I’ve always been a firm believer that the four most important aspects of agile software development are:</font></p>
<ol>
<li><font color="#777777">Short iterations</font></li>
<li><font color="#777777">On-site customer voice</font></li>
<li>Best engineering practices</li>
<li>Process review</li>
</ol>
<p><a href="http://en.wikipedia.org/wiki/Ken_Schwaber">Ken Schwaber,</a> one of the <a href="http://www.google.no/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fsearchwindevelopment.techtarget.com%2Ftip%2F0%2C289483%2Csid8_gci1317348%2C00.html&amp;ei=LR8hSYuLEJvsQI6IqdgE&amp;usg=AFQjCNHHLtun4DQtzG1BI68xtfBYKx-zFQ&amp;sig2=JRMPyuI94pWKeXlltXRquQ">Scrum Fathers,</a> said at <a href="http://www.ndc2008.no/foredragsholdere/">NDC2008</a> that a SCRUM development process will never be complete, it should always evolve and become better. I think a lot of teams are forgetting this, they just churn out code and every 3-6 weeks they evaluate on what to do next. This is not scrum and it is not being truly agile. It’s just being sloppy if you ask me… <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://jamesshore.com/Blog/The-Decline-and-Fall-of-Agile.html">James Shore: Successful Software</a>    <br /><a href="The Decline and Fall of Agile and How Scrum Makes it Hurt More">The Decline and Fall of Agile and How Scrum Makes it Hurt More</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=331&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/11/17/james-shore-successful-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Crazy Talk: Reducing ORM Friction : Rob Conery</title>
		<link>http://noocyte.wordpress.com/2008/11/05/crazy-talk-reducing-orm-friction-rob-conery/</link>
		<comments>http://noocyte.wordpress.com/2008/11/05/crazy-talk-reducing-orm-friction-rob-conery/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 13:23:42 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[db4o]]></category>
		<category><![CDATA[object orientation]]></category>
		<category><![CDATA[tdd]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/11/05/crazy-talk-reducing-orm-friction-rob-conery/</guid>
		<description><![CDATA[So Rob Conery wrote a really cool post the other day that I just had to comment on.
Here&#8217;s my thought for you: What if you used an OODB for development ONLY and implemented SQL Server later, when you know what you need to create.

It made me wonder; how many applications really, really need a full [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=329&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So Rob Conery wrote a really <a href="http://blog.wekeroad.com/blog/crazy-talk-reducing-orm-friction/">cool post</a> the other day that I just had to comment on.</p>
<blockquote><p>Here&#8217;s my thought for you: What if you used an OODB for development ONLY and implemented SQL Server later, when you know what you need to create.</p>
</blockquote>
<p><font color="#777777">It made me wonder; how many applications really, really need a full on RDBMS (Oracle, Sql Server etc.) as backend? I wouldn’t know, but if I were to guess I’d say; not all. Vague, I know… <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  But I do know this; my next project will use <a href="http://www.db4o.com/?src=comm">Db4O</a>! I just have to try this stuff out! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </font></p>
<p><a href="http://blog.wekeroad.com/blog/crazy-talk-reducing-orm-friction/">Crazy Talk: Reducing ORM Friction : Rob Conery</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/329/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/329/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/329/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=329&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/11/05/crazy-talk-reducing-orm-friction-rob-conery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Scott Hanselman&#8217;s Computer Zen &#8211; Tips for Preparing for a Technical Presentation</title>
		<link>http://noocyte.wordpress.com/2008/11/05/scott-hanselmans-computer-zen-tips-for-preparing-for-a-technical-presentation/</link>
		<comments>http://noocyte.wordpress.com/2008/11/05/scott-hanselmans-computer-zen-tips-for-preparing-for-a-technical-presentation/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 11:24:58 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[nnug]]></category>
		<category><![CDATA[pdc]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/11/05/scott-hanselmans-computer-zen-tips-for-preparing-for-a-technical-presentation/</guid>
		<description><![CDATA[&#160;
I thought I did a good job, with 72 slides and 8 demos in 75 minutes and only one person said it felt rushed in the comments.   Of course, I had about 9 hours of content, but I did prepare in specific ways in order to pull it off.

Scott, you did an amazing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=328&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#160;</p>
<blockquote><p>I thought I did a good job, with 72 slides and 8 demos in 75 minutes and only one person said it felt rushed in the comments. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Of course, I had about 9 hours of content, but I did prepare in specific ways in order to pull it off.</p>
</blockquote>
<p>Scott, you did an amazing job! Unfortunately I was not able to attend PDF2008, but I watched you presentation, back to back; good stuff! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also I’ll be using your tips for my “TFS Build – More than code” presentation @ <a href="http://www.nnug.no">NNUG</a> tonight. </p>
<p><a href="http://www.hanselman.com/blog/TipsForPreparingForATechnicalPresentation.aspx">Scott Hanselman&#8217;s Computer Zen &#8211; Tips for Preparing for a Technical Presentation</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/328/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=328&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/11/05/scott-hanselmans-computer-zen-tips-for-preparing-for-a-technical-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Gamerscore Blog : Dead Space &#8211; A Horror Lover&#8217;s First Impressions</title>
		<link>http://noocyte.wordpress.com/2008/10/15/gamerscore-blog-dead-space-a-horror-lovers-first-impressions/</link>
		<comments>http://noocyte.wordpress.com/2008/10/15/gamerscore-blog-dead-space-a-horror-lovers-first-impressions/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 06:40:44 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/10/15/gamerscore-blog-dead-space-a-horror-lovers-first-impressions/</guid>
		<description><![CDATA[I’m not much for shooter (excluding GoW) nor Horrors (excluding 7th Guest), but DirtyDivas short review of Dead Space was funny. It ended with this priceless quote: 
The onslaught of games has begun. I need better time management skills. This whole work thing and that sleeping thing is not conducive to my gaming time.
Gamerscore Blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=327&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I’m not much for shooter (excluding <a href="http://gearsofwar.xbox.com">GoW</a>) nor Horrors (excluding <a href="http://en.wikipedia.org/wiki/The_7th_Guest">7th Guest</a>), but <a href="http://www.360voice.com/tag/DirtyDiva">DirtyDivas</a> short review of Dead Space was funny. It ended with this <a href="http://www.priceless.com/">priceless</a> quote: </p>
<blockquote><p>The onslaught of games has begun. I need better time management skills. This whole work thing and that sleeping thing is not conducive to my gaming time.</p></blockquote>
<p><a href="http://gamerscoreblog.com/team/archive/2008/10/14/561870.aspx">Gamerscore Blog : Dead Space &#8211; A Horror Lover&#8217;s First Impressions</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/327/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=327&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/10/15/gamerscore-blog-dead-space-a-horror-lovers-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
		<item>
		<title>Mass Transit &#8211; Part 1 of N &#8211; Tim Barcz</title>
		<link>http://noocyte.wordpress.com/2008/10/14/mass-transit-part-1-of-n-tim-barcz/</link>
		<comments>http://noocyte.wordpress.com/2008/10/14/mass-transit-part-1-of-n-tim-barcz/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 08:57:44 +0000</pubDate>
		<dc:creator>noocyte</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[pub/sub]]></category>
		<category><![CDATA[synergi]]></category>

		<guid isPermaLink="false">http://noocyte.wordpress.com/2008/10/14/mass-transit-part-1-of-n-tim-barcz/</guid>
		<description><![CDATA[This looks interesting! I’ll have to follow the next n parts of this! 
This system started small but gradually had increased demands in the form of new features clients wanted added. Pretty soon, when you clicked the save button multiple things were happening; a database row would be updated, an email would be sent, a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=326&subd=noocyte&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This looks interesting! I’ll have to follow the next n parts of this! </p>
<blockquote><p>This system started small but gradually had increased demands in the form of new features clients wanted added. Pretty soon, when you clicked the save button multiple things were happening; a database row would be updated, an email would be sent, a new file would be written, another status file would be updated. These were all executed when the user clicked the button, therefore every action was a blocking action, the server couldn&#8217;t move on until it was done servicing that particular request.</p>
</blockquote>
<p><font color="#777777">The quote above is from the blog post and sort of sums up my experience with a CMS-like application (Synergi), where we once did a Save, Send Mail, Commit we ended up with something like this after a few years; Save, Mail, Mail, Mail, Update Table X, Update Table Y, Mail, Commit. So a solution, like the one proposed in the blog post, could work very well for Synergi. Interesting.</font></p>
<p><a href="http://devlicio.us/blogs/tim_barcz/archive/2008/10/13/mass-transit-part-1-of-n.aspx">Mass Transit &#8211; Part 1 of N &#8211; Tim Barcz</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noocyte.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noocyte.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noocyte.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noocyte.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noocyte.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noocyte.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noocyte.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noocyte.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noocyte.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noocyte.wordpress.com/326/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noocyte.wordpress.com&blog=1882265&post=326&subd=noocyte&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noocyte.wordpress.com/2008/10/14/mass-transit-part-1-of-n-tim-barcz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fce6388ae17f02a65fb3e9765be73d25?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noocyte</media:title>
		</media:content>
	</item>
	</channel>
</rss>