├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md └── assets └── star.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Current TS File", 6 | "type": "node", 7 | "request": "launch", 8 | "args": ["${relativeFile}"], 9 | "runtimeArgs": ["--nolazy", "-r", "ts-node/register"], 10 | "sourceMaps": true, 11 | "cwd": "${workspaceRoot}", 12 | "protocol": "inspector" 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.autoSave": "on" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PrepCourse | [CODELEX](https://codelex.io) 2 | 3 | ## 🚨 Prerequisites 🚨 4 | 5 | Most likely you will need a [Github account](https://github.com/join), Github is like a Dropbox for developers where code is shared. 6 | 7 | ## 👩‍💻 Exercises 👩‍💻 8 | 9 | Exercises are grouped by days, but you can do them on your own pace. 10 | 11 | For each exercise carefully read the description before starting to work on it. 12 | 13 | ### [➡️ Warm Up](https://github.com/codelex-io/prep-course-warm-up) 14 | 15 | ### [➡️ Part Two](https://github.com/codelex-io/prep-course-part-two) 16 | 17 | ### [➡️ Final Challenge](https://github.com/codelex-io/prep-course-final) 18 | 19 | ## ⭐ Star This Repository ⭐ 20 | 21 | ![Star](./assets/star.gif) 22 | -------------------------------------------------------------------------------- /assets/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codelex-io/prep-course/5da5cfaac681c979d08417db56b425e784ccbdb1/assets/star.gif --------------------------------------------------------------------------------