Monthly Archives: July 2015

Introduction to KnockoutJS

Introduction Knockout, developed by Steve Sanderson, is free open source JavaScript library available under MIT license. It was first released in 2010 and since its initial release it has caught attention of industry and has been very popular. It is … Continue reading

Posted in CodeProject, KnockoutJS | Tagged , | 1 Comment

Understanding Onion Architecture

In this post I am going to talk about Onion Architecture. There are several traditional architectures that exists in web world and each one of the architecture comes with its pros and cons. But most of the traditional architectures raises … Continue reading

Posted in Architecture, CodeProject | Tagged , , | Leave a comment

Understanding Cyclomatic complexity and its importance in code analysis metrics

  cyclomatic complexity: Cyclomatic complexity in code is software metric used to indicate the complexity in the program. It is a quantitative measure of the number is linearly independent paths through programs source code.

Posted in CodeProject, Uncategorized | Leave a comment

A Detailed Walkthrough of ASP.net MVC Request Life Cycle

    MVC Request Life Cycle   Life cycle of MVC request is a series of steps involved in processing client request. Regardless of technology and platforms almost all the web frameworks have one or other type of Request life … Continue reading

Posted in ASP.Net MVC, CodeProject, MVC | Tagged , , , | Leave a comment