├── .gitignore ├── .nvmrc ├── README.md ├── challenges ├── 101 │ ├── 01.md │ ├── 02.md │ ├── 03.md │ ├── autocorrect.gif │ ├── github-https.png │ ├── vercel-done.png │ └── vercel.png ├── 102 │ ├── 01.md │ ├── 02.md │ ├── 03.md │ ├── 04.md │ ├── 05.md │ └── 06.md └── 103 │ ├── 01.md │ ├── 02.md │ ├── 03.md │ ├── 04.md │ ├── 05.md │ ├── github-badges-2.png │ ├── linkedin-certification-add.png │ ├── linkedin-certification.gif │ ├── print-pdf.png │ └── qr-code.png ├── setup ├── README.md ├── davids-terminal-setup.png └── iterm-change-colors.png └── slides ├── .babelrc ├── .gitignore ├── README.md ├── automation-with-github.jpg ├── custom.d.ts ├── github-bootcamp.png ├── index.html ├── index.tsx ├── package-lock.json ├── package.json ├── slides.md ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/README.md -------------------------------------------------------------------------------- /challenges/101/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/01.md -------------------------------------------------------------------------------- /challenges/101/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/02.md -------------------------------------------------------------------------------- /challenges/101/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/03.md -------------------------------------------------------------------------------- /challenges/101/autocorrect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/autocorrect.gif -------------------------------------------------------------------------------- /challenges/101/github-https.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/github-https.png -------------------------------------------------------------------------------- /challenges/101/vercel-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/vercel-done.png -------------------------------------------------------------------------------- /challenges/101/vercel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/101/vercel.png -------------------------------------------------------------------------------- /challenges/102/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/01.md -------------------------------------------------------------------------------- /challenges/102/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/02.md -------------------------------------------------------------------------------- /challenges/102/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/03.md -------------------------------------------------------------------------------- /challenges/102/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/04.md -------------------------------------------------------------------------------- /challenges/102/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/05.md -------------------------------------------------------------------------------- /challenges/102/06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/102/06.md -------------------------------------------------------------------------------- /challenges/103/01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/01.md -------------------------------------------------------------------------------- /challenges/103/02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/02.md -------------------------------------------------------------------------------- /challenges/103/03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/03.md -------------------------------------------------------------------------------- /challenges/103/04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/04.md -------------------------------------------------------------------------------- /challenges/103/05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/05.md -------------------------------------------------------------------------------- /challenges/103/github-badges-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/github-badges-2.png -------------------------------------------------------------------------------- /challenges/103/linkedin-certification-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/linkedin-certification-add.png -------------------------------------------------------------------------------- /challenges/103/linkedin-certification.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/linkedin-certification.gif -------------------------------------------------------------------------------- /challenges/103/print-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/print-pdf.png -------------------------------------------------------------------------------- /challenges/103/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/challenges/103/qr-code.png -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/setup/README.md -------------------------------------------------------------------------------- /setup/davids-terminal-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/setup/davids-terminal-setup.png -------------------------------------------------------------------------------- /setup/iterm-change-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/setup/iterm-change-colors.png -------------------------------------------------------------------------------- /slides/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/.babelrc -------------------------------------------------------------------------------- /slides/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/.gitignore -------------------------------------------------------------------------------- /slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/README.md -------------------------------------------------------------------------------- /slides/automation-with-github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/automation-with-github.jpg -------------------------------------------------------------------------------- /slides/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/custom.d.ts -------------------------------------------------------------------------------- /slides/github-bootcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/github-bootcamp.png -------------------------------------------------------------------------------- /slides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/index.html -------------------------------------------------------------------------------- /slides/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/index.tsx -------------------------------------------------------------------------------- /slides/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/package-lock.json -------------------------------------------------------------------------------- /slides/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/package.json -------------------------------------------------------------------------------- /slides/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/slides.md -------------------------------------------------------------------------------- /slides/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/tsconfig.json -------------------------------------------------------------------------------- /slides/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/github-bootcamp/HEAD/slides/webpack.config.js --------------------------------------------------------------------------------