Skip to content

Commit

Permalink
Moved original materials to /lessons
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-experience committed Dec 20, 2020
1 parent 5dbe7e8 commit 2efb277
Show file tree
Hide file tree
Showing 421 changed files with 1,907 additions and 1,674 deletions.
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<title>Extenza Academy: Web Dev for Beginners (100) course</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="description" content="Extenza Academy: Web Dev for Beginners (100) course">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"></head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Web Development for Beginners: A Curriculum',
repo: 'https://github.com/microsoft/Web-Dev-For-Beginners'
name: 'Extenza Academy: Web Dev for Beginners (100) course',
repo: 'https://github.com/Extenza-Academy/WebDev-100_2021-Q1',
basePath: './lessons/',
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
*Complete this quiz along with your submission by checking one answer per question.*

1. What language would you most likely use to create a website?

- [ ] Machine Code
- [ ] JavaScript
- [ ] Bash

2. Development environments are unique to each developer

- [ ] True
- [ ] False

3. What will a developer do to fix buggy code?

- [ ] Syntax highlighting
- [ ] Debugging
- [ ] Code formatting
*Complete this quiz along with your submission by checking one answer per question.*

1. What language would you most likely use to create a website?

- [ ] Machine Code
- [ ] JavaScript
- [ ] Bash

2. Development environments are unique to each developer

- [ ] True
- [ ] False

3. What will a developer do to fix buggy code?

- [ ] Syntax highlighting
- [ ] Debugging
- [ ] Code formatting
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Reading the Docs

## Instructions

There are many tools that a web developer may need that are on the [MDN documentation for client-side tooling](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Understanding_client-side_tools/Overview). Select 3 tools not covered in the lesson, explain why a web developer would use it, and search for a tool that falls under this category and share its documentation. Do not use the same tool example on MDN docs.

## Rubric

Exemplary | Adequate | Needs Improvement
--- | --- | -- |
# Reading the Docs

## Instructions

There are many tools that a web developer may need that are on the [MDN documentation for client-side tooling](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Understanding_client-side_tools/Overview). Select 3 tools not covered in the lesson, explain why a web developer would use it, and search for a tool that falls under this category and share its documentation. Do not use the same tool example on MDN docs.

## Rubric

Exemplary | Adequate | Needs Improvement
--- | --- | -- |
|Explained why web developer would use tool| Explained how, but not why developer would use tool| Did not mention how or why a developer would use tool |
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
*Complete this quiz by checking one answer per question.*

1. A place to compare and discuss the differences introduced on a branch with reviews, comments, integrated tests, and more is:

- [ ] GitHub
- [ ] A Pull Request
- [ ] A feature branch

2. How would you get all the commits from a remote branch?

- [ ] `git fetch`
- [ ] `git pull`
- [ ] `git commits -r`

3. How do you switch to a branch?

- [ ] `git switch [branch-name]`
- [ ] `git checkout [branch-name]`
- [ ] `git load [branch-name]`
*Complete this quiz by checking one answer per question.*

1. A place to compare and discuss the differences introduced on a branch with reviews, comments, integrated tests, and more is:

- [ ] GitHub
- [ ] A Pull Request
- [ ] A feature branch

2. How would you get all the commits from a remote branch?

- [ ] `git fetch`
- [ ] `git pull`
- [ ] `git commits -r`

3. How do you switch to a branch?

- [ ] `git switch [branch-name]`
- [ ] `git checkout [branch-name]`
- [ ] `git load [branch-name]`
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
*Complete this quiz in class*

1. How do you create a Git repo?

- [ ] git create
- [ ] git start
- [ ] git init

2. What does `git add` do?

- [ ] Commits your code
- [ ] Adds your files to a staging area for tracking
- [ ] Adds your files to GitHub
*Complete this quiz in class*

1. How do you create a Git repo?

- [ ] git create
- [ ] git start
- [ ] git init

2. What does `git add` do?

- [ ] Commits your code
- [ ] Adds your files to a staging area for tracking
- [ ] Adds your files to GitHub
Loading

0 comments on commit 2efb277

Please sign in to comment.