C# 6 > Null-Conditional Operator

One of the useful additions to the C# language in version 6 that I regularly use is the null-conditional operator. Checking for null is…

Read More
Powershell > Uploading a folder of images to Azure

Ability to set blob prefix Ability to generate thumbnails

Read More
Using Grunt in Visual Studio 2015

Grunt is a task-based command line build tool for JavaScript that can be easily configured in Visual Studio 2015 to perform a variety of…

Read More
Integrating GitHub with ASP.NET WebHooks Preview

ASP.NET WebHooks is a new lightweight sub/pub model for wiring together Web Api and SaaS services. On the receiving side, it provides a…

Read More
Service filters in ASP.NET MVC 6

Ontop of the already available action filters MVC 6 introduces Service filters. The newly introduced Service filters allow you to resolve a…

Read More
Database identifier strategy - The Hi/Lo Algorithm

The hi/lo algorithm allows a server to control id generation by handing out a range of ids that can be assigned to objects as they are…

Read More