├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── about └── README.md ├── assignments ├── README.md ├── blogz │ ├── README.md │ ├── document-cookies.png │ ├── sdk-launcher.png │ ├── user-entities.png │ └── written-by.png ├── build-a-blog │ ├── README.md │ ├── gae-console.png │ ├── python-gitignore.png │ └── route-test.png ├── html-me-something │ ├── README.md │ ├── images │ │ ├── clone.png │ │ ├── create-gh-pages.png │ │ ├── create-pull-request.png │ │ ├── fork-button.png │ │ ├── gh-pages-set-branch.png │ │ ├── github-clone-url.png │ │ ├── new-pull-request.png │ │ ├── new-repo.png │ │ └── repo-name.png │ ├── part1-html │ │ └── README.md │ └── part2-css │ │ └── README.md ├── user-signup │ ├── README.md │ └── images │ │ └── repo-url.png └── web-caesar │ ├── README.md │ └── images │ ├── caesar-form.png │ ├── clone-url.png │ ├── new-repo.png │ ├── repo-settings.png │ └── unescaped-textarea.png ├── cheatsheets └── README.md ├── class-prep ├── 1 │ └── README.md ├── 2 │ └── README.md ├── 3 │ └── README.md ├── 4 │ ├── README.md │ └── review.md ├── 5 │ ├── README.md │ └── review.md ├── 6 │ ├── README.md │ └── review.md ├── 7 │ └── README.md ├── 8 │ └── README.md ├── 9 │ ├── README.md │ └── review.md ├── 10 │ ├── README.md │ └── review.md ├── 11 │ ├── README.md │ └── review.md ├── 12 │ ├── README.md │ └── review.md ├── 13 │ ├── README.md │ └── review.md └── 14 │ ├── README.md │ └── images │ ├── bootswatch-menu.png │ ├── bootswatch.png │ ├── navbar.png │ └── source.png ├── classes └── README.md ├── couscous.yml ├── ed-splash-3.png ├── issues └── README.md ├── objectives └── README.md ├── studios ├── README.md ├── databases │ ├── 1 │ │ └── README.md │ └── 2 │ │ ├── README.md │ │ ├── downloads │ │ └── movie-buff.sql │ │ └── images │ │ ├── after-import.png │ │ ├── import.png │ │ ├── mamp-user-add.png │ │ ├── mamp-user.png │ │ ├── movie-buff-db.png │ │ ├── sample-query.png │ │ ├── sample-results.png │ │ ├── sql.png │ │ ├── structure.png │ │ └── viewings.png ├── fireside-story │ ├── README.md │ └── images │ │ ├── AddSatisfyFont.png │ │ ├── BranchesButton.png │ │ ├── CloneRepo.png │ │ ├── CloneRepo2.png │ │ ├── CreateAGithubRepo.png │ │ ├── InvitedToGithubRepo.png │ │ ├── PRConfirmMerge.png │ │ ├── PRMerged.png │ │ ├── Repo1Commit.png │ │ ├── RepoMergePR.png │ │ ├── RepoPR1.png │ │ ├── RepoSettingsAddCollaborator.png │ │ ├── StartingARepo.png │ │ ├── Thumbs.db │ │ ├── branches-link.png │ │ ├── branches.png │ │ ├── git-merge.gif │ │ ├── pr-created.png │ │ ├── pr-details.png │ │ └── pr-new.png ├── flicklist │ ├── 1 │ │ ├── README.md │ │ └── walkthrough1-flicklist.png │ ├── 2 │ │ └── README.md │ ├── 3 │ │ └── README.md │ ├── 4 │ │ └── README.md │ ├── 5 │ │ └── README.md │ ├── 6 │ │ ├── AllowNetworkAccessInMampPro.png │ │ ├── MAMPPortList.png │ │ ├── README.md │ │ ├── phpMyAdminCreateUserAndDatabase.png │ │ └── phpMyAdminSQLConsoleInBrowser.png │ ├── 7 │ │ └── README.md │ ├── 8 │ │ ├── README.md │ │ └── notes.md │ ├── 9 │ │ └── README.md │ ├── 10 │ │ ├── README.md │ │ └── images │ │ │ ├── hashed-cookie.png │ │ │ └── unhashed-cookie.png │ ├── 11 │ │ └── README.md │ └── getting-the-code │ │ └── README.md └── making-headlines │ ├── README.md │ └── images │ └── making-headlines-screenshot.png ├── tutorials ├── README.md ├── git-stash │ └── README.md └── hello-flask │ ├── README.md │ ├── hello-world-browser-screenshot.png │ └── images │ ├── activate-flicklist.png │ ├── activate-venv.png │ ├── create-venv.png │ ├── deactivate-venv.png │ ├── install-flask.png │ ├── run-python.png │ └── runas.png └── videos ├── README.md ├── cookie-based-sessions └── README.md ├── cookies-in-flask └── README.md ├── form-inputs └── README.md ├── forms-in-flask └── README.md ├── get-it-done ├── README.md ├── changing-models │ └── README.md ├── db-configuration │ └── README.md ├── flash-messages │ └── README.md ├── login-register-handlers │ └── README.md ├── project-setup │ └── README.md ├── sessions │ └── README.md ├── user-model │ └── README.md ├── user-task-relationship │ └── README.md └── using-persistent-classes │ └── README.md ├── hashing-passwords └── README.md ├── html-escaping └── README.md ├── intro-to-hashing └── README.md ├── intro-to-validation └── README.md ├── jinja-variable-expressions └── README.md ├── redirects └── README.md ├── render-template └── README.md ├── salting-passwords └── README.md ├── server-side-validation └── README.md ├── str-format └── README.md ├── task-list └── README.md ├── template-extensions └── README.md ├── using-jinja └── README.md └── working-with-html-forms └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/about/README.md -------------------------------------------------------------------------------- /assignments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/README.md -------------------------------------------------------------------------------- /assignments/blogz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/blogz/README.md -------------------------------------------------------------------------------- /assignments/blogz/document-cookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/blogz/document-cookies.png -------------------------------------------------------------------------------- /assignments/blogz/sdk-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/blogz/sdk-launcher.png -------------------------------------------------------------------------------- /assignments/blogz/user-entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/blogz/user-entities.png -------------------------------------------------------------------------------- /assignments/blogz/written-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/blogz/written-by.png -------------------------------------------------------------------------------- /assignments/build-a-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/build-a-blog/README.md -------------------------------------------------------------------------------- /assignments/build-a-blog/gae-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/build-a-blog/gae-console.png -------------------------------------------------------------------------------- /assignments/build-a-blog/python-gitignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/build-a-blog/python-gitignore.png -------------------------------------------------------------------------------- /assignments/build-a-blog/route-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/build-a-blog/route-test.png -------------------------------------------------------------------------------- /assignments/html-me-something/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/README.md -------------------------------------------------------------------------------- /assignments/html-me-something/images/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/clone.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/create-gh-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/create-gh-pages.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/create-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/create-pull-request.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/fork-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/fork-button.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/gh-pages-set-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/gh-pages-set-branch.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/github-clone-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/github-clone-url.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/new-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/new-pull-request.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/new-repo.png -------------------------------------------------------------------------------- /assignments/html-me-something/images/repo-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/images/repo-name.png -------------------------------------------------------------------------------- /assignments/html-me-something/part1-html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/part1-html/README.md -------------------------------------------------------------------------------- /assignments/html-me-something/part2-css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/html-me-something/part2-css/README.md -------------------------------------------------------------------------------- /assignments/user-signup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/user-signup/README.md -------------------------------------------------------------------------------- /assignments/user-signup/images/repo-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/user-signup/images/repo-url.png -------------------------------------------------------------------------------- /assignments/web-caesar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/README.md -------------------------------------------------------------------------------- /assignments/web-caesar/images/caesar-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/images/caesar-form.png -------------------------------------------------------------------------------- /assignments/web-caesar/images/clone-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/images/clone-url.png -------------------------------------------------------------------------------- /assignments/web-caesar/images/new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/images/new-repo.png -------------------------------------------------------------------------------- /assignments/web-caesar/images/repo-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/images/repo-settings.png -------------------------------------------------------------------------------- /assignments/web-caesar/images/unescaped-textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/assignments/web-caesar/images/unescaped-textarea.png -------------------------------------------------------------------------------- /cheatsheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/cheatsheets/README.md -------------------------------------------------------------------------------- /class-prep/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/1/README.md -------------------------------------------------------------------------------- /class-prep/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/10/README.md -------------------------------------------------------------------------------- /class-prep/10/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/10/review.md -------------------------------------------------------------------------------- /class-prep/11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/11/README.md -------------------------------------------------------------------------------- /class-prep/11/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/11/review.md -------------------------------------------------------------------------------- /class-prep/12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/12/README.md -------------------------------------------------------------------------------- /class-prep/12/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/12/review.md -------------------------------------------------------------------------------- /class-prep/13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/13/README.md -------------------------------------------------------------------------------- /class-prep/13/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/13/review.md -------------------------------------------------------------------------------- /class-prep/14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/14/README.md -------------------------------------------------------------------------------- /class-prep/14/images/bootswatch-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/14/images/bootswatch-menu.png -------------------------------------------------------------------------------- /class-prep/14/images/bootswatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/14/images/bootswatch.png -------------------------------------------------------------------------------- /class-prep/14/images/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/14/images/navbar.png -------------------------------------------------------------------------------- /class-prep/14/images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/14/images/source.png -------------------------------------------------------------------------------- /class-prep/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/2/README.md -------------------------------------------------------------------------------- /class-prep/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/3/README.md -------------------------------------------------------------------------------- /class-prep/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/4/README.md -------------------------------------------------------------------------------- /class-prep/4/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/4/review.md -------------------------------------------------------------------------------- /class-prep/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/5/README.md -------------------------------------------------------------------------------- /class-prep/5/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/5/review.md -------------------------------------------------------------------------------- /class-prep/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/6/README.md -------------------------------------------------------------------------------- /class-prep/6/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/6/review.md -------------------------------------------------------------------------------- /class-prep/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/7/README.md -------------------------------------------------------------------------------- /class-prep/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/8/README.md -------------------------------------------------------------------------------- /class-prep/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/9/README.md -------------------------------------------------------------------------------- /class-prep/9/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/class-prep/9/review.md -------------------------------------------------------------------------------- /classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/classes/README.md -------------------------------------------------------------------------------- /couscous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/couscous.yml -------------------------------------------------------------------------------- /ed-splash-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/ed-splash-3.png -------------------------------------------------------------------------------- /issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/issues/README.md -------------------------------------------------------------------------------- /objectives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/objectives/README.md -------------------------------------------------------------------------------- /studios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/README.md -------------------------------------------------------------------------------- /studios/databases/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/1/README.md -------------------------------------------------------------------------------- /studios/databases/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/README.md -------------------------------------------------------------------------------- /studios/databases/2/downloads/movie-buff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/downloads/movie-buff.sql -------------------------------------------------------------------------------- /studios/databases/2/images/after-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/after-import.png -------------------------------------------------------------------------------- /studios/databases/2/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/import.png -------------------------------------------------------------------------------- /studios/databases/2/images/mamp-user-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/mamp-user-add.png -------------------------------------------------------------------------------- /studios/databases/2/images/mamp-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/mamp-user.png -------------------------------------------------------------------------------- /studios/databases/2/images/movie-buff-db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/movie-buff-db.png -------------------------------------------------------------------------------- /studios/databases/2/images/sample-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/sample-query.png -------------------------------------------------------------------------------- /studios/databases/2/images/sample-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/sample-results.png -------------------------------------------------------------------------------- /studios/databases/2/images/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/sql.png -------------------------------------------------------------------------------- /studios/databases/2/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/structure.png -------------------------------------------------------------------------------- /studios/databases/2/images/viewings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/databases/2/images/viewings.png -------------------------------------------------------------------------------- /studios/fireside-story/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/README.md -------------------------------------------------------------------------------- /studios/fireside-story/images/AddSatisfyFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/AddSatisfyFont.png -------------------------------------------------------------------------------- /studios/fireside-story/images/BranchesButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/BranchesButton.png -------------------------------------------------------------------------------- /studios/fireside-story/images/CloneRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/CloneRepo.png -------------------------------------------------------------------------------- /studios/fireside-story/images/CloneRepo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/CloneRepo2.png -------------------------------------------------------------------------------- /studios/fireside-story/images/CreateAGithubRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/CreateAGithubRepo.png -------------------------------------------------------------------------------- /studios/fireside-story/images/InvitedToGithubRepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/InvitedToGithubRepo.png -------------------------------------------------------------------------------- /studios/fireside-story/images/PRConfirmMerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/PRConfirmMerge.png -------------------------------------------------------------------------------- /studios/fireside-story/images/PRMerged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/PRMerged.png -------------------------------------------------------------------------------- /studios/fireside-story/images/Repo1Commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/Repo1Commit.png -------------------------------------------------------------------------------- /studios/fireside-story/images/RepoMergePR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/RepoMergePR.png -------------------------------------------------------------------------------- /studios/fireside-story/images/RepoPR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/RepoPR1.png -------------------------------------------------------------------------------- /studios/fireside-story/images/RepoSettingsAddCollaborator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/RepoSettingsAddCollaborator.png -------------------------------------------------------------------------------- /studios/fireside-story/images/StartingARepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/StartingARepo.png -------------------------------------------------------------------------------- /studios/fireside-story/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/Thumbs.db -------------------------------------------------------------------------------- /studios/fireside-story/images/branches-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/branches-link.png -------------------------------------------------------------------------------- /studios/fireside-story/images/branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/branches.png -------------------------------------------------------------------------------- /studios/fireside-story/images/git-merge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/git-merge.gif -------------------------------------------------------------------------------- /studios/fireside-story/images/pr-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/pr-created.png -------------------------------------------------------------------------------- /studios/fireside-story/images/pr-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/pr-details.png -------------------------------------------------------------------------------- /studios/fireside-story/images/pr-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/fireside-story/images/pr-new.png -------------------------------------------------------------------------------- /studios/flicklist/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/1/README.md -------------------------------------------------------------------------------- /studios/flicklist/1/walkthrough1-flicklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/1/walkthrough1-flicklist.png -------------------------------------------------------------------------------- /studios/flicklist/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/10/README.md -------------------------------------------------------------------------------- /studios/flicklist/10/images/hashed-cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/10/images/hashed-cookie.png -------------------------------------------------------------------------------- /studios/flicklist/10/images/unhashed-cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/10/images/unhashed-cookie.png -------------------------------------------------------------------------------- /studios/flicklist/11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/11/README.md -------------------------------------------------------------------------------- /studios/flicklist/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/2/README.md -------------------------------------------------------------------------------- /studios/flicklist/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/3/README.md -------------------------------------------------------------------------------- /studios/flicklist/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/4/README.md -------------------------------------------------------------------------------- /studios/flicklist/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/5/README.md -------------------------------------------------------------------------------- /studios/flicklist/6/AllowNetworkAccessInMampPro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/6/AllowNetworkAccessInMampPro.png -------------------------------------------------------------------------------- /studios/flicklist/6/MAMPPortList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/6/MAMPPortList.png -------------------------------------------------------------------------------- /studios/flicklist/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/6/README.md -------------------------------------------------------------------------------- /studios/flicklist/6/phpMyAdminCreateUserAndDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/6/phpMyAdminCreateUserAndDatabase.png -------------------------------------------------------------------------------- /studios/flicklist/6/phpMyAdminSQLConsoleInBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/6/phpMyAdminSQLConsoleInBrowser.png -------------------------------------------------------------------------------- /studios/flicklist/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/7/README.md -------------------------------------------------------------------------------- /studios/flicklist/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/8/README.md -------------------------------------------------------------------------------- /studios/flicklist/8/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/8/notes.md -------------------------------------------------------------------------------- /studios/flicklist/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/9/README.md -------------------------------------------------------------------------------- /studios/flicklist/getting-the-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/flicklist/getting-the-code/README.md -------------------------------------------------------------------------------- /studios/making-headlines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/making-headlines/README.md -------------------------------------------------------------------------------- /studios/making-headlines/images/making-headlines-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/studios/making-headlines/images/making-headlines-screenshot.png -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/git-stash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/git-stash/README.md -------------------------------------------------------------------------------- /tutorials/hello-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/README.md -------------------------------------------------------------------------------- /tutorials/hello-flask/hello-world-browser-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/hello-world-browser-screenshot.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/activate-flicklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/activate-flicklist.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/activate-venv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/activate-venv.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/create-venv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/create-venv.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/deactivate-venv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/deactivate-venv.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/install-flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/install-flask.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/run-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/run-python.png -------------------------------------------------------------------------------- /tutorials/hello-flask/images/runas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/tutorials/hello-flask/images/runas.png -------------------------------------------------------------------------------- /videos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/README.md -------------------------------------------------------------------------------- /videos/cookie-based-sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/cookie-based-sessions/README.md -------------------------------------------------------------------------------- /videos/cookies-in-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/cookies-in-flask/README.md -------------------------------------------------------------------------------- /videos/form-inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/form-inputs/README.md -------------------------------------------------------------------------------- /videos/forms-in-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/forms-in-flask/README.md -------------------------------------------------------------------------------- /videos/get-it-done/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/README.md -------------------------------------------------------------------------------- /videos/get-it-done/changing-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/changing-models/README.md -------------------------------------------------------------------------------- /videos/get-it-done/db-configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/db-configuration/README.md -------------------------------------------------------------------------------- /videos/get-it-done/flash-messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/flash-messages/README.md -------------------------------------------------------------------------------- /videos/get-it-done/login-register-handlers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/login-register-handlers/README.md -------------------------------------------------------------------------------- /videos/get-it-done/project-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/project-setup/README.md -------------------------------------------------------------------------------- /videos/get-it-done/sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/sessions/README.md -------------------------------------------------------------------------------- /videos/get-it-done/user-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/user-model/README.md -------------------------------------------------------------------------------- /videos/get-it-done/user-task-relationship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/user-task-relationship/README.md -------------------------------------------------------------------------------- /videos/get-it-done/using-persistent-classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/get-it-done/using-persistent-classes/README.md -------------------------------------------------------------------------------- /videos/hashing-passwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/hashing-passwords/README.md -------------------------------------------------------------------------------- /videos/html-escaping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/html-escaping/README.md -------------------------------------------------------------------------------- /videos/intro-to-hashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/intro-to-hashing/README.md -------------------------------------------------------------------------------- /videos/intro-to-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/intro-to-validation/README.md -------------------------------------------------------------------------------- /videos/jinja-variable-expressions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/jinja-variable-expressions/README.md -------------------------------------------------------------------------------- /videos/redirects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/redirects/README.md -------------------------------------------------------------------------------- /videos/render-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/render-template/README.md -------------------------------------------------------------------------------- /videos/salting-passwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/salting-passwords/README.md -------------------------------------------------------------------------------- /videos/server-side-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/server-side-validation/README.md -------------------------------------------------------------------------------- /videos/str-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/str-format/README.md -------------------------------------------------------------------------------- /videos/task-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/task-list/README.md -------------------------------------------------------------------------------- /videos/template-extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/template-extensions/README.md -------------------------------------------------------------------------------- /videos/using-jinja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/using-jinja/README.md -------------------------------------------------------------------------------- /videos/working-with-html-forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaunchCodeEducation/web-fundamentals/HEAD/videos/working-with-html-forms/README.md --------------------------------------------------------------------------------