Skip to content

Commit

Permalink
Merge pull request Techtonica#2054 from Techtonica/lesson-edits
Browse files Browse the repository at this point in the history
Update curriculum for week 2
  • Loading branch information
daaimah123 authored Feb 2, 2024
2 parents 7c0c59c + ef56a00 commit e308d5d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dev-tools/command-line-advanced.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Advanced Command Line

# Note: I do not expect you to remember or fully understand all of these commands right now. I just want you to get exposed to the power of the command line and see what is possible. Feel free to skim this material but don't worry about a deep dive right now.
#### Note: We do not expect you to remember or fully understand all of these commands right now. We just want you to get exposed to the power of the command line and see what is possible. Feel free to skim this material but don't worry about a deep dive right now.

### Week 2 Keywords and Questions

Expand Down
6 changes: 3 additions & 3 deletions reading-and-writing-documentation/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ This is such an important topic in software development that many IDE companies

1. Find the JavaScript documentation online.

2. Locate the entry for the `.concat()` array method. What does it do? Open a new file in [REPL.it](http://www.repl.it) and use the `.concat()` method correctly on an example of your choosing.
2. Locate the entry for the `.concat()` array method. What does it do? Open a new file in [Replit](http://www.repl.it) and use the `.concat()` method correctly on an example of your choosing.

3. Locate the entry for the `.fill()` array method. What does it do? Open a new file in [REPL.it](http://www.repl.it) and use the `.fill()` method correctly on an example of your choosing.
3. Locate the entry for the `.fill()` array method. What does it do? Open a new file in [Replit](http://www.repl.it) and use the `.fill()` method correctly on an example of your choosing.

4. Locate the entry for the `.reverse()` array method. What does it do? Open a new file in [REPL.it](http://www.repl.it) and use the `.reverse()` method correctly on an example of your choosing.
4. Locate the entry for the `.reverse()` array method. What does it do? Open a new file in [Replit](http://www.repl.it) and use the `.reverse()` method correctly on an example of your choosing.

### Challenge

Expand Down
4 changes: 2 additions & 2 deletions web/media-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Everyone. Some companies with very responsive sites are [Etsy](https://www.etsy.
### Materials

- [Media Query Lesson Slideshow](https://docs.google.com/presentation/d/1ANf64yQ_Nxtul45xofh8cpjWF23UM6c8m8kJQHQyx_Q/edit?usp=sharing)
- [5 min Video: What is a media query?](https://youtu.be/2KL-z9A56SQ)
- [15 min Video: https://www.youtube.com/watch?v=4Av7ma4v46Y](https://youtu.be/4Av7ma4v46Y)
- [What is a media query? (5 min video)](https://youtu.be/2KL-z9A56SQ)
- [Using CSS Media Queries To Create Responsive Web Layouts (15 min video)](https://youtu.be/4Av7ma4v46Y)
- [MDN view on using media query](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries)

### Lesson / Guided Practice
Expand Down
8 changes: 4 additions & 4 deletions writing-readable-code/writing-readable-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

### Lesson

- Video walkthrough of lesson slides [Writing Readable Code (11 min)](https://drive.google.com/file/d/1kJU88vbUNmP9aILR61nmXdV7UDqEpuCM/view?usp=sharing)
- Video walkthrough of lesson slides [Writing Readable Code (11 min video)](https://drive.google.com/file/d/1kJU88vbUNmP9aILR61nmXdV7UDqEpuCM/view?usp=sharing)
- Read through lesson slides [Writing Readable Code](https://docs.google.com/presentation/d/1USOZJSzwXmSYepjwrE9r9ky_fmQ8VPE7bshjsBoDsZM/edit?usp=sharing)

### Common Mistakes / Misconceptions
Expand All @@ -33,13 +33,13 @@

### Independent Practice

1. Using [REPL.it](http://www.repl.it) write a function called findMax that takes in 3 integers as parameters and returns the largest of the 3 integers.
1. Using [Replit](http://www.repl.it) write a function called findMax that takes in 3 integers as parameters and returns the largest of the 3 integers.

2. Using [REPL.it](http://www.repl.it) write a function called bigWord that takes in a word as a string and returns True if the word has at least 10 letters and False if the word has 9 or fewer letters.
2. Using [Replit](http://www.repl.it) write a function called bigWord that takes in a word as a string and returns True if the word has at least 10 letters and False if the word has 9 or fewer letters.

### Supplemental Materials

- [Writing Readable JavaScript (video 24 min)](https://www.youtube.com/watch?v=8WF4AjM-XW8) - This talk shares the principles of writing clear, idiomatic JavaScript code, illustrated with real-world examples.
- [Writing Readable JavaScript (24 min video)](https://www.youtube.com/watch?v=8WF4AjM-XW8) - This talk shares the principles of writing clear, idiomatic JavaScript code, illustrated with real-world examples.

### Check for Understanding

Expand Down

0 comments on commit e308d5d

Please sign in to comment.