Validate a value based on the value of another property In this post, I will show how to create a helper to validate the length of a property based on the value of another one, to be precise, to check...Read More
In an e-commerce, one of the most important features is the search. Not only from the UX perspective (you can find many articles on the net), but also from the results given back to the users. They mu...Read More
In modern web sites, we use async load of pages to reduce the amount of data asked to the server and to improve the browsing experience of the user. Basically an SPA web application. Two problems you ...Read More
Recently I completed my experiment with the Oculus Rift and a Kinect to drive a Parrot Ar.Drone. Using Kinect I implemented both voice commands and gestures to drive the drone. With voice commands, I ...Read More
Recently, thanks to my friends at Digitalmind, I was able to put my hands on an Oculus rift’s developer kit and an Ar.Drone. I wanted to start by simply streaming the video feed of the parrot to...Read More
In a project I worked on recently, I got the request to page the results of a search without showing all the page numbers, but only a limited set. I had to show only 10 pages and let them scroll forwa...Read More
In the last post we saw how to replace the bookmark of a Word document with some values using the OpenXML SDK. This time we will do the same with an Excel file. The first thing to note is that an Exce...Read More
Using Open XML SDK 2.0 it is possible to create from scratch Word, Excel or Power Point documents without using interops anymore. This is pretty cool, because you do not need any more to install the o...Read More
In my previous post, we saw how to implement a simple stream from a web cam as a background in an XNA application. Now I will go a little further and implement a simple face tracking algorithm. For th...Read More
Recently I worked on a XNA project that needed to show the stream from a web cam as the background of the game. After some searches I found nothing that worked with XNA 4.0. So I ended up putting toge...Read More