Creating a Custom Silverlight Pre-Loader

March 5th, 2010

I have been doing Silverlight development since it was released. One question I get asked a lot is how do to create a custom pre-loader for my application. What do I mean by pre-loader? Well, it can be called many things; it could be called a pre-loader, splash screen, or a loading screen. No matter [...]

Brian Lagunas Silverlight ,

Introducing oEmbed

March 5th, 2010

Gadgets, widgets, flash, ActiveX, Silverlight, json, xml
With all of the competing technologies for content embedding and resource sharing on the web it can be difficult to determine which options to use.  Have you ever wished that you could embed YouTube videos and Flickr photos into your site just by knowing the consumer friendly URLi’s to [...]

cory.isakson WebServices, html, web

Soft Skills are Actual Skills

March 4th, 2010

Adam
I will never forget my first day at my first programming job. I was excited, eager, and happy to be there, feeling like I had finally made the big time. I thought, “I am going to get to be a real software developer,” and I was stoked beyond belief.
In the elevator on the way [...]

David Starr Books

Is MSpec an Internal DSL?…And is that okay?

March 3rd, 2010

In my last post on MSpec, John Sonmez commented:
When I see the MSpec code, I think about it being an internal DSL for doing the testing, and I start to think that perhaps it should just go ahead and be it’s own language instead of trying to live inside of C#. On the other hand, [...]

Richard Cirerol Esoterica ,

JQuery Validator Cheat Sheet

March 2nd, 2010

I’m getting a session ready for Boise Code Camp 2010 on JQuery Validator. I thought it would be cool to hand out a cheat sheet – but I couldn’t find one. So here is rev. 1 of my Jquery Validator Cheat sheet.

Chris Brandsma JQuery

An Evolution of Test-Specification Styles – My Journey to MSpec

March 1st, 2010

Over the last few years, the practice of Test-Driven Design and Behavior-Driven Design has increased in acceptance, even if its practice has not increased in equal proportion.  From my perspective, specification-based design is a natural way to develop software.  Each developer has a preferred framework, and a framework they loathe.  In the .NET world, there [...]

Richard Cirerol BDD, TDD ,

Behaviors with MSpec

February 26th, 2010

In my previous posts, I showed the syntax for context/specifications using Machine.Specifications (or MSpec for short) and how to use an auto mocking container in conjunction with this excellent Behavior-Driven Development (BDD) framework. For this post, I want to show you one of the nice features of MSpec called behaviors.
Suppose we have to create some [...]

Jan Van Ryswyck BDD, Unit Testing

Initiate and Embrace change

February 26th, 2010

I have initiated many changes throughout my career, I have for example lived and worked in Holland (duh I am Dutch, so yeah), Norway and Australia. I have worked as a consultant going to clients, and I have worked in-house doing product development. I have even been working as a responsible person for designing and [...]

Mark Nijhof Craftsmanship

Note to self: Asp.Net MVC Controllers are not Code Behind

February 23rd, 2010

Sometimes I think things are more complicated than they really are.  I got my head into a bind recently when I had some code that I really wanted under test in a Controller Action.
My first thought was “Crap, this is going to be rough”.  Mainly I was still thinking of my time trying to test [...]

Chris Brandsma Asp.Net MVC, TDD

MSpec and Auto Mocking

February 23rd, 2010

In my previous post, I explained how to get started with Machine.Specifications (or MSpec for short) and showed you how the syntax for context/specifications looks like when using this BDD framework. For this post, I want to show you how to use an auto mocking container (we’ll be using the one provided by StructureMap off [...]

Jan Van Ryswyck BDD, Unit Testing