diff --git a/lesson_01/chanelhutt/index.html b/lesson_01/chanelhutt/index.html
new file mode 100644
index 000000000..2f5949168
--- /dev/null
+++ b/lesson_01/chanelhutt/index.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+ Document
+
+
+
+ Getting to know ME...
+
+
+
+
+Hello, I am Chanel Hutt, a Delaware native. I love me. I hope you love you too. I am believer of energy and positivity. I developed a knack for optimism and adventure in my youth.
+
+
How we can work well together:
+My work preferences are communicate respectively and be positive. I am a soluton-based individual. I typically emphasize ways to solve an issue rather then giving life to the problem. In my opinion, conflicts or disputes should be handled like a pro/con list. Once you understand that everyone has different perspectives and analytical skills conflicts would be less likely to arise. Just be mindful we are all humans and deserved to be heard.
+
+My dream schedule:
+I am a morning person but I can do nights. Have it my way, I would only work Tuesday thru Thursday 7am - 7pm. What you will expect from me during in-office workdays are warm greetings, readiness and humor. I am available during my scheduled business hours .
+
+Getting to know all about ME...
+
+
+
+What is the best way to communicate with me:
+I prefer text/chat over email with certain topics. I prefer in-person meetings over chats. I consider myself approachable, resourceful, and helpful, so I do not mind being interrupted while my headphones are on.
+
+ I do not respond, try: AGAIN
+
+I'd love to help you with ____
+Creative writing, proofreading or editing written work. Rehearsing a presentation. Lastly I'd love to help you with meeting your goals. I absolutely do not mind giving you the knowledge I have.
+
+What makes me grumpy?
+Hunger and inconsideration
+
+How do I like to give feedback?
+In-person and when I am asked
+
+How do I like to receive feedback?
+In-person and in private & also emails are sufficient
+
+One of my goals for the coming year:
+Is to be proficient in area of tech that I am passionate about or intrigued by. Certification in multiple disciplines and making a great salary.
+
+Topics I am always happy to talk about:
+Movies, tv series, and traveling. I love talking herbs, quantam theories, and inventions(new ideas).
+
+Other things you might want to know:
+I really like Marvel Studios movies/tv series.
+ I thrive off of learning new things. My specialty is interacting with people.
+ My favorite baked good: Banana nut bread
+ My birthday: New Year's Eve
+ My coffee order: Not coffee but green matcha latte
+ My hometown: Wilmington, Delaware
+ My favorite thing to do: Travel
+ My favorite place that I traveled to: Barbados (which is pictured below)
+
+
+
+
+
\ No newline at end of file
diff --git a/lesson_03/quiz/quiz.yaml b/lesson_03/quiz/quiz.yaml
index 266f1a7e7..cd0da3774 100644
--- a/lesson_03/quiz/quiz.yaml
+++ b/lesson_03/quiz/quiz.yaml
@@ -6,6 +6,11 @@ quiz:
anotherone:
- $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK
- $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa
+ chanelhutt:
+ - $2y$10$RL0pFvQE0YDCxR.f7AFb5.P45m9x9t.0diyZ5mOnADWvBhiCJW4Ci
+ - $2y$10$Bgkbza7Vq5z0qz4iMZWuJep6Vfxq1Zp/ddQuo.vLzmdNo84JCDaoa
+ - $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa
+
computerparts:
- $2y$10$7TUXmYaJlWnRZTzYR..CsefgVcOZJMGt7ctxyAf.G3obBBFEAB342
- $2y$10$0ghuTDegle177q8VjCgQ2OhManKjotYXrcDT3SLyUF8KvI152Wd0.
diff --git a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts
new file mode 100644
index 000000000..10c708f05
--- /dev/null
+++ b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts
@@ -0,0 +1,64 @@
+import {
+ AnswerChoice,
+ MultipleChoiceQuizQuestion,
+ QuizQuestion,
+ QuizQuestionProvider,
+} from 'codedifferently-instructional';
+
+export class ChanelHuttQuiz implements QuizQuestionProvider {
+ getProviderName(): string {
+ return 'chanelhutt';
+ }
+
+ makeQuizQuestions(): QuizQuestion[] {
+ return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2()];
+ }
+
+ private static makeQuestion0(): QuizQuestion {
+ return new MultipleChoiceQuizQuestion(
+ 0,
+ 'Which one is not a purpose for git commit?',
+ new Map([
+ [AnswerChoice.A, 'To save changes to your local repository'],
+ [
+ AnswerChoice.B,
+ 'To provide a clear, descriptive message for the changes made',
+ ],
+ [AnswerChoice.C, 'To clear the terminal and re-type the command'],
+ [AnswerChoice.D, 'Keeps track of changes made to your code'],
+ ]),
+ AnswerChoice.UNANSWERED,
+ ); // Replace `UNANSWERED` with the correct answer.
+ }
+
+ private static makeQuestion1(): QuizQuestion {
+ return new MultipleChoiceQuizQuestion(
+ 1,
+ 'Which answer best fits the command git push?',
+ new Map([
+ [AnswerChoice.A, 'To move the code to the trash'],
+ [
+ AnswerChoice.B,
+ 'To transfer files from the local repository to remote repository hosting services',
+ ],
+ [AnswerChoice.C, 'To add comments to the code'],
+ [AnswerChoice.D, 'To merge several branches into one branch'],
+ ]),
+ AnswerChoice.UNANSWERED,
+ ); // Replace `UNANSWERED` with the correct answer.
+ }
+
+ private static makeQuestion2(): QuizQuestion {
+ return new MultipleChoiceQuizQuestion(
+ 2,
+ 'Which command is used to update the yourlocal repository with changes from your remote repository?',
+ new Map([
+ [AnswerChoice.A, 'git fetch upstream'],
+ [AnswerChoice.B, 'git pull'],
+ [AnswerChoice.C, 'git commit'],
+ [AnswerChoice.D, 'git checkout main'],
+ ]),
+ AnswerChoice.UNANSWERED,
+ ); // Replace `UNANSWERED` with the correct answer.
+ }
+}
diff --git a/lesson_03/quiz/src/quizzes/quizzes.module.ts b/lesson_03/quiz/src/quizzes/quizzes.module.ts
index 090417429..b7153517a 100644
--- a/lesson_03/quiz/src/quizzes/quizzes.module.ts
+++ b/lesson_03/quiz/src/quizzes/quizzes.module.ts
@@ -1,17 +1,21 @@
import { Module } from '@nestjs/common';
import { AnotherQuiz } from './another_quiz.js';
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
+
import { Jbeyquiz } from './jbeyquiz.js';
import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js';
+import { ChanelHuttQuiz } from './Chanel_Hutt_quiz.js';
export const Quizzes = Symbol.for('Quizzes');
// Add your quiz provider here.
+
const QUIZ_PROVIDERS = [
AnthonyMaysQuiz,
AnotherQuiz,
MercedesMathewsQuiz,
Jbeyquiz,
+ ChanelHuttQuiz,
];
@Module({