
Getting Started With .NET Unit Testing Using NUnit
It’s usually good practice to have automated unit tests while developing your code. Doing so helps you find bugs early in the development cycle and saves you time in the long run.

How to Unit Test Private Methods in MS Test
Before we start to see, how a private method can be unit tested using the MS Test? Let us discuss whether it is a good idea to test a private method or not?

Exploring Angular Controller as Syntax and the vm Variable
Often, I hear developers ask “What is the ‘controller as’ syntax and how it is different from the $scope object approach of controller creation?” In this post we will learn about controller as syntax and compare it with the $scope object approach of controller creation.

Simplifying the Liskov Substitution Principle of SOLID in C#
The Liskov Substitution Principle says that the object of a derived class should be able to replace an object of the base class without bringing any errors in the system or modifying the behavior of the base class.

How to Work with Bootstrap DropDown in AngularJS?
In this post, we will learn how to work with the Bootstrap dropdown in an AngularJS APP with the help of one of the best Angular Component Libraries out there.

Understanding Scopes in AngularJS Custom Directives
A look through the use of shared, inherited, and isolated scopes when working with directives in AngularJS.

How To Use AngularJS in ASP.NET MVC and Entity Framework
These days, it seems like everyone is talking about AngularJS and ASP.NET MVC. So in this post, we will learn how to combine the best of both worlds and use the goodness of AngularJS in ASP.NET MVC by demonstrating how to use AngularJS in an ASP.NET MVC application.

How To Share Data Between Controllers in AngularJS
In my AngularJS classes, I often get asked, “How do I share data between the controllers in AngularJS?” On the Internet, there are many solutions suggested.

User Centered Dashboards: A Visual Design Approach
Many of the dashboards I come across are beautiful or at the very least aesthetically pleasing, but are they effective dashboards?