Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.

Commit 8d5235d

Browse files
committed
Update reading
1 parent 7c7955f commit 8d5235d

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
2. Clone it to your machine
55
3. Open it in your code editor.
66
4. In the terminal, run this command to add CodeYourFuture as an `upstream` remote.
7-
`git remote add upstream git@github.com:CodeYourFuture/js-exercises.git`
7+
`git remote add upstream git@github.com:CodeYourFuture/JavaScript-Code-1-Homework.git`
88
5. Run the command `git remote -v`. You should have two remotes:
99

10-
* `origin` pointing to your github repo, and
11-
* `upstream` pointing to CodeYourFuture
10+
- `origin` pointing to your github repo, and
11+
- `upstream` pointing to CodeYourFuture
1212

1313
During the class (and for homework), we will go through each folder, reading the README and completing the exercises.
1414

1515
For **homework**, we expect you to `add` and `commit` your changes, and `push` them to your own repo (`origin`). You will then need to open a `pull request` so we can review your code.
1616

17-
### Opening a pull request
17+
## Opening a pull request
1818

1919
A pull request is a request to merge one branch into another. In this case you will request to have the `master` branch of your repo, merged into the `master` branch of this (`upstream`) repo.
2020

@@ -23,6 +23,6 @@ We won't actually merge your branch, but the pull request will allow us to view
2323
1. Add the files you have changed using `git add .`
2424
2. Commit your changes using `git commit` (you can add and commit changes multiple times as you complete exercises)
2525
3. Push your changes to your own repo using `git push` (this automatically pushes to the `origin` remote)
26-
4. Go to https://github.com/CodeYourFuture/js-exercises and click the **New pull request** button (this create a request to merge your `origin/master` to our `remote/master`)
26+
4. Go to https://github.com/CodeYourFuture/JavaScript-Code-1-Homework and click the **New pull request** button (this create a request to merge your `origin/master` to our `remote/master`)
2727
5. Give your pull request a title e.g. `Daniel's homework`
2828
6. Click **Create pull request**

week-2/3-extra/2-readinglist.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## Reading List
2+
3+
To challenge yourself even further, you can get ahead for next week's class by reading some of the below documentation:
4+
5+
- [ ] More on the node REPL: https://hackernoon.com/know-node-repl-better-dbd15bca0af6
6+
- [ ] `while` loops: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/while
7+
- [ ] `for` loops: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for
8+
- [ ] Arrays: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
9+
- [ ] What are algorithms: https://www.khanacademy.org/computing/computer-science/algorithms/intro-to-algorithms/v/what-are-algorithms
10+
- [ ] Bubble sort: https://humanwhocodes.com/blog/2009/05/26/computer-science-in-javascript-bubble-sort/

week-3/3-extra/2-reading-list.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Reading List
2+
3+
To challenge yourself even further, you can get ahead for next week's class by reading some of the below documentation:
4+
5+
- [ ] Arrow functions: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
6+
- [ ] Anonymous vs named functions: https://blog.scottlogic.com/2011/06/10/javascript-anonymous-functions.html
7+
- [ ] Different ways of creating functions: https://www.w3schools.com/js/js_function_definition.asp
8+
- [ ] Introduction to object literals: http://dyn-web.com/tutorials/object-literal/
9+
- [ ] Explanation of callbacks: https://codeburst.io/javascript-what-the-heck-is-a-callback-aba4da2deced

0 commit comments

Comments
 (0)