├── .gitignore ├── README.MD ├── exercise-1-customizing-the-editor └── start │ ├── images │ ├── background.jpeg │ └── logo.png │ ├── index.html │ ├── package.json │ ├── src │ └── app.js │ └── vendor │ └── signalr.min.js ├── exercise-2-productivity-tricks ├── open-me.code-workspace ├── solution │ ├── background.jpeg │ ├── index.html │ ├── logo.png │ └── package.json └── start │ ├── background.jpeg │ ├── bulma.css │ ├── index.html │ ├── logo.png │ ├── package-lock.json │ └── package.json ├── exercise-3-navigation-and-refactoring ├── open-me.code-workspace ├── regex-modifier.png ├── solution │ ├── bulma.css │ ├── images │ │ ├── background.jpeg │ │ └── logo.png │ ├── index.html │ ├── package.json │ ├── src │ │ └── app.js │ └── vendor │ │ └── signalr.min.js └── start │ ├── bulma.css │ ├── fake-package.json │ ├── images │ ├── background.jpeg │ └── logo.png │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ └── app.js │ └── vendor │ └── signalr.min.js ├── exercise-4-debugging ├── 1-simple-node │ ├── index.js │ ├── package-lock.json │ └── package.json ├── 2-launch-configs │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── 3-debug-browser-apps │ ├── bulma.css │ ├── images │ │ ├── background.jpeg │ │ ├── logo.png │ │ └── regex-modifier.png │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── app.js │ └── vendor │ │ └── signalr.min.js ├── 4-compound-launch-config │ ├── .vscode │ │ └── extensions.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── server │ │ ├── .deployment │ │ ├── app.js │ │ ├── build │ │ │ ├── asset-manifest.json │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── manifest.json │ │ │ ├── service-worker.js │ │ │ └── static │ │ │ │ ├── css │ │ │ │ ├── main.9875cf57.css │ │ │ │ └── main.9875cf57.css.map │ │ │ │ ├── js │ │ │ │ ├── main.72993191.js │ │ │ │ └── main.72993191.js.map │ │ │ │ └── media │ │ │ │ └── background.4980b0a8.jpeg │ │ ├── package.json │ │ ├── routes │ │ │ └── index.js │ │ ├── server.js │ │ ├── views │ │ │ └── error.jade │ │ └── web.config │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── background.jpeg │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── regex-modifier.png │ │ └── registerServiceWorker.js └── open-me.code-workspace ├── exercise-5-docker ├── .vscode │ └── launch.json ├── open-me.code-workspace ├── solution │ ├── .vscode │ │ └── launch.json │ ├── Dockerfile │ ├── app.js │ ├── build │ │ ├── asset-manifest.json │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ ├── service-worker.js │ │ └── static │ │ │ ├── css │ │ │ ├── main.5c986d3f.css │ │ │ └── main.5c986d3f.css.map │ │ │ ├── js │ │ │ ├── main.9c138697.js │ │ │ └── main.9c138697.js.map │ │ │ └── media │ │ │ ├── background.5b5be6b4.jpeg │ │ │ └── logo.4c23facc.png │ ├── docker-compose.debug.yml │ ├── docker-compose.yml │ ├── package.json │ ├── routes │ │ └── index.js │ ├── server.js │ └── views │ │ └── error.jade └── start │ ├── app.js │ ├── build │ ├── asset-manifest.json │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ ├── service-worker.js │ └── static │ │ ├── css │ │ ├── main.9875cf57.css │ │ └── main.9875cf57.css.map │ │ ├── js │ │ ├── main.72993191.js │ │ └── main.72993191.js.map │ │ └── media │ │ └── background.4980b0a8.jpeg │ ├── package-lock.json │ ├── package.json │ ├── routes │ └── index.js │ ├── server.js │ └── views │ └── error.jade ├── exercise-6-remote-development ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── open-me.code-workspace ├── solution │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── bulb.js │ ├── danceDance │ │ ├── function.json │ │ ├── index.js │ │ └── sample.dat │ ├── host.json │ ├── local.settings.json │ ├── package-lock.json │ ├── package.json │ ├── proxies.json │ └── setColor │ │ ├── function.json │ │ ├── index.js │ │ └── sample.dat └── start │ ├── .funcignore │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── bulb.js │ ├── host.json │ ├── package-lock.json │ ├── package.json │ ├── proxies.json │ └── setColor │ ├── function.json │ ├── index.js │ └── sample.dat ├── exercise-7-working-with-data ├── .vscode │ └── settings.json ├── Scrapbook-1.mongo ├── images │ └── remote-dev-task-bar.png ├── mysql.sql ├── sqlite.db └── start │ ├── .devcontainer │ ├── Dockerfile │ ├── devcontainer.json │ └── docker-compose.yml │ ├── .vscode │ └── launch.json │ ├── app.js │ ├── bin │ └── www │ ├── data │ └── test.db │ ├── mongo.js │ ├── mysql.sql │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── images │ │ ├── background.jpeg │ │ └── logo.png │ ├── javascripts │ │ ├── app.js │ │ └── signalr.min.js │ └── stylesheets │ │ └── style.css │ ├── routes │ ├── index.js │ └── users.js │ ├── sqlite.sql │ └── views │ ├── error.hbs │ └── index.hbs ├── exercise-8-git-source-control ├── exercise.adoc ├── images │ ├── accept-incoming-change.png │ ├── clone-or-download.png │ ├── commit-changes.png │ ├── create-new-branch.png │ ├── fork-button.png │ ├── master-repo.png │ ├── merge-branch.png │ ├── metatag.png │ ├── open-in-new-window.png │ ├── publish-changes.png │ ├── push-changes.png │ └── stage-changes.png └── open-me.code-workspace └── images ├── change-workspace.png ├── exercise-start-solution.png ├── go-live.png ├── open-workspace.png └── select-start-workspace.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/README.MD -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/images/background.jpeg -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/images/logo.png -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/index.html -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/package.json -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/src/app.js -------------------------------------------------------------------------------- /exercise-1-customizing-the-editor/start/vendor/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-1-customizing-the-editor/start/vendor/signalr.min.js -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/open-me.code-workspace -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/solution/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/solution/background.jpeg -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/solution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/solution/index.html -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/solution/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/solution/logo.png -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/solution/package.json -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/background.jpeg -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/bulma.css -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/index.html -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/logo.png -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/package-lock.json -------------------------------------------------------------------------------- /exercise-2-productivity-tricks/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-2-productivity-tricks/start/package.json -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/open-me.code-workspace -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/regex-modifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/regex-modifier.png -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/bulma.css -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/images/background.jpeg -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/images/logo.png -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/index.html -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/package.json -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/src/app.js -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/solution/vendor/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/solution/vendor/signalr.min.js -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/bulma.css -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/fake-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/fake-package.json -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/images/background.jpeg -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/images/logo.png -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/index.html -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/package-lock.json -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/package.json -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/src/app.js -------------------------------------------------------------------------------- /exercise-3-navigation-and-refactoring/start/vendor/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-3-navigation-and-refactoring/start/vendor/signalr.min.js -------------------------------------------------------------------------------- /exercise-4-debugging/1-simple-node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/1-simple-node/index.js -------------------------------------------------------------------------------- /exercise-4-debugging/1-simple-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/1-simple-node/package-lock.json -------------------------------------------------------------------------------- /exercise-4-debugging/1-simple-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/1-simple-node/package.json -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/index.js -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/index.js.map -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/index.ts -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/package-lock.json -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/package.json -------------------------------------------------------------------------------- /exercise-4-debugging/2-launch-configs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/2-launch-configs/tsconfig.json -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/bulma.css -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/images/background.jpeg -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/images/logo.png -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/images/regex-modifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/images/regex-modifier.png -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/index.html -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/package-lock.json -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/package.json -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/src/app.js -------------------------------------------------------------------------------- /exercise-4-debugging/3-debug-browser-apps/vendor/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/3-debug-browser-apps/vendor/signalr.min.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["msjsdiag.debugger-for-chrome"] 3 | } 4 | -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/README.md -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/package-lock.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/package.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/public/favicon.ico -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/public/index.html -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/public/manifest.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | SCM_DO_BUILD_DURING_DEPLOYMENT=true -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/app.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/asset-manifest.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/favicon.ico -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/index.html -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/manifest.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/service-worker.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/static/css/main.9875cf57.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/static/css/main.9875cf57.css -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/static/css/main.9875cf57.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/static/css/main.9875cf57.css.map -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/static/js/main.72993191.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/static/js/main.72993191.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/static/js/main.72993191.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/static/js/main.72993191.js.map -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/build/static/media/background.4980b0a8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/build/static/media/background.4980b0a8.jpeg -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/package.json -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/routes/index.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/server.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/views/error.jade -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/server/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/server/web.config -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/App.css -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/App.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/App.test.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/background.jpeg -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/index.css -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/index.js -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/logo.png -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/logo.svg -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/regex-modifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/regex-modifier.png -------------------------------------------------------------------------------- /exercise-4-debugging/4-compound-launch-config/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/4-compound-launch-config/src/registerServiceWorker.js -------------------------------------------------------------------------------- /exercise-4-debugging/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-4-debugging/open-me.code-workspace -------------------------------------------------------------------------------- /exercise-5-docker/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-5-docker/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/open-me.code-workspace -------------------------------------------------------------------------------- /exercise-5-docker/solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-5-docker/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/Dockerfile -------------------------------------------------------------------------------- /exercise-5-docker/solution/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/app.js -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/asset-manifest.json -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/favicon.ico -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/index.html -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/manifest.json -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/service-worker.js -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/css/main.5c986d3f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/css/main.5c986d3f.css -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/css/main.5c986d3f.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/css/main.5c986d3f.css.map -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/js/main.9c138697.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/js/main.9c138697.js -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/js/main.9c138697.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/js/main.9c138697.js.map -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/media/background.5b5be6b4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/media/background.5b5be6b4.jpeg -------------------------------------------------------------------------------- /exercise-5-docker/solution/build/static/media/logo.4c23facc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/build/static/media/logo.4c23facc.png -------------------------------------------------------------------------------- /exercise-5-docker/solution/docker-compose.debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/docker-compose.debug.yml -------------------------------------------------------------------------------- /exercise-5-docker/solution/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/docker-compose.yml -------------------------------------------------------------------------------- /exercise-5-docker/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/package.json -------------------------------------------------------------------------------- /exercise-5-docker/solution/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/routes/index.js -------------------------------------------------------------------------------- /exercise-5-docker/solution/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/server.js -------------------------------------------------------------------------------- /exercise-5-docker/solution/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/solution/views/error.jade -------------------------------------------------------------------------------- /exercise-5-docker/start/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/app.js -------------------------------------------------------------------------------- /exercise-5-docker/start/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/asset-manifest.json -------------------------------------------------------------------------------- /exercise-5-docker/start/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/favicon.ico -------------------------------------------------------------------------------- /exercise-5-docker/start/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/index.html -------------------------------------------------------------------------------- /exercise-5-docker/start/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/manifest.json -------------------------------------------------------------------------------- /exercise-5-docker/start/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/service-worker.js -------------------------------------------------------------------------------- /exercise-5-docker/start/build/static/css/main.9875cf57.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/static/css/main.9875cf57.css -------------------------------------------------------------------------------- /exercise-5-docker/start/build/static/css/main.9875cf57.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/static/css/main.9875cf57.css.map -------------------------------------------------------------------------------- /exercise-5-docker/start/build/static/js/main.72993191.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/static/js/main.72993191.js -------------------------------------------------------------------------------- /exercise-5-docker/start/build/static/js/main.72993191.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/static/js/main.72993191.js.map -------------------------------------------------------------------------------- /exercise-5-docker/start/build/static/media/background.4980b0a8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/build/static/media/background.4980b0a8.jpeg -------------------------------------------------------------------------------- /exercise-5-docker/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/package-lock.json -------------------------------------------------------------------------------- /exercise-5-docker/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/package.json -------------------------------------------------------------------------------- /exercise-5-docker/start/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/routes/index.js -------------------------------------------------------------------------------- /exercise-5-docker/start/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/server.js -------------------------------------------------------------------------------- /exercise-5-docker/start/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-5-docker/start/views/error.jade -------------------------------------------------------------------------------- /exercise-6-remote-development/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/.vscode/extensions.json -------------------------------------------------------------------------------- /exercise-6-remote-development/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-6-remote-development/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/.vscode/settings.json -------------------------------------------------------------------------------- /exercise-6-remote-development/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/.vscode/tasks.json -------------------------------------------------------------------------------- /exercise-6-remote-development/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/open-me.code-workspace -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.vscode/extensions.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.vscode/settings.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/.vscode/tasks.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/bulb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/bulb.js -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/danceDance/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/danceDance/function.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/danceDance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/danceDance/index.js -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/danceDance/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/local.settings.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/package-lock.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/package.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/proxies.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/setColor/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/setColor/function.json -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/setColor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/solution/setColor/index.js -------------------------------------------------------------------------------- /exercise-6-remote-development/solution/setColor/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.funcignore -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.gitignore -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.vscode/extensions.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.vscode/settings.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/.vscode/tasks.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/bulb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/bulb.js -------------------------------------------------------------------------------- /exercise-6-remote-development/start/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } 4 | -------------------------------------------------------------------------------- /exercise-6-remote-development/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/package-lock.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/package.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/proxies.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/setColor/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/setColor/function.json -------------------------------------------------------------------------------- /exercise-6-remote-development/start/setColor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-6-remote-development/start/setColor/index.js -------------------------------------------------------------------------------- /exercise-6-remote-development/start/setColor/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /exercise-7-working-with-data/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorCustomizations": {} 3 | } -------------------------------------------------------------------------------- /exercise-7-working-with-data/Scrapbook-1.mongo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercise-7-working-with-data/images/remote-dev-task-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/images/remote-dev-task-bar.png -------------------------------------------------------------------------------- /exercise-7-working-with-data/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/mysql.sql -------------------------------------------------------------------------------- /exercise-7-working-with-data/sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/sqlite.db -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/.vscode/launch.json -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/app.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/bin/www -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/data/test.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/mongo.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/mysql.sql -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/package-lock.json -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/package.json -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/public/images/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/public/images/background.jpeg -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/public/images/logo.png -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/public/javascripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/public/javascripts/app.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/public/javascripts/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/public/javascripts/signalr.min.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/public/stylesheets/style.css -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/routes/index.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/routes/users.js -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/sqlite.sql -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/views/error.hbs -------------------------------------------------------------------------------- /exercise-7-working-with-data/start/views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-7-working-with-data/start/views/index.hbs -------------------------------------------------------------------------------- /exercise-8-git-source-control/exercise.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/exercise.adoc -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/accept-incoming-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/accept-incoming-change.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/clone-or-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/clone-or-download.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/commit-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/commit-changes.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/create-new-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/create-new-branch.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/fork-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/fork-button.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/master-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/master-repo.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/merge-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/merge-branch.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/metatag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/metatag.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/open-in-new-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/open-in-new-window.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/publish-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/publish-changes.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/push-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/push-changes.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/images/stage-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/images/stage-changes.png -------------------------------------------------------------------------------- /exercise-8-git-source-control/open-me.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/exercise-8-git-source-control/open-me.code-workspace -------------------------------------------------------------------------------- /images/change-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/images/change-workspace.png -------------------------------------------------------------------------------- /images/exercise-start-solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/images/exercise-start-solution.png -------------------------------------------------------------------------------- /images/go-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/images/go-live.png -------------------------------------------------------------------------------- /images/open-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/images/open-workspace.png -------------------------------------------------------------------------------- /images/select-start-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burkeholland/workshop-vs-code-can-do-that/HEAD/images/select-start-workspace.png --------------------------------------------------------------------------------