Category: Technology

  • My SSD Rocks

    Technorati Tags: Intel,SSD,Dell,Hardware Headline: My new Intel 160 GB X25M SSD (Solid State Drive) is really fast! 200+ MB/sec read and 90+ MB/sec write! Background I sort of smiled when I opened up my new drive this week to see a little sticker that said, “My SSD Rocks!”. You see, I had a SSD before……

  • Goodbye Groove

    Technorati Tags: OneNote,Groove,WHS,Collaboration I started using Lotus Notes in 1992… But then IBM didn’t seem to be able to market their way out of a paper bag after buying Lotus. Ray then ran off to write the next version and started Groove. I was SO disappointed when he made the same silly mistake of limiting…

  • MVC – The Start

    Technorati Tags: ASP.NET,MVC,Code Analysis,Unit Testing This shows my initial setup of an MVC 2 RC 2 application. Using Visual Studio 2010 RC I selected File –> New –> Project… then under Visual C#, Web, I selected the ASP.NET MVC 2 Web Application. Then when I click OK I get the following dialog. Since I’m a…

  • MVC Overview

    Technorati Tags: MVC What’s different about Microsoft’s ASP.NET MVC (Model-View-Controller)? There are some very good books about MVC (such as Steven Sanderson’s book), but here are the features I enjoy the most: Routing – The routing model in MVC makes you really think about what you want your URLs to look like. In EVERY instance…

  • MVC – Upcoming Series

    Technorati Tags: MVC,VS 2010 I’ve been playing with Microsoft’s ASP.NET MVC (Model-View-Controller) application on and off for about a year now. It’s been moving at such a fast pace that it seemed I was always starting over with another install – CTPs, V1 Visual Studio 2008, previews for Visual Studio 2010… And now I’m currently…

  • Testing HtmlHelper in MVC 2 RC 2

    Technorati Tags: MVC,TDD,Mock,Moq I strive to use TDD (Test Driven Development) so not having unit tests drives me crazy. I was so pleased to run across this post http://ox.no/posts/mocking-htmlhelper-in-aspnet-mvc-rc1-using-moq making it easy for me to unit test the Html Helper. But then I downloaded the MVC 2 RC 2 and all my unit tests for…

  • Error Check for MaxLength in Entity Framework

    Technorati Tags: EF,MVC,VS 2010 HEADLINE: edmProperty.TypeUsage.Facets[“MaxLength”].Value comes in handy. I don’t make a habit of making a post when someone else has done some work… I might point it out, and in that spirit here is the post that finally sent me in the right direction: http://soci.hu/blog/. However, the post is not in English (fortunately,…

  • Showing the Version for an MVC App

    Technorati Tags: MVC,ASP.NET,VS 2010 The primary MVC (Model-View-Controller) application that I’m working on is called KarlZMvc resulting in a dll called KarlZMvc.dll. To get the version output on my Site.Master page I need to include the following line: Code Snippet <{f073afa9b3cad59b43edffc8236236232bb532d50165f68f2787a3c583ed137f}= typeof(KarlZMvc.MvcApplication).Assembly.GetName().Version.ToString() {f073afa9b3cad59b43edffc8236236232bb532d50165f68f2787a3c583ed137f}> I tried all sorts of combinations with the GetExecutingAssembly, or calling, etc.…