Feb 122010

Outliers 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 >>

Jan 132010

I came across a scenario where I did not want JSON to be cached, the following code did the trick:

public JsonResult ListJson()
{
    Response.CacheControl = "no-cache";
    Response.Cache.SetETag(((ShortGuid)Guid.NewGuid()).ToString());

 

FYI I’m using ShortGuid from Dave Transom

Nov 022008

 

Not bad Amazon!

image
image

Jul 162008

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 “Velocity” – Improving performance and scalability by caching objects. Cache is distributed across machines and is fault tolerant, can scale out by adding more machines.

Security:

  • Single Sign On: 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:
    • Development API:Microsoft “Zermatt” – Single API to easily work with user claims based identity (Federated Identity) Should make the mess of dealing with various credentials and sources (protocols & tokens) easy in the same manner WCF has done for network development.
    • Online Service:BizTalk Identity Services -

Cloud Data:

Interconnected Systems:

Interconnected Devices:

Front End Support:

kick it on DotNetKicks.com

Feb 252008

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:

  1. Install SQL Server 2005 with Reporting Services, DO NOT INSTALL ANY SEVICE PACKS.
  2. Create a Slipstream Installation of MOSS
  3. Install MOSS
  4. The Default Website will be disabled, change the port from 80 to another port and enable it.
  5. Follow Instructions on how to install TFS2008 using Microsoft’s guide.. Be sure to create all accounts
    • 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 “/sites” from default site, ignore this note and keep “/sites” there and installation will continue.
      • Configuration Site:
        http://<servername>:<configuration site’s port>
      • Default Site:
        http://<servername>:80/Sites

kick it on DotNetKicks.com