Friday, January 30, 2015

Wednesday, January 28, 2015

AngularJS Directives

ng-app
ng-controller
ng-model
ng-click
ng-submit
ng-repeat
ng-view
ng-show
ng-hide

Tuesday, January 27, 2015

Watching: AngularJS: Get Started























Link: http://www.pluralsight.com/courses/angularjs-get-started

Watching: Building Mobile Apps With the Ionic Framework and AngularJS























Link: http://www.pluralsight.com/courses/building-mobile-apps-ionic-framework-angularjs

Wednesday, January 21, 2015

First Ionic App




Sublime Text Emmet (ex-Zen Coding)

table snippet:
table>tr*2>td*3+tab

generated text:
<table>
      <tr>
        <td></td>
        <td></td>
        <td></td>
      </tr>
      <tr>
        <td></td>
        <td></td>
        <td></td>
      </tr>
    </table>

Node.js Setup


Tuesday, January 6, 2015

New Read: jQuery UI In Action


New Read: Microsoft.NET: Architecting Applications for the Enterprise - Second Edition


Elmah Security Settings

<elmah>
    <security allowRemoteAccess="1"/>
</elmah>

<add key="elmah.mvc.requiresAuthentication" value="true" />
<add key="elmah.mvc.allowedRoles" value="Admin" />