├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── SUMMARY.md ├── android-developer-ND ├── README.md └── community.md ├── data-analyst-ND ├── README.md └── community.md ├── front-end-ND ├── README.md ├── community.md ├── javascript │ ├── README.md │ ├── angular.md │ ├── backbone.md │ └── basics.md ├── others │ ├── README.md │ ├── css.md │ ├── game-dev.md │ └── jekyll.md ├── package-managers │ ├── README.md │ ├── grunt.md │ └── gulp.md ├── project-1.md ├── project-2.md ├── project-3-basic.md ├── project-3-complex.md ├── project-4.md ├── project-5.md └── project-6.md ├── full-stack-ND ├── README.md └── community.md ├── general ├── README.md ├── community.md ├── github.md ├── practice.md ├── resume-linkedin.md ├── write-code.md └── write-readme.md ├── intro-to-programming-ND ├── README.md └── community.md ├── ios-developer-ND ├── README.md └── community.md ├── license.md └── machine-learning-ND ├── README.md └── community.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | _book/ 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /android-developer-ND/README.md: -------------------------------------------------------------------------------- 1 | # Android Developers __add to me :D__ 2 | -------------------------------------------------------------------------------- /android-developer-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/android-developer-ND/community.md -------------------------------------------------------------------------------- /data-analyst-ND/README.md: -------------------------------------------------------------------------------- 1 | # Data Analysts __add to me :D__ 2 | -------------------------------------------------------------------------------- /data-analyst-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/data-analyst-ND/community.md -------------------------------------------------------------------------------- /front-end-ND/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/README.md -------------------------------------------------------------------------------- /front-end-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/community.md -------------------------------------------------------------------------------- /front-end-ND/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/javascript/README.md -------------------------------------------------------------------------------- /front-end-ND/javascript/angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/javascript/angular.md -------------------------------------------------------------------------------- /front-end-ND/javascript/backbone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/javascript/backbone.md -------------------------------------------------------------------------------- /front-end-ND/javascript/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/javascript/basics.md -------------------------------------------------------------------------------- /front-end-ND/others/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /front-end-ND/others/css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/others/css.md -------------------------------------------------------------------------------- /front-end-ND/others/game-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/others/game-dev.md -------------------------------------------------------------------------------- /front-end-ND/others/jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/others/jekyll.md -------------------------------------------------------------------------------- /front-end-ND/package-managers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/package-managers/README.md -------------------------------------------------------------------------------- /front-end-ND/package-managers/grunt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/package-managers/grunt.md -------------------------------------------------------------------------------- /front-end-ND/package-managers/gulp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/package-managers/gulp.md -------------------------------------------------------------------------------- /front-end-ND/project-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-1.md -------------------------------------------------------------------------------- /front-end-ND/project-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-2.md -------------------------------------------------------------------------------- /front-end-ND/project-3-basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-3-basic.md -------------------------------------------------------------------------------- /front-end-ND/project-3-complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-3-complex.md -------------------------------------------------------------------------------- /front-end-ND/project-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-4.md -------------------------------------------------------------------------------- /front-end-ND/project-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-5.md -------------------------------------------------------------------------------- /front-end-ND/project-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/front-end-ND/project-6.md -------------------------------------------------------------------------------- /full-stack-ND/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/full-stack-ND/README.md -------------------------------------------------------------------------------- /full-stack-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/full-stack-ND/community.md -------------------------------------------------------------------------------- /general/README.md: -------------------------------------------------------------------------------- 1 | # General 2 | ### Add description here ... 3 | -------------------------------------------------------------------------------- /general/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/community.md -------------------------------------------------------------------------------- /general/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/github.md -------------------------------------------------------------------------------- /general/practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/practice.md -------------------------------------------------------------------------------- /general/resume-linkedin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/resume-linkedin.md -------------------------------------------------------------------------------- /general/write-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/write-code.md -------------------------------------------------------------------------------- /general/write-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/general/write-readme.md -------------------------------------------------------------------------------- /intro-to-programming-ND/README.md: -------------------------------------------------------------------------------- 1 | # Intro to programming Developers __add to me :D__ 2 | -------------------------------------------------------------------------------- /intro-to-programming-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/intro-to-programming-ND/community.md -------------------------------------------------------------------------------- /ios-developer-ND/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/ios-developer-ND/README.md -------------------------------------------------------------------------------- /ios-developer-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/ios-developer-ND/community.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/license.md -------------------------------------------------------------------------------- /machine-learning-ND/README.md: -------------------------------------------------------------------------------- 1 | # Machine Learning Developers __add to me :D__ 2 | -------------------------------------------------------------------------------- /machine-learning-ND/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udaciouspeople/ND-Resources/HEAD/machine-learning-ND/community.md --------------------------------------------------------------------------------