Skip to content

Commit 5fcce68

Browse files
authored
Merge branch 'code-differently:main' into lesson_02
2 parents c4afdad + 5226501 commit 5fcce68

File tree

10 files changed

+527
-1
lines changed

10 files changed

+527
-1
lines changed

lesson_01/ananatawamcintyre/README.html

Lines changed: 402 additions & 0 deletions
Large diffs are not rendered by default.
25.5 KB
Loading
76.8 KB
Loading
49.9 KB
Loading
312 KB
Loading

lesson_01/justineklund/readme.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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>Justins ReadMe</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
11+
<h1><b>Justins ReadMe </b></h1>
12+
<hr>
13+
<h1><b>Introduction</b></h1>
14+
<p>Hello my name is Justin Eklund. Im an aspiring coder from Middletown Delaware. I was previously working at apex concrete which is a flooring installer. I helped install floors to the customers expectations as well as help manage the work area. I hope to make an impact somewhere in the coding or software engineering indusrty using my creativity and eventual expertise of the industry. Ive also have been making music for almost 5 years. Music is something that im very passionate about. It helps me take my mind off things and allows me to express myself in ways that I would no do otherwise.
15+
<h2><b>Prerequisite</b></h2>
16+
<hr>
17+
</p>These are things i need to boost productivty in the work space relativly quiet workspace. Im easily distracted so having a focused workspace works best for me Visual learner. I learn things or can comprehend things better seeing a visual example. visual examples give me the most amount of details so I can take the best steps moving forward.
18+
<h2>Best ways to reach me</h2>
19+
<hr>
20+
<p>Not an early bird at all. preferably not mornings but if it has to be a morning after 9am. Email is the most formal way to reach me but a text would always be the quickest. (im a 2000's baby so text is what i grew up with) Also another way is by a social media dm. I check all my streams of communication daily but you will most likely get an answer quicker on an off day through a text.</p>
21+
<h2><b>Other fun facts to know about me</b></h2>
22+
<ul>
23+
<li>I have been making music since 2018 i make all diffrent kinds of music</li>
24+
<li>I have been on the Temple feild during a game for a visist for football. (Temple vs Buffalo a while back)</li>
25+
<li>Theres a post on instagram with over 40000 views featuring one of my songs</li>
26+
<li>One of my songs has almost 10k views on instagram.</li>
27+
<li>I played football up untill i graduated high school</li>
28+
<li>I played DE RB and LB.</li>
29+
<li>I played for Salesianum my freshman year but finished at appo.</li>
30+
<li>Made all state team for delaware my senior year.</li>
31+
<li>I have flown a plane before through CAP (Civil Air Patrol) It was a small private plane that I helped steer while it was in the air.</li>
32+
</ul>
33+
<h2><b>Photo of me</b></h2>
34+
<hr>
35+
<img src="Images/IMG_2810.jpg" alt="">
36+
37+
</body>
38+
</html>

lesson_01/justineklund/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
* {
2+
font-family: Arial, Helvetica, sans-serif;
3+
4+
}
5+
h1 {
6+
font-size: 24px;
7+
}
8+
p {
9+
font-size: 16px;
10+
}
11+
li {
12+
font-size: 16px;
13+
}
14+

lesson_03/quiz/quiz.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ quiz:
1010
- $2y$10$7TUXmYaJlWnRZTzYR..CsefgVcOZJMGt7ctxyAf.G3obBBFEAB342
1111
- $2y$10$0ghuTDegle177q8VjCgQ2OhManKjotYXrcDT3SLyUF8KvI152Wd0.
1212
- $2y$10$JXoeInFy4UzHhi2Lskxzeu7CQ9RprnJgBw9pjAlV.t6zQyJTyy8OK
13+
mercedesmathews:
14+
- $2y$10$hRwUbEYSqz761B.cG79T2uYsYPiEtKu.JgD3Aj7.Mofx27TtX5YHa
15+
- $2y$10$qE/gXxpq62FEGJOJd9MDA.vpDYLTNSsZbqZLpD/0368CKkcNBzW1y
16+
- $2y$10$yI/2BgOyqQfLdHM3ixPE5uLu89su/sHRJB2c5szDFIAYXDhRakS.C
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
import {
2+
AnswerChoice,
3+
MultipleChoiceQuizQuestion,
4+
QuizQuestion,
5+
QuizQuestionProvider,
6+
} from 'codedifferently-instructional';
7+
8+
export class MercedesMathewsQuiz implements QuizQuestionProvider {
9+
getProviderName(): string {
10+
return 'mercedesmathews';
11+
}
12+
13+
makeQuizQuestions(): QuizQuestion[] {
14+
return [
15+
MercedesMathewsQuiz.makeQuestion0(),
16+
MercedesMathewsQuiz.makeQuestion1(),
17+
MercedesMathewsQuiz.makeQuestion2(),
18+
];
19+
}
20+
21+
private static makeQuestion0(): QuizQuestion {
22+
return new MultipleChoiceQuizQuestion(
23+
0,
24+
'Which HTML tag is used for a secondary header?',
25+
new Map<AnswerChoice, string>([
26+
[AnswerChoice.A, '<h1>'],
27+
[AnswerChoice.B, '<h2>'],
28+
[AnswerChoice.C, '<h3>'],
29+
[AnswerChoice.D, '<h4>'],
30+
]),
31+
AnswerChoice.UNANSWERED,
32+
); // Replace `UNANSWERED` with the correct answer.
33+
}
34+
35+
private static makeQuestion1(): QuizQuestion {
36+
return new MultipleChoiceQuizQuestion(
37+
1,
38+
'Which HTML tag makes text bold?',
39+
new Map<AnswerChoice, string>([
40+
[AnswerChoice.A, '<strong>'],
41+
[AnswerChoice.B, '<b>'],
42+
[AnswerChoice.C, 'Both of the above'],
43+
[AnswerChoice.D, 'Neither of the above'],
44+
]),
45+
AnswerChoice.UNANSWERED,
46+
); // Replace `UNANSWERED` with the correct answer.
47+
}
48+
49+
private static makeQuestion2(): QuizQuestion {
50+
return new MultipleChoiceQuizQuestion(
51+
2,
52+
'Which HTML tag is not a void element and needs a closing tag?',
53+
new Map<AnswerChoice, string>([
54+
[AnswerChoice.A, '<img>'],
55+
[AnswerChoice.B, '<br>'],
56+
[AnswerChoice.C, '<link>'],
57+
[AnswerChoice.D, '<a>'],
58+
]),
59+
AnswerChoice.UNANSWERED,
60+
); // Replace `UNANSWERED` with the correct answer.
61+
}
62+
}

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
44
import { Jbeyquiz } from './jbeyquiz.js';
5+
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
56

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

89
// Add your quiz provider here.
9-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, Jbeyquiz];
10+
const QUIZ_PROVIDERS = [
11+
AnthonyMaysQuiz,
12+
AnotherQuiz,
13+
MercedesMathewsQuiz,
14+
Jbeyquiz,
15+
];
1016

1117
@Module({
1218
providers: [

0 commit comments

Comments
 (0)