Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a4ff8fa

Browse files
committed
added homework submission video
1 parent 496e039 commit a4ff8fa

File tree

3 files changed

+38
-21
lines changed

3 files changed

+38
-21
lines changed

README.md

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ This should be your mindset when you're learning how to think : **I'm learning h
2121

2222
## Before you start!
2323

24+
### 1. Install some new software!
25+
2426
In order to test your JavaScript code, you'll be using software that will execute your files from the command line. This software is called [Node.js](https://nodejs.org/en/download/). Download the Long-Term Support (LTS) version for your specific operating system.
2527

26-
- For Windows, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1-x86.msi)
27-
- For Mac, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1.pkg)
28-
- For Linux, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1-linux-x64.tar.xz)
28+
- For Windows, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1-x86.msi)
29+
- For Mac, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1.pkg)
30+
- For Linux, click [here](https://nodejs.org/dist/v12.16.1/node-v12.16.1-linux-x64.tar.xz)
2931

3032
After you've installed it, go to your command line interface. Type in the following command:
3133

@@ -35,34 +37,47 @@ node --version
3537

3638
It should show you version `v12.16.1` or higher.
3739

38-
## Learning goals
40+
### 2. A new way of submitting homework!
3941

40-
In order to successfully complete this module you will need to master the following:
42+
Starting from this module you'll submit homework in a different way. You will be only using GIT and GitHub and work **like a real developer would**: pushing code from your computer to GitHub and making pull requests!
4143

42-
- Have an idea of what `computer programming` is
43-
- Know the basic building blocks of `JavaScript`
44-
- Correctly write and use `variables`, `functions` and `loops`
45-
- Understand the `control flow`
46-
47-
## How to use this repository
44+
Before you start with the homework, make a `fork` of the following repository: [HackYourHomework/JavaScript1](https://www.github.com/hackyourhomework/javascript1). You'll always use the **HackYourHomework** version of the module repository whenever you have to submit your homework.
4845

49-
This repository consists of 3 parts:
46+
Here are the steps to get started:
5047

51-
1. `Reading materials`: this document contains all the required theory you need to know _**while**_ you're coding. It's meant as both study material and as a reference to understand what you're doing.
52-
2. `Homework`: this document contains the instructions for each week's homework.
53-
3. `Lesson Plans`: this part is meant for teachers as a reference. However, as a student don't be shy to take a look at it as well!
54-
55-
After your first class you should start with checking the `reading materials` for that week. So, for the first time it's the [Week 1 Reading](/Week1/README.md). Study all the concepts and try to get the gist of everything. After, you can get started with the `homework` for that week.
56-
57-
Before you start with the homework, make sure you've made a `fork` of the right repository: [HackYourHomework/JavaScript1](https://www.github.com/hackyourhomework/javascript1). Once you've cloned it to your computer you can proceed by making `GIT` branches for each week. Start at the `master` branch and execute the following (note that they're 3 different commands):
48+
1. `fork` the HackYourHomework repository to your personal account.
49+
2. `clone` your forked repository to your computer.
50+
3. Make `GIT` branches for each week. Start at the `master` branch and execute the following (note that they're 3 different commands):
5851

5952
```console
6053
foo@bar:~$ git branch week1-YOURNAME
6154
foo@bar:~$ git branch week2-YOURNAME
6255
foo@bar:~$ git branch week3-YOURNAME
6356
```
6457

65-
Then execute `git checkout week1` and you can get started!
58+
4. `checkout` to `week1-YOURNAME`
59+
5. Get started with making your homework!
60+
61+
Here's a video in order that shows you how it's done: [How to Submit Your Homework](https://www.youtube.com/watch?v=CpYARPYGQU8)
62+
63+
## Learning goals
64+
65+
In order to successfully complete this module you will need to master the following:
66+
67+
- Have an idea of what `computer programming` is
68+
- Know the basic building blocks of `JavaScript`
69+
- Correctly write and use `variables`, `functions` and `loops`
70+
- Understand the `control flow`
71+
72+
## How to use this repository
73+
74+
This repository consists of 3 essential parts:
75+
76+
1. `README`: this document contains all the required theory you need to understand **before** class. It's also meant as a reference to understand what you're doing while you're coding.
77+
2. `MAKEME`: this document contains the instructions for each week's homework.
78+
3. `LESSONPLAN`: this document is meant for teachers as a reference. However, as a student don't be shy to take a look at it as well!
79+
80+
**Before** the first class of the module you should start off with the [Week 1 Reading](/Week1/README.md). Study all the concepts and try to get the gist of everything. After your first class, you can get started with the [Week 1 Homework](/Week1/MAKEME.md).
6681

6782
If you have any questions or if something is not entirely clear ¯\\\_(ツ)\_/¯, please ask/comment on Slack!
6883

assets/submit-homework.png

1.12 MB
Loading

hand-in-homework-guide.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ From this module on you'll submit your homework only using GIT and GitHub.
44

55
## 1. GitHub homework guide
66

7-
Follow the walkthrough to learn how to submit your homework for each week:
7+
<a href="http://www.youtube.com/watch?feature=player_embedded&v=CpYARPYGQU8" target="_blank"><img src="./assets/submit-homework.png" width="400" height="250" alt="HYF Video" /></a>
8+
9+
Watch the video (by clicking the image) or go through the following walk-through to learn how to submit your homework:
810

911
ONE TIME ONLY (START OF EVERY MODULE)
1012

0 commit comments

Comments
 (0)