Learned something new today. It turns out in current incarnation of F# you can have “parametrized types”. Although it sounds like another flavor of templates, it is nothing like it. […]

Let’s say I have a view that must open another window on command. Where would this code sit? The model? Don’t be ridiculous. The view model? Yes, it’s where the […]

1. The view model shall never directly manipulate the controls.. 2. The view shall never manipulate the model.. These are two negatives, because they govern the separation of concerns. Most […]

I remember reading on Microsoft web site that although WPF and Silverlight are different technologies, their libraries will eventually converge. While this might be a declared goal, it by no […]

How do you copy an SVN label to a folder? svn serverpath/tags/label destdir How do you copy a TFS label to a folder? Watch my hands: mkdir destdir cd destdir […]