|
| 1 | +## Your Learning Path Tasks |
| 2 | + |
| 3 | +- [ ] [Main Goal](#main-goal) |
| 4 | +- [ ] [Step 1 - Learn the Theory](#step-1---learn-the-theory) |
| 5 | +- [ ] [Step 2 - Practice!](#step-2---practice) |
| 6 | +- [ ] [Step 2 - Build the Project](#step-3---build-the-project) |
| 7 | + |
| 8 | +<hr> |
| 9 | + |
| 10 | +## **Main Goal** |
| 11 | + |
| 12 | +At the end of this path, you will be able to build a **Personalized Diet Calculator** , just using Variables, expressions, statements and strings. |
| 13 | + |
| 14 | +<hr> |
| 15 | + |
| 16 | +## **Step 1** - Learn the theory |
| 17 | + |
| 18 | +Read the following chapters to the key concepts of this specific path |
| 19 | + |
| 20 | +<table> |
| 21 | + <th> |
| 22 | + <tr> |
| 23 | + <td></td> |
| 24 | + <td>Javascript</td> |
| 25 | + <td>Python</td> |
| 26 | + </tr> |
| 27 | + </th> |
| 28 | + <tr> |
| 29 | + <td>Values, Types, and Operators</td> |
| 30 | + <td><a href="https://eloquentjavascript.net/01_values.html">Eloquent Javasctipt - Chapter 1</a></td> |
| 31 | + <td><a href="https://greenteapress.com/thinkpython2/thinkpython2.pdf">Think Python (Chapter 1 and 2)</a></td> |
| 32 | + </tr> |
| 33 | + <tr> |
| 34 | + <td>Expressions and Statements</td> |
| 35 | + <td> |
| 36 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_5fUOQZwwHx">Eloquent Javascript - Expressions and Statements</a> |
| 37 | + <br /> |
| 38 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_lnOC+GBEtu">Eloquent Javascript - Bindings</a> |
| 39 | + <br /> |
| 40 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_SbWNrIYjdH">Eloquent Javascript - Bindings Names</a> |
| 41 | + <br /> |
| 42 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_K5Yd6h3Axg">Eloquent Javascript - Functions</a> |
| 43 | + <br /> |
| 44 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_rDxYNPd65Z">Eloquent Javascript - Control Flow</a> |
| 45 | + <br /> |
| 46 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_t54vuASjLD">Eloquent Javascript - Capitalization</a> |
| 47 | + <br /> |
| 48 | + - <a href="https://eloquentjavascript.net/02_program_structure.html#h_/OBuIOX390">Eloquent Javascript - Comments</a> |
| 49 | + </td> |
| 50 | + <td><a href="https://greenteapress.com/thinkpython2/thinkpython2.pdf">Think Python (Chapter 1 and 2)</a></td> |
| 51 | + </tr> |
| 52 | +</table> |
| 53 | + |
| 54 | +### Documentation |
| 55 | +Use the following documentation as a syntax reference |
| 56 | + |
| 57 | +<table> |
| 58 | + <th> |
| 59 | + <tr> |
| 60 | + <td>Javascript</td> |
| 61 | + <td>Python</td> |
| 62 | + </tr> |
| 63 | + </th> |
| 64 | + <tr> |
| 65 | + <td> |
| 66 | + <a href="https://javascript.info">https://javascript.info</a> |
| 67 | + <br /> |
| 68 | + <a href="https://www.w3schools.com/js/default.asp">https://www.w3schools.com/js/default.asp</a> |
| 69 | + </td> |
| 70 | + <td><a href="https://docs.python.org/3.11/tutorial/index.html">https://docs.python.org/3.11/tutorial/index.html</a></td> |
| 71 | + </tr> |
| 72 | +</table> |
| 73 | + |
| 74 | +### **Additional resources** |
| 75 | + |
| 76 | +- [ ] Watch [Introduction to Programming and Computer Science - Full Course](https://www.youtube.com/watch?v=zOjov-2OZ0E&ab_channel=freeCodeCamp.org) |
| 77 | +- [ ] Watch [The Programming Language Guide](https://youtu.be/2lVDktWK-pc) |
| 78 | +- [ ] Watch [How does the internet work?](https://youtu.be/zN8YNNHcaZc) |
| 79 | +- [ ] If you don't already have it, create a [Linkedin](https://www.linkedin.com/) account |
| 80 | + - [ ] Follow our [page](https://www.linkedin.com/school/tomorrowdevs) |
| 81 | + |
| 82 | +<hr> |
| 83 | + |
| 84 | +## **Step 2** - Practice! |
| 85 | + |
| 86 | +Code these exercises to capture the concepts you just learned: |
| 87 | + |
| 88 | +- [ ] [Area of a Room](./projects/001-area-of-a-room/) |
| 89 | +- [ ] [Bottle Deposits](./projects/002-bottle-deposits/) |
| 90 | +- [ ] [Making Change](./projects/003-making-change/) |
| 91 | +- [ ] [Units of Time](./projects/004-units-of-time/) |
| 92 | +- [ ] [Day old bread](./projects/007-day-old-bread/) |
| 93 | + |
| 94 | +### **Additional tasks** |
| 95 | + |
| 96 | +- [ ] Improve your social presence |
| 97 | + - [ ] Create your first Linkedin post by explaining who you are, what are you studying, and why you decided to start this journey |
| 98 | + - [ ] Connect with at least 10 software developers. You can search for them in your city for example. |
| 99 | + |
| 100 | + |
| 101 | +<hr> |
| 102 | + |
| 103 | +## **Step 3** - Build the Project |
| 104 | +Carry out a complete project as a certification of your skills |
| 105 | + |
| 106 | +- [ ] [**Personalized Diet Calculator**](./projects/final-project/) |
| 107 | + |
| 108 | +### **Additional tasks** |
| 109 | + |
| 110 | +- [ ] Create and publish a first Github repository containing this project |
| 111 | +- [ ] Send a message into our [Discord Community](https://discord.gg/4G5nbXRunZ), with the link of the project you just created, asking for feedbacks |
0 commit comments