Skip to content

Commit 903c1be

Browse files
authored
Merge branch 'code-differently:main' into lesson_02
2 parents 5fcce68 + 9f4034b commit 903c1be

File tree

5 files changed

+113
-0
lines changed

5 files changed

+113
-0
lines changed

lesson_01/niap/images/IMG_6909.JPG

352 KB
Loading

lesson_01/niap/index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Knowing Nia</title>
7+
<body>
8+
9+
<h1>Knowing Nia</h1>
10+
<p>How to work with Nia P.</p>
11+
12+
<h2>My work hours:</h2>
13+
<p>I am a morning person. Specifically early morning, between 3 & 8am is my usual leisure time. Colleagues should expect to work with me during most business hours, 9am to 6pm. I am available Monday through Friday during those times. I don't prefer to work weekends but I will make an exception on Saturdays. Sundays are strictly forbidden for work.</p>
14+
15+
<h2>What’s the best way to communicate with me?</h2>
16+
<p>I prefer to email on certain topics in order to have a paper trail, but I am open to communication through text message if needed. I prefer in-person meetings over chats and Zoom. It is OK to interrupt when I have headphones on. If I don’t respond try calling me on my cell phone.</p>
17+
18+
<h2>How did my interest in tech start?</h2>
19+
<p>I was interested in code and decided to enroll in a CS50 class with Harvard. I learned a few fundamentals but overall it was too fast-paced. I then did a course at SNHU wanting to major in Cyber Security, but came to the conclusion that I would prefer to learn in person.</p>
20+
21+
<h2>What makes me grumpy?</h2>
22+
<p>I'm usually grumpy when I'm hungry and/or tired.</p>
23+
24+
<h2>How do I like to give feedback?</h2>
25+
<p>I prefer to give feedback in person, this way there is no way to misinterpret my tone and my delivery. Which is easy to do when reading.</p>
26+
27+
<h2>How do I like to receive feedback?</h2>
28+
<p>I prefer feedback in-person because it's more personable but I'm open to email. I would like feedback as frequently as once a week. More if needed.</p>
29+
30+
<h2>One of my goals for the coming year:</h2>
31+
<p>This year one of my goals is to become fluent in code and its terminology. Another goal is to travel out of my country.</p>
32+
33+
<h2>Topics I’m always happy to talk about:</h2>
34+
<p>I'm always happy to talk about my experiences in life. The places I've lived, previous jobs and places I've traveled. I also love talking about my children.</p>
35+
36+
<h2>Other things you might want to know:</h2>
37+
<ul>
38+
<li>My favorite baked good: Chocolate cake</li>
39+
<li>Spouses/partners/kiddos/pets: I have 3 children. (18, 9 & 6)</li>
40+
<li>My birthday: October 21 #TEAM LIBRA</li>
41+
<li>Fruit on pizza? I love pineapples on pizza</li>
42+
<li>My coffee order: Large mocha, iced with 6 creams & 7 sugars</li>
43+
<li>My hometown: Born in Brooklyn, raised in Harlem</li>
44+
<li>My favorite food: Steak cooked medium well</li>
45+
<li>My favorite color: Neutral colors (brown, beige, army green)</li>
46+
<li>My favorite tv shows: Grey's Anatomy, The Resident, The Walking Dead</li>
47+
</ul>
48+
49+
<img src="images/IMG_6909.JPG" alt="test">
50+
51+
</body>
52+
</html>

lesson_03/quiz/quiz.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ quiz:
1414
- $2y$10$hRwUbEYSqz761B.cG79T2uYsYPiEtKu.JgD3Aj7.Mofx27TtX5YHa
1515
- $2y$10$qE/gXxpq62FEGJOJd9MDA.vpDYLTNSsZbqZLpD/0368CKkcNBzW1y
1616
- $2y$10$yI/2BgOyqQfLdHM3ixPE5uLu89su/sHRJB2c5szDFIAYXDhRakS.C
17+
rmill:
18+
- $2y$10$FquR69q7W4E68TX/SNCB7u8Ri0DOFRDqsUPdGfuyIBjZJRVFkNI.6
19+
- $2y$10$FSWRA7hulVpyVxd8s67Nxuq/1cdmviW24qqoUbqihBf79cR.w9yly
20+
- $2y$10$Qy1IsNsfuJvA384ypL/72uWubUuNbMRp4LD6j/LM0RIH66D/HIjF6

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { Jbeyquiz } from './jbeyquiz.js';
55
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
6+
import { RasheedMillerQuiz } from './rasheed_miller_quiz.js';
67

78
export const Quizzes = Symbol.for('Quizzes');
89

@@ -12,6 +13,7 @@ const QUIZ_PROVIDERS = [
1213
AnotherQuiz,
1314
MercedesMathewsQuiz,
1415
Jbeyquiz,
16+
RasheedMillerQuiz,
1517
];
1618

1719
@Module({
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import {
2+
AnswerChoice,
3+
MultipleChoiceQuizQuestion,
4+
} from 'codedifferently-instructional';
5+
export class RasheedMillerQuiz {
6+
getProviderName() {
7+
return 'rmill';
8+
}
9+
makeQuizQuestions() {
10+
return [
11+
RasheedMillerQuiz.makeQuestion0(),
12+
RasheedMillerQuiz.makeQuestion1(),
13+
RasheedMillerQuiz.makeQuestion2(),
14+
];
15+
}
16+
static makeQuestion0() {
17+
return new MultipleChoiceQuizQuestion(
18+
0,
19+
'What command is used to navigate to a different directory in the terminal?',
20+
new Map([
21+
[AnswerChoice.A, 'cd'],
22+
[AnswerChoice.B,'ls'],
23+
[AnswerChoice.C,'mkdir'],
24+
[AnswerChoice.D, 'rm'],
25+
]),
26+
AnswerChoice.UNANSWERED,
27+
); // Replace `UNANSWERED` with the correct answer.
28+
}
29+
static makeQuestion1() {
30+
return new MultipleChoiceQuizQuestion(
31+
1,
32+
'What is GitHub mainly used for?',
33+
new Map([
34+
[AnswerChoice.A,'Playing Games'],
35+
[AnswerChoice.B, 'Sharing and managing code'],
36+
[AnswerChoice.C,'Watching Videos'],
37+
[AnswerChoice.D,'Sending Emails'],
38+
]),
39+
AnswerChoice.UNANSWERED,
40+
); // Replace `UNANSWERED` with the correct answer.
41+
}
42+
static makeQuestion2() {
43+
return new MultipleChoiceQuizQuestion(
44+
2,
45+
'What is the primary purpose of the "Inspect" tool in a web browser?',
46+
new Map([
47+
[AnswerChoice.A, 'Edit website code temporarily'],
48+
[AnswerChoice.B, 'Download videos'],
49+
[AnswerChoice.C, 'Change website themes'],
50+
[AnswerChoice.D,'Install Apps'],
51+
]),
52+
AnswerChoice.UNANSWERED,
53+
); // Replace `UNANSWERED` with the correct answer.
54+
}
55+
}

0 commit comments

Comments
 (0)