Microsoft Unity Tutorial

By | November 4, 2015

This Microsoft Unity Tutorial will aim to make is easy for the uninitiated to work with Microsoft Unity. Unity is a dependency injection container. The best source for Unity remains the developer guide which is also available as a free eBook download. I will strongly recommend that you get a foundation on Inversion of Control(IoC)… Read More »

This project references NuGet package(s) that are missing on this computer.

By | October 1, 2015

The dreaded “NuGet Package Missing” error looks like this: error : This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. If you are on this page then there is a high chance that you have been stuck with the above error.

Unable to delete NuGet package on server

By | September 29, 2015

Today I was trying to clean up some old packages from the Nuget server. And this happened. Nuget delete command failed to delete packages from the Nuget Server. The nuget server I am talking about is the local one which I configured. Deletion was failing for me despite the documentation saying that is should succeed.

Adapter Design Pattern Explained

By | August 22, 2015

In this tutorial we will implement Adapter design pattern using c++. And I will use the much denounced multiple inheritance in c++ too. Adapter design pattern is one of the easier design patterns. As usual, we will first discuss the “WHY” and then the “HOW”.

Should I be a developer?

By | August 12, 2015

Every professional at some point of his professional life asks himself : Is this the right career for me? Unfortunately most of the people will be asking this question rather late in their professional life. A point where it might not be really easy to switch career. I am not sure about other professionals but… Read More »

FODY Commander and WPF Commands

By | August 7, 2015

This is a brief tutorial on using FODY Commander to implement WPF Commands. To better appreciate this, I will recommend just to have a look at this and this post I wrote on WPF Commands. The post I wrote before on WPF commands discuss the WHY part of WPF Commands. So I will not go… Read More »