http://johnmunsch.com/2014/09/24/im-open-sourcing-two-angularjs-projects/
https://angularjs.zeef.com/gianluca.arbezzano list of gitlab ang projects
http://habrahabr.ru/company/relex/blog/262529/
http://www.developersfeed.com/15-best-used-angularjs-tools-for-web-developers/
https://news.ycombinator.com/item?id=9414479
https://github.com/JohnMunsch/AngularJSExamples
https://github.com/JohnMunsch/airquotes
https://github.com/JohnMunsch/PaperQuik
https://github.com/JohnMunsch/ClearAndDraw
http://www.reddit.com/r/angularjs/comments/33ilvj/best_angularjs_tutorial/
http://learn-angular.org/#!/lessons/the-essentials
http://www.smashingmagazine.com/2015/01/22/angularjs-internals-in-depth/
https://www.kickstarter.com/projects/1311831077/projects-in-angularjs-learn-angularjs-with-10-proj
1.3
https://docs.angularjs.org/guide/migration
http://jmcunningham.net/2014/11/26/some-angular-1-3-links/
http://sixrevisions.com/javascript/changes-in-angularjs-1-3/
http://blog.thoughtram.io/angularjs/2014/10/19/exploring-angular-1.3-ng-model-options.html
http://blog.thoughtram.io/angularjs/2014/10/14/exploring-angular-1.3-one-time-bindings.html
http://blog.thoughtram.io/angularjs/2014/11/19/exploring-angular-1.3-stateful-filters.html
http://blog.lingohub.com/developers/2014/10/angularjs-migration-guide-1-2-to-1-3/
https://www.airpair.com/angularjs/posts/ngmodeloptions-total-model-control
Form Validation
jQuery Plugin for Bootstrap Form Validation http://bootstrapvalidator.com/
https://www.youtube.com/watch?v=3uvo9pKs5b0&feature=youtu.be Form validation
http://angularjs.io/how-to-create-a-custom-input-validator-with-angularjs/
http://www.yearofmoo.com/2014/09/taming-forms-in-angularjs-1-3.html
http://johannesjo.github.io/ng-fab-form/
http://www.htmlxprs.com/post/11/angularjs-1.3-form-validation-tutorial
http://jaysoo.ca/2014/10/14/async-form-errors-and-messages-in-angularjs/
https://egghead.io/lessons/angularjs-introduction-to-ng-messages-for-angularjs
Form Validation
http://habrahabr.ru/post/243637/
Prevent duplicated submission
http://habrahabr.ru/post/234279/#procrastinate
http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing/4298672#4298672
http://blog.codebrag.com/post/57412530001/preventing-duplicated-requests-in-angularjs
http://stackoverflow.com/questions/16814157/how-to-prevent-users-from-submitting-a-form-twice
http://stackoverflow.com/questions/18130808/preventing-dealing-with-double-button-clicks-in-angular
http://kurtfunai.com/2014/02/angular-directives-intro.html
FILTERS
https://github.com/a8m/angular-filter
http://shop.oreilly.com/product/0636920033486.do BOOK
http://www.angularcourse.com/#/
http://baljeetsingh.in/angularjs-dom-manipulation-jqlite-324/
50 Angular.js Examples
https://www.youtube.com/watch?v=TRrL5j3MIvo
https://github.com/curran/screencasts/tree/gh-pages/introToAngular
http://curran.github.io/screencasts/introToAngular/exampleViewer/#/
https://bitbucket.org/bami/todo/overview Flask+Angular
http://angular-tips.com/blog/archives/
http://blog.novanet.no/angularjs-routes-and-views/
http://habrahabr.ru/post/150321/ Developing Admin Panel
http://www.codeproject.com/Articles/637430/Angular-js-example-application
http://www.codeproject.com/Articles/808213/Developing-a-Large-Scale-Application-with-a-Single
http://www.codeproject.com/Articles/607873/Extending-HTML-with-AngularJS-Directives
http://blog.tomaka17.com/2012/12/random-tricks-when-using-angularjs/
Generating HTML from JSON
http://www.zachhunter.com/2010/04/json-objects-to-html-table/
http://blog.kennardconsulting.com/2013/08/how-to-generate-ui-from-json-objects.html
Navigation Menu Bar
here is dynamic menu
http://www.codeorbits.com/blog/2013/12/20/rapid-angularjs-prototyping-without-real-backend/
http://habrahabr.ru/company/bitcalm/blog/239479/
http://www.angularcourse.com/#/videos/8
http://stackoverflow.com/questions/19923930/angularjs-simple-loginform
http://stackoverflow.com/questions/16325557/dynamic-links-in-twitter-bootstrap-navbar-in-angularjs
http://dotnetspeak.com/2013/10/building-dynamic-menu-with-angular-js-web-api-and-asp-net-mvc
http://tomaszdziurko.pl/2013/02/twitter-bootstrap-navbar-angularjs-component/
http://stackoverflow.com/questions/14297116/dynamic-menu-items-using-angularjs
http://stackoverflow.com/questions/19328908/dynamic-menu-bar-with-angularjs
http://scotch.io/tutorials/javascript/single-page-apps-with-angularjs-routing-and-templating
http://codepen.io/m-e-conroy/details/bcEsA
https://ryankaskel.com/blog/2013/05/27/a-different-approach-to-angularjs-navigation-menus
http://amitgharat.wordpress.com/2012/09/19/page-navigation-bar-in-angular-js/
Following code from http://tutorialzine.com/2013/08/learn-angularjs-5-examples/ (css file where )
<script src="https://code.angularjs.org/1.2.16/angular.min.js"></script>
<div id="main" ng-app> <!-- The navigation menu will get the value of the "active" variable as a class. The $event.preventDefault() stops the page from jumping when a link is clicked. --> <nav class="{{active}}" ng-click="$event.preventDefault()"> <a href="#" class="home" ng-click="active='home'">Home</a> <a href="#" class="projects" ng-click="active='projects'">Projects</a> <a href="#" class="services" ng-click="active='services'">Services</a> <a href="#" class="contact" ng-click="active='contact'">Contact</a> </nav> <p ng-hide="active">Please click a menu item</p> <p ng-show="active">You chose <b>{{active}}</b></p> </div>
Directives
http://habrahabr.ru/post/164493/ directives
http://habrahabr.ru/post/179755/ directives 1
http://habrahabr.ru/post/180365/ directives 2
http://habrahabr.ru/post/200620/ directives
https://www.youtube.com/watch?v=7vgvBffpSbs&feature=share
http://www.codeproject.com/Articles/607873/Extending-HTML-with-AngularJS-Directives
http://amitgharat.wordpress.com/2013/06/08/the-hitchhikers-guide-to-the-directive/
http://joelhooks.com/blog/2014/02/11/lets-make-full-ass-angularjs-directives
http://www.codetunnel.io/isolate-scopes-explained/
http://vitalflux.com/angularjs-custom-directives-tutorial-quiz-app/
http://amitgharat.wordpress.com/2013/06/08/the-hitchhikers-guide-to-the-directive/
http://thecodebarbarian.wordpress.com/2013/09/23/the-8020-guide-to-writing-angularjs-directives/
http://joelhooks.com/blog/2014/02/11/lets-make-full-ass-angularjs-directives/
http://tech.zumba.com/2014/08/02/angularjs-forget-jquery/
http://www.delimited.io/blog/2014/7/16/d3-directives-in-angularjs
http://blog.hfarazm.com/custom-directives-in-angularjs/
http://weblogs.asp.net/dwahlin/creating-custom-angularjs-directives-part-7-%E2%80%93-creating-a-unique-value-directive-using-asyncvalidators
FORMS
http://www.thebhwgroup.com/blog/2014/08/designing-html-forms-angularjs-part-1/
http://www.thebhwgroup.com/blog/2014/08/angularjs-html-form-design-part-2/
http://g00glen00b.be/angular-forms/
https://github.com/bvaughn/angular-form-for
http://panthersoftware.com/blog/2013/05/09/a-reusable-bootstrap-modal-form-directive/
http://panthersoftware.com/blog/2013/06/03/drying-directives/
To use the validation which comes by default with Angular, you need
a. give a “name” to your form e.g. <form name=”loginForm”>
b. mark all required input boxes as required e.g. <input type=’email’ required />
c. to turn on say email validation, you need to set type=’email’
d. check if the form is validating or not by checking loginForm.$invalid.
To check this inside your controller, do $scope.loginForm.$invalid
http://habrahabr.ru/post/179473/
http://www.reddit.com/r/angularjs/comments/29iyfh/better_angularjs_form_validation/
http://scotch.io/tutorials/javascript/building-dynamic-angular-forms-with-ngrepeat-and-ngform
http://blog.hfarazm.com/form-validation-in-angularjs
http://www.reddit.com/r/angularjs/comments/2ck3p0/hey_guys_im_excited_to_share_a_new_angular/