Unobtrusive JavaScript, Layering, and Separation of Concerns.

In this post i am going to explain the notation of Unobtrusive JavaScript, Layering and Separation of Concerns. It is considered a best practice to separate web pages into three areas of concern: content (HTML),

event_note
close

In this post i am going to explain the notation of Unobtrusive JavaScript, Layering and Separation of Concerns. It is considered a best practice to separate web pages into three areas of concern: content (HTML),

folder_open JavaScript
Read more

Knockout Observable Vs ObservableArray

Knockout is a library designed for Model-View-ViewModel(MVVM) development. Knockout provides three necessary components to implement this pattern, a declarative syntax for the view(data-bind Html attribute), a mechanism to nitify changes from the viewmodel(Observable object), and

event_note
close

Knockout is a library designed for Model-View-ViewModel(MVVM) development. Knockout provides three necessary components to implement this pattern, a declarative syntax for the view(data-bind Html attribute), a mechanism to nitify changes from the viewmodel(Observable object), and

folder_open KnockoutJS
Read more

JavaScript in one big picture

A graph that shows off JavaScript’s syntax, identifiers, operators, and more in a single image. Here is the github link. javascript-in-one-big-picture JavaScript Garden Learn ECMAScript 6 by doing it 7 Essential JavaScript Functions Predictions on

event_note
close

A graph that shows off JavaScript’s syntax, identifiers, operators, and more in a single image. Here is the github link. javascript-in-one-big-picture JavaScript Garden Learn ECMAScript 6 by doing it 7 Essential JavaScript Functions Predictions on

folder_open JavaScript
Read more

JavaScript Module Pattern explained

Here I am going to explain in detail about JavaScript Module pattern which is one of the most significant patterns in JavaScript. The Module pattern allows developers to organize their applications in modules or functional

event_note
close

Here I am going to explain in detail about JavaScript Module pattern which is one of the most significant patterns in JavaScript. The Module pattern allows developers to organize their applications in modules or functional

Read more

Understanding Entity Framework

What is Entity Framework? Entity Framework is an Object Relational Mapper (ORM) from Microsoft that lets the application’s developer’s work with relational data as business models. It eliminates the need for most of the plumbing

event_note
close

What is Entity Framework? Entity Framework is an Object Relational Mapper (ORM) from Microsoft that lets the application’s developer’s work with relational data as business models. It eliminates the need for most of the plumbing

folder_open Entity Framework
Read more

How to use WIX toolset in Visual Studio

Hi there! In this post I am going to explain how to use WiX tools set in Visual Studio to create windows installer package or MSI. What is WiX and how and where to get

event_note
close

Hi there! In this post I am going to explain how to use WiX tools set in Visual Studio to create windows installer package or MSI. What is WiX and how and where to get

folder_open WIX
Read more