<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>webscale</title>
	<atom:link href="http://www.simnova.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simnova.com/blog</link>
	<description>Web 2.0 and beyond</description>
	<lastBuildDate>Sat, 13 Feb 2010 04:10:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Just finished reading Outliers..</title>
		<link>http://www.simnova.com/blog/index.php/2010/02/12/just-finished-reading-outliers/</link>
		<comments>http://www.simnova.com/blog/index.php/2010/02/12/just-finished-reading-outliers/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 04:10:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2010/02/12/just-finished-reading-outliers/</guid>
		<description><![CDATA[ Outliers by Malcolm Gladwell  
My rating: 4 of 5 stars Interesting view on how taking advantages of opportunities and hard work can lead to success. View all my reviews &#62;&#62;

  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2010%2F02%2F12%2Fjust-finished-reading-outliers%2F';
  addthis_title  = 'Just+finished+reading+Outliers..';
  addthis_pub    = 'webscale';

]]></description>
			<content:encoded><![CDATA[<p><a style="padding-right: 20px; float: left" href="http://www.goodreads.com/book/show/3228917.Outliers"><img border="0" alt="Outliers" src="http://photo.goodreads.com/books/1255608670m/3228917.jpg" /></a> <a href="http://www.goodreads.com/book/show/3228917.Outliers">Outliers</a> by <a href="http://www.goodreads.com/author/show/1439.Malcolm_Gladwell">Malcolm Gladwell</a>  </p>
<p>My rating: <a href="http://www.goodreads.com/review/show/89449709">4 of 5 stars</a> Interesting view on how taking advantages of opportunities and hard work can lead to success. <a href="http://www.goodreads.com/review/list/3284513-simnova">View all my reviews &gt;&gt;</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2010%2F02%2F12%2Fjust-finished-reading-outliers%2F';
  addthis_title  = 'Just+finished+reading+Outliers..';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2010/02/12/just-finished-reading-outliers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC &#8211; JsonResult &#8211; Preventing Caching</title>
		<link>http://www.simnova.com/blog/index.php/2010/01/13/asp-net-mvc-jsonresult-preventing-caching/</link>
		<comments>http://www.simnova.com/blog/index.php/2010/01/13/asp-net-mvc-jsonresult-preventing-caching/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 18:25:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[JsonResult Cache]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2010/01/13/asp-net-mvc-jsonresult-preventing-caching/</guid>
		<description><![CDATA[I came across a scenario where I did not want JSON to be cached, the following code did the trick:
public JsonResult ListJson()   {    &#160;&#160;&#160; Response.CacheControl = &#34;no-cache&#34;;    &#160;&#160;&#160; Response.Cache.SetETag(((ShortGuid)Guid.NewGuid()).ToString());
&#160;
FYI I’m using ShortGuid from Dave Transom

  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2010%2F01%2F13%2Fasp-net-mvc-jsonresult-preventing-caching%2F';
  addthis_title  = 'ASP.NET+MVC+%26ndash%3B+JsonResult+%26ndash%3B+Preventing+Caching';
 [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a scenario where I did not want JSON to be cached, the following code did the trick:</p>
<p>public JsonResult ListJson()   <br />{    <br />&#160;&#160;&#160; Response.CacheControl = &quot;no-cache&quot;;    <br />&#160;&#160;&#160; Response.Cache.SetETag(((ShortGuid)Guid.NewGuid()).ToString());</p>
<p>&#160;</p>
<p>FYI I’m using <a href="http://www.singular.co.nz/blog/archive/2007/12/20/shortguid-a-shorter-and-url-friendly-guid-in-c-sharp.aspx" target="_blank">ShortGuid</a> from <a href="http://www.singular.co.nz/blog/" target="_blank">Dave Transom</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2010%2F01%2F13%2Fasp-net-mvc-jsonresult-preventing-caching%2F';
  addthis_title  = 'ASP.NET+MVC+%26ndash%3B+JsonResult+%26ndash%3B+Preventing+Caching';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2010/01/13/asp-net-mvc-jsonresult-preventing-caching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIOS vs EC2 w/Windows (network performance)</title>
		<link>http://www.simnova.com/blog/index.php/2008/11/02/fios-vs-ec2-wwindows-network-performance/</link>
		<comments>http://www.simnova.com/blog/index.php/2008/11/02/fios-vs-ec2-wwindows-network-performance/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 05:21:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2008/11/02/fios-vs-ec2-wwindows-network-performance/</guid>
		<description><![CDATA[&#160;
Not bad Amazon!
     

  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F11%2F02%2Ffios-vs-ec2-wwindows-network-performance%2F';
  addthis_title  = 'FIOS+vs+EC2+w%2FWindows+%28network+performance%29';
  addthis_pub    = 'webscale';

]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Not bad Amazon!</p>
<p><a href="http://www.simnova.com/blog/wp-content/uploads/2008/11/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="142" alt="image" src="http://www.simnova.com/blog/wp-content/uploads/2008/11/image-thumb.png" width="244" border="0" /></a>     <br /><a href="http://www.simnova.com/blog/wp-content/uploads/2008/11/image1.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="137" alt="image" src="http://www.simnova.com/blog/wp-content/uploads/2008/11/image-thumb1.png" width="244" border="0" /></a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F11%2F02%2Ffios-vs-ec2-wwindows-network-performance%2F';
  addthis_title  = 'FIOS+vs+EC2+w%2FWindows+%28network+performance%29';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2008/11/02/fios-vs-ec2-wwindows-network-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2007 &#8211; GTD Made Simple with ClearContext</title>
		<link>http://www.simnova.com/blog/index.php/2008/07/29/outlook-2007-gtd-made-simple-with-clearcontext/</link>
		<comments>http://www.simnova.com/blog/index.php/2008/07/29/outlook-2007-gtd-made-simple-with-clearcontext/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 03:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[GTD]]></category>
		<category><![CDATA[InboxZero]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2008/07/29/outlook-2007-gtd-made-simple-with-clearcontext/</guid>
		<description><![CDATA[Following InboxZero can be difficult; trying to keep up with all the emails that are constantly coming in can be a constant struggle.
Fortunately ClearContext has produced a great product that helps you tackle your inbox, I&#8217;ve been using a trial of ClearContext IMS Pro and have been extremely happy (especially with the functionality that lets [...]]]></description>
			<content:encoded><![CDATA[<p>Following <a href="http://www.43folders.com/izero">InboxZero</a> can be difficult; trying to keep up with all the emails that are constantly coming in can be a constant struggle.</p>
<p>Fortunately ClearContext has produced a great product that helps you tackle your inbox, I&#8217;ve been using a trial of <a href="http://www.clearcontext.com/">ClearContext</a> IMS Pro and have been extremely happy (especially with the functionality that lets you file an entire thread from your inbox)     </p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F07%2F29%2Foutlook-2007-gtd-made-simple-with-clearcontext%2F';
  addthis_title  = 'Outlook+2007+%26%238211%3B+GTD+Made+Simple+with+ClearContext';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2008/07/29/outlook-2007-gtd-made-simple-with-clearcontext/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Embracing the Cloud</title>
		<link>http://www.simnova.com/blog/index.php/2008/07/16/microsoft-embracing-the-cloud/</link>
		<comments>http://www.simnova.com/blog/index.php/2008/07/16/microsoft-embracing-the-cloud/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 14:57:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2008/07/16/microsoft-embracing-the-cloud/</guid>
		<description><![CDATA[Microsoft has a number of solutions that appear to form a very strong offering for enterprise class web 2.0 applications:Web Scale:

Scale Out:Microsoft Utility Computing Platform (a.k.a Red Dog)Details appear sketchy at the moment, but it will be interesting to see how this shapes up.
Scaled Caching:Microsoft &#8220;Velocity&#8221; &#8211; Improving performance and scalability by caching objects. Cache [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has a number of solutions that appear to form a very strong offering for enterprise class web 2.0 applications:<strong>Web Scale:</strong>
<ul>
<li><strong>Scale Out</strong>:Microsoft Utility Computing Platform (a.k.a Red Dog)Details appear sketchy at the moment, but it will be interesting to see how this shapes up.</li>
<li><strong>Scaled Caching:</strong><a href="http://msdn.microsoft.com/en-us/data/cc655792.aspx" target="_blank">Microsoft &#8220;Velocity&#8221;</a> &#8211; Improving performance and scalability by caching objects. Cache is distributed across machines and is fault tolerant, can scale out by adding more machines.</li>
</ul>
<p><strong>Security:</strong>
<ul>
<li><strong>Single Sign On</strong>: Prevents new users to your application from having to register and remember new user credentials. Allows for pass-through security from enterprise users through a federated trust model:
<ul>
<li><strong>Development API:</strong><a href="https://connect.microsoft.com/site/sitehome.aspx?SiteID=642&amp;wa=wsignin1.0" target="_blank">Microsoft &#8220;Zermatt&#8221;</a> &#8211; Single API to easily work with user claims based identity (Federated Identity) Should make the mess of dealing with various credentials and sources (protocols &amp; tokens) easy in the same manner WCF has done for network development.</li>
<li><strong>Online Service:</strong><a href="http://labs.biztalk.net/Identity.aspx" target="_blank">BizTalk Identity Services</a> -</li>
</ul>
</li>
</ul>
<p><strong>Cloud Data:</strong>
<ul>
<li><strong>Online Data Store:</strong><a href="http://www.microsoft.com/sql/dataservices/default.mspx" target="_blank">SQL Server Data Services (SSDS)</a> -</li>
<li><strong>Restful Access:</strong><a href="http://astoria.mslivelabs.com/" target="_blank">ADO.NET Data Services (Astoria)</a> + <a href="http://msdn.microsoft.com/en-us/library/aa697427(VS.80).aspx" target="_blank">ADO.NET Entity Framework</a> -</li>
</ul>
<p><strong>Interconnected Systems:</strong>
<ul>
<li><strong>Communications:</strong><a href="http://biztalk.net/Connectivity.aspx" target="_blank">BizTalk Connectivity Services</a> -</li>
<li><strong>Data:</strong><a href="http://msdn.microsoft.com/en-us/sync/default.aspx" target="_blank">Sync Framework</a> -</li>
</ul>
<p><strong>Interconnected Devices:</strong>
<ul>
<li><strong>Data Sync:</strong><a href="https://www.mesh.com/web/developer.aspx" target="_blank">Live Mesh</a> / <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" target="_blank">Sync Framework</a> -</li>
<li><strong>Offline Access:</strong><a href="http://astoria.mslivelabs.com/" target="_blank">ADO.NET Data Services (Astoria)</a> + <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" target="_blank">Sync Framework</a> a.k.a (Astoria &#8220;Offline&#8221;) -</li>
</ul>
<p><strong>Front End Support:</strong>
<ul>
<li><strong>RIA Offering (plug-in):</strong><a href="http://silverlight.net/" target="_blank">Silverlight</a> -</li>
<li><strong>RIA Offering (JavaScript generation):</strong><a href="http://labs.live.com/volta/" target="_blank">Microsoft &#8220;Volta&#8221;</a> -</li>
</ul>
<p><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f07%2f16%2fmicrosoft-embracing-the-cloud%2f"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f07%2f16%2fmicrosoft-embracing-the-cloud%2f" border="0" alt="kick it on DotNetKicks.com" /></a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F07%2F16%2Fmicrosoft-embracing-the-cloud%2F';
  addthis_title  = 'Microsoft+Embracing+the+Cloud';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2008/07/16/microsoft-embracing-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mix08 Sessions &#8211; PodCast Format</title>
		<link>http://www.simnova.com/blog/index.php/2008/03/10/mix08-sessions-podcast-format/</link>
		<comments>http://www.simnova.com/blog/index.php/2008/03/10/mix08-sessions-podcast-format/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 02:30:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mix08]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2008/03/10/mix08-sessions-podcast-format/</guid>
		<description><![CDATA[If you want to view all the Mix08 Sessions in an iPod friendly podcast RSS feed, here you go:    
Add to iTunes

 

  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F03%2F10%2Fmix08-sessions-podcast-format%2F';
  addthis_title  = 'Mix08+Sessions+%26%238211%3B+PodCast+Format';
  addthis_pub    = 'webscale';

]]></description>
			<content:encoded><![CDATA[<p>If you want to view all the Mix08 Sessions in an iPod friendly podcast RSS feed, here you go:    </p>
<hr noshade="noshade" /><a title="Get Mix08 Sessions in iTunes" href="pcast://feeds.feedburner.com/Mix08SessionVideos">Add to iTunes</a><br />
<hr noshade="noshade" />
<p> <a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f03%2f10%2fmix08-sessions-podcast-format%2f"><img alt="kick it on DotNetKicks.com" src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f03%2f10%2fmix08-sessions-podcast-format%2f" border="0" /></a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F03%2F10%2Fmix08-sessions-podcast-format%2F';
  addthis_title  = 'Mix08+Sessions+%26%238211%3B+PodCast+Format';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2008/03/10/mix08-sessions-podcast-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing TFS2008 on Windows Server 2008</title>
		<link>http://www.simnova.com/blog/index.php/2008/02/25/installing-tfs2008-on-windows-server-2008/</link>
		<comments>http://www.simnova.com/blog/index.php/2008/02/25/installing-tfs2008-on-windows-server-2008/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 03:31:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.simnova.com/blog/index.php/2008/02/25/installing-tfs2008-on-windows-server-2008/</guid>
		<description><![CDATA[Unfortunately installing Team Foundation Server 2008 on Windows Server 2008 is not a simple process, the following guide should help you out if you are attempting this process:

Install SQL Server 2005 with Reporting Services, DO NOT INSTALL ANY SEVICE PACKS.
Create a Slipstream Installation of MOSS
Install MOSS
The Default Website will be disabled, change the port from [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately installing Team Foundation Server 2008 on Windows Server 2008 is not a simple process, the following guide should help you out if you are attempting this process:</p>
<ol>
<li><a target="_blank" href="http://www.igregor.net/post/2008/01/Installing-SQL-Server-2005-Reporting-Service-on-IIS-7.aspx">Install SQL Server 2005 with Reporting Services</a>, DO NOT INSTALL ANY SEVICE PACKS.</li>
<li><a target="_blank" href="http://blogs.msdn.com/martinkearn/archive/2007/03/28/how-to-install-sharepoint-server-2007-on-a-single-machine.aspx">Create a Slipstream Installation of MOSS</a></li>
<li><a target="_blank" href="http://blogs.msdn.com/martinkearn/archive/2007/03/28/how-to-install-sharepoint-server-2007-on-a-single-machine.aspx">Install MOSS</a></li>
<li>The Default Website will be disabled, change the port from 80 to another port and enable it.</li>
<li>Follow Instructions on how to install TFS2008 using <a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff12844f-398c-4fe9-8b0d-9e84181d9923&amp;displaylang=en">Microsoft&#8217;s guide</a>.. Be sure to create all accounts
<ul>
<li>When you get to the SharePoint Services page of the installation, it will ask for Configuration Site and Default Site, note the installation guide will tell you to remove the &#8220;/sites&#8221; from default site, ignore this note and keep &#8220;/sites&#8221; there and installation will continue.
<ul>
<li>Configuration Site:<br />
http://&lt;servername&gt;:&lt;configuration site&#8217;s port&gt;</li>
<li>Default Site:<br />
http://&lt;servername&gt;:80/Sites</li>
</ul>
</li>
</ul>
</li>
</ol>
<p><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f02%2f25%2finstalling-tfs2008-on-windows-server-2008%2f"><img border="0" src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.simnova.com%2fblog%2findex.php%2f2008%2f02%2f25%2finstalling-tfs2008-on-windows-server-2008%2f" alt="kick it on DotNetKicks.com" /></a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fwww.simnova.com%2Fblog%2Findex.php%2F2008%2F02%2F25%2Finstalling-tfs2008-on-windows-server-2008%2F';
  addthis_title  = 'Installing+TFS2008+on+Windows+Server+2008';
  addthis_pub    = 'webscale';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://www.simnova.com/blog/index.php/2008/02/25/installing-tfs2008-on-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

