Install Microsoft Kinect on PC
Marco Franssen

Loading...
Marco Franssen

In this blogpost I explain how you can install Microsoft Kinect on your pc. For installing Microsoft Kinect on your pc you need to install some drivers. You can get the latest drivers from http://www.openni.org. Take all the drivers of the same version. When installing the drivers you need to do it in exact the following sequence.
When the installation asks for a PrimeSense License Key enter: 0KOIk2JeIBYClPWVnMoRKn5cdY4=
On the following youtube channel of my colleague Jan Saris you can see what we have developed using Microsoft Kinect. https://youtube.com/user/jansaris
You can start with exploring the examples.
I hope you enjoy developing for Kinect yourself. Please let me know your own experiences with Microsoft Kinect.
Marco Franssen
In this blog post I will explain how to inject your dependencies into your controllers in a MVC 3 application with Castle Windsor. First of all you need to create a WindsorInstaller. This class is responsible for the configuration of your IoC container. In the above class the first line registers all your controllers with lifestyle configured to Transient. Depending on the lifestyle you choose Windsor will clean all resources. Other lifestyles are Singleton, Pooled, PerWebRequest, PerThread. T…
Marco Franssen
In this blog post I work out some of the notes I made in Greg Young’s DDD/CQRS course in Krakow Poland. In Domain Driven Design there are some important things to think about. In DDD we make a difference in the following components. Aggregate Roots Entities Value Objects An Aggregate root is a set of multiple things that belong to each other. The aggregate should have a name that describes the whole. To come to a domain driven design you should take the following steps: Denormalization T…