Skip to content

Latest commit

 

History

History
4308 lines (4306 loc) · 231 KB

File metadata and controls

4308 lines (4306 loc) · 231 KB

.
├── 0-notes
├── 1-projects
│   ├── A_arrays_solution
│   ├── A_conditionals_solution
│   ├── A_executing_code_solution
│   ├── A_functions_solution
│   ├── A_loops_solution
│   ├── A_nested_loops_solution
│   ├── Atomic-Design-Solution-master
│   │   └── dogs
│   │       ├── public
│   │       └── src
│   │           ├── atoms
│   │           ├── molecules
│   │           ├── organisms
│   │           ├── pages
│   │           └── templates
│   ├── B_arrays_solution
│   ├── Basic-JavaScript-master
│   │   ├── src
│   │   └── tests
│   ├── B_expressions_solution
│   ├── B_functions_solution
│   ├── B_loops_solution
│   ├── B_two_dimensional_arrays_solution
│   ├── C_arrays_solution
│   ├── C_functions_solution
│   ├── Client-Auth-Solution-master
│   │   ├── public
│   │   └── src
│   │       ├── actions
│   │       ├── components
│   │       │   └── HOC
│   │       └── reducers
│   ├── C_loops_solution
│   ├── C_more_problems_solution
│   ├── Components-BEM-Solution-master
│   │   ├── components
│   │   │   ├── Box
│   │   │   ├── Dropdown
│   │   │   └── Section
│   │   └── markups
│   ├── Components-Constructors-Solution-master
│   │   ├── components
│   │   │   ├── Box
│   │   │   ├── Dropdown
│   │   │   ├── Section
│   │   │   └── Tabs
│   │   └── markups
│   ├── C_variables_solution
│   ├── Data-Structures-master
│   │   ├── avl_tree
│   │   ├── binary_search_tree
│   │   ├── doubly_linked_list
│   │   ├── heap
│   │   ├── lru_cache
│   │   ├── queue
│   │   ├── singly_linked_list
│   │   └── stack
│   ├── DOM-JavaScript-mini-Solution-master
│   │   └── components
│   │       ├── Box
│   │       ├── Header
│   │       ├── List
│   │       ├── Nav
│   │       ├── Section
│   │       └── Tabs
│   ├── D_string_indexing_and_methods_solution
│   ├── HTML-CSS-mini-Solution-master
│   │   └── components
│   │       ├── Box
│   │       ├── Header
│   │       └── Section
│   ├── Intro-Python-II-master
│   │   ├── examples
│   │   └── src
│   ├── Intro-Python-I-master
│   │   └── src
│   ├── Intro-to-C-master
│   │   ├── fizzbuzz
│   │   │   └── tests
│   │   ├── hangman
│   │   ├── malloc
│   │   │   └── tests
│   │   ├── pointers
│   │   │   └── tests
│   │   ├── queue
│   │   │   └── tests
│   │   ├── quicksort
│   │   │   └── tests
│   │   ├── strings
│   │   │   └── tests
│   │   ├── structs
│   │   │   └── tests
│   │   └── utils
│   ├── JavaScript-III-master
│   │   └── assignments
│   ├── JS-Exercise-Classes
│   │   └── test
│   ├── LS-Data-Structures-II-Solution-master
│   │   ├── src
│   │   └── tests
│   ├── LS-Data-Structures-I-Solution-master
│   │   ├── src
│   │   └── tests
│   ├── master
│   ├── Mongo-Mini-II-Solution-master
│   ├── nested-data-exercises-master
│   │   ├── data
│   │   └── test
│   ├── Node-Express-Gmaps-Solution-Day-II-master
│   │   └── src
│   │       ├── controllers
│   │       └── models
│   ├── Node-Express-Gmaps-Solution-Day-I-master
│   │   └── src
│   │       ├── controllers
│   │       └── models
│   ├── _Pet-Projects
│   │   └── whack-a-mole
│   ├── Python-OOP-Toy-master
│   │   └── src
│   ├── React-Todo-Solution-master
│   │   ├── public
│   │   └── src
│   │       └── tests
│   ├── Relational-Databases-master
│   ├── solutions
│   ├── Sprint-Challenge--Intro-Python-master
│   │   └── src
│   │       ├── cityreader
│   │       ├── comp
│   │       └── oop
│   ├── webapi-ii-challenge-master
│   │   └── data
│   │       ├── migrations
│   │       └── seeds
│   └── web-guided-project-testing-web-apps-solution-main
│       ├── public
│       └── src
│           └── components
├── 2-resources
│   ├── Atomic-Design-Solution-master
│   │   └── dogs
│   │       ├── public
│   │       └── src
│   │           ├── atoms
│   │           ├── molecules
│   │           ├── organisms
│   │           ├── pages
│   │           └── templates
│   ├── __CHEAT-SHEETS
│   │   ├── All
│   │   ├── guided-cheatsheets
│   │   │   ├── auto-generate-boilerplate
│   │   │   │   └── test2
│   │   │   └── test.html
│   │   └── pdf
│   │       ├── css
│   │       ├── css.html
│   │       ├── database
│   │       ├── database.html
│   │       ├── data-structures
│   │       ├── data-structures.html
│   │       ├── engineering
│   │       ├── engineering.html
│   │       ├── general-comp-sci
│   │       ├── git
│   │       ├── git.html
│   │       ├── html
│   │       ├── html.html
│   │       ├── java
│   │       ├── java.html
│   │       ├── javascript
│   │       ├── javascript.html
│   │       ├── linux
│   │       ├── linux.html
│   │       ├── math
│   │       ├── math.html
│   │       ├── misc
│   │       ├── misc.html
│   │       ├── python
│   │       ├── python.html
│   │       ├── ruby
│   │       ├── ruby.html
│   │       ├── unsorted
│   │       ├── web
│   │       └── web.html
│   ├── Client-Auth-Solution-master
│   │   ├── public
│   │   └── src
│   │       ├── actions
│   │       ├── components
│   │       │   └── HOC
│   │       └── reducers
│   ├── Components-BEM-Solution-master
│   │   ├── components
│   │   │   ├── Box
│   │   │   ├── Dropdown
│   │   │   └── Section
│   │   └── markups
│   ├── Components-Constructors-Solution-master
│   │   ├── components
│   │   │   ├── Box
│   │   │   ├── Dropdown
│   │   │   ├── Section
│   │   │   └── Tabs
│   │   └── markups
│   ├── DOM-JavaScript-mini-Solution-master
│   │   └── components
│   │       ├── Box
│   │       ├── Header
│   │       ├── List
│   │       ├── Nav
│   │       ├── Section
│   │       └── Tabs
│   ├── HTML-CSS-mini-Solution-master
│   │   └── components
│   │       ├── Box
│   │       ├── Header
│   │       └── Section
│   ├── JavaScript-I-master
│   │   └── assignments
│   ├── LS-Data-Structures-II-Solution-master
│   │   ├── src
│   │   └── tests
│   ├── LS-Data-Structures-I-Solution-master
│   │   ├── src
│   │   └── tests
│   ├── Node-Express-Gmaps-Solution-Day-II-master
│   │   └── src
│   │       ├── controllers
│   │       └── models
│   ├── Node-Express-Gmaps-Solution-Day-I-master
│   │   └── src
│   │       ├── controllers
│   │       └── models
│   ├── _Past-Projects
│   │   └── LambdaSchool-master
│   │       ├── 31d1
│   │       ├── aa-score
│   │       │   ├── public
│   │       │   └── src
│   │       ├── Administration
│   │       │   ├── certs
│   │       │   ├── marketing
│   │       │   ├── studying
│   │       │   └── zoom
│   │       ├── bw1-tl
│   │       │   ├── admin
│   │       │   ├── api
│   │       │   ├── auth
│   │       │   ├── database
│   │       │   │   ├── migrations
│   │       │   │   └── seeds
│   │       │   ├── middleware
│   │       │   ├── todos
│   │       │   └── volunteer
│   │       ├── css
│   │       ├── evoingram.github.io
│   │       ├── JavaScript30
│   │       │   ├── 01
│   │       │   │   └── sounds
│   │       │   ├── 02
│   │       │   ├── 03
│   │       │   ├── 04
│   │       │   ├── 05
│   │       │   ├── 06
│   │       │   ├── 07
│   │       │   ├── 08
│   │       │   ├── 09
│   │       │   ├── 10
│   │       │   ├── 11
│   │       │   ├── 12
│   │       │   ├── 13
│   │       │   ├── 14
│   │       │   ├── 15
│   │       │   ├── 16
│   │       │   ├── 17
│   │       │   ├── 18
│   │       │   ├── 19
│   │       │   ├── 20
│   │       │   ├── 21
│   │       │   ├── 22
│   │       │   ├── 23
│   │       │   ├── 24
│   │       │   ├── 25
│   │       │   ├── 26
│   │       │   ├── 27
│   │       │   ├── 28
│   │       │   ├── 29
│   │       │   └── 30
│   │       ├── labs
│   │       │   ├── backend
│   │       │   ├── frontend
│   │       │   ├── last journal entry
│   │       │   └── video-to-next-group
│   │       ├── m1
│   │       │   ├── 11b1
│   │       │   │   ├── design-files
│   │       │   │   ├── Git-Flow-Practice
│   │       │   │   ├── great-idea
│   │       │   │   │   ├── css
│   │       │   │   │   └── img
│   │       │   │   ├── great-idea-website
│   │       │   │   │   ├── css
│   │       │   │   │   └── img
│   │       │   │   └── Web26Git
│   │       │   ├── 11c1
│   │       │   │   ├── design-files
│   │       │   │   ├── great-idea-website
│   │       │   │   │   ├── css
│   │       │   │   │   └── img
│   │       │   │   └── User-Interface
│   │       │   ├── 11d1
│   │       │   │   ├── design-files
│   │       │   │   ├── great-idea
│   │       │   │   │   ├── css
│   │       │   │   │   └── img
│   │       │   │   └── UI-III-Flexbox
│   │       │   ├── 12a1
│   │       │   │   ├── css
│   │       │   │   ├── design-files
│   │       │   │   ├── img
│   │       │   │   └── responsive-web-design-I
│   │       │   ├── 12b1
│   │       │   │   ├── dimension
│   │       │   │   │   ├── assets
│   │       │   │   │   │   └── sass
│   │       │   │   │   └── html5up-dimension
│   │       │   │   │       └── assets
│   │       │   │   │           └── sass
│   │       │   │   └── solidstate
│   │       │   │       └── assets
│   │       │   │           └── sass
│   │       │   ├── 12c1
│   │       │   │   ├── css
│   │       │   │   └── less
│   │       │   ├── 12d1
│   │       │   │   ├── css
│   │       │   │   ├── design-files
│   │       │   │   ├── img
│   │       │   │   └── less
│   │       │   ├── 13a1
│   │       │   │   └── assignments
│   │       │   ├── 13b1
│   │       │   │   └── assignments
│   │       │   ├── 13c1
│   │       │   │   └── assignments
│   │       │   ├── 13d1
│   │       │   │   ├── new
│   │       │   │   │   └── test
│   │       │   │   └── old
│   │       │   │       └── assignments
│   │       │   ├── 13e1
│   │       │   │   └── challenges
│   │       │   ├── 14a1
│   │       │   │   └── Marketing-page
│   │       │   ├── SC-ACSS
│   │       │   └── Sprint-Challenge--Advanced-CSS
│   │       ├── m2
│   │       │   ├── 21a1
│   │       │   │   ├── css
│   │       │   │   ├── design-files
│   │       │   │   ├── img
│   │       │   │   ├── js
│   │       │   │   └── stretch-assignment
│   │       │   │       └── digital_timer
│   │       │   ├── 21b1
│   │       │   ├── 21c1
│   │       │   │   ├── Article
│   │       │   │   ├── assets
│   │       │   │   ├── css
│   │       │   │   ├── Header
│   │       │   │   ├── LESS
│   │       │   │   └── Menu
│   │       │   ├── 21d1
│   │       │   │   ├── assets
│   │       │   │   └── GitHubCard
│   │       │   ├── 21e1
│   │       │   │   ├── assets
│   │       │   │   │   └── carousel
│   │       │   │   ├── components
│   │       │   │   │   ├── Cards
│   │       │   │   │   ├── Carousel
│   │       │   │   │   ├── Header
│   │       │   │   │   ├── Tabs
│   │       │   │   │   └── TopBar
│   │       │   │   ├── CSS
│   │       │   │   └── LESS
│   │       │   ├── 22a1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   ├── 22b1
│   │       │   │   ├── design-files
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── components
│   │       │   │       │   ├── ButtonComponents
│   │       │   │       │   │   ├── NumberButtons
│   │       │   │       │   │   ├── OperatorButtons
│   │       │   │       │   │   └── SpecialButtons
│   │       │   │       │   └── DisplayComponents
│   │       │   │       └── Img
│   │       │   ├── 22c1
│   │       │   │   ├── public
│   │       │   │   ├── reactstrap-project
│   │       │   │   │   ├── public
│   │       │   │   │   └── src
│   │       │   │   └── src
│   │       │   ├── 22e1
│   │       │   │   └── starwars
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           └── components
│   │       │   ├── 23a1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── components
│   │       │   ├── 23a2
│   │       │   │   └── images
│   │       │   ├── 23b1
│   │       │   │   └── client
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           └── Movies
│   │       │   ├── 23c1
│   │       │   │   ├── public
│   │       │   │   ├── src
│   │       │   │   │   └── CustomHooks
│   │       │   │   └── team-builder
│   │       │   ├── 23d1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── CustomHooks
│   │       │   ├── 23d2
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   ├── 23e1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── components
│   │       │   └── 24a1
│   │       │       ├── public
│   │       │       │   └── img
│   │       │       └── src
│   │       │           └── components
│   │       │               └── old pages
│   │       ├── m3
│   │       │   ├── 31a1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── components
│   │       │   │           └── TodoComponents
│   │       │   ├── 31a2
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   ├── 31b1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── components
│   │       │   ├── 31c1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── components
│   │       │   │       └── hooks
│   │       │   ├── 31d1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── components
│   │       │   │       └── hooks
│   │       │   ├── 31e1
│   │       │   │   └── client
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           ├── components
│   │       │   │           └── hooks
│   │       │   ├── 32a1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── components
│   │       │   │       ├── contexts
│   │       │   │       └── sass
│   │       │   ├── 32b1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── components
│   │       │   │       └── reducers
│   │       │   ├── 32c1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── actions
│   │       │   │       ├── components
│   │       │   │       └── reducers
│   │       │   ├── 32d1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── actions
│   │       │   │       ├── components
│   │       │   │       ├── fonts
│   │       │   │       ├── img
│   │       │   │       └── reducers
│   │       │   ├── 32e1
│   │       │   │   └── smurfs
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           ├── actions
│   │       │   │           ├── components
│   │       │   │           └── reducers
│   │       │   ├── 33a1
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       ├── controls
│   │       │   │       ├── dashboard
│   │       │   │       └── display
│   │       │   ├── 33b1
│   │       │   │   └── friends
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           ├── actions
│   │       │   │           ├── components
│   │       │   │           ├── reducers
│   │       │   │           └── utils
│   │       │   ├── 33d1
│   │       │   │   └── client
│   │       │   │       ├── public
│   │       │   │       └── src
│   │       │   │           └── Movies
│   │       │   └── 33e1
│   │       │       └── client
│   │       │           ├── public
│   │       │           └── src
│   │       │               ├── actions
│   │       │               ├── components
│   │       │               ├── reducers
│   │       │               └── utils
│   │       ├── m4
│   │       │   ├── 41a1
│   │       │   │   └── data
│   │       │   │       ├── migrations
│   │       │   │       └── seeds
│   │       │   ├── 41a2
│   │       │   │   └── data
│   │       │   │       ├── migrations
│   │       │   │       └── seeds
│   │       │   ├── 41b1
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── hubs
│   │       │   ├── 41b2
│   │       │   │   └── data
│   │       │   │       ├── migrations
│   │       │   │       └── seeds
│   │       │   ├── 41c1
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   ├── hubs
│   │       │   │   └── messages
│   │       │   ├── 41c2
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   ├── posts
│   │       │   │   └── users
│   │       │   ├── 41d1
│   │       │   │   ├── api
│   │       │   │   └── data
│   │       │   │       └── migrations
│   │       │   ├── 41e1
│   │       │   │   ├── data
│   │       │   │   │   ├── helpers
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── routers
│   │       │   ├── 41e1app
│   │       │   │   ├── public
│   │       │   │   └── src
│   │       │   │       └── components
│   │       │   ├── 42a1
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   ├── dbintro
│   │       │   │   ├── migrations
│   │       │   │   └── posts
│   │       │   ├── 42a2
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── routers
│   │       │   ├── 42b1
│   │       │   │   ├── api
│   │       │   │   ├── data
│   │       │   │   └── fruits
│   │       │   ├── 42b2
│   │       │   │   ├── api
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── routers
│   │       │   ├── 42c1
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── users
│   │       │   ├── 42c2
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── schemes
│   │       │   ├── 42d1
│   │       │   │   └── data
│   │       │   │       └── seeds
│   │       │   ├── 42d2
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── recipes
│   │       │   ├── 42e1
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── projects
│   │       │   ├── 43a1
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── authintro
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   ├── __MACOSX
│   │       │   │   │   └── authintro
│   │       │   │   └── users
│   │       │   ├── 43a2
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   └── users
│   │       │   ├── 43b1
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   └── users
│   │       │   ├── 43b2
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   ├── sessions
│   │       │   │   └── users
│   │       │   ├── 43c1
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   ├── jwts
│   │       │   │   └── users
│   │       │   ├── 43c2
│   │       │   │   ├── api
│   │       │   │   ├── auth
│   │       │   │   ├── config
│   │       │   │   ├── database
│   │       │   │   │   └── migrations
│   │       │   │   ├── __MACOSX
│   │       │   │   │   └── sessions
│   │       │   │   └── users
│   │       │   ├── 43d1
│   │       │   │   ├── api
│   │       │   │   ├── data
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── hobbits
│   │       │   ├── 43d1a
│   │       │   │   └── ls
│   │       │   ├── 43d2
│   │       │   │   ├── api
│   │       │   │   ├── cohorts
│   │       │   │   ├── database
│   │       │   │   │   ├── migrations
│   │       │   │   │   └── seeds
│   │       │   │   └── students
│   │       │   └── 43e1
│   │       │       ├── 43e1
│   │       │       │   ├── public
│   │       │       │   └── src
│   │       │       │       └── components
│   │       │       ├── api
│   │       │       ├── auth
│   │       │       ├── database
│   │       │       │   └── migrations
│   │       │       └── jokes
│   │       ├── m5
│   │       │   ├── 51a1
│   │       │   │   └── src
│   │       │   │       └── employeeApp
│   │       │   ├── 51b1
│   │       │   │   └── src
│   │       │   │       └── collections
│   │       │   │           └── src
│   │       │   │               └── collections
│   │       │   ├── 51c1
│   │       │   │   └── transportation
│   │       │   │       └── src
│   │       │   │           └── transport
│   │       │   ├── 51d1
│   │       │   │   ├── bin
│   │       │   │   │   └── src
│   │       │   │   │       ├── main
│   │       │   │   │       │   ├── java
│   │       │   │   │       │   │   └── com
│   │       │   │   │       │   │       └── lambdaschool
│   │       │   │   │       │   │           └── webemployees3
│   │       │   │   │       │   └── resources
│   │       │   │   │       └── test
│   │       │   │   │           └── java
│   │       │   │   │               └── com
│   │       │   │   │                   └── lambdaschool
│   │       │   │   │                       └── webemployees3
│   │       │   │   └── src
│   │       │   │       ├── main
│   │       │   │       │   ├── java
│   │       │   │       │   │   └── com
│   │       │   │       │   │       └── lambdaschool
│   │       │   │       │   │           └── j51d1
│   │       │   │       │   └── resources
│   │       │   │       │       └── static
│   │       │   │       └── test
│   │       │   │           └── java
│   │       │   │               └── com
│   │       │   │                   └── lambdaschool
│   │       │   │                       └── webemployees3
│   │       │   ├── 51d2
│   │       │   │   ├── src
│   │       │   │   │   ├── main
│   │       │   │   │   │   ├── java
│   │       │   │   │   │   │   └── com
│   │       │   │   │   │   │       └── lambdaschool
│   │       │   │   │   │   │           └── j51d2
│   │       │   │   │   │   └── resources
│   │       │   │   │   └── test
│   │       │   │   │       └── java
│   │       │   │   │           └── com
│   │       │   │   │               └── lambdaschool
│   │       │   │   │                   └── j51d2
│   │       │   │   └── target
│   │       │   │       └── classes
│   │       │   ├── 51e1
│   │       │   │   └── src
│   │       │   │       ├── main
│   │       │   │       │   ├── java
│   │       │   │       │   │   └── com
│   │       │   │       │   │       └── lambdaschool
│   │       │   │       │   │           └── j51e1
│   │       │   │       │   └── resources
│   │       │   │       └── test
│   │       │   │           └── java
│   │       │   │               └── com
│   │       │   │                   └── lambdaschool
│   │       │   │                       └── j51e1
│   │       │   ├── 52b1
│   │       │   │   └── assets
│   │       │   ├── 52c1
│   │       │   │   └── src
│   │       │   │       ├── main
│   │       │   │       │   ├── java
│   │       │   │       │   │   └── com
│   │       │   │       │   │       └── lambdaschool
│   │       │   │       │   │           └── j52c1
│   │       │   │       │   │               ├── controllers
│   │       │   │       │   │               ├── models
│   │       │   │       │   │               ├── repos
│   │       │   │       │   │               └── services
│   │       │   │       │   └── resources
│   │       │   │       └── test
│   │       │   │           └── java
│   │       │   │               └── com
│   │       │   │                   └── lambdaschool
│   │       │   │                       └── j52c1
│   │       │   ├── 52c2
│   │       │   │   └── src
│   │       │   │       ├── main
│   │       │   │       │   ├── java
│   │       │   │       │   │   └── com
│   │       │   │       │   │       └── lambdaschool
│   │       │   │       │   │           └── j52c2
│   │       │   │       │   │               ├── controllers
│   │       │   │       │   │               ├── models
│   │       │   │       │   │               ├── repos
│   │       │   │       │   │               └── services
│   │       │   │       │   └── resources
│   │       │   │       └── test
│   │       │   │           └── java
│   │       │   │               └── com
│   │       │   │                   └── lambdaschool
│   │       │   │                       └── j52c2
│   │       │   ├── 52d1
│   │       │   │   └── oauth
│   │       │   │       ├── oauth2
│   │       │   │       │   └── src
│   │       │   │       │       ├── main
│   │       │   │       │       │   ├── java
│   │       │   │       │       │   │   └── com
│   │       │   │       │       │   │       └── lambdaschool
│   │       │   │       │       │   │           └── usermodel
│   │       │   │       │       │   │               ├── config
│   │       │   │       │       │   │               ├── controllers
│   │       │   │       │       │   │               ├── exceptions
│   │       │   │       │       │   │               ├── handlers
│   │       │   │       │       │   │               ├── logging
│   │       │   │       │       │   │               ├── models
│   │       │   │       │       │   │               ├── repository
│   │       │   │       │       │   │               ├── services
│   │       │   │       │       │   │               └── view
│   │       │   │       │       │   └── resources
│   │       │   │       │       │       └── info
│   │       │   │       │       └── test
│   │       │   │       │           ├── java
│   │       │   │       │           │   └── com
│   │       │   │       │           │       └── lambdaschool
│   │       │   │       │           │           └── usermodel
│   │       │   │       │           │               ├── controllers
│   │       │   │       │           │               └── services
│   │       │   │       │           └── resources
│   │       │   │       └── oauth2 - initial
│   │       │   │           └── src
│   │       │   │               ├── main
│   │       │   │               │   ├── java
│   │       │   │               │   │   └── com
│   │       │   │               │   │       └── lambdaschool
│   │       │   │               │   │           ├── authenticatedusers
│   │       │   │               │   │           │   ├── config
│   │       │   │               │   │           │   ├── controller
│   │       │   │               │   │           │   ├── model
│   │       │   │               │   │           │   ├── repository
│   │       │   │               │   │           │   ├── service
│   │       │   │               │   │           │   └── view
│   │       │   │               │   │           └── usermodel
│   │       │   │               │   │               ├── config
│   │       │   │               │   │               ├── controllers
│   │       │   │               │   │               ├── exceptions
│   │       │   │               │   │               ├── handlers
│   │       │   │               │   │               ├── logging
│   │       │   │               │   │               ├── models
│   │       │   │               │   │               ├── repository
│   │       │   │               │   │               ├── services
│   │       │   │               │   │               └── view
│   │       │   │               │   └── resources
│   │       │   │               │       └── info
│   │       │   │               └── test
│   │       │   │                   └── java
│   │       │   │                       └── com
│   │       │   │                           └── lambdaschool
│   │       │   │                               ├── authenticatedusers
│   │       │   │                               └── usermodel
│   │       │   ├── 53a1
│   │       │   │   ├── oauth2ExceptionLogging-final
│   │       │   │   │   └── src
│   │       │   │   │       └── main
│   │       │   │   │           ├── java
│   │       │   │   │           │   └── com
│   │       │   │   │           │       └── lambdaschool
│   │       │   │   │           │           └── oauth2
│   │       │   │   │           │               ├── config
│   │       │   │   │           │               ├── controllers
│   │       │   │   │           │               ├── exceptions
│   │       │   │   │           │               ├── handlers
│   │       │   │   │           │               ├── logging
│   │       │   │   │           │               ├── models
│   │       │   │   │           │               ├── repository
│   │       │   │   │           │               ├── services
│   │       │   │   │           │               └── view
│   │       │   │   │           └── resources
│   │       │   │   ├── src
│   │       │   │   │   ├── main
│   │       │   │   │   │   ├── java
│   │       │   │   │   │   │   └── com
│   │       │   │   │   │   │       └── lambdaschool
│   │       │   │   │   │   │           └── authenticatedusers
│   │       │   │   │   │   │               ├── config
│   │       │   │   │   │   │               ├── controller
│   │       │   │   │   │   │               ├── exceptions
│   │       │   │   │   │   │               ├── handlers
│   │       │   │   │   │   │               ├── model
│   │       │   │   │   │   │               ├── repository
│   │       │   │   │   │   │               ├── service
│   │       │   │   │   │   │               └── view
│   │       │   │   │   │   └── resources
│   │       │   │   │   │       └── info
│   │       │   │   │   └── test
│   │       │   │   │       └── java
│   │       │   │   │           └── com
│   │       │   │   │               └── lambdaschool
│   │       │   │   │                   ├── authenticatedusers
│   │       │   │   │                   └── usermodel
│   │       │   │   └── target
│   │       │   │       └── classes
│   │       │   │           └── info
│   │       │   ├── 53b1
│   │       │   │   ├── clientrestaurants
│   │       │   │   │   └── src
│   │       │   │   │       ├── main
│   │       │   │   │       │   ├── java
│   │       │   │   │       │   │   └── com
│   │       │   │   │       │   │       └── lambda
│   │       │   │   │       │   │           └── clientrestaurants
│   │       │   │   │       │   │               ├── client
│   │       │   │   │       │   │               └── model
│   │       │   │   │       │   └── resources
│   │       │   │   │       └── test
│   │       │   │   │           └── java
│   │       │   │   │               └── com
│   │       │   │   │                   └── lambda
│   │       │   │   │                       └── clientrestaurants
│   │       │   │   ├── restaurants-initial
│   │       │   │   │   ├── src
│   │       │   │   │   │   └── main
│   │       │   │   │   │       ├── java
│   │       │   │   │   │       │   └── com
│   │       │   │   │   │       │       └── lambdaschool
│   │       │   │   │   │       │           └── restaurants
│   │       │   │   │   │       │               ├── config
│   │       │   │   │   │       │               ├── controller
│   │       │   │   │   │       │               ├── model
│   │       │   │   │   │       │               ├── repos
│   │       │   │   │   │       │               └── service
│   │       │   │   │   │       └── resources
│   │       │   │   │   │           └── info
│   │       │   │   │   └── target
│   │       │   │   │       ├── classes
│   │       │   │   │       │   ├── com
│   │       │   │   │       │   │   └── lambdaschool
│   │       │   │   │       │   │       └── restaurants
│   │       │   │   │       │   │           ├── config
│   │       │   │   │       │   │           ├── controller
│   │       │   │   │       │   │           ├── model
│   │       │   │   │       │   │           ├── repos
│   │       │   │   │       │   │           └── service
│   │       │   │   │       │   └── info
│   │       │   │   │       ├── failsafe-reports
│   │       │   │   │       ├── maven-archiver
│   │       │   │   │       ├── maven-status
│   │       │   │   │       │   └── maven-compiler-plugin
│   │       │   │   │       │       ├── compile
│   │       │   │   │       │       │   └── default-compile
│   │       │   │   │       │       └── testCompile
│   │       │   │   │       │           └── default-testCompile
│   │       │   │   │       └── surefire-reports
│   │       │   │   └── restaurants-pagesswagger
│   │       │   │       ├── src
│   │       │   │       │   └── main
│   │       │   │       │       ├── java
│   │       │   │       │       │   └── com
│   │       │   │       │       │       └── lambdaschool
│   │       │   │       │       │           └── restaurants
│   │       │   │       │       │               ├── config
│   │       │   │       │       │               ├── controller
│   │       │   │       │       │               ├── exception
│   │       │   │       │       │               ├── model
│   │       │   │       │       │               ├── repos
│   │       │   │       │       │               └── service
│   │       │   │       │       └── resources
│   │       │   │       │           ├── info
│   │       │   │       │           └── templates
│   │       │   │       └── target
│   │       │   │           ├── classes
│   │       │   │           │   ├── info
│   │       │   │           │   └── templates
│   │       │   │           ├── heroku
│   │       │   │           │   └── app
│   │       │   │           ├── maven-archiver
│   │       │   │           └── maven-status
│   │       │   │               └── maven-compiler-plugin
│   │       │   │                   ├── compile
│   │       │   │                   │   └── default-compile
│   │       │   │                   └── testCompile
│   │       │   │                       └── default-testCompile
│   │       │   ├── 53c1
│   │       │   │   ├── restaurants-initial
│   │       │   │   │   └── src
│   │       │   │   │       └── main
│   │       │   │   │           ├── java
│   │       │   │   │           │   └── com
│   │       │   │   │           │       └── lambdaschool
│   │       │   │   │           │           └── restaurants
│   │       │   │   │           │               ├── config
│   │       │   │   │           │               ├── controller
│   │       │   │   │           │               ├── model
│   │       │   │   │           │               ├── repos
│   │       │   │   │           │               └── service
│   │       │   │   │           └── resources
│   │       │   │   │               └── info
│   │       │   │   └── restaurants-testing
│   │       │   │       └── src
│   │       │   │           ├── main
│   │       │   │           │   ├── java
│   │       │   │           │   │   └── com
│   │       │   │           │   │       └── lambdaschool
│   │       │   │           │   │           └── restaurants
│   │       │   │           │   │               ├── config
│   │       │   │           │   │               ├── controller
│   │       │   │           │   │               ├── model
│   │       │   │           │   │               ├── repos
│   │       │   │           │   │               └── service
│   │       │   │           │   └── resources
│   │       │   │           │       └── info
│   │       │   │           └── test
│   │       │   │               ├── java
│   │       │   │               │   └── com
│   │       │   │               │       └── lambdaschool
│   │       │   │               │           └── restaurants
│   │       │   │               │               ├── controller
│   │       │   │               │               └── service
│   │       │   │               └── resources
│   │       │   └── 53d1
│   │       │       ├── JS-FrontEnd-by-jheinz1999
│   │       │       │   ├── public
│   │       │       │   └── src
│   │       │       │       └── components
│   │       │       └── StartHere
│   │       │           └── src
│   │       │               ├── main
│   │       │               │   ├── java
│   │       │               │   │   └── com
│   │       │               │   │       └── lambdaschool
│   │       │               │   │           └── starthere
│   │       │               │   │               ├── config
│   │       │               │   │               ├── controllers
│   │       │               │   │               ├── exceptions
│   │       │               │   │               ├── handlers
│   │       │               │   │               ├── logging
│   │       │               │   │               ├── models
│   │       │               │   │               ├── repository
│   │       │               │   │               ├── services
│   │       │               │   │               └── view
│   │       │               │   └── resources
│   │       │               │       └── info
│   │       │               └── test
│   │       │                   ├── java
│   │       │                   │   └── com
│   │       │                   │       └── lambdaschool
│   │       │                   │           └── starthere
│   │       │                   │               ├── controllers
│   │       │                   │               └── services
│   │       │                   └── resources
│   │       ├── m6
│   │       │   ├── 61a1
│   │       │   │   └── src
│   │       │   ├── 61b1
│   │       │   │   ├── examples
│   │       │   │   └── src
│   │       │   ├── 61c1
│   │       │   │   └── src
│   │       │   │       ├── cityreader
│   │       │   │       │   └── __pycache__
│   │       │   │       ├── comp
│   │       │   │       │   └── __pycache__
│   │       │   │       └── oop
│   │       │   │           └── __pycache__
│   │       │   ├── 62a1
│   │       │   │   ├── avl_tree
│   │       │   │   ├── benchmarks
│   │       │   │   ├── binary_search_tree
│   │       │   │   ├── doubly_linked_list
│   │       │   │   ├── heap
│   │       │   │   ├── lru_cache
│   │       │   │   ├── queue
│   │       │   │   ├── queue_and_stack
│   │       │   │   ├── singly_linked_list
│   │       │   │   └── stack
│   │       │   ├── 62b1
│   │       │   │   ├── names
│   │       │   │   ├── reverse
│   │       │   │   └── ring_buffer
│   │       │   ├── 63a1
│   │       │   │   └── src
│   │       │   │       ├── iterative_sorting
│   │       │   │       └── searching
│   │       │   ├── 63b1
│   │       │   │   └── src
│   │       │   │       └── recursive_sorting
│   │       │   │           └── __pycache__
│   │       │   ├── 63c1
│   │       │   │   ├── eating_cookies
│   │       │   │   ├── knapsack
│   │       │   │   │   └── data
│   │       │   │   ├── making_change
│   │       │   │   ├── moving_zeroes
│   │       │   │   ├── product_of_all_other_numbers
│   │       │   │   ├── recipe_batches
│   │       │   │   ├── rock_paper_scissors
│   │       │   │   ├── single_number
│   │       │   │   ├── sliding_window_max
│   │       │   │   │   └── data
│   │       │   │   └── stock_prices
│   │       │   └── 63d1
│   │       │       ├── recursive_count_th
│   │       │       ├── robot_sort
│   │       │       └── Short-Answer
│   │       ├── m7
│   │       │   ├── 71a1
│   │       │   │   ├── applications
│   │       │   │   │   ├── crack_caesar
│   │       │   │   │   ├── expensive_seq
│   │       │   │   │   ├── histo
│   │       │   │   │   ├── lookup_table
│   │       │   │   │   ├── markov
│   │       │   │   │   ├── no_dups
│   │       │   │   │   ├── sumdiff
│   │       │   │   │   └── word_count
│   │       │   │   └── hashtable
│   │       │   ├── 71e1
│   │       │   │   └── hashtables
│   │       │   │       ├── ex1
│   │       │   │       ├── ex2
│   │       │   │       ├── ex3
│   │       │   │       ├── ex4
│   │       │   │       └── ex5
│   │       │   ├── 72a1
│   │       │   │   ├── objectives
│   │       │   │   │   ├── breadth-first-search
│   │       │   │   │   │   └── img
│   │       │   │   │   ├── connected-components
│   │       │   │   │   │   └── img
│   │       │   │   │   ├── depth-first-search
│   │       │   │   │   │   └── img
│   │       │   │   │   ├── graph-intro
│   │       │   │   │   │   └── img
│   │       │   │   │   ├── graph-representations
│   │       │   │   │   │   └── img
│   │       │   │   │   └── randomness
│   │       │   │   └── projects
│   │       │   │       ├── adventure
│   │       │   │       │   └── maps
│   │       │   │       ├── ancestor
│   │       │   │       ├── graph
│   │       │   │       └── social
│   │       │   ├── 73a1
│   │       │   │   ├── asm
│   │       │   │   └── ls8
│   │       │   │       └── examples
│   │       │   └── 74a1
│   │       ├── node_modules
│   │       ├── src
│   │       │   ├── iterative_sorting
│   │       │   └── searching
│   │       ├── summary
│   │       │   ├── certifications
│   │       │   │   ├── IBM zOS
│   │       │   │   └── Oracle Autonomous DB
│   │       │   │       ├── 1 Overview
│   │       │   │       ├── 2 Provisioning and Connectivity
│   │       │   │       ├── 3 Migration and Data Loding into Autonomous DB
│   │       │   │       ├── 4 Migrating and Data Loading
│   │       │   │       ├── 5 Monitoring Autonomous DB
│   │       │   │       └── 6 Tools Reporting Analytics
│   │       │   ├── cobol
│   │       │   │   ├── COBOL example programs_files
│   │       │   │   ├── COBOL Programming Course_files
│   │       │   │   └── COBOL Programming Exercises_files
│   │       │   ├── complete
│   │       │   │   ├── Decks
│   │       │   │   └── notes-books
│   │       │   ├── general
│   │       │   ├── interviewing
│   │       │   ├── Node Express Knex
│   │       │   │   └── Create Back End Guide
│   │       │   ├── testing
│   │       │   └── typescript
│   │       └── tlbw
│   │           └── client
│   │               ├── public
│   │               └── src
│   │                   ├── components
│   │                   │   ├── context
│   │                   │   │   └── strainsSelectContext
│   │                   │   └── strains
│   │                   └── imgs
│   ├── React-Todo-Solution-master
│   │   ├── public
│   │   └── src
│   │       └── tests
│   ├── _Sprint-Resources
│   │   └── Sprint Challenge Study Guide - Unit 1, Sprint 1
│   ├── _Templates-Frameworks-And-Official-Repos
│   │   ├── ant-design-master
│   │   │   ├── components
│   │   │   │   ├── affix
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── alert
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── anchor
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── auto-complete
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── avatar
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── back-top
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── badge
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── breadcrumb
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── button
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── calendar
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── locale
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── card
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── carousel
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── cascader
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── checkbox
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── col
│   │   │   │   │   └── style
│   │   │   │   ├── collapse
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── comment
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── config-provider
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── date-picker
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── generatePicker
│   │   │   │   │   ├── locale
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── descriptions
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── divider
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── drawer
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── dropdown
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── empty
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── form
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── hooks
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── grid
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── hooks
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── icon
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   ├── image
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── input
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── input-number
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── layout
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── list
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── locale
│   │   │   │   ├── locale-provider
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── mentions
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── menu
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── message
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── hooks
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── modal
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   ├── __tests__
│   │   │   │   │   │   └── __snapshots__
│   │   │   │   │   └── useModal
│   │   │   │   ├── notification
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── hooks
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── overview
│   │   │   │   ├── page-header
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── pagination
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── popconfirm
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── popover
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── progress
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── radio
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── rate
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── result
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── row
│   │   │   │   │   └── style
│   │   │   │   ├── select
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   ├── __tests__
│   │   │   │   │   │   └── __snapshots__
│   │   │   │   │   └── utils
│   │   │   │   ├── skeleton
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── slider
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── space
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── spin
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── statistic
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── steps
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── style
│   │   │   │   │   ├── color
│   │   │   │   │   ├── core
│   │   │   │   │   │   └── motion
│   │   │   │   │   ├── mixins
│   │   │   │   │   └── themes
│   │   │   │   ├── switch
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── table
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── hooks
│   │   │   │   │   │   └── useFilter
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── tabs
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── tag
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── __tests__
│   │   │   │   │   └── __snapshots__
│   │   │   │   ├── timeline
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── time-picker
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── locale
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── tooltip
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── transfer
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── tree
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   ├── __tests__
│   │   │   │   │   │   └── __snapshots__
│   │   │   │   │   └── utils
│   │   │   │   ├── tree-select
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── typography
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   └── __tests__
│   │   │   │   │       └── __snapshots__
│   │   │   │   ├── upload
│   │   │   │   │   ├── demo
│   │   │   │   │   ├── style
│   │   │   │   │   ├── __tests__
│   │   │   │   │   │   └── __snapshots__
│   │   │   │   │   └── UploadList
│   │   │   │   ├── _util
│   │   │   │   │   ├── hooks
│   │   │   │   │   └── __tests__
│   │   │   │   └── version
│   │   │   │       └── style
│   │   │   ├── docs
│   │   │   │   ├── react
│   │   │   │   └── spec
│   │   │   ├── scripts
│   │   │   │   └── previewEditor
│   │   │   ├── site
│   │   │   │   └── theme
│   │   │   │       ├── static
│   │   │   │       └── template
│   │   │   │           ├── Color
│   │   │   │           ├── Content
│   │   │   │           │   └── Demo
│   │   │   │           ├── Home
│   │   │   │           │   ├── Banner
│   │   │   │           │   └── DesignPage
│   │   │   │           ├── Icon
│   │   │   │           ├── IconDisplay
│   │   │   │           ├── Layout
│   │   │   │           │   └── Header
│   │   │   │           └── Resources
│   │   │   │               └── Articles
│   │   │   ├── tests
│   │   │   │   ├── dekko
│   │   │   │   ├── matchers
│   │   │   │   ├── __mocks__
│   │   │   │   │   └── rc-util
│   │   │   │   │       └── lib
│   │   │   │   ├── shared
│   │   │   │   └── __snapshots__
│   │   │   └── typings
│   │   └── material-components-web-master
│   │       ├── docs
│   │       │   ├── code
│   │       │   ├── codelabs
│   │       │   ├── contribute
│   │       │   └── open_source
│   │       ├── packages
│   │       │   ├── material-components-web
│   │       │   ├── mdc-animation
│   │       │   │   └── test
│   │       │   ├── mdc-auto-init
│   │       │   │   └── test
│   │       │   ├── mdc-banner
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-base
│   │       │   │   └── test
│   │       │   ├── mdc-button
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-card
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-checkbox
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-chips
│   │       │   │   ├── action
│   │       │   │   │   └── test
│   │       │   │   ├── chip
│   │       │   │   │   └── test
│   │       │   │   ├── chip-set
│   │       │   │   │   └── test
│   │       │   │   └── deprecated
│   │       │   │       ├── chip
│   │       │   │       │   └── test
│   │       │   │       ├── chip-set
│   │       │   │       │   └── test
│   │       │   │       ├── test
│   │       │   │       └── trailingaction
│   │       │   │           └── test
│   │       │   ├── mdc-circular-progress
│   │       │   │   └── test
│   │       │   ├── mdc-data-table
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-density
│   │       │   ├── mdc-dialog
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-dom
│   │       │   │   └── test
│   │       │   ├── mdc-drawer
│   │       │   │   ├── dismissible
│   │       │   │   │   └── test
│   │       │   │   ├── images
│   │       │   │   ├── modal
│   │       │   │   │   └── test
│   │       │   │   └── test
│   │       │   ├── mdc-elevation
│   │       │   │   └── test
│   │       │   ├── mdc-fab
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-feature-targeting
│   │       │   ├── mdc-floating-label
│   │       │   │   └── test
│   │       │   ├── mdc-form-field
│   │       │   │   └── test
│   │       │   ├── mdc-icon-button
│   │       │   │   └── test
│   │       │   ├── mdc-image-list
│   │       │   │   └── test
│   │       │   ├── mdc-layout-grid
│   │       │   ├── mdc-linear-progress
│   │       │   │   └── test
│   │       │   ├── mdc-line-ripple
│   │       │   │   └── test
│   │       │   ├── mdc-list
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-menu
│   │       │   │   └── test
│   │       │   ├── mdc-menu-surface
│   │       │   │   └── test
│   │       │   ├── mdc-notched-outline
│   │       │   │   └── test
│   │       │   ├── mdc-progress-indicator
│   │       │   ├── mdc-radio
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-ripple
│   │       │   │   └── test
│   │       │   ├── mdc-rtl
│   │       │   │   └── test
│   │       │   ├── mdc-segmented-button
│   │       │   │   ├── segment
│   │       │   │   │   └── test
│   │       │   │   └── segmented-button
│   │       │   │       └── test
│   │       │   ├── mdc-select
│   │       │   │   ├── helper-text
│   │       │   │   │   └── test
│   │       │   │   ├── icon
│   │       │   │   │   └── test
│   │       │   │   └── test
│   │       │   ├── mdc-shape
│   │       │   │   └── test
│   │       │   ├── mdc-slider
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-snackbar
│   │       │   │   └── test
│   │       │   ├── mdc-switch
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-tab
│   │       │   │   └── test
│   │       │   ├── mdc-tab-bar
│   │       │   │   └── test
│   │       │   ├── mdc-tab-indicator
│   │       │   │   └── test
│   │       │   ├── mdc-tab-scroller
│   │       │   │   └── test
│   │       │   ├── mdc-textfield
│   │       │   │   ├── character-counter
│   │       │   │   │   └── test
│   │       │   │   ├── helper-text
│   │       │   │   │   └── test
│   │       │   │   ├── icon
│   │       │   │   │   └── test
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-theme
│   │       │   │   └── test
│   │       │   ├── mdc-tooltip
│   │       │   │   ├── images
│   │       │   │   └── test
│   │       │   ├── mdc-top-app-bar
│   │       │   │   ├── fixed
│   │       │   │   │   └── test
│   │       │   │   ├── images
│   │       │   │   ├── short
│   │       │   │   │   └── test
│   │       │   │   ├── standard
│   │       │   │   │   └── test
│   │       │   │   └── test
│   │       │   ├── mdc-touch-target
│   │       │   │   └── test
│   │       │   └── mdc-typography
│   │       │       └── test
│   │       ├── scripts
│   │       │   ├── build
│   │       │   ├── documentation
│   │       │   └── webpack
│   │       └── testing
│   │           ├── dom
│   │           ├── featuretargeting
│   │           └── helpers
│   └── web-guided-project-testing-web-apps-solution-main
│       ├── public
│       └── src
│           └── components
├── 3-misc
│   ├── articles-from-interwebs
│   │   └── Jquery-tips-n-tricks_files
│   ├── Beginner
│   │   ├── capSentence
│   │   ├── chunkArray
│   │   ├── factorial
│   │   ├── falsyBouncer
│   │   ├── fibonacci
│   │   ├── fizzBuzz
│   │   ├── hammingDistance
│   │   ├── isAnagram
│   │   ├── longestWord
│   │   ├── maxRecurringChar
│   │   ├── mergeArrays
│   │   ├── palindromeChecker
│   │   ├── reverseString
│   │   ├── searchReplace
│   │   ├── vowelsCounter
│   │   └── whereIBelong
│   ├── node-web-scraper-master
│   │   └── node-web-scraper-master
│   └── SandboxSQL-master
│       └── SandboxSQL-master
│           ├── iOS
│           │   ├── Base.lproj
│           │   └── Images.xcassets
│           │       └── AppIcon.appiconset
│           ├── SQLSandbox.xcodeproj
│           │   ├── project.xcworkspace
│           │   │   ├── xcshareddata
│           │   │   └── xcuserdata
│           │   │       ├── pcottle.xcuserdatad
│           │   │       └── tom.xcuserdatad
│           │   ├── xcshareddata
│           │   │   └── xcschemes
│           │   └── xcuserdata
│           │       ├── pcottle.xcuserdatad
│           │       │   └── xcschemes
│           │       └── tom.xcuserdatad
│           │           └── xcschemes
│           └── src
│               └── js
│                   ├── actions
│                   ├── constants
│                   ├── data
│                   ├── dispatcher
│                   ├── query
│                   ├── stores
│                   ├── __tests__
│                   ├── tokens
│                   ├── utils
│                   └── views
├── 4-test-prep
│   └── Study-Guides
├── 5-websites
│   └── lambda-prep
│       ├── javascript-practice
│       │   ├── 00_expressions_variables
│       │   │   ├── exercises
│       │   │   │   ├── A_executing_code_exercise
│       │   │   │   ├── B_expressions_exercise
│       │   │   │   ├── C_variables_exercise
│       │   │   │   └── D_string_indexing_and_methods_exercise
│       │   │   └── solutions
│       │   ├── 01_conditionals
│       │   │   ├── exercises
│       │   │   │   └── A_conditionals_exercise
│       │   │   └── solutions
│       │   ├── 02_functions
│       │   │   ├── exercises
│       │   │   │   ├── A_functions_exercise
│       │   │   │   ├── B_functions_exercise
│       │   │   │   └── C_functions_exercise
│       │   │   └── solutions
│       │   ├── 03_loops
│       │   │   ├── exercises
│       │   │   │   ├── A_loops_exercise
│       │   │   │   ├── B_loops_exercise
│       │   │   │   └── C_loops_exercise
│       │   │   └── solutions
│       │   ├── 04_arrays
│       │   │   ├── exercises
│       │   │   │   ├── A_arrays_exercise
│       │   │   │   ├── B_arrays_exercise
│       │   │   │   └── C_arrays_exercise
│       │   │   └── solutions
│       │   ├── 05_nesting
│       │   │   ├── exercises
│       │   │   │   ├── A_nested_loops_exercise
│       │   │   │   ├── B_two_dimensional_arrays_exercise
│       │   │   │   └── C_more_problems_exercise
│       │   │   └── solutions
│       │   ├── 06_decomposition_pattern
│       │   │   ├── A_decomposing_problems_exercise
│       │   │   ├── B_decomposing_problems_exercise
│       │   │   └── C_decomposing_problems_exercise
│       │   ├── 07_objects
│       │   │   ├── A_objects_exercise
│       │   │   ├── B_objects_exercise
│       │   │   └── C_objects_exercise
│       │   ├── 08_higher_order_functions
│       │   │   ├── A_native_callback_methods_exercise
│       │   │   └── B_native_callback_methods_exercise
│       │   ├── -ALL-JS-Files
│       │   └── simple-side-bar
│       │       ├── css
│       │       └── vendor
│       │           ├── bootstrap
│       │           │   ├── css
│       │           │   └── js
│       │           └── jquery
│       ├── markdown
│       ├── readme
│       │   └── README_files
│       └── _Resources
│           ├── node_modules
│           │   ├── jquery
│           │   │   ├── dist
│           │   │   ├── external
│           │   │   │   └── sizzle
│           │   │   │       └── dist
│           │   │   └── src
│           │   │       ├── ajax
│           │   │       │   └── var
│           │   │       ├── attributes
│           │   │       ├── core
│           │   │       │   └── var
│           │   │       ├── css
│           │   │       │   └── var
│           │   │       ├── data
│           │   │       │   └── var
│           │   │       ├── deferred
│           │   │       ├── deprecated
│           │   │       ├── effects
│           │   │       ├── event
│           │   │       ├── exports
│           │   │       ├── manipulation
│           │   │       │   └── var
│           │   │       ├── queue
│           │   │       ├── traversing
│           │   │       │   └── var
│           │   │       └── var
│           │   ├── loadashes6
│           │   │   └── lodash
│           │   │       └── fp
│           │   ├── mout
│           │   │   ├── array
│           │   │   ├── collection
│           │   │   ├── date
│           │   │   │   └── i18n
│           │   │   ├── doc
│           │   │   ├── function
│           │   │   ├── lang
│           │   │   ├── math
│           │   │   ├── number
│           │   │   ├── object
│           │   │   ├── queryString
│           │   │   ├── random
│           │   │   ├── src
│           │   │   │   ├── array
│           │   │   │   ├── collection
│           │   │   │   ├── date
│           │   │   │   │   └── i18n
│           │   │   │   ├── function
│           │   │   │   ├── lang
│           │   │   │   ├── math
│           │   │   │   ├── number
│           │   │   │   ├── object
│           │   │   │   ├── queryString
│           │   │   │   ├── random
│           │   │   │   ├── string
│           │   │   │   └── time
│           │   │   ├── string
│           │   │   └── time
│           │   └── web-dev-utils
│           │       ├── bootstrap-4.3.1-dist
│           │       │   ├── css
│           │       │   └── js
│           │       ├── GIT-HTML-PREVIEW-TOOL
│           │       │   └── GIT-HTML-PREVIEW-TOOL-master
│           │       ├── images
│           │       ├── Markdown-Templates
│           │       │   └── Markdown-Templates-master
│           │       │       ├── html-readmes
│           │       │       └── images
│           │       ├── personal-utilities
│           │       │   ├── Auto-table-Of-Contents
│           │       │   ├── copy-2-clip
│           │       │   ├── css
│           │       │   ├── js
│           │       │   └── prism
│           │       └── TexTools
│           │           └── TexTools-master
│           │               ├── backup-stable-build
│           │               │   ├── css
│           │               │   └── js
│           │               ├── css
│           │               ├── js
│           │               └── sandbox
│           └── Precourse-master
│               ├── Lesson01-Git
│               ├── Lesson02-HTML-CSS
│               │   └── homework
│               ├── Lesson03-CSS-Positioning
│               │   └── homework
│               │       └── assets
│               ├── Lesson04-JS-I
│               │   └── homework
│               │       └── tests
│               ├── Lesson05-JS-II
│               │   └── homework
│               │       └── tests
│               ├── Lesson06-JS-III
│               │   └── homework
│               │       └── tests
│               ├── Lesson07-JS-IV
│               │   └── homework
│               │       └── tests
│               ├── Lesson08-JS-V
│               │   └── homework
│               │       └── tests
│               ├── Lesson09-JS-VI
│               │   └── homework
│               │       └── tests
│               ├── Lesson10-JS-VII
│               │   └── homework
│               │       └── tests
│               ├── Lesson11-JS-VIII
│               │   └── homework
│               │       └── tests
│               ├── Lesson12-DOM
│               │   └── homework
│               │       ├── assets
│               │       └── __tests__
│               └── Precourse-master
│                   ├── Lesson01-Git
│                   ├── Lesson02-HTML-CSS
│                   │   └── homework
│                   ├── Lesson03-CSS-Positioning
│                   │   └── homework
│                   │       └── assets
│                   ├── Lesson04-JS-I
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson05-JS-II
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson06-JS-III
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson07-JS-IV
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson08-JS-V
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson09-JS-VI
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson10-JS-VII
│                   │   └── homework
│                   │       └── tests
│                   ├── Lesson11-JS-VIII
│                   │   └── homework
│                   │       └── tests
│                   └── Lesson12-DOM
│                       └── homework
│                           ├── assets
│                           └── __tests__
├── about
│   └── Using Canvas 27a0cf2408124ad19a3802565bd24de6
│       └── How are courses structured in Canvas How do I know 3dfccdd4ff5f462dacde3b358c627e60
├── assets
│   ├── AUDIO-VISUALIZER
│   │   ├── Box2D
│   │   │   ├── assets
│   │   │   └── libs
│   │   ├── Gary Ad
│   │   │   ├── Baked
│   │   │   │   └── sounds
│   │   │   └── Raw
│   │   ├── GaryPewPew
│   │   │   ├── Animate
│   │   │   ├── js
│   │   │   └── sounds
│   │   ├── js
│   │   ├── MusicViz
│   │   │   └── js
│   │   ├── MusicViz2
│   │   │   ├── js
│   │   │   └── sounds
│   │   ├── Performance
│   │   │   ├── Context2DLog
│   │   │   ├── FauxCanvas
│   │   │   ├── framerate
│   │   │   │   ├── assets
│   │   │   │   └── js
│   │   │   ├── Snowmark
│   │   │   │   ├── css
│   │   │   │   └── js
│   │   │   └── Zombie
│   │   │       └── images
│   │   ├── Planetary Gary
│   │   │   ├── Animate
│   │   │   ├── assets
│   │   │   │   ├── images
│   │   │   │   └── sounds
│   │   │   ├── js
│   │   │   └── libs
│   │   └── sounds
│   ├── fonts
│   ├── footer
│   ├── images
│   ├── jquery
│   │   ├── dist
│   │   ├── external
│   │   │   └── sizzle
│   │   │       └── dist
│   │   └── src
│   │       ├── ajax
│   │       │   └── var
│   │       ├── attributes
│   │       ├── core
│   │       │   └── var
│   │       ├── css
│   │       │   └── var
│   │       ├── data
│   │       │   └── var
│   │       ├── deferred
│   │       ├── deprecated
│   │       ├── effects
│   │       ├── event
│   │       ├── exports
│   │       ├── manipulation
│   │       │   └── var
│   │       ├── queue
│   │       ├── traversing
│   │       │   └── var
│   │       └── var
│   ├── loadashes6
│   │   └── lodash
│   │       └── fp
│   ├── might-delete
│   │   └── _MARKDOWN
│   ├── mout
│   │   ├── array
│   │   ├── collection
│   │   ├── date
│   │   │   └── i18n
│   │   ├── doc
│   │   ├── function
│   │   ├── lang
│   │   ├── math
│   │   ├── number
│   │   ├── object
│   │   ├── queryString
│   │   ├── random
│   │   ├── src
│   │   │   ├── array
│   │   │   ├── collection
│   │   │   ├── date
│   │   │   │   └── i18n
│   │   │   ├── function
│   │   │   ├── lang
│   │   │   ├── math
│   │   │   ├── number
│   │   │   ├── object
│   │   │   ├── queryString
│   │   │   ├── random
│   │   │   ├── string
│   │   │   └── time
│   │   ├── string
│   │   └── time
│   ├── past-student-repos
│   │   ├── data_struct_and_algo-master
│   │   │   └── logs
│   │   ├── Data-Structures-and-Algorithms-master
│   │   │   ├── assets
│   │   │   └── src
│   │   │       ├── algorithms
│   │   │       │   ├── strings
│   │   │       │   │   └── knuth-morris-pratt
│   │   │       │   └── tree
│   │   │       │       ├── breadth-first-search
│   │   │       │       └── depth-first-search
│   │   │       ├── analysis-of-algorithms
│   │   │       │   └── asymptotic-notation
│   │   │       └── data-structures
│   │   │           ├── graph
│   │   │           ├── linked_lists
│   │   │           └── tree
│   │   │               ├── binary-search-tree
│   │   │               └── binary-tree
│   │   ├── Data-Structures-master
│   │   │   ├── avl_tree
│   │   │   ├── binary_search_tree
│   │   │   ├── doubly_linked_list
│   │   │   ├── heap
│   │   │   ├── javascript
│   │   │   │   └── tests
│   │   │   ├── lru_cache
│   │   │   ├── python
│   │   │   │   ├── binary_search_tree
│   │   │   │   ├── doubly_linked_list
│   │   │   │   ├── heap
│   │   │   │   ├── linked_list
│   │   │   │   └── queue
│   │   │   └── queue
│   │   ├── Data-Structures-Notes-master
│   │   │   ├── BST_and_Heaps
│   │   │   ├── Doubly_Linked_List
│   │   │   ├── Interview_Problems
│   │   │   └── Linked_Lists
│   │   ├── dev-portfolio-master
│   │   │   ├── public
│   │   │   ├── src
│   │   │   │   ├── components
│   │   │   │   │   └── ~reusables
│   │   │   │   │       ├── atoms
│   │   │   │   │       ├── molecules
│   │   │   │   │       └── variables
│   │   │   │   ├── global-scss
│   │   │   │   └── views
│   │   │   │       ├── 1-Intro
│   │   │   │       ├── 2-About
│   │   │   │       ├── 3-Skills
│   │   │   │       ├── 4-Projects
│   │   │   │       ├── 5-Resume
│   │   │   │       └── 6-Contact
│   │   │   └── tests_setup
│   │   │       └── __mocks__
│   │   ├── DOM-II-master
│   │   ├── _DS-Python
│   │   │   ├── Algorithms-I-Notes-master
│   │   │   │   └── practice_algs
│   │   │   └── Algorithms-master
│   │   │       ├── climbing_stairs
│   │   │       ├── knapsack
│   │   │       │   └── data
│   │   │       ├── making_change
│   │   │       ├── recipe_batches
│   │   │       ├── rock_paper_scissors
│   │   │       └── stock_prices
│   │   ├── feelscollective-master
│   │   │   ├── css
│   │   │   ├── fonts
│   │   │   │   ├── icomoon
│   │   │   │   └── open-iconic
│   │   │   ├── images
│   │   │   ├── js
│   │   │   └── scss
│   │   ├── five-master
│   │   │   └── FiveFeed
│   │   │       ├── lambda
│   │   │       ├── lambda-src
│   │   │       └── src
│   │   │           ├── components
│   │   │           │   └── unused
│   │   │           ├── fonts
│   │   │           ├── icons
│   │   │           ├── images
│   │   │           ├── pages
│   │   │           └── shared
│   │   ├── Graphs-master
│   │   │   ├── javascript
│   │   │   │   ├── guided-demo
│   │   │   │   │   ├── graphs-1
│   │   │   │   │   │   └── src
│   │   │   │   │   └── graphs-2
│   │   │   │   │       └── src
│   │   │   │   ├── objectives
│   │   │   │   │   ├── breadth-first-search
│   │   │   │   │   │   └── img
│   │   │   │   │   ├── connected-components
│   │   │   │   │   │   └── img
│   │   │   │   │   ├── depth-first-search
│   │   │   │   │   │   └── img
│   │   │   │   │   └── graph-intro
│   │   │   │   │       └── img
│   │   │   │   └── projects
│   │   │   │       └── graph
│   │   │   │           ├── public
│   │   │   │           └── src
│   │   │   ├── objectives
│   │   │   │   ├── breadth-first-search
│   │   │   │   │   └── img
│   │   │   │   ├── connected-components
│   │   │   │   │   └── img
│   │   │   │   ├── depth-first-search
│   │   │   │   │   └── img
│   │   │   │   ├── graph-intro
│   │   │   │   │   └── img
│   │   │   │   ├── graph-representations
│   │   │   │   │   └── img
│   │   │   │   └── randomness
│   │   │   ├── projects
│   │   │   │   ├── adventure
│   │   │   │   ├── ancestor
│   │   │   │   ├── graph
│   │   │   │   └── social
│   │   │   └── python
│   │   │       ├── guided-demo
│   │   │       │   ├── graphs-1
│   │   │       │   │   └── src
│   │   │       │   └── graphs-2
│   │   │       │       └── src
│   │   │       └── projects
│   │   │           └── graph
│   │   │               └── src
│   │   ├── Graphs-Notes-master
│   │   │   ├── img
│   │   │   ├── lecture1
│   │   │   ├── lecture2
│   │   │   ├── lecture3
│   │   │   └── lecture4
│   │   ├── Hash-Tables-Notes-master
│   │   ├── homepage-master
│   │   │   ├── css
│   │   │   ├── fonts
│   │   │   ├── images
│   │   │   └── js
│   │   │       ├── backstretch
│   │   │       ├── bootstrap
│   │   │       ├── easing
│   │   │       ├── magnific-popup
│   │   │       ├── owl-carousel
│   │   │       ├── uitotop
│   │   │       └── wow
│   │   ├── HTTP-AJAX-II-master
│   │   │   ├── app
│   │   │   │   ├── public
│   │   │   │   └── src
│   │   │   │       └── components
│   │   │   └── server
│   │   ├── HTTP-AJAX-master
│   │   │   └── friends
│   │   │       ├── public
│   │   │       └── src
│   │   │           ├── actions
│   │   │           ├── components
│   │   │           └── reducers
│   │   ├── _Individual-Projects
│   │   │   ├── Advanced-Form-Management-Guided-master
│   │   │   │   └── app
│   │   │   │       ├── public
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   │               └── Notes
│   │   │   ├── Bootstrap-I-master
│   │   │   │   ├── css
│   │   │   │   ├── _example-resume
│   │   │   │   │   ├── css
│   │   │   │   │   ├── img
│   │   │   │   │   └── js
│   │   │   │   ├── img
│   │   │   │   ├── js
│   │   │   │   └── less
│   │   │   ├── Components-BEM-master
│   │   │   │   ├── components
│   │   │   │   │   ├── Box
│   │   │   │   │   └── Section
│   │   │   │   └── markups
│   │   │   ├── Components-Constructors-master
│   │   │   │   ├── components
│   │   │   │   │   └── Tabs
│   │   │   │   └── markups
│   │   │   ├── Computer-Architecture-Notes-master
│   │   │   │   ├── lectureI
│   │   │   │   ├── lectureII
│   │   │   │   ├── lectureIII
│   │   │   │   └── lectureIV
│   │   │   ├── Course_and_Book_Notes-master
│   │   │   │   ├── Algorithm Design Manual
│   │   │   │   │   ├── Chapter 1
│   │   │   │   │   ├── Chapter 10
│   │   │   │   │   ├── Chapter 2
│   │   │   │   │   ├── Chapter 3
│   │   │   │   │   ├── Chapter 4
│   │   │   │   │   ├── Chapter 5
│   │   │   │   │   ├── Chapter 6
│   │   │   │   │   ├── Chapter 7
│   │   │   │   │   ├── Chapter 8
│   │   │   │   │   └── Chapter 9
│   │   │   │   ├── Computer_Science_Distilled
│   │   │   │   ├── Lambda_Notes
│   │   │   │   │   ├── Authentication
│   │   │   │   │   ├── Computer_Architecture
│   │   │   │   │   ├── Data_Structures_and_Algorithms
│   │   │   │   │   ├── DevOps
│   │   │   │   │   ├── Graphs
│   │   │   │   │   ├── Mongo
│   │   │   │   │   ├── Operating_Systems
│   │   │   │   │   ├── Security
│   │   │   │   │   ├── Testing
│   │   │   │   │   └── Theory_of_Computation
│   │   │   │   ├── Programming_Foundations
│   │   │   │   ├── The_C_Programming_Language
│   │   │   │   │   └── Chapter_1
│   │   │   │   ├── Think Like a Programmer
│   │   │   │   │   ├── Chapter 1
│   │   │   │   │   ├── Chapter 2
│   │   │   │   │   └── Chapter 3
│   │   │   │   └── YoutubeVideos
│   │   │   ├── JavaScript-III-master
│   │   │   │   └── assignments
│   │   │   ├── JavaScript-II-master
│   │   │   │   └── assignments
│   │   │   ├── JavaScript-I-master
│   │   │   │   └── assignments
│   │   │   └── JavaScript-IV-master
│   │   │       └── assignments
│   │   ├── Intro-Python-master
│   │   │   └── src
│   │   │       ├── day-1-toy
│   │   │       ├── days-2-4-adv
│   │   │       ├── mini-challenge
│   │   │       └── python-example
│   │   ├── Intro-to-C-master
│   │   │   ├── first
│   │   │   ├── fizzbuzz
│   │   │   │   └── tests
│   │   │   ├── hangman
│   │   │   ├── malloc
│   │   │   │   └── tests
│   │   │   ├── pointers
│   │   │   │   └── tests
│   │   │   ├── queue
│   │   │   │   └── tests
│   │   │   ├── quicksort
│   │   │   │   └── tests
│   │   │   ├── strings
│   │   │   │   └── tests
│   │   │   ├── structs
│   │   │   │   └── tests
│   │   │   └── utils
│   │   ├── JavaScript-I-Guided-master
│   │   ├── lambda-demo-project-master
│   │   │   ├── api
│   │   │   ├── public
│   │   │   └── src
│   │   ├── lambda-lecture-notes-main
│   │   │   ├── 3-1-advanced-react
│   │   │   │   ├── images
│   │   │   │   └── pdf
│   │   │   ├── 3-2-advanced-state-mangement
│   │   │   │   └── images
│   │   │   └── 3-3-advanced-web-applications
│   │   │       └── images
│   │   ├── Lambda-School-Instruction-Notes-master
│   │   │   ├── 10. Data Persistence in Web APIs
│   │   │   │   └── assets
│   │   │   ├── 11. Authentication
│   │   │   └── 12. Testing
│   │   ├── Lambda-School-master
│   │   │   ├── Week 1
│   │   │   │   ├── Sprint-Challenge User-Interface
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── img
│   │   │   │   ├── User Interface I HTML Markup
│   │   │   │   ├── User-Interface II Innovation
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── great-idea-website
│   │   │   │   │       ├── css
│   │   │   │   │       └── img
│   │   │   │   ├── User Interface III Services Page
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── great-idea
│   │   │   │   │       ├── css
│   │   │   │   │       └── img
│   │   │   │   └── User Interface I  Project 2 - Sweet Eats Bakery
│   │   │   ├── Week 10
│   │   │   │   ├── Car-Sales
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── actions
│   │   │   │   │       ├── components
│   │   │   │   │       │   ├── CSS
│   │   │   │   │       │   └── TodoComponents
│   │   │   │   │       ├── images
│   │   │   │   │       └── reducers
│   │   │   │   ├── React-Redux-App
│   │   │   │   │   ├── public
│   │   │   │   │   │   └── images
│   │   │   │   │   └── src
│   │   │   │   │       ├── actions
│   │   │   │   │       ├── components
│   │   │   │   │       ├── images
│   │   │   │   │       └── reducers
│   │   │   │   ├── react-shopping-cart
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       ├── context
│   │   │   │   │       └── sass
│   │   │   │   ├── reducer-todo
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       │   ├── CSS
│   │   │   │   │       │   └── TodoComponents
│   │   │   │   │       ├── images
│   │   │   │   │       └── reducers
│   │   │   │   └── Sprint-Challenge-State-Management-Smurfs
│   │   │   │       └── smurfs
│   │   │   │           ├── public
│   │   │   │           └── src
│   │   │   │               ├── actions
│   │   │   │               ├── components
│   │   │   │               ├── reducers
│   │   │   │               └── REFERENCES
│   │   │   │                   ├── components
│   │   │   │                   └── images
│   │   │   ├── Week 11
│   │   │   │   ├── Auth-Friends
│   │   │   │   │   └── friends
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           ├── actions
│   │   │   │   │           ├── axios
│   │   │   │   │           ├── components
│   │   │   │   │           └── reducers
│   │   │   │   ├── HTTP-Movies-Assignment
│   │   │   │   │   └── client
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           └── Movies
│   │   │   │   ├── react-bubbles
│   │   │   │   │   └── client
│   │   │   │   │       ├── public
│   │   │   │   │       ├── References
│   │   │   │   │       │   ├── actions
│   │   │   │   │       │   ├── components
│   │   │   │   │       │   └── reducers
│   │   │   │   │       └── src
│   │   │   │   │           ├── actions
│   │   │   │   │           ├── axios
│   │   │   │   │           ├── components
│   │   │   │   │           └── reducers
│   │   │   │   └── webtesting-iii-challenge
│   │   │   │       ├── public
│   │   │   │       └── src
│   │   │   │           ├── controls
│   │   │   │           ├── dashboard
│   │   │   │           └── display
│   │   │   │               └── __snapshots__
│   │   │   ├── Week 12 - FoodieFun
│   │   │   ├── Week 13
│   │   │   │   ├── node-api1-project
│   │   │   │   │   └── data
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   ├── webapi-challenge-sprint
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── routes
│   │   │   │   │       └── middleware
│   │   │   │   ├── webapi-ii-challenge
│   │   │   │   │   ├── comments
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── posts
│   │   │   │   └── webapi-iii-challenge
│   │   │   │       ├── data
│   │   │   │       │   ├── migrations
│   │   │   │       │   └── seeds
│   │   │   │       ├── global-middleware
│   │   │   │       ├── posts
│   │   │   │       │   └── middleware
│   │   │   │       └── users
│   │   │   │           └── middleware
│   │   │   ├── Week 14
│   │   │   │   ├── node-db3-challenge
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── schemes
│   │   │   │   ├── node-db4
│   │   │   │   │   └── data
│   │   │   │   │       ├── helpers
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   ├── node-db-challenge-sprint
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── routers
│   │   │   │   ├── webdb-i-challenge
│   │   │   │   │   └── data
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   └── webdb-ii-challenge
│   │   │   │       └── data
│   │   │   │           ├── migrations
│   │   │   │           └── seeds
│   │   │   ├── Week 15
│   │   │   │   ├── node-server-testing-challenge
│   │   │   │   ├── Sprint-Challenge-Authentication
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   └── jokes
│   │   │   │   ├── webauth-i-challenge
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   ├── restricted
│   │   │   │   │   └── users
│   │   │   │   └── webauth-iii-challenge
│   │   │   │       ├── data
│   │   │   │       │   ├── migrations
│   │   │   │       │   └── seeds
│   │   │   │       ├── restricted
│   │   │   │       └── users
│   │   │   ├── Week 16 - Mentor Me
│   │   │   ├── Week 17 - 25 Future Hope
│   │   │   ├── Week 2
│   │   │   │   ├── Digital Resume
│   │   │   │   │   ├── css
│   │   │   │   │   ├── img
│   │   │   │   │   └── less
│   │   │   │   ├── Fun Bus
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── img
│   │   │   │   │   └── less
│   │   │   │   ├── Portfolio
│   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   └── images
│   │   │   │   │   │   │       └── ie
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   ├── sass
│   │   │   │   │   │   │   └── libs
│   │   │   │   │   │   └── webfonts
│   │   │   │   │   └── images
│   │   │   │   ├── Resposnive-Web-Design
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── img
│   │   │   │   └── Sprint Challenge
│   │   │   │       ├── css
│   │   │   │       ├── design-files
│   │   │   │       ├── img
│   │   │   │       └── less
│   │   │   ├── Week 3
│   │   │   │   ├── JavaScript-I
│   │   │   │   │   └── assignments
│   │   │   │   ├── JavaScript-II
│   │   │   │   │   └── assignments
│   │   │   │   ├── JavaScript-III
│   │   │   │   │   └── assignments
│   │   │   │   ├── JavaScript-IV
│   │   │   │   │   └── assignments
│   │   │   │   └── Sprint-Challenge
│   │   │   │       └── challenges
│   │   │   ├── Week 4 - Local Voter Guide
│   │   │   │   ├── css
│   │   │   │   ├── images
│   │   │   │   └── less
│   │   │   ├── Week 5
│   │   │   │   ├── DOM-I
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── img
│   │   │   │   │   ├── js
│   │   │   │   │   └── stretch-assignment
│   │   │   │   │       └── digital_timer
│   │   │   │   ├── DOM-II
│   │   │   │   │   ├── css
│   │   │   │   │   ├── img
│   │   │   │   │   ├── js
│   │   │   │   │   ├── less
│   │   │   │   │   └── stretch-assignment
│   │   │   │   ├── github-usercard
│   │   │   │   │   ├── assets
│   │   │   │   │   └── GitHubCard
│   │   │   │   ├── Newsfeed-Components
│   │   │   │   │   ├── Article
│   │   │   │   │   ├── assets
│   │   │   │   │   ├── css
│   │   │   │   │   ├── Header
│   │   │   │   │   ├── LESS
│   │   │   │   │   └── Menu
│   │   │   │   └── Sprint-Challenge-Applied-Javascript
│   │   │   │       ├── assets
│   │   │   │       │   └── carousel
│   │   │   │       ├── components
│   │   │   │       │   ├── Cards
│   │   │   │       │   ├── Carousel
│   │   │   │       │   ├── Header
│   │   │   │       │   ├── Tabs
│   │   │   │       │   └── TopBar
│   │   │   │       ├── CSS
│   │   │   │       └── LESS
│   │   │   ├── Week 6
│   │   │   │   ├── lambda-calculator
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       │   ├── ButtonComponents
│   │   │   │   │       │   │   ├── NumberButtons
│   │   │   │   │       │   │   ├── OperatorButtons
│   │   │   │   │       │   │   └── SpecialButtons
│   │   │   │   │       │   └── DisplayComponents
│   │   │   │   │       └── Img
│   │   │   │   ├── nasa-photo-of-the-day
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   ├── react-american-football-scoreboard
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   └── Sprint-Challenge-React-Wars
│   │   │   │       ├── public
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── Week 7
│   │   │   │   ├── React-Router-Basic-Nav
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── React-Router-Movies
│   │   │   │   │   ├── client
│   │   │   │   │   │   ├── public
│   │   │   │   │   │   └── src
│   │   │   │   │   │       └── Movies
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── Movies
│   │   │   │   ├── Sprint-Challenge-Single-Page-Apps
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── team-builder
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   └── User-Onboarding
│   │   │   │       ├── public
│   │   │   │       └── src
│   │   │   ├── Week 8 - Water My Plants
│   │   │   └── Week 9
│   │   │       ├── dark-mode
│   │   │       │   ├── public
│   │   │       │   └── src
│   │   │       │       ├── components
│   │   │       │       └── hooks
│   │   │       ├── Github-User-Card
│   │   │       │   └── src
│   │   │       │       ├── components
│   │   │       │       ├── images
│   │   │       │       └── styles
│   │   │       ├── React-Todo
│   │   │       │   └── src
│   │   │       │       ├── components
│   │   │       │       │   ├── CSS
│   │   │       │       │   └── TodoComponents
│   │   │       │       ├── images
│   │   │       │       └── styles
│   │   │       └── Sprint-Challenge-Advanced-React
│   │   │           └── client
│   │   │               ├── public
│   │   │               └── src
│   │   │                   └── components
│   │   │                       └── hooks
│   │   ├── LambdaSchool-master
│   │   │   ├── 31d1
│   │   │   ├── aa-score
│   │   │   │   ├── public
│   │   │   │   └── src
│   │   │   ├── Administration
│   │   │   │   ├── certs
│   │   │   │   ├── marketing
│   │   │   │   ├── studying
│   │   │   │   └── zoom
│   │   │   ├── bw1-tl
│   │   │   │   ├── admin
│   │   │   │   ├── api
│   │   │   │   ├── auth
│   │   │   │   ├── database
│   │   │   │   │   ├── migrations
│   │   │   │   │   └── seeds
│   │   │   │   ├── middleware
│   │   │   │   ├── todos
│   │   │   │   └── volunteer
│   │   │   ├── css
│   │   │   ├── JavaScript30
│   │   │   │   ├── 01
│   │   │   │   │   └── sounds
│   │   │   │   ├── 02
│   │   │   │   ├── 03
│   │   │   │   ├── 04
│   │   │   │   ├── 05
│   │   │   │   ├── 06
│   │   │   │   ├── 07
│   │   │   │   ├── 08
│   │   │   │   ├── 09
│   │   │   │   ├── 10
│   │   │   │   ├── 11
│   │   │   │   ├── 12
│   │   │   │   ├── 13
│   │   │   │   ├── 14
│   │   │   │   ├── 15
│   │   │   │   ├── 16
│   │   │   │   ├── 17
│   │   │   │   ├── 18
│   │   │   │   ├── 19
│   │   │   │   ├── 20
│   │   │   │   ├── 21
│   │   │   │   ├── 22
│   │   │   │   ├── 23
│   │   │   │   ├── 24
│   │   │   │   ├── 25
│   │   │   │   ├── 26
│   │   │   │   ├── 27
│   │   │   │   ├── 28
│   │   │   │   ├── 29
│   │   │   │   └── 30
│   │   │   ├── labs
│   │   │   │   ├── last journal entry
│   │   │   │   └── video-to-next-group
│   │   │   ├── m1
│   │   │   │   ├── 11b1
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── great-idea
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   └── img
│   │   │   │   │   └── great-idea-website
│   │   │   │   │       ├── css
│   │   │   │   │       └── img
│   │   │   │   ├── 11c1
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── great-idea-website
│   │   │   │   │       ├── css
│   │   │   │   │       └── img
│   │   │   │   ├── 11d1
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── great-idea
│   │   │   │   │       ├── css
│   │   │   │   │       └── img
│   │   │   │   ├── 12a1
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   └── img
│   │   │   │   ├── 12b1
│   │   │   │   │   ├── dimension
│   │   │   │   │   │   ├── assets
│   │   │   │   │   │   │   └── sass
│   │   │   │   │   │   └── html5up-dimension
│   │   │   │   │   │       └── assets
│   │   │   │   │   │           └── sass
│   │   │   │   │   └── solidstate
│   │   │   │   │       └── assets
│   │   │   │   │           └── sass
│   │   │   │   ├── 12c1
│   │   │   │   │   ├── css
│   │   │   │   │   └── less
│   │   │   │   ├── 12d1
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── img
│   │   │   │   │   └── less
│   │   │   │   ├── 13a1
│   │   │   │   │   └── assignments
│   │   │   │   ├── 13b1
│   │   │   │   │   └── assignments
│   │   │   │   ├── 13c1
│   │   │   │   │   └── assignments
│   │   │   │   ├── 13d1
│   │   │   │   │   ├── new
│   │   │   │   │   │   └── test
│   │   │   │   │   └── old
│   │   │   │   │       └── assignments
│   │   │   │   └── 13e1
│   │   │   │       └── challenges
│   │   │   ├── m2
│   │   │   │   ├── 21a1
│   │   │   │   │   ├── css
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── img
│   │   │   │   │   ├── js
│   │   │   │   │   └── stretch-assignment
│   │   │   │   │       └── digital_timer
│   │   │   │   ├── 21b1
│   │   │   │   ├── 21c1
│   │   │   │   │   ├── Article
│   │   │   │   │   ├── assets
│   │   │   │   │   ├── css
│   │   │   │   │   ├── Header
│   │   │   │   │   ├── LESS
│   │   │   │   │   └── Menu
│   │   │   │   ├── 21d1
│   │   │   │   │   ├── assets
│   │   │   │   │   └── GitHubCard
│   │   │   │   ├── 21e1
│   │   │   │   │   ├── assets
│   │   │   │   │   │   └── carousel
│   │   │   │   │   ├── components
│   │   │   │   │   │   ├── Cards
│   │   │   │   │   │   ├── Carousel
│   │   │   │   │   │   ├── Header
│   │   │   │   │   │   ├── Tabs
│   │   │   │   │   │   └── TopBar
│   │   │   │   │   ├── CSS
│   │   │   │   │   └── LESS
│   │   │   │   ├── 22a1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   ├── 22b1
│   │   │   │   │   ├── design-files
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       │   ├── ButtonComponents
│   │   │   │   │       │   │   ├── NumberButtons
│   │   │   │   │       │   │   ├── OperatorButtons
│   │   │   │   │       │   │   └── SpecialButtons
│   │   │   │   │       │   └── DisplayComponents
│   │   │   │   │       └── Img
│   │   │   │   ├── 22c1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   ├── 22e1
│   │   │   │   │   └── starwars
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   ├── 23a1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── 23a2
│   │   │   │   │   └── images
│   │   │   │   ├── 23b1
│   │   │   │   │   └── client
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           └── Movies
│   │   │   │   ├── 23c1
│   │   │   │   │   ├── public
│   │   │   │   │   ├── src
│   │   │   │   │   │   └── CustomHooks
│   │   │   │   │   └── team-builder
│   │   │   │   ├── 23d1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── CustomHooks
│   │   │   │   ├── 23d2
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   ├── 23e1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   └── 24a1
│   │   │   │       ├── public
│   │   │   │       │   └── img
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   │               └── old pages
│   │   │   ├── m3
│   │   │   │   ├── 31a1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   │           └── TodoComponents
│   │   │   │   ├── 31a2
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   ├── 31b1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── 31c1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       └── hooks
│   │   │   │   ├── 31d1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       └── hooks
│   │   │   │   ├── 31e1
│   │   │   │   │   └── client
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           ├── components
│   │   │   │   │           └── hooks
│   │   │   │   ├── 32a1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       ├── contexts
│   │   │   │   │       └── sass
│   │   │   │   ├── 32b1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── components
│   │   │   │   │       └── reducers
│   │   │   │   ├── 32c1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── actions
│   │   │   │   │       ├── components
│   │   │   │   │       └── reducers
│   │   │   │   ├── 32d1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── actions
│   │   │   │   │       ├── components
│   │   │   │   │       ├── fonts
│   │   │   │   │       ├── img
│   │   │   │   │       └── reducers
│   │   │   │   ├── 32e1
│   │   │   │   │   └── smurfs
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           ├── actions
│   │   │   │   │           ├── components
│   │   │   │   │           └── reducers
│   │   │   │   ├── 33a1
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       ├── controls
│   │   │   │   │       ├── dashboard
│   │   │   │   │       └── display
│   │   │   │   ├── 33b1
│   │   │   │   │   └── friends
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           ├── actions
│   │   │   │   │           ├── components
│   │   │   │   │           ├── reducers
│   │   │   │   │           └── utils
│   │   │   │   ├── 33d1
│   │   │   │   │   └── client
│   │   │   │   │       ├── public
│   │   │   │   │       └── src
│   │   │   │   │           └── Movies
│   │   │   │   └── 33e1
│   │   │   │       └── client
│   │   │   │           ├── public
│   │   │   │           └── src
│   │   │   │               ├── actions
│   │   │   │               ├── components
│   │   │   │               ├── reducers
│   │   │   │               └── utils
│   │   │   ├── m4
│   │   │   │   ├── 41a1
│   │   │   │   │   └── data
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   ├── 41a2
│   │   │   │   │   └── data
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   ├── 41b1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── hubs
│   │   │   │   ├── 41b2
│   │   │   │   │   └── data
│   │   │   │   │       ├── migrations
│   │   │   │   │       └── seeds
│   │   │   │   ├── 41c1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   ├── hubs
│   │   │   │   │   └── messages
│   │   │   │   ├── 41c2
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   ├── posts
│   │   │   │   │   └── users
│   │   │   │   ├── 41d1
│   │   │   │   │   ├── api
│   │   │   │   │   └── data
│   │   │   │   │       └── migrations
│   │   │   │   ├── 41e1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── routers
│   │   │   │   ├── 41e1app
│   │   │   │   │   ├── public
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── 42a1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── posts
│   │   │   │   ├── 42a2
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── routers
│   │   │   │   ├── 42b1
│   │   │   │   │   ├── api
│   │   │   │   │   ├── data
│   │   │   │   │   └── fruits
│   │   │   │   ├── 42b2
│   │   │   │   │   ├── api
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── routers
│   │   │   │   ├── 42c1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── users
│   │   │   │   ├── 42c2
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── schemes
│   │   │   │   ├── 42d1
│   │   │   │   │   └── data
│   │   │   │   │       └── seeds
│   │   │   │   ├── 42d2
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── recipes
│   │   │   │   ├── 42e1
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── projects
│   │   │   │   ├── 43a1
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   ├── __MACOSX
│   │   │   │   │   │   └── authintro
│   │   │   │   │   └── users
│   │   │   │   ├── 43a2
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   └── users
│   │   │   │   ├── 43b1
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   └── users
│   │   │   │   ├── 43b2
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   └── users
│   │   │   │   ├── 43c1
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   └── users
│   │   │   │   ├── 43c2
│   │   │   │   │   ├── api
│   │   │   │   │   ├── auth
│   │   │   │   │   ├── config
│   │   │   │   │   ├── database
│   │   │   │   │   │   └── migrations
│   │   │   │   │   ├── __MACOSX
│   │   │   │   │   │   └── sessions
│   │   │   │   │   └── users
│   │   │   │   ├── 43d1
│   │   │   │   │   ├── api
│   │   │   │   │   ├── data
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── hobbits
│   │   │   │   ├── 43d2
│   │   │   │   │   ├── api
│   │   │   │   │   ├── cohorts
│   │   │   │   │   ├── database
│   │   │   │   │   │   ├── migrations
│   │   │   │   │   │   └── seeds
│   │   │   │   │   └── students
│   │   │   │   └── 43e1
│   │   │   │       ├── 43e1
│   │   │   │       │   ├── public
│   │   │   │       │   └── src
│   │   │   │       │       └── components
│   │   │   │       ├── api
│   │   │   │       ├── auth
│   │   │   │       ├── database
│   │   │   │       │   └── migrations
│   │   │   │       └── jokes
│   │   │   ├── m5
│   │   │   │   ├── 51a1
│   │   │   │   │   └── src
│   │   │   │   │       └── employeeApp
│   │   │   │   ├── 51b1
│   │   │   │   │   └── src
│   │   │   │   │       └── collections
│   │   │   │   │           └── src
│   │   │   │   │               └── collections
│   │   │   │   ├── 51c1
│   │   │   │   │   └── transportation
│   │   │   │   │       └── src
│   │   │   │   │           └── transport
│   │   │   │   ├── 51d1
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── src
│   │   │   │   │   │       ├── main
│   │   │   │   │   │       │   ├── java
│   │   │   │   │   │       │   │   └── com
│   │   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │   │       │   │           └── webemployees3
│   │   │   │   │   │       │   └── resources
│   │   │   │   │   │       └── test
│   │   │   │   │   │           └── java
│   │   │   │   │   │               └── com
│   │   │   │   │   │                   └── lambdaschool
│   │   │   │   │   │                       └── webemployees3
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── j51d1
│   │   │   │   │       │   └── resources
│   │   │   │   │       │       └── static
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       └── webemployees3
│   │   │   │   ├── 51d2
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── j51d2
│   │   │   │   │       │   └── resources
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       └── j51d2
│   │   │   │   ├── 51e1
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── j51e1
│   │   │   │   │       │   └── resources
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       └── j51e1
│   │   │   │   ├── 52b1
│   │   │   │   │   └── assets
│   │   │   │   ├── 52c1
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── j52c1
│   │   │   │   │       │   │               ├── controllers
│   │   │   │   │       │   │               ├── models
│   │   │   │   │       │   │               ├── repos
│   │   │   │   │       │   │               └── services
│   │   │   │   │       │   └── resources
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       └── j52c1
│   │   │   │   ├── 52c2
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── j52c2
│   │   │   │   │       │   │               ├── controllers
│   │   │   │   │       │   │               ├── models
│   │   │   │   │       │   │               ├── repos
│   │   │   │   │       │   │               └── services
│   │   │   │   │       │   └── resources
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       └── j52c2
│   │   │   │   ├── 52d1
│   │   │   │   │   └── oauth
│   │   │   │   │       ├── oauth2
│   │   │   │   │       │   └── src
│   │   │   │   │       │       ├── main
│   │   │   │   │       │       │   ├── java
│   │   │   │   │       │       │   │   └── com
│   │   │   │   │       │       │   │       └── lambdaschool
│   │   │   │   │       │       │   │           └── usermodel
│   │   │   │   │       │       │   │               ├── config
│   │   │   │   │       │       │   │               ├── controllers
│   │   │   │   │       │       │   │               ├── exceptions
│   │   │   │   │       │       │   │               ├── handlers
│   │   │   │   │       │       │   │               ├── logging
│   │   │   │   │       │       │   │               ├── models
│   │   │   │   │       │       │   │               ├── repository
│   │   │   │   │       │       │   │               ├── services
│   │   │   │   │       │       │   │               └── view
│   │   │   │   │       │       │   └── resources
│   │   │   │   │       │       │       └── info
│   │   │   │   │       │       └── test
│   │   │   │   │       │           ├── java
│   │   │   │   │       │           │   └── com
│   │   │   │   │       │           │       └── lambdaschool
│   │   │   │   │       │           │           └── usermodel
│   │   │   │   │       │           │               ├── controllers
│   │   │   │   │       │           │               └── services
│   │   │   │   │       │           └── resources
│   │   │   │   │       └── oauth2 - initial
│   │   │   │   │           └── src
│   │   │   │   │               ├── main
│   │   │   │   │               │   ├── java
│   │   │   │   │               │   │   └── com
│   │   │   │   │               │   │       └── lambdaschool
│   │   │   │   │               │   │           ├── authenticatedusers
│   │   │   │   │               │   │           │   ├── config
│   │   │   │   │               │   │           │   ├── controller
│   │   │   │   │               │   │           │   ├── model
│   │   │   │   │               │   │           │   ├── repository
│   │   │   │   │               │   │           │   ├── service
│   │   │   │   │               │   │           │   └── view
│   │   │   │   │               │   │           └── usermodel
│   │   │   │   │               │   │               ├── config
│   │   │   │   │               │   │               ├── controllers
│   │   │   │   │               │   │               ├── exceptions
│   │   │   │   │               │   │               ├── handlers
│   │   │   │   │               │   │               ├── logging
│   │   │   │   │               │   │               ├── models
│   │   │   │   │               │   │               ├── repository
│   │   │   │   │               │   │               ├── services
│   │   │   │   │               │   │               └── view
│   │   │   │   │               │   └── resources
│   │   │   │   │               │       └── info
│   │   │   │   │               └── test
│   │   │   │   │                   └── java
│   │   │   │   │                       └── com
│   │   │   │   │                           └── lambdaschool
│   │   │   │   │                               ├── authenticatedusers
│   │   │   │   │                               └── usermodel
│   │   │   │   ├── 53a1
│   │   │   │   │   ├── oauth2ExceptionLogging-final
│   │   │   │   │   │   └── src
│   │   │   │   │   │       └── main
│   │   │   │   │   │           ├── java
│   │   │   │   │   │           │   └── com
│   │   │   │   │   │           │       └── lambdaschool
│   │   │   │   │   │           │           └── oauth2
│   │   │   │   │   │           │               ├── config
│   │   │   │   │   │           │               ├── controllers
│   │   │   │   │   │           │               ├── exceptions
│   │   │   │   │   │           │               ├── handlers
│   │   │   │   │   │           │               ├── logging
│   │   │   │   │   │           │               ├── models
│   │   │   │   │   │           │               ├── repository
│   │   │   │   │   │           │               ├── services
│   │   │   │   │   │           │               └── view
│   │   │   │   │   │           └── resources
│   │   │   │   │   └── src
│   │   │   │   │       ├── main
│   │   │   │   │       │   ├── java
│   │   │   │   │       │   │   └── com
│   │   │   │   │       │   │       └── lambdaschool
│   │   │   │   │       │   │           └── authenticatedusers
│   │   │   │   │       │   │               ├── config
│   │   │   │   │       │   │               ├── controller
│   │   │   │   │       │   │               ├── exceptions
│   │   │   │   │       │   │               ├── handlers
│   │   │   │   │       │   │               ├── model
│   │   │   │   │       │   │               ├── repository
│   │   │   │   │       │   │               ├── service
│   │   │   │   │       │   │               └── view
│   │   │   │   │       │   └── resources
│   │   │   │   │       │       └── info
│   │   │   │   │       └── test
│   │   │   │   │           └── java
│   │   │   │   │               └── com
│   │   │   │   │                   └── lambdaschool
│   │   │   │   │                       ├── authenticatedusers
│   │   │   │   │                       └── usermodel
│   │   │   │   ├── 53b1
│   │   │   │   │   ├── clientrestaurants
│   │   │   │   │   │   └── src
│   │   │   │   │   │       ├── main
│   │   │   │   │   │       │   ├── java
│   │   │   │   │   │       │   │   └── com
│   │   │   │   │   │       │   │       └── lambda
│   │   │   │   │   │       │   │           └── clientrestaurants
│   │   │   │   │   │       │   │               ├── client
│   │   │   │   │   │       │   │               └── model
│   │   │   │   │   │       │   └── resources
│   │   │   │   │   │       └── test
│   │   │   │   │   │           └── java
│   │   │   │   │   │               └── com
│   │   │   │   │   │                   └── lambda
│   │   │   │   │   │                       └── clientrestaurants
│   │   │   │   │   ├── restaurants-initial
│   │   │   │   │   │   └── src
│   │   │   │   │   │       └── main
│   │   │   │   │   │           ├── java
│   │   │   │   │   │           │   └── com
│   │   │   │   │   │           │       └── lambdaschool
│   │   │   │   │   │           │           └── restaurants
│   │   │   │   │   │           │               ├── config
│   │   │   │   │   │           │               ├── controller
│   │   │   │   │   │           │               ├── model
│   │   │   │   │   │           │               ├── repos
│   │   │   │   │   │           │               └── service
│   │   │   │   │   │           └── resources
│   │   │   │   │   │               └── info
│   │   │   │   │   └── restaurants-pagesswagger
│   │   │   │   │       └── src
│   │   │   │   │           └── main
│   │   │   │   │               ├── java
│   │   │   │   │               │   └── com
│   │   │   │   │               │       └── lambdaschool
│   │   │   │   │               │           └── restaurants
│   │   │   │   │               │               ├── config
│   │   │   │   │               │               ├── controller
│   │   │   │   │               │               ├── exception
│   │   │   │   │               │               ├── model
│   │   │   │   │               │               ├── repos
│   │   │   │   │               │               └── service
│   │   │   │   │               └── resources
│   │   │   │   │                   ├── info
│   │   │   │   │                   └── templates
│   │   │   │   ├── 53c1
│   │   │   │   │   ├── restaurants-initial
│   │   │   │   │   │   └── src
│   │   │   │   │   │       └── main
│   │   │   │   │   │           ├── java
│   │   │   │   │   │           │   └── com
│   │   │   │   │   │           │       └── lambdaschool
│   │   │   │   │   │           │           └── restaurants
│   │   │   │   │   │           │               ├── config
│   │   │   │   │   │           │               ├── controller
│   │   │   │   │   │           │               ├── model
│   │   │   │   │   │           │               ├── repos
│   │   │   │   │   │           │               └── service
│   │   │   │   │   │           └── resources
│   │   │   │   │   │               └── info
│   │   │   │   │   └── restaurants-testing
│   │   │   │   │       └── src
│   │   │   │   │           ├── main
│   │   │   │   │           │   ├── java
│   │   │   │   │           │   │   └── com
│   │   │   │   │           │   │       └── lambdaschool
│   │   │   │   │           │   │           └── restaurants
│   │   │   │   │           │   │               ├── config
│   │   │   │   │           │   │               ├── controller
│   │   │   │   │           │   │               ├── model
│   │   │   │   │           │   │               ├── repos
│   │   │   │   │           │   │               └── service
│   │   │   │   │           │   └── resources
│   │   │   │   │           │       └── info
│   │   │   │   │           └── test
│   │   │   │   │               ├── java
│   │   │   │   │               │   └── com
│   │   │   │   │               │       └── lambdaschool
│   │   │   │   │               │           └── restaurants
│   │   │   │   │               │               ├── controller
│   │   │   │   │               │               └── service
│   │   │   │   │               └── resources
│   │   │   │   └── 53d1
│   │   │   │       ├── JS-FrontEnd-by-jheinz1999
│   │   │   │       │   ├── public
│   │   │   │       │   └── src
│   │   │   │       │       └── components
│   │   │   │       └── StartHere
│   │   │   │           └── src
│   │   │   │               ├── main
│   │   │   │               │   ├── java
│   │   │   │               │   │   └── com
│   │   │   │               │   │       └── lambdaschool
│   │   │   │               │   │           └── starthere
│   │   │   │               │   │               ├── config
│   │   │   │               │   │               ├── controllers
│   │   │   │               │   │               ├── exceptions
│   │   │   │               │   │               ├── handlers
│   │   │   │               │   │               ├── logging
│   │   │   │               │   │               ├── models
│   │   │   │               │   │               ├── repository
│   │   │   │               │   │               ├── services
│   │   │   │               │   │               └── view
│   │   │   │               │   └── resources
│   │   │   │               │       └── info
│   │   │   │               └── test
│   │   │   │                   ├── java
│   │   │   │                   │   └── com
│   │   │   │                   │       └── lambdaschool
│   │   │   │                   │           └── starthere
│   │   │   │                   │               ├── controllers
│   │   │   │                   │               └── services
│   │   │   │                   └── resources
│   │   │   ├── m6
│   │   │   │   ├── 61a1
│   │   │   │   │   └── src
│   │   │   │   ├── 61b1
│   │   │   │   │   ├── examples
│   │   │   │   │   └── src
│   │   │   │   ├── 61c1
│   │   │   │   │   └── src
│   │   │   │   │       ├── cityreader
│   │   │   │   │       ├── comp
│   │   │   │   │       └── oop
│   │   │   │   ├── 62a1
│   │   │   │   │   ├── avl_tree
│   │   │   │   │   ├── benchmarks
│   │   │   │   │   ├── binary_search_tree
│   │   │   │   │   ├── doubly_linked_list
│   │   │   │   │   ├── heap
│   │   │   │   │   ├── lru_cache
│   │   │   │   │   ├── queue
│   │   │   │   │   ├── queue_and_stack
│   │   │   │   │   ├── singly_linked_list
│   │   │   │   │   └── stack
│   │   │   │   ├── 62b1
│   │   │   │   │   ├── names
│   │   │   │   │   ├── reverse
│   │   │   │   │   └── ring_buffer
│   │   │   │   ├── 63a1
│   │   │   │   │   └── src
│   │   │   │   │       ├── iterative_sorting
│   │   │   │   │       └── searching
│   │   │   │   ├── 63b1
│   │   │   │   │   └── src
│   │   │   │   │       └── recursive_sorting
│   │   │   │   ├── 63c1
│   │   │   │   │   ├── eating_cookies
│   │   │   │   │   ├── knapsack
│   │   │   │   │   │   └── data
│   │   │   │   │   ├── making_change
│   │   │   │   │   ├── moving_zeroes
│   │   │   │   │   ├── product_of_all_other_numbers
│   │   │   │   │   ├── recipe_batches
│   │   │   │   │   ├── rock_paper_scissors
│   │   │   │   │   ├── single_number
│   │   │   │   │   ├── sliding_window_max
│   │   │   │   │   │   └── data
│   │   │   │   │   └── stock_prices
│   │   │   │   └── 63d1
│   │   │   │       ├── recursive_count_th
│   │   │   │       ├── robot_sort
│   │   │   │       └── Short-Answer
│   │   │   ├── m7
│   │   │   │   ├── 71a1
│   │   │   │   │   ├── applications
│   │   │   │   │   │   ├── crack_caesar
│   │   │   │   │   │   ├── expensive_seq
│   │   │   │   │   │   ├── histo
│   │   │   │   │   │   ├── lookup_table
│   │   │   │   │   │   ├── markov
│   │   │   │   │   │   ├── no_dups
│   │   │   │   │   │   ├── sumdiff
│   │   │   │   │   │   └── word_count
│   │   │   │   │   └── hashtable
│   │   │   │   ├── 71e1
│   │   │   │   │   └── hashtables
│   │   │   │   │       ├── ex1
│   │   │   │   │       ├── ex2
│   │   │   │   │       ├── ex3
│   │   │   │   │       ├── ex4
│   │   │   │   │       └── ex5
│   │   │   │   ├── 72a1
│   │   │   │   │   ├── objectives
│   │   │   │   │   │   ├── breadth-first-search
│   │   │   │   │   │   │   └── img
│   │   │   │   │   │   ├── connected-components
│   │   │   │   │   │   │   └── img
│   │   │   │   │   │   ├── depth-first-search
│   │   │   │   │   │   │   └── img
│   │   │   │   │   │   ├── graph-intro
│   │   │   │   │   │   │   └── img
│   │   │   │   │   │   ├── graph-representations
│   │   │   │   │   │   │   └── img
│   │   │   │   │   │   └── randomness
│   │   │   │   │   └── projects
│   │   │   │   │       ├── adventure
│   │   │   │   │       │   └── maps
│   │   │   │   │       ├── ancestor
│   │   │   │   │       ├── graph
│   │   │   │   │       └── social
│   │   │   │   ├── 73a1
│   │   │   │   │   ├── asm
│   │   │   │   │   └── ls8
│   │   │   │   │       └── examples
│   │   │   │   └── 74a1
│   │   │   ├── src
│   │   │   │   ├── iterative_sorting
│   │   │   │   └── searching
│   │   │   ├── summary
│   │   │   │   ├── certifications
│   │   │   │   │   ├── IBM zOS
│   │   │   │   │   └── Oracle Autonomous DB
│   │   │   │   │       ├── 1 Overview
│   │   │   │   │       ├── 2 Provisioning and Connectivity
│   │   │   │   │       ├── 3 Migration and Data Loding into Autonomous DB
│   │   │   │   │       ├── 4 Migrating and Data Loading
│   │   │   │   │       ├── 5 Monitoring Autonomous DB
│   │   │   │   │       └── 6 Tools Reporting Analytics
│   │   │   │   ├── cobol
│   │   │   │   │   ├── COBOL example programs_files
│   │   │   │   │   ├── COBOL Programming Course_files
│   │   │   │   │   └── COBOL Programming Exercises_files
│   │   │   │   ├── complete
│   │   │   │   │   ├── Decks
│   │   │   │   │   └── notes-books
│   │   │   │   ├── general
│   │   │   │   ├── interviewing
│   │   │   │   ├── Node Express Knex
│   │   │   │   │   └── Create Back End Guide
│   │   │   │   ├── testing
│   │   │   │   └── typescript
│   │   │   └── tlbw
│   │   │       └── client
│   │   │           ├── public
│   │   │           └── src
│   │   │               ├── components
│   │   │               │   ├── context
│   │   │               │   │   └── strainsSelectContext
│   │   │               │   └── strains
│   │   │               └── imgs
│   │   ├── _misc
│   │   │   └── Blockchain-Notes-master
│   │   │       └── communication_gp
│   │   ├── Mongo-I-master
│   │   │   └── src
│   │   │       ├── controllers
│   │   │       ├── models
│   │   │       └── routes
│   │   ├── _MOST-USEFUL
│   │   │   └── Boilerplate-master
│   │   │       ├── Apollo
│   │   │       │   ├── client
│   │   │       │   ├── imports
│   │   │       │   │   ├── api
│   │   │       │   │   └── ui
│   │   │       │   └── server
│   │   │       ├── Express-MongoDB
│   │   │       │   └── src
│   │   │       │       ├── config
│   │   │       │       ├── controllers
│   │   │       │       └── __tests__
│   │   │       ├── React-Redux
│   │   │       │   └── src
│   │   │       │       ├── actions
│   │   │       │       ├── assets
│   │   │       │       ├── containers
│   │   │       │       ├── reducers
│   │   │       │       └── tests
│   │   │       │           ├── __mock__
│   │   │       │           └── __tests__
│   │   │       │               └── __snapshots__
│   │   │       └── TypeGraphQL
│   │   ├── Node-Blog-master
│   │   │   ├── api
│   │   │   │   ├── post
│   │   │   │   ├── tag
│   │   │   │   └── user
│   │   │   ├── config
│   │   │   ├── data
│   │   │   │   ├── helpers
│   │   │   │   ├── migrations
│   │   │   │   └── seeds
│   │   │   └── routers
│   │   ├── portfolio-main
│   │   │   ├── components
│   │   │   ├── pages
│   │   │   ├── public
│   │   │   │   └── static
│   │   │   │       ├── favicons
│   │   │   │       └── images
│   │   │   ├── scripts
│   │   │   ├── styles
│   │   │   └── utils
│   │   ├── Precourse-master
│   │   │   ├── Lesson10-JS-VII
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson11-JS-VIII
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson12-DOM
│   │   │   │   └── homework
│   │   │   │       ├── assets
│   │   │   │       └── __tests__
│   │   │   ├── Lesson1-Git
│   │   │   ├── Lesson2-HTML-CSS
│   │   │   │   └── homework
│   │   │   ├── Lesson3-CSS-Positioning
│   │   │   │   └── homework
│   │   │   │       └── assets
│   │   │   ├── Lesson4-JS-I
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson5-JS-II
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson6-JS-III
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson7-JS-IV
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   ├── Lesson8-JS-V
│   │   │   │   └── homework
│   │   │   │       └── tests
│   │   │   └── Lesson9-JS-VI
│   │   │       └── homework
│   │   │           └── tests
│   │   ├── Python-II-Notes-master
│   │   │   └── src
│   │   ├── Python-master
│   │   │   ├── arithmetic_analysis
│   │   │   │   └── image_data
│   │   │   ├── backtracking
│   │   │   ├── bit_manipulation
│   │   │   ├── blockchain
│   │   │   ├── boolean_algebra
│   │   │   ├── cellular_automata
│   │   │   ├── ciphers
│   │   │   ├── compression
│   │   │   │   └── image_data
│   │   │   ├── computer_vision
│   │   │   ├── conversions
│   │   │   ├── data_structures
│   │   │   │   ├── binary_tree
│   │   │   │   ├── disjoint_set
│   │   │   │   ├── hashing
│   │   │   │   │   └── number_theory
│   │   │   │   ├── heap
│   │   │   │   ├── linked_list
│   │   │   │   ├── queue
│   │   │   │   ├── stacks
│   │   │   │   └── trie
│   │   │   ├── digital_image_processing
│   │   │   │   ├── dithering
│   │   │   │   ├── edge_detection
│   │   │   │   ├── filters
│   │   │   │   ├── histogram_equalization
│   │   │   │   │   ├── image_data
│   │   │   │   │   └── output_data
│   │   │   │   ├── image_data
│   │   │   │   ├── resize
│   │   │   │   └── rotation
│   │   │   ├── divide_and_conquer
│   │   │   ├── dynamic_programming
│   │   │   ├── electronics
│   │   │   ├── file_transfer
│   │   │   │   └── tests
│   │   │   ├── fuzzy_logic
│   │   │   ├── genetic_algorithm
│   │   │   ├── geodesy
│   │   │   ├── graphics
│   │   │   ├── graphs
│   │   │   │   └── tests
│   │   │   ├── hashes
│   │   │   ├── knapsack
│   │   │   │   └── tests
│   │   │   ├── linear_algebra
│   │   │   │   └── src
│   │   │   ├── machine_learning
│   │   │   │   ├── forecasting
│   │   │   │   └── lstm
│   │   │   ├── maths
│   │   │   │   ├── images
│   │   │   │   └── series
│   │   │   ├── matrix
│   │   │   │   └── tests
│   │   │   ├── networking_flow
│   │   │   ├── neural_network
│   │   │   ├── other
│   │   │   ├── project_euler
│   │   │   │   ├── problem_001
│   │   │   │   ├── problem_002
│   │   │   │   ├── problem_003
│   │   │   │   ├── problem_004
│   │   │   │   ├── problem_005
│   │   │   │   ├── problem_006
│   │   │   │   ├── problem_007
│   │   │   │   ├── problem_008
│   │   │   │   ├── problem_009
│   │   │   │   ├── problem_010
│   │   │   │   ├── problem_011
│   │   │   │   ├── problem_012
│   │   │   │   ├── problem_013
│   │   │   │   ├── problem_014
│   │   │   │   ├── problem_015
│   │   │   │   ├── problem_016
│   │   │   │   ├── problem_017
│   │   │   │   ├── problem_018
│   │   │   │   ├── problem_019
│   │   │   │   ├── problem_020
│   │   │   │   ├── problem_021
│   │   │   │   ├── problem_022
│   │   │   │   ├── problem_023
│   │   │   │   ├── problem_024
│   │   │   │   ├── problem_025
│   │   │   │   ├── problem_026
│   │   │   │   ├── problem_027
│   │   │   │   ├── problem_028
│   │   │   │   ├── problem_029
│   │   │   │   ├── problem_030
│   │   │   │   ├── problem_031
│   │   │   │   ├── problem_032
│   │   │   │   ├── problem_033
│   │   │   │   ├── problem_034
│   │   │   │   ├── problem_035
│   │   │   │   ├── problem_036
│   │   │   │   ├── problem_037
│   │   │   │   ├── problem_038
│   │   │   │   ├── problem_039
│   │   │   │   ├── problem_040
│   │   │   │   ├── problem_041
│   │   │   │   ├── problem_042
│   │   │   │   ├── problem_043
│   │   │   │   ├── problem_044
│   │   │   │   ├── problem_045
│   │   │   │   ├── problem_046
│   │   │   │   ├── problem_047
│   │   │   │   ├── problem_048
│   │   │   │   ├── problem_049
│   │   │   │   ├── problem_050
│   │   │   │   ├── problem_051
│   │   │   │   ├── problem_052
│   │   │   │   ├── problem_053
│   │   │   │   ├── problem_054
│   │   │   │   ├── problem_055
│   │   │   │   ├── problem_056
│   │   │   │   ├── problem_057
│   │   │   │   ├── problem_058
│   │   │   │   ├── problem_059
│   │   │   │   ├── problem_062
│   │   │   │   ├── problem_063
│   │   │   │   ├── problem_064
│   │   │   │   ├── problem_065
│   │   │   │   ├── problem_067
│   │   │   │   ├── problem_069
│   │   │   │   ├── problem_070
│   │   │   │   ├── problem_071
│   │   │   │   ├── problem_072
│   │   │   │   ├── problem_074
│   │   │   │   ├── problem_075
│   │   │   │   ├── problem_076
│   │   │   │   ├── problem_077
│   │   │   │   ├── problem_080
│   │   │   │   ├── problem_081
│   │   │   │   ├── problem_085
│   │   │   │   ├── problem_086
│   │   │   │   ├── problem_087
│   │   │   │   ├── problem_089
│   │   │   │   ├── problem_091
│   │   │   │   ├── problem_097
│   │   │   │   ├── problem_099
│   │   │   │   ├── problem_101
│   │   │   │   ├── problem_102
│   │   │   │   ├── problem_107
│   │   │   │   ├── problem_112
│   │   │   │   ├── problem_113
│   │   │   │   ├── problem_119
│   │   │   │   ├── problem_120
│   │   │   │   ├── problem_123
│   │   │   │   ├── problem_125
│   │   │   │   ├── problem_129
│   │   │   │   ├── problem_135
│   │   │   │   ├── problem_173
│   │   │   │   ├── problem_174
│   │   │   │   ├── problem_180
│   │   │   │   ├── problem_188
│   │   │   │   ├── problem_191
│   │   │   │   ├── problem_203
│   │   │   │   ├── problem_206
│   │   │   │   ├── problem_207
│   │   │   │   ├── problem_234
│   │   │   │   ├── problem_301
│   │   │   │   └── problem_551
│   │   │   ├── quantum
│   │   │   ├── scheduling
│   │   │   ├── scripts
│   │   │   ├── searches
│   │   │   ├── sorts
│   │   │   ├── strings
│   │   │   ├── traversals
│   │   │   └── web_programming
│   │   ├── react-carousel-master
│   │   │   ├── public
│   │   │   └── src
│   │   │       └── assets
│   │   ├── react-design-patterns-and-best-practices-master
│   │   │   ├── chapter-03
│   │   │   │   └── reusable-components
│   │   │   │       ├── src
│   │   │   │       │   └── components
│   │   │   │       └── stories
│   │   │   ├── chapter-04
│   │   │   │   ├── container-presentational
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   │           └── geolocation
│   │   │   │   └── higher-order-components
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── chapter-05
│   │   │   │   ├── data-fetching
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── data-flow
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   └── react-refetch
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── chapter-06
│   │   │   │   ├── controlled-components
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── css-transition-group
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── event-switch
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── json-schema
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── react-motion
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── refs-dom
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── refs-instance
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── svg
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   └── uncontrolled-components
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── chapter-07
│   │   │   │   ├── css-modules
│   │   │   │   ├── inline-styles
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── radium
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   └── styled-components
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── chapter-08
│   │   │   │   ├── data-fetching
│   │   │   │   │   └── src
│   │   │   │   ├── next
│   │   │   │   │   └── pages
│   │   │   │   └── server-side-rendering
│   │   │   │       └── src
│   │   │   ├── chapter-09
│   │   │   │   ├── constants-props
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── creating-functions
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   ├── good-design
│   │   │   │   │   └── src
│   │   │   │   │       └── components
│   │   │   │   └── keys
│   │   │   │       └── src
│   │   │   │           └── components
│   │   │   ├── chapter-10
│   │   │   │   ├── enzyme
│   │   │   │   ├── higher-order-components
│   │   │   │   │   └── __snapshots__
│   │   │   │   ├── jest
│   │   │   │   ├── mocha
│   │   │   │   │   └── test
│   │   │   │   ├── page-object
│   │   │   │   └── real-world
│   │   │   │       └── __snapshots__
│   │   │   └── chapter-11
│   │   │       ├── index-as-key
│   │   │       │   └── src
│   │   │       │       └── components
│   │   │       ├── initializing-state
│   │   │       │   └── src
│   │   │       │       └── components
│   │   │       └── mutating-state
│   │   │           └── src
│   │   │               └── components
│   │   ├── React-Todo-master
│   │   │   ├── public
│   │   │   └── src
│   │   │       └── components
│   │   │           └── TodoComponents
│   │   ├── Relational-Databases-master
│   │   │   └── solutions
│   │   ├── Server-Testing-master
│   │   ├── Sorting-master
│   │   │   └── src
│   │   │       ├── iterative_sorting
│   │   │       ├── recursive_sorting
│   │   │       └── searching
│   │   ├── Sprint-Challenge--Graphs-master
│   │   │   ├── img
│   │   │   └── src
│   │   ├── Sprint-Challenge--JavaScript-master
│   │   │   ├── challenges
│   │   │   ├── src
│   │   │   └── tests
│   │   ├── Sprint-Challenge-Node-Express-master
│   │   │   ├── data
│   │   │   │   ├── helpers
│   │   │   │   ├── migrations
│   │   │   │   └── seeds
│   │   │   ├── express
│   │   │   │   ├── public
│   │   │   │   └── src
│   │   │   └── routes
│   │   ├── Sprint-Challenge-RDBMS-master
│   │   │   ├── data
│   │   │   │   ├── migrations
│   │   │   │   └── seeds
│   │   │   └── routes
│   │   ├── sql-lab-master
│   │   │   └── img
│   │   ├── Static-Pages-master
│   │   ├── web-guided-project-HTTP-main
│   │   │   ├── client
│   │   │   │   └── src
│   │   │   │       └── components
│   │   │   └── server
│   │   └── Whiteboard-Pairing-master
│   │       ├── BalancedBinaryTree
│   │       ├── BalancedBrackets
│   │       ├── BitcoinTrading
│   │       ├── BSTFromArray
│   │       ├── ClimbingStairs
│   │       ├── CountingVotes
│   │       ├── DepthFirstSearch
│   │       ├── FindRotationPoint
│   │       ├── IntegerPairs
│   │       ├── KthToLastNode
│   │       ├── LargestContiguousSum
│   │       ├── LargestStack
│   │       ├── LinkedListPalindrome
│   │       ├── MatrixSpiralCopy
│   │       ├── MergingTwoPackages
│   │       ├── MinHeap
│   │       ├── MinJumps
│   │       ├── NthFibonacci
│   │       ├── OneWayFlight
│   │       ├── ProductOfAllOtherNumbers
│   │       ├── QueueWithTwoStacks
│   │       ├── ReverseLinkedList
│   │       ├── RingBuffer
│   │       ├── RobotPaths
│   │       ├── RockPaperScissors
│   │       ├── RotateImage
│   │       ├── SetOfStacks
│   │       ├── SortStack
│   │       ├── SortTopScores
│   │       ├── TemperatureTracker
│   │       ├── TimePlanner
│   │       └── ValidateBinaryTree
│   └── web-dev-utils
│       ├── bootstrap-4.3.1-dist
│       │   ├── css
│       │   └── js
│       ├── GIT-HTML-PREVIEW-TOOL
│       │   └── GIT-HTML-PREVIEW-TOOL-master
│       ├── Markdown-Templates
│       │   └── Markdown-Templates-master
│       │       └── images
│       ├── personal-utilities
│       │   ├── Auto-table-Of-Contents
│       │   ├── copy-2-clip
│       │   ├── css
│       │   ├── extract-css
│       │   │   ├── css
│       │   │   ├── img
│       │   │   └── js
│       │   ├── js
│       │   └── prism
│       └── TexTools
│           └── TexTools-master
│               ├── backup-stable-build
│               │   ├── css
│               │   └── js
│               ├── css
│               ├── js
│               └── sandbox
├── Documentation
├── screenshot-preview
│   ├── examples
│   └── src
└── WEEKS
    ├── wk1
    │   ├── 0-notes
    │   │    
    │   │   │   ├── closures_files
    │   │   │   ├── Farm to Table_files
    │   │   │   ├── func-scope_files
    │   │   │   ├── git-quiz_files
    │   │   │   └── Quiz_Git_files
    │   │    
    │   │   │   ├── flexbox-explained_files
    │   │   │   └── notes_files
    │   │   
    │   ├── 1-projects
    │   │    │   ├── User_Interface_I_HTML_Markup
    │   │   │   └── User_Interface_I__Project_2_-_Sweet_Eats_Bakery
    │   │    
    │   │   │   └── web-module-project-intro-css
    │   │   │       ├── assets
    │   │   │       └── design
    │   │    │   └── refactor-d3-proj-w-flex
    │   │   │       ├── assets
    │   │   │       └── design
    │   │   
    │   ├── 2-resources
    │   │   ├── agenda_files
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk10
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk11
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk12
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk14
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk15
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk16
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk17
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk18
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk19
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk2
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk20
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk3
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk4
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk5
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk6
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk7
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    ├── wk8
    │   ├── 0-notes
    │   │    
    │   ├── 1-projects
    │   │    
    │   ├── 2-resources
    │   │    
    │   ├── 3-misc
    │   │    
    │   └── 4-test-prep
    │       └── Study-Guides
    └── wk9
        ├── 0-notes
        │   
        │   
        │   
        │   
        │   
        │  
        ├── 1-projects
        │   
        │   
        │   
        │   
        │   
        │  
        ├── 2-resources
        │   
        │   
        │   
        │   
        │   
        │  
        ├── 3-misc
        │   
        │   
        │   
        │   
        │   
        │  
        └── 4-test-prep
            └── Study-Guides

4660 directories