Re-Learning Backbone.js – Binding Models to Views
In the previous post we learned about Model Binding in isolation. There are many places where model binding can provide benefit. Where we see model binding the most is in relation to using views....
View ArticleRe-Learning Backbone.js – View Events
It is common for Backbone.js views to include elements that the user can interact with. For example, the user can enter text in a text box, hover of a div, or click a button. These types of interaction...
View ArticleRe-Learning Backbone.js
In 2011 and in early 2012, I did an extensive amount of work with Backbone.js. I believe I was fairly competent with the technology and grew very fond of Backbone.js. During this time I created a blog...
View ArticleRe-Learning Backbone.js – Collections
Backbone.js collections are used to store and manage a group of similar or related objects. If all we wanted to do was store related objects we could use a JavaScript array, but Backbone.js Collection...
View ArticleRe-Learning Backbone.js – Events (Pub-Sub)
Since we are here to learn about Backbone.js, we are going to use the built in feature of Backbone called Events. Backbone.js Events is a feature that provides a Pub-Sub. As usually I’m going to...
View ArticleRe-Learning Backbone.js – Nested Views
Previously in this series we have learned about views and collection. Now lets learn about creating nested views based on a collection. Most if not all of the concepts learned in the previous...
View ArticleRe-Learning Backbone.js – Multiple Views
In this post we will learn about how a view can monitor changes or events in other views. A common scenario is to display a list of items. When the user clicks an item from the list, the details of the...
View ArticleBrowser Script Loading
In this post I will discuss how scripts are loaded and executed by the browser. It’s common to have scripts loaded by the browser by using the script tag (<script>) with a src (source) attribute....
View ArticleRe-Learning Backbone.js – Require.js (AMD and Shim)
In this post we are going to learn how to use Require.js with Backbone.js and Underscore.js This post build on the Re-Learning Backbone.js series. As usual, the examples in this tutorial are extremely...
View ArticleHow-to deploy application to Windows Azure Compute Emulator with CSRUN
It’s a pain that everytime that I want to start a Windows Azure application, I must first start Visual Studio and start the debugger. In this post I will describe how to start an application in Windows...
View ArticleTable Scans and Index Scans affects more than the table they access
SQL Server only queries data in memory (data cache). If the data needed is not cached, SQL Server will retrieve the data from disk and load it to data cache, and then SQL Server will use the data from...
View ArticlePC Application, Tools, Utilities and Configuration
I’ve been meaning to do this for a good while. I have a tendency to rebuild my PC every once in a while, and its seems I can never remember all the thing that I have downloaded, installed, and...
View ArticleSetting-up AngularJS, Angular Seed, Node.js and Karma
I’ve used AngularJS for a few months, but I have no knowledge when it comes to testing AngularJS apps. I have a subscription to PluralSight.com and wanted to go through their online video training...
View ArticleHow I Navigated to AngularJS
This article is about the process I’ve gone through of selecting AngularjS as my MV* JavaScript framework of choice. I will discuss the evolution I went through from learning jQuery, Knockout,...
View ArticleUnderstanding AngularJS – Simple Example
I did a similar post as this post for Backbone.js Understanding Backbone.js – Simple Example. Based on readers’ comments the backbone.js post seemed to assist many people. My goal with this post is to...
View ArticleKick-Start: Bower – A Simple Tutorial of Setting-Up and Using Bower.JS
The goal of this post is to provide a simple description of how to install Bower JS and how to use Bower JS to manage client side dependencies. The first time I tried to use Bower I had problems....
View ArticleKickStart – C# Custom Configuration
This post will provide an example and explanation of how to create custom configuration for C# applications. I will discuss ConfigurationSections, ConfigurationElements, ConfigurationElementCollection....
View ArticlePC Application, Tools, Utilities and Configuration
I’ve been meaning to do this for a good while. I have a tendency to rebuild my PC every once in a while, and its seems I can never remember all the thing that I have downloaded, installed, and...
View ArticlePC Application, Tools, Utilities and Configuration
I’ve been meaning to do this for a good while. I have a tendency to rebuild my PC every once in a while, and its seems I can never remember all the thing that I have downloaded, installed, and...
View ArticleVisual Studio Code, AngularJs, & Intellisense
My primary goal is to get VSCode intellisense to work with AngularJs. I’m working on a new application and I’m developing it with AngularJS (Angular 1). I’m also using VSCode (Visual Studio Code) as...
View Article