quattro_4 scribble

scribble 落書き (調べた事をただ落書きする)

2013-12-17から1日間の記事一覧

thoughtbot Giant Robots Episode #79

thoughtbot : Giant Robots Smashing into other Giant Robots Podcast : 79: The Gentle Wise One (Uncle Bob Martin) Uncle Bob Martin Clean Coders 1時間くらい1本$12 Open Source Contributions - Our Team | 8th Light 医者や弁護士は資格とか標準があ…

AngularJS tutorial #2

並べ替え <li ng-repeat="phone in phones | filter:query | orderBy:orderProp"> <select ng-model="orderProp"> default value of orderProp $scope.orderProp = 'age'; pre select <option value="age">Newest</option> 初期orderPropが無い場合 -> temporarily add a new "unknown" option 逆順 <option value="-age">Oldest</option></select></li>

AngularJS tutorial #1

AngularJS angular-seed angular/angular-seed · GitHub <html ng-app> <li ng-repeat="phone in phones"> <body ng-controller="PhoneListCtrl"> var phonecatApp = angular.module('phonecatApp', []); phonecatApp.controller('PhoneListCtrl', function($scope) { The prefix ng stands for "Angular;" angularjs - Wha…</body></li></html>