This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 253
moved readings to corresponding weeks #44
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,45 +1,13 @@ | ||
| # Reading material for the second lecture: | ||
| # Reading material for your first JavaScript lesson: | ||
|
|
||
| ``` | ||
| In week two we will discuss the following topics: | ||
| • Intro JavaScript (What is it, where can you use it for) | ||
| • Variables [var, let, const] | ||
| • Basic Data types [Strings, Numbers, Arrays, Booleans] | ||
| • Operators | ||
| • Naming conventions | ||
| In week one we will discuss the following topics: | ||
| • Git | ||
| ``` | ||
|
|
||
| ## How to get started | ||
| 1. Download and install the *LTS* version of NodeJS - https://nodejs.org/en/download/ | ||
| To test that it was installed and running properly, go to your terminal and run the command: node -v You should get the node version printed on your terminal, for example, v8.9.1 | ||
| 2. Although you are free to make you own choice of text/code editor to use during class and homework, we have good experiences with Microsoft's free VSCode editor, which is supported on Windows, Mac and Linux. Please refer to our [VSCode Tips](../VSCodeTips/README.md) for more information. | ||
|
|
||
| ## Here are resources that we like you to read as a preparation for the coming lecture: | ||
|
|
||
| Please watch the following parts of the course, [Programming Foundations Fundamentals](https://www.lynda.com/Programming-Foundations-tutorials/Welcome/83603/90426-4.html) on Lynda.com (if you don't have access to Lynda yet ask Gijs): | ||
|
|
||
| Only watch the below chapters: | ||
|
|
||
| 0. Introduction | ||
| 1. Programming Basics | ||
| 2. Core Programming Syntax | ||
| 3. Variables and Data Types | ||
|
|
||
| - Read this ~ http://speakingjs.com/es5/ch01.html read up to and including the *Strings* chapter (it’s okay if you don’t understand all of it yet, we will cover these concepts in class as well. Do make sure to write or document the questions you have so we can discuss them in class) | ||
|
|
||
| - Read the entire JavaScript Introduction at MDN~ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Introduction | ||
|
|
||
| - Helpful resource: http://jsbooks.revolunet.com/ (here you can find tons of free JavaScript books online) | ||
|
|
||
| - The 50 best websites to Learn JavaScript: http://www.codeconquest.com/blog/top-50-websites-to-learn-javascript/ | ||
|
|
||
| :star: You can also already go through the topics of the upcoming lecture. :star: | ||
|
|
||
| - Intro JavaScript (What is it, where can you use it for) | ||
| - [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)<br> | ||
| - [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)<br> | ||
| - [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)<br> | ||
| - [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md) | ||
|
|
||
| _Please go through the material and come to class prepared!_ | ||
| ### Here are resources that we like you to read as a preparation for the coming lecture. | ||
|
|
||
| - In you next lecture **Unmesh** will give you your first Git session, please look through the [GIT](https://github.com/HackYourFuture/Git) repository and read the learning goals. | ||
| - Please watch [Up Running with Bash Scripting](https://www.lynda.com/Bash-tutorials/Up-Running-Bash-Scripting/142989-2.html) | ||
| as a recap on the cli classes you have had (1 hour and 25 min). | ||
| - Please watch the first 5 chapters of the [Git essential training](https://www.lynda.com/Git-tutorials/Git-Essential-Training/100222-2.html) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,45 @@ | ||
| # Reading material for the third lecture: | ||
| # Reading material for the second lecture: | ||
|
|
||
| ``` | ||
| In week three we will discuss the following topics: | ||
| • Git work flow | ||
| • Advanced data types [Objects] | ||
| • Conditions | ||
| • Statements vs Expressions | ||
| • Loops (for/while) | ||
| • Functions | ||
| In week two we will discuss the following topics: | ||
| • Intro JavaScript (What is it, where can you use it for) | ||
| • Variables [var, let, const] | ||
| • Basic Data types [Strings, Numbers, Arrays, Booleans] | ||
| • Operators | ||
| • Naming conventions | ||
| ``` | ||
|
|
||
| ### Here are resources that we like you to read as a preparation for the coming lecture: | ||
| ## How to get started | ||
| 1. Download and install the *LTS* version of NodeJS - https://nodejs.org/en/download/ | ||
| To test that it was installed and running properly, go to your terminal and run the command: node -v You should get the node version printed on your terminal, for example, v8.9.1 | ||
| 2. Although you are free to make you own choice of text/code editor to use during class and homework, we have good experiences with Microsoft's free VSCode editor, which is supported on Windows, Mac and Linux. Please refer to our [VSCode Tips](./../../../../fundamantals/VSCodeTips/README.md) for more information. | ||
|
|
||
| ## Here are resources that we like you to read as a preparation for the coming lecture: | ||
|
|
||
| Please watch the following parts of the course, [Programming Foundations Fundamentals](https://www.lynda.com/Programming-Foundations-tutorials/Welcome/83603/90426-4.html) on Lynda.com (if you don't have access to Lynda yet ask Gijs): | ||
| <br>4. Writing Conditional Code | ||
| <br>5. Modular Code | ||
| <br>6. Iteration: Writing Loops | ||
| <br>7. More About Strings | ||
| <br>8. Collections | ||
| <br>11. When Things Go Wrong | ||
|
|
||
| ## Read | ||
| - [Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/prototype) | ||
| Only watch the below chapters: | ||
|
|
||
| 0. Introduction | ||
| 1. Programming Basics | ||
| 2. Core Programming Syntax | ||
| 3. Variables and Data Types | ||
|
|
||
| ## From the book _A Smarter Way To Learn JavaScript_ please read: | ||
| - 'Loops' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 18-20 | ||
| - 'Functions' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 35 - 38 | ||
| - Functions ~ http://eloquentjavascript.net/03_functions.html | ||
| - 'Objects' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 69 - 75 | ||
| - 'Conditions' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 10 - 14 | ||
| - Program structure ~ http://eloquentjavascript.net/02_program_structure.html | ||
| - Read this ~ http://speakingjs.com/es5/ch01.html read up to and including the *Strings* chapter (it’s okay if you don’t understand all of it yet, we will cover these concepts in class as well. Do make sure to write or document the questions you have so we can discuss them in class) | ||
|
|
||
| #### Git work flow | ||
| - Check out this video of Daan to see how we use Git Workflow to hand in Homework (from now on): https://www.youtube.com/watch?v=-o0yomUVVpU&index=2&list=PLVYDhqbgYpYUGxRdtQdYVE5Q8h3bt6SIA | ||
| - Read the entire JavaScript Introduction at MDN~ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Introduction | ||
|
|
||
| ### Review | ||
| - Helpful resource: http://jsbooks.revolunet.com/ (here you can find tons of free JavaScript books online) | ||
|
|
||
| Review the topics of week 2: | ||
| - The 50 best websites to Learn JavaScript: http://www.codeconquest.com/blog/top-50-websites-to-learn-javascript/ | ||
|
|
||
| - [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md) | ||
| - [Values](./../../../../fundamentals/blob/master/fundamentals/values.md) | ||
| - [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md) | ||
| - [Naming conventions](../fundamentals/naming_conventions.md) | ||
| :star: You can also already go through the topics of the upcoming lecture. :star: | ||
|
|
||
| - Intro JavaScript (What is it, where can you use it for) | ||
| - [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)<br> | ||
| - [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)<br> | ||
| - [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)<br> | ||
| - [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md) | ||
|
|
||
| _Please go through the material and come to class prepared!_ | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,52 +1,51 @@ | ||
| # Reading material for the fourth lecture: | ||
| # Reading material for the third lecture: | ||
|
|
||
| ``` | ||
| In week three we will discuss the following topics: | ||
| • Capturing user input | ||
| • Basic DOM manipulations[img src, innerHTML] | ||
| • Code debugging using the browser | ||
| • Events | ||
| • Code commenting | ||
| • Structuring code files | ||
| • Git work flow | ||
| • Advanced data types [Objects] | ||
| • Conditions | ||
| • Statements vs Expressions | ||
| • Loops (for/while) | ||
| • Functions | ||
| ``` | ||
|
|
||
| - Chrome DevTools [Debugging](https://developers.google.com/web/tools/chrome-devtools/?utm_source=dcc&utm_medium=redirect&utm_campaign=2016q3) | ||
| ### Here are resources that we like you to read as a preparation for the coming lecture: | ||
|
|
||
| ### A Refresher from some previous covered topics: | ||
| Please watch the following parts of the course, [Programming Foundations Fundamentals](https://www.lynda.com/Programming-Foundations-tutorials/Welcome/83603/90426-4.html) on Lynda.com (if you don't have access to Lynda yet ask Gijs): | ||
| <br>4. Writing Conditional Code | ||
| <br>5. Modular Code | ||
| <br>6. Iteration: Writing Loops | ||
| <br>7. More About Strings | ||
| <br>8. Collections | ||
| <br>11. When Things Go Wrong | ||
|
|
||
| Links to MDN (Mozilla Developer Network) topics: | ||
| ## Read | ||
| - [Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/prototype) | ||
|
|
||
| - [Strict mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) | ||
| ## From the book _A Smarter Way To Learn JavaScript_ please read: | ||
| - 'Loops' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 18-20 | ||
| - 'Functions' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 35 - 38 | ||
| - Functions ~ http://eloquentjavascript.net/03_functions.html | ||
| - 'Objects' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 69 - 75 | ||
| - 'Conditions' of [_A Smarter Way To Learn JavaScript_](https://github.com/Sharique-Hasan/SaylaniBatch2-JavaScript/blob/master/A%20Smarter%20Way%20to%20Learn%20JavaScript.pdf) : Chapters 10 - 14 | ||
| - Program structure ~ http://eloquentjavascript.net/02_program_structure.html | ||
|
|
||
| ## Review | ||
| #### Git work flow | ||
| - Check out this video of Daan to see how we use Git Workflow to hand in Homework (from now on): https://www.youtube.com/watch?v=-o0yomUVVpU&index=2&list=PLVYDhqbgYpYUGxRdtQdYVE5Q8h3bt6SIA | ||
|
|
||
| Go through the topics of week 2-4. | ||
| ### Review | ||
|
|
||
| ### Week 2 | ||
| Review the topics of week 2: | ||
|
|
||
| - [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md) | ||
| - [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md) | ||
| - [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md) | ||
| - [Values](./../../../../fundamentals/blob/master/fundamentals/values.md) | ||
| - [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md) | ||
| - [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md) | ||
| - [Naming conventions](./../../../../fundamentals/naming_conventions.md) | ||
|
|
||
| ### Week 3 | ||
| _Please go through the material and come to class prepared!_ | ||
|
|
||
| - [Advanced data types (objects)](./../../../../fundamentals/blob/master/fundamentals/objects.md) | ||
| - [Conditional execution](./../../../../fundamentals/blob/master/fundamentals/conditional_execution.md) <br> | ||
| - [Statements vs Expressions](./../../../../fundamentals/blob/master/fundamentals/statements_expressions.md)<br> | ||
| - [Loops (for/while)](./../../../../fundamentals/blob/master/fundamentals/loops.md) | ||
| - [Functions](./../../../../fundamentals/blob/master/fundamentals/functions.md) | ||
| - [Scope](./../../../../fundamentals/blob/master/fundamentals/scope.md) | ||
|
|
||
| ### Week 4 | ||
|
|
||
| - Capturing user input | ||
| - Events | ||
| - [Basic DOM manipulations (img src, innerHTML)](./../../../../fundamentals/blob/master/fundamentals/DOM_manipulation.md) | ||
| - Code debugging using the browser | ||
| - [Code commenting](./../../../../fundamentals/blob/master/fundamentals/code_commenting.md) | ||
| - Structuring code files | ||
| - [Code formatting](./../../../../fundamentals/blob/master/fundamentals/code_formatting.md) | ||
|
|
||
|
|
||
| _Please go through the material and come to class prepared!_ |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This link should point to the JavaScript2 repo README