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

Skip to content

Commit c080165

Browse files
committed
fixed realtive paths to fundamentals and vs code
1 parent 037d0c1 commit c080165

File tree

6 files changed

+37
-40
lines changed

6 files changed

+37
-40
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Here you can find course content and homework for the JavaScript 1 module
88
|----|-----|----|--------|
99
|0.|Preparation for your first JavaScript session|[Pre-reading](/Week0/README.md)|-|
1010
|1.|Git Session with Unmesh|[Reading Week 1](/Week1/README.md) | [Homework Week 1](/Week1/MAKEME.md)|
11-
|2.|• Intro JavaScript (What is it, where can you use it for)<br>• [Variables (var, let, const)](fundamentals/variables.md)<br>• [Basic Data types (Strings, Numbers, Arrays, Booleans)](fundamentals/values.md)<br>• [Operators](fundamentals/operators.md)<br>• [Naming conventions](fundamentals/naming_conventions.md)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)|
12-
|3.|• Git work flow :smiling_imp:<br>• [Advanced data types (objects)](fundamentals/objects.md) <br>• [Conditional execution](fundamentals/conditional_execution.md) <br>• [Statements vs Expressions](fundamentals/statements_expressions.md)<br> • [Loops (for/while)](fundamentals/loops.md)<br>• [Functions](fundamentals/functions.md) <br>• [Scope](fundamentals/scope.md)|[Reading Week 3](/Week3/README.md)|[Homework Week 3](/Week3/MAKEME.md)|
11+
|2.|• Intro JavaScript (What is it, where can you use it for)<br>• [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)|[Reading Week 2](/Week2/README.md)|[Homework Week 2](/Week2/MAKEME.md)|
12+
|3.|• Git work flow :smiling_imp:<br>• [Advanced data types (objects)](../../../fundamentals/blob/master/fundamentals/objects.md) <br>• [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)<br>• [Functions](../../../fundamentals/blob/master/fundamentals/functions.md) <br>• [Scope](../../../fundamentals/blob/master/fundamentals/scope.md)|[Reading Week 3](/Week3/README.md)|[Homework Week 3](/Week3/MAKEME.md)|
1313

1414
__Kind note:__
1515

Week1/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ In week two we will discuss the following topics:
1212
## How to get started
1313
1. Download and install the *LTS* version of NodeJS - https://nodejs.org/en/download/
1414
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
15-
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.
15+
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](./../../../../fundamentals/blob/master/VSCodeTips/README.md) for more information.
1616

1717
## Here are resources that we like you to read as a preparation for the coming lecture:
1818

@@ -36,10 +36,10 @@ Only watch the below chapters:
3636
:star: You can also already go through the topics of the upcoming lecture. :star:
3737

3838
- Intro JavaScript (What is it, where can you use it for)
39-
- [Variables (var, let, const)](../fundamentals/variables.md)<br>
40-
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](../fundamentals/values.md)<br>
41-
- [Operators](../fundamentals/operators.md)<br>
42-
- [Naming conventions](../fundamentals/naming_conventions.md)
39+
- [Variables (var, let, const)](../../../../fundamentals/blob/master/fundamentals/fundamentals/variables.md)<br>
40+
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)<br>
41+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)<br>
42+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
4343

4444
_Please go through the material and come to class prepared!_
4545

Week2/MAKEME.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ If you solve the FreeCodeCamp challenges and they are new concepts to you and yo
170170

171171
:star: Additional resources and review: :star:
172172

173-
- [Variables](../fundamentals/variables.md)
174-
- [Basic value types](../fundamentals/values.md)
175-
- [Operators](../fundamentals/operators.md)
176-
- [Naming conventions](../fundamentals/naming_conventions.md)
173+
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
174+
- [Basic value types](./../../../../fundamentals/blob/master/fundamentals/values.md)
175+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
176+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)

Week2/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ Please watch the following parts of the course, [Programming Foundations Fundame
3838

3939
Review the topics of week 2:
4040

41-
- [Variables](../fundamentals/variables.md)
42-
- [Values](../fundamentals/values.md)
43-
- [Operators](../fundamentals/operators.md)
41+
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
42+
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
43+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
4444
- [Naming conventions](../fundamentals/naming_conventions.md)
4545

4646
_Please go through the material and come to class prepared!_

Week3/MAKEME.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ Provide feedback to the homework of last week to one of your fellow students. Yo
2323
- Have a look at [The Secret Life of JavaScript Primitives](https://javascriptweblog.wordpress.com/2010/09/27/the-secret-life-of-javascript-primitives/)
2424

2525
- Review the topics of last week:
26-
- [Variables](../fundamentals/variables.md)
27-
- [Values](../fundamentals/values.md)
28-
- [Operators](../fundamentals/operators.md)
29-
- [Naming conventions](../fundamentals/naming_conventions.md)
26+
- [Variables](./../../../../fundamentals/blob/master/fundamentals/variables.md)
27+
- [Values](./../../../../fundamentals/blob/master/fundamentals/values.md)
28+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
29+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
3030

3131
- Go through the topics of this week:
3232
- Git work flow
33-
- [Advanced data types (Objects)](../fundamentals/objects.md)
34-
- [Conditional execution](../fundamentals/conditional_execution.md)
35-
- [Statements vs Expressions](../fundamentals/statements_expressions.md)
36-
- [Loops (for/while)](../fundamentals/loops.md)
37-
- [Functions](../fundamentals/functions.md)
38-
- [Scope](../fundamentals/scope.md)
33+
- [Advanced data types (Objects)](./../../../../fundamentals/blob/master/fundamentals/objects.md)
34+
- [Conditional execution](./../../../../fundamentals/blob/master/fundamentals/conditional_execution.md)
35+
- [Statements vs Expressions](./../../../../fundamentals/blob/master/fundamentals/statements_expressions.md)
36+
- [Loops (for/while)](./../../../../fundamentals/blob/master/fundamentals/loops.md)
37+
- [Functions](./../../../../fundamentals/blob/master/fundamentals/functions.md)
38+
- [Scope](./../../../../fundamentals/blob/master/fundamentals/scope.md)
3939

4040
## Step 2: Watch
4141

Week3/README.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,29 @@ Go through the topics of week 2-4.
2424

2525
### Week 2
2626

27-
- [Variables (var, let, const)](../fundamentals/variables.md)
28-
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](../fundamentals/values.md)
29-
- [Operators](../fundamentals/operators.md)
30-
- [Naming conventions](../fundamentals/naming_conventions.md)
27+
- [Variables (var, let, const)](./../../../../fundamentals/blob/master/fundamentals/variables.md)
28+
- [Basic Data types (Strings, Numbers, Arrays, Booleans)](./../../../../fundamentals/blob/master/fundamentals/values.md)
29+
- [Operators](./../../../../fundamentals/blob/master/fundamentals/operators.md)
30+
- [Naming conventions](./../../../../fundamentals/blob/master/fundamentals/naming_conventions.md)
3131

3232
### Week 3
3333

34-
- [Advanced data types (objects)](../fundamentals/objects.md)
35-
- [Conditional execution](../fundamentals/conditional_execution.md) <br>
36-
- [Statements vs Expressions](../fundamentals/statements_expressions.md)<br>
37-
- [Loops (for/while)](../fundamentals/loops.md)
38-
- [Functions](../fundamentals/functions.md)
39-
- [Scope](../fundamentals/scope.md)
34+
- [Advanced data types (objects)](./../../../../fundamentals/blob/master/fundamentals/objects.md)
35+
- [Conditional execution](./../../../../fundamentals/blob/master/fundamentals/conditional_execution.md) <br>
36+
- [Statements vs Expressions](./../../../../fundamentals/blob/master/fundamentals/statements_expressions.md)<br>
37+
- [Loops (for/while)](./../../../../fundamentals/blob/master/fundamentals/loops.md)
38+
- [Functions](./../../../../fundamentals/blob/master/fundamentals/functions.md)
39+
- [Scope](./../../../../fundamentals/blob/master/fundamentals/scope.md)
4040

4141
### Week 4
4242

4343
- Capturing user input
4444
- Events
45-
- [Basic DOM manipulations (img src, innerHTML)](../fundamentals/DOM_manipulation.md)
45+
- [Basic DOM manipulations (img src, innerHTML)](./../../../../fundamentals/blob/master/fundamentals/DOM_manipulation.md)
4646
- Code debugging using the browser
47-
- [Code commenting](../fundamentals/code_commenting.md)
47+
- [Code commenting](./../../../../fundamentals/blob/master/fundamentals/code_commenting.md)
4848
- Structuring code files
49-
- [Code formatting](../fundamentals/code_formatting.md)
49+
- [Code formatting](./../../../../fundamentals/blob/master/fundamentals/code_formatting.md)
5050

5151

5252
_Please go through the material and come to class prepared!_
53-
54-
55-

0 commit comments

Comments
 (0)