From db2ab4b2dfd0493b8753d251685a3c357ce8549c Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Mon, 16 Nov 2020 11:26:20 -0500 Subject: [PATCH 1/2] fixing assignment link --- .../1-intro-to-programming-languages/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-getting-started-lessons/1-intro-to-programming-languages/README.md b/1-getting-started-lessons/1-intro-to-programming-languages/README.md index 53993f45..92582253 100644 --- a/1-getting-started-lessons/1-intro-to-programming-languages/README.md +++ b/1-getting-started-lessons/1-intro-to-programming-languages/README.md @@ -189,4 +189,4 @@ Study a bit on the different languages available to the programmer. Try to write ## Assignment -[Reading the Docs](1-getting-started-lessons/1-intro-to-programming-languages/assignment.md) +[Reading the Docs](assignment.md) From 16af4e7db3bc743b59c6524aa0308279a18026fd Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Mon, 16 Nov 2020 11:56:14 -0500 Subject: [PATCH 2/2] assignment links --- 1-getting-started-lessons/3-accessibility/README.md | 2 +- 2-js-basics/1-data-types/README.md | 2 +- 2-js-basics/2-functions-methods/README.md | 2 +- 2-js-basics/3-making-decisions/README.md | 2 +- 2-js-basics/4-arrays-loops/README.md | 2 +- 3-terrarium/1-intro-to-html/README.md | 2 +- 3-terrarium/2-intro-to-css/README.md | 2 +- 3-terrarium/3-intro-to-DOM-and-closures/README.md | 2 +- 4-typing-game/typing-game/README.md | 2 +- 4-typing-game/{ => typing-game}/assignment.md | 0 5-browser-extension/1-about-browsers/README.md | 2 +- 5-browser-extension/2-forms-browsers-local-storage/README.md | 2 +- .../3-background-tasks-and-performance/README.md | 2 +- 6-space-game/1-introduction/README.md | 2 +- 6-space-game/2-drawing-to-canvas/README.md | 2 +- 6-space-game/3-moving-elements-around/README.md | 2 +- 6-space-game/4-collision-detection/README.md | 2 +- 6-space-game/5-keeping-score/README.md | 2 +- 6-space-game/6-end-condition/README.md | 2 +- 7-bank-project/1-template-route/README.md | 2 +- 7-bank-project/2-forms/README.md | 2 +- 7-bank-project/3-data/README.md | 2 +- 7-bank-project/4-state-management/README.md | 2 +- 23 files changed, 22 insertions(+), 22 deletions(-) rename 4-typing-game/{ => typing-game}/assignment.md (100%) diff --git a/1-getting-started-lessons/3-accessibility/README.md b/1-getting-started-lessons/3-accessibility/README.md index e8faa24e..601b0de1 100644 --- a/1-getting-started-lessons/3-accessibility/README.md +++ b/1-getting-started-lessons/3-accessibility/README.md @@ -215,6 +215,6 @@ Many governments have laws regarding accessibility requirements. Read up on your ## Assignment -[Analyze a non-accessible web site](1-getting-started-lessons/3-accessibility/assignment.md) +[Analyze a non-accessible web site](assignment.md) Credits: [Turtle Ipsum](https://github.com/Instrument/semantic-html-sample) by Instrument diff --git a/2-js-basics/1-data-types/README.md b/2-js-basics/1-data-types/README.md index 94135c12..bfda8330 100644 --- a/2-js-basics/1-data-types/README.md +++ b/2-js-basics/1-data-types/README.md @@ -193,4 +193,4 @@ Take a look at [this list of JavaScript exercises](https://css-tricks.com/snippe ## Assignment -[Data Types Practice](2-js-basics/1-data-types/assignment.md) \ No newline at end of file +[Data Types Practice](assignment.md) \ No newline at end of file diff --git a/2-js-basics/2-functions-methods/README.md b/2-js-basics/2-functions-methods/README.md index 8818dbda..ac498ddc 100644 --- a/2-js-basics/2-functions-methods/README.md +++ b/2-js-basics/2-functions-methods/README.md @@ -189,4 +189,4 @@ It's worth [reading up a little more on arrow functions](https://developer.mozil ## Assignment -[Fun with Functions](2-js-basics/2-functions-methods/assignment.md) \ No newline at end of file +[Fun with Functions](assignment.md) \ No newline at end of file diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 1c8207e4..9c0f770c 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -172,4 +172,4 @@ Go through Josh Comeau's wonderful [operator lookup](https://joshwcomeau.com/ope ## Assignment -[Operators](2-js-basics/3-making-decisions/assignment.md) +[Operators](assignment.md) diff --git a/2-js-basics/4-arrays-loops/README.md b/2-js-basics/4-arrays-loops/README.md index b1f1bebd..b4dc64e1 100644 --- a/2-js-basics/4-arrays-loops/README.md +++ b/2-js-basics/4-arrays-loops/README.md @@ -123,4 +123,4 @@ Arrays in JavaScript have many methods attached to them, extremely useful for da ## Assignment -[Loop an Array](2-js-basics/4-arrays-loops/assignment.md) +[Loop an Array](assignment.md) diff --git a/3-terrarium/1-intro-to-html/README.md b/3-terrarium/1-intro-to-html/README.md index 3bc3e8a5..a565fc93 100644 --- a/3-terrarium/1-intro-to-html/README.md +++ b/3-terrarium/1-intro-to-html/README.md @@ -220,4 +220,4 @@ Learn more about building sites for the web and mobile devices at [Microsoft Lea ## Assignment -[Practice your HTML: Build a blog mockup](3-terrarium/1-intro-to-html/assignment.md) +[Practice your HTML: Build a blog mockup](assignment.md) diff --git a/3-terrarium/2-intro-to-css/README.md b/3-terrarium/2-intro-to-css/README.md index 4ab3d07b..c6e25df7 100644 --- a/3-terrarium/2-intro-to-css/README.md +++ b/3-terrarium/2-intro-to-css/README.md @@ -260,4 +260,4 @@ CSS seems deceptively straightforward, but there are many challenges when trying ## Assignment -[CSS Refactoring](3-terrarium/2-intro-to-css/assignment.md) +[CSS Refactoring](assignment.md) diff --git a/3-terrarium/3-intro-to-DOM-and-closures/README.md b/3-terrarium/3-intro-to-DOM-and-closures/README.md index 5ba4e142..05ee7194 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/README.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/README.md @@ -211,5 +211,5 @@ Always check browser capabilities using [CanIUse.com](https://caniuse.com/). ## Assignment -[Work a bit more with the DOM](3-terrarium/3-intro-to-DOM-and-closures/assignment.md) +[Work a bit more with the DOM](assignment.md) diff --git a/4-typing-game/typing-game/README.md b/4-typing-game/typing-game/README.md index 53977b2e..692669a6 100644 --- a/4-typing-game/typing-game/README.md +++ b/4-typing-game/typing-game/README.md @@ -333,4 +333,4 @@ Read up on [all the events available](https://developer.mozilla.org/en-US/docs/W ## Assignment -[Create a new keyboard game](4-typing-game/typing-game/assignment.md) +[Create a new keyboard game](assignment.md) diff --git a/4-typing-game/assignment.md b/4-typing-game/typing-game/assignment.md similarity index 100% rename from 4-typing-game/assignment.md rename to 4-typing-game/typing-game/assignment.md diff --git a/5-browser-extension/1-about-browsers/README.md b/5-browser-extension/1-about-browsers/README.md index 1c1e165a..f838eeb2 100644 --- a/5-browser-extension/1-about-browsers/README.md +++ b/5-browser-extension/1-about-browsers/README.md @@ -164,5 +164,5 @@ In this lesson you learned a little about the history of the web browser; take t ## Assignment -[Restyle your extension](5-browser-extension/1-about-browsers/assignment.md) +[Restyle your extension](assignment.md) diff --git a/5-browser-extension/2-forms-browsers-local-storage/README.md b/5-browser-extension/2-forms-browsers-local-storage/README.md index c9875fa7..5e75b983 100644 --- a/5-browser-extension/2-forms-browsers-local-storage/README.md +++ b/5-browser-extension/2-forms-browsers-local-storage/README.md @@ -218,5 +218,5 @@ You learned about LocalStorage and APIs in this lesson, both very useful for the ## Assignment -[Adopt an API](5-browser-extension/2-forms-browsers-local-storage/assignment.md) +[Adopt an API](assignment.md) diff --git a/5-browser-extension/3-background-tasks-and-performance/README.md b/5-browser-extension/3-background-tasks-and-performance/README.md index 881663c3..70553c09 100644 --- a/5-browser-extension/3-background-tasks-and-performance/README.md +++ b/5-browser-extension/3-background-tasks-and-performance/README.md @@ -157,5 +157,5 @@ Investigate some of the ways that browsers gauge web performance by looking thro ## Assignment -[Analyze a site for performance](5-browser-extension/3-background-tasks-and-performance/assignment.md) +[Analyze a site for performance](assignment.md) diff --git a/6-space-game/1-introduction/README.md b/6-space-game/1-introduction/README.md index beb646e4..ed67aee1 100644 --- a/6-space-game/1-introduction/README.md +++ b/6-space-game/1-introduction/README.md @@ -221,4 +221,4 @@ Learn more about Pub/Sub by [reading about it](https://docs.microsoft.com/en-us/ ## Assignment -[Mock up a game](/6-space-game/1-introduction/assignment.md) +[Mock up a game](assignment.md) diff --git a/6-space-game/2-drawing-to-canvas/README.md b/6-space-game/2-drawing-to-canvas/README.md index 2deb703a..015922e1 100644 --- a/6-space-game/2-drawing-to-canvas/README.md +++ b/6-space-game/2-drawing-to-canvas/README.md @@ -213,4 +213,4 @@ Learn more about the Canvas API by [reading about it](https://developer.mozilla. ## Assignment -[Play with the Canvas API](/6-space-game/2-drawing-to-canvas/assignment.md) \ No newline at end of file +[Play with the Canvas API](assignment.md) \ No newline at end of file diff --git a/6-space-game/3-moving-elements-around/README.md b/6-space-game/3-moving-elements-around/README.md index abe3e873..6decf3ea 100644 --- a/6-space-game/3-moving-elements-around/README.md +++ b/6-space-game/3-moving-elements-around/README.md @@ -385,4 +385,4 @@ While we're writing our game without using frameworks, there are many JavaScript ## Assignment -[Comment your code](/6-space-game/3-moving-elements-around/assignment.md) +[Comment your code](assignment.md) diff --git a/6-space-game/4-collision-detection/README.md b/6-space-game/4-collision-detection/README.md index b8068064..6431bfeb 100644 --- a/6-space-game/4-collision-detection/README.md +++ b/6-space-game/4-collision-detection/README.md @@ -294,4 +294,4 @@ Experiment with the intervals in your game thus far. What happens when you chang ## Assignment -[Explore collisions](/6-space-game/4-collision-detection/assignment.md) +[Explore collisions](assignment.md) diff --git a/6-space-game/5-keeping-score/README.md b/6-space-game/5-keeping-score/README.md index 6610df96..32a671e5 100644 --- a/6-space-game/5-keeping-score/README.md +++ b/6-space-game/5-keeping-score/README.md @@ -186,4 +186,4 @@ Research some ways that you can increment and decrement game scores and lives. T ## Assignment -[Build a Scoring Game](/6-space-game/5-keeping-score/assignment.md) +[Build a Scoring Game](assignment.md) diff --git a/6-space-game/6-end-condition/README.md b/6-space-game/6-end-condition/README.md index 1e0ef56d..4698d7be 100644 --- a/6-space-game/6-end-condition/README.md +++ b/6-space-game/6-end-condition/README.md @@ -219,4 +219,4 @@ Your assignment is to create a fresh sample game, so explore some of the interes ## Assignment -[Build a Sample Game](/6-space-game/6-end-condition/assignment.md) +[Build a Sample Game](assignment.md) diff --git a/7-bank-project/1-template-route/README.md b/7-bank-project/1-template-route/README.md index 54f3b018..250f3678 100644 --- a/7-bank-project/1-template-route/README.md +++ b/7-bank-project/1-template-route/README.md @@ -292,4 +292,4 @@ Routing is one of the surprisingly tricky parts of web development, especially a ## Assignment -[Improve the routing](/7-bank-project/1-template-route/assignment.md) +[Improve the routing](assignment.md) diff --git a/7-bank-project/2-forms/README.md b/7-bank-project/2-forms/README.md index 32c5100e..9547dd4a 100644 --- a/7-bank-project/2-forms/README.md +++ b/7-bank-project/2-forms/README.md @@ -287,4 +287,4 @@ Developers have gotten very creative about their form building efforts, especial ## Assignment -[Style your bank app](/7-bank-project/2-forms/assignment.md) +[Style your bank app](assignment.md) diff --git a/7-bank-project/3-data/README.md b/7-bank-project/3-data/README.md index e8a91bc3..df44e7e8 100644 --- a/7-bank-project/3-data/README.md +++ b/7-bank-project/3-data/README.md @@ -323,4 +323,4 @@ Here's an example of a styled dashboard page: ## Assignment -[Refactor and comment your code](/7-bank-project/3-data/assignment.md) +[Refactor and comment your code](assignment.md) diff --git a/7-bank-project/4-state-management/README.md b/7-bank-project/4-state-management/README.md index 09e94343..1826596f 100644 --- a/7-bank-project/4-state-management/README.md +++ b/7-bank-project/4-state-management/README.md @@ -274,7 +274,7 @@ Try working together to change what is saved and loaded from `localStorage` to o ## Assignment -[Implement "Add transaction" dialog](/7-bank-project/4-state-management/assignment.md) +[Implement "Add transaction" dialog](assignment.md) Here's an example result after completing the assignment: