Container and Presentation Components in Angular2
Angular2 has a strong emphasis on components. An application is made up of a tree of components, starting from the root component and working down to child components. This helps […]
Big Ideas Behind Angular2
When I first started using AngularJS (way back in version 0.8, I believe), I was continually impressed at what it could do. The team I was working with at the […]
A Quick Look at F# In Visual Studio Code
It’s F# Advent time again! This is a yearly event the F# community comes together for the month of December and each person releases an F# related post on a […]
WintellectPowerShell Now on the PowerShell Gallery
Getting and installing modules is easier than ever with the PowerShell Gallery and PowerShellGet. Instead of downloading and extracting files into your PowerShell modules directory, a simple call to Install-Module […]
First Impressions of the Xamarin Inspector
One of the pain points of using Xamarin Forms is that, just to see updates of any UI updates via XAML, you still need to save your changes, recompile, and […]
Automating Xamarin Builds with FAKE – Part 3: Building and Running Unit Tests

While this will be a short post it’s also one that may be one of the most important ones to go over – running unit tests. Most of you probably […]
Linking Property Change Notifications in Xamarin Forms (or WPF/Silverlight)

I’d like to share a really awesome bit of code that I’ve been using in my XAML applications for a while now… there are many frameworks and examples out there, […]
Automating Xamarin Builds with FAKE – Part 2: Building PCL, iOS, and Android Projects
Continuing from part 1 of this series we now have FAKE setup and ready for us to use our automated building needs. Now let’s build our Xamarin Forms application. In […]
Automating Xamarin Builds with FAKE – Part 1: Introduction and Setup
Being a .NET developer, I’m sure one of your pain points throughout the development process in any project has been trying to setup automated building, testing, and even deploying. However, […]