├── .gitignore ├── Project1 ├── README.md ├── entertainment_center.py ├── fresh_tomatoes.html ├── fresh_tomatoes.py ├── media.py └── preview.gif ├── Project2 ├── README.md ├── css │ └── styles.css ├── img │ ├── feature-image.jpeg │ ├── udacity.svg │ ├── work-appify.jpeg │ ├── work-bokeh.jpeg │ └── work-sunflower.jpg ├── index.html ├── mock.png └── preview.gif ├── Project3 ├── README.md ├── dbmanager.py ├── downloads │ ├── .gitattributes │ ├── fullstack-nanodegree-vm-master.zip │ └── newsdata.zip ├── program_output.txt └── reportingtool.py ├── Project4 ├── README.md ├── screenshot-item-catalog.png └── vagrant │ ├── Vagrantfile │ └── catalog │ ├── catalog.py │ ├── client_secrets.json │ ├── database_setup.py │ ├── static │ ├── normalize.css │ └── skeleton.css │ └── templates │ ├── base.html │ ├── category.html │ ├── category_delete.html │ ├── category_edit.html │ ├── category_new.html │ ├── item.html │ ├── item_delete.html │ ├── item_edit.html │ ├── item_new.html │ └── login.html ├── Project5 ├── README.md ├── css │ └── styles.css ├── img │ └── pokeball.svg ├── index.html ├── js │ ├── binding.js │ ├── data.js │ ├── knockout-3.4.2.js │ └── maps.js └── screenshot.png ├── Project6 └── README.md ├── README.md ├── References ├── UdacityNanodegreeStyleGuide-CSS.pdf ├── UdacityNanodegreeStyleGuide-Git.pdf ├── UdacityNanodegreeStyleGuide-HTML.pdf ├── UdacityNanodegreeStyleGuide-JS.pdf └── UdacityNanodegreeSyllabus-v4.0.pdf ├── UNLICENSE.md └── cert.png /.gitignore: -------------------------------------------------------------------------------- 1 | # compiled python byte code 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Project1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/README.md -------------------------------------------------------------------------------- /Project1/entertainment_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/entertainment_center.py -------------------------------------------------------------------------------- /Project1/fresh_tomatoes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/fresh_tomatoes.html -------------------------------------------------------------------------------- /Project1/fresh_tomatoes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/fresh_tomatoes.py -------------------------------------------------------------------------------- /Project1/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/media.py -------------------------------------------------------------------------------- /Project1/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project1/preview.gif -------------------------------------------------------------------------------- /Project2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/README.md -------------------------------------------------------------------------------- /Project2/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/css/styles.css -------------------------------------------------------------------------------- /Project2/img/feature-image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/img/feature-image.jpeg -------------------------------------------------------------------------------- /Project2/img/udacity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/img/udacity.svg -------------------------------------------------------------------------------- /Project2/img/work-appify.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/img/work-appify.jpeg -------------------------------------------------------------------------------- /Project2/img/work-bokeh.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/img/work-bokeh.jpeg -------------------------------------------------------------------------------- /Project2/img/work-sunflower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/img/work-sunflower.jpg -------------------------------------------------------------------------------- /Project2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/index.html -------------------------------------------------------------------------------- /Project2/mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/mock.png -------------------------------------------------------------------------------- /Project2/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project2/preview.gif -------------------------------------------------------------------------------- /Project3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/README.md -------------------------------------------------------------------------------- /Project3/dbmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/dbmanager.py -------------------------------------------------------------------------------- /Project3/downloads/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/downloads/.gitattributes -------------------------------------------------------------------------------- /Project3/downloads/fullstack-nanodegree-vm-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/downloads/fullstack-nanodegree-vm-master.zip -------------------------------------------------------------------------------- /Project3/downloads/newsdata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/downloads/newsdata.zip -------------------------------------------------------------------------------- /Project3/program_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/program_output.txt -------------------------------------------------------------------------------- /Project3/reportingtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project3/reportingtool.py -------------------------------------------------------------------------------- /Project4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/README.md -------------------------------------------------------------------------------- /Project4/screenshot-item-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/screenshot-item-catalog.png -------------------------------------------------------------------------------- /Project4/vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/Vagrantfile -------------------------------------------------------------------------------- /Project4/vagrant/catalog/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/catalog.py -------------------------------------------------------------------------------- /Project4/vagrant/catalog/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/client_secrets.json -------------------------------------------------------------------------------- /Project4/vagrant/catalog/database_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/database_setup.py -------------------------------------------------------------------------------- /Project4/vagrant/catalog/static/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/static/normalize.css -------------------------------------------------------------------------------- /Project4/vagrant/catalog/static/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/static/skeleton.css -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/base.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/category.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/category_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/category_delete.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/category_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/category_edit.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/category_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/category_new.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/item.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/item_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/item_delete.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/item_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/item_edit.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/item_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/item_new.html -------------------------------------------------------------------------------- /Project4/vagrant/catalog/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project4/vagrant/catalog/templates/login.html -------------------------------------------------------------------------------- /Project5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/README.md -------------------------------------------------------------------------------- /Project5/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/css/styles.css -------------------------------------------------------------------------------- /Project5/img/pokeball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/img/pokeball.svg -------------------------------------------------------------------------------- /Project5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/index.html -------------------------------------------------------------------------------- /Project5/js/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/js/binding.js -------------------------------------------------------------------------------- /Project5/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/js/data.js -------------------------------------------------------------------------------- /Project5/js/knockout-3.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/js/knockout-3.4.2.js -------------------------------------------------------------------------------- /Project5/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/js/maps.js -------------------------------------------------------------------------------- /Project5/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project5/screenshot.png -------------------------------------------------------------------------------- /Project6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/Project6/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/README.md -------------------------------------------------------------------------------- /References/UdacityNanodegreeStyleGuide-CSS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/References/UdacityNanodegreeStyleGuide-CSS.pdf -------------------------------------------------------------------------------- /References/UdacityNanodegreeStyleGuide-Git.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/References/UdacityNanodegreeStyleGuide-Git.pdf -------------------------------------------------------------------------------- /References/UdacityNanodegreeStyleGuide-HTML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/References/UdacityNanodegreeStyleGuide-HTML.pdf -------------------------------------------------------------------------------- /References/UdacityNanodegreeStyleGuide-JS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/References/UdacityNanodegreeStyleGuide-JS.pdf -------------------------------------------------------------------------------- /References/UdacityNanodegreeSyllabus-v4.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/References/UdacityNanodegreeSyllabus-v4.0.pdf -------------------------------------------------------------------------------- /UNLICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/UNLICENSE.md -------------------------------------------------------------------------------- /cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metalwihen/udacity-full-stack-nanodegree-projects/HEAD/cert.png --------------------------------------------------------------------------------