From 1fab35ee0d75d015ad2e9354adff17783172ec95 Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 09:06:27 +0000 Subject: [PATCH 1/7] question 1clear --- .../quiz/src/quizzes/Chanel_Hutt_quiz.ts | 67 +++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts 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..96a053f1a --- /dev/null +++ b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts @@ -0,0 +1,67 @@ +import { + AnswerChoice, + MultipleChoiceQuizQuestion, + MultipleQuestionnaireProvider, + QuizQuestion, +} from 'codedifferently-instructional'; + +export class ChanelHuttQuiz implements MultipleQuestionnaireProvider { + getProviderName(): string { + return 'multiplequestionnaire'; + } + + makeQuizQuestions(): QuizQuestion[] { + return [ChanelHuttQuiz.makeQuestion0(), ChanelHuttQuiz.makeQuestion1()]; + } + + private static makeQuestion0(): MultipleQuestionnaire { + return new MultipleChoiceQuizQuestion( + 0, + 'When do you commit your code?', + new Map([ + [AnswerChoice.A, 'A question about agency'], + [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [ + AnswerChoice.C, + 'A question that can be answered using one or more provided choices', + ], + [AnswerChoice.D, 'Whatever you want it to be!'], + ]), + AnswerChoice.UNANSWERED, + ); // Replace `UNANSWERED` with the correct answer. + } + + private static makeQuestion0(): MultipleQuestionnaire { + return new MultipleChoiceQuizQuestion( + 1, + 'What is a multiple choice question?', + new Map([ + [AnswerChoice.A, 'A question about agency'], + [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [ + AnswerChoice.C, + 'A question that can be answered using one or more provided choices', + ], + [AnswerChoice.D, 'Whatever you want it to be!'], + ]), + AnswerChoice.UNANSWERED, + ); // Replace `UNANSWERED` with the correct answer. + } + + private static makeQuestion0(): MultipleQuestionnaire { + return new MultipleChoiceQuizQuestion( + 2, + 'What is a multiple choice question?', + new Map([ + [AnswerChoice.A, 'A question about agency'], + [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [ + AnswerChoice.C, + 'A question that can be answered using one or more provided choices', + ], + [AnswerChoice.D, 'Whatever you want it to be!'], + ]), + AnswerChoice.UNANSWERED, + ); // Replace `UNANSWERED` with the correct answer. + } +} From 32ae5f8f0356a81e4221ca8cf5381a676441d415 Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 09:09:32 +0000 Subject: [PATCH 2/7] modified: lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts --- .../quiz/src/quizzes/Chanel_Hutt_quiz.ts | 37 ++++++++++--------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts index 96a053f1a..f1ed1af8b 100644 --- a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts +++ b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts @@ -17,49 +17,52 @@ export class ChanelHuttQuiz implements MultipleQuestionnaireProvider { private static makeQuestion0(): MultipleQuestionnaire { return new MultipleChoiceQuizQuestion( 0, - 'When do you commit your code?', + 'Which one is not a purpose for git commit?', new Map([ - [AnswerChoice.A, 'A question about agency'], - [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [AnswerChoice.A, 'To save changes to your local repository'], + [AnswerChoice.B, 'To provide a clear, descriptive message for the changes made'], [ AnswerChoice.C, - 'A question that can be answered using one or more provided choices', + 'To clear the terminal and re-type the command', ], - [AnswerChoice.D, 'Whatever you want it to be!'], + [AnswerChoice.D, 'Keeps track of changes made to your code'], ]), AnswerChoice.UNANSWERED, ); // Replace `UNANSWERED` with the correct answer. } - private static makeQuestion0(): MultipleQuestionnaire { + private static makeQuestion1(): MultipleQuestionnaire { return new MultipleChoiceQuizQuestion( 1, - 'What is a multiple choice question?', + 'Which answer best fits the command git push?', new Map([ - [AnswerChoice.A, 'A question about agency'], - [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [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, - 'A question that can be answered using one or more provided choices', + 'To add comments to the code', ], - [AnswerChoice.D, 'Whatever you want it to be!'], + [AnswerChoice.D, 'To merge several branches into one branch'], ]), AnswerChoice.UNANSWERED, ); // Replace `UNANSWERED` with the correct answer. } - private static makeQuestion0(): MultipleQuestionnaire { + private static makeQuestion2(): MultipleQuestionnaire { return new MultipleChoiceQuizQuestion( 2, - 'What is a multiple choice question?', + 'Which command is used to update the your local repository with changes from your remote repository?', new Map([ - [AnswerChoice.A, 'A question about agency'], - [AnswerChoice.B, 'The hardest kind of quiz question there is'], + [AnswerChoice.A, 'git fetch upstream'], + [AnswerChoice.B, 'git pull'], [ AnswerChoice.C, - 'A question that can be answered using one or more provided choices', + 'git commit', ], - [AnswerChoice.D, 'Whatever you want it to be!'], + [AnswerChoice.D, 'git checkout main'], ]), AnswerChoice.UNANSWERED, ); // Replace `UNANSWERED` with the correct answer. From a704ce195833f1b9de9ec5d50fbfc8f09dd8e388 Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 12:18:38 +0000 Subject: [PATCH 3/7] checked errors in quiz --- .../quiz/src/quizzes/Chanel_Hutt_quiz.ts | 32 ++++++++----------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts index f1ed1af8b..25d462527 100644 --- a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts +++ b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts @@ -1,37 +1,37 @@ import { AnswerChoice, MultipleChoiceQuizQuestion, - MultipleQuestionnaireProvider, QuizQuestion, + QuizQuestionProvider, } from 'codedifferently-instructional'; -export class ChanelHuttQuiz implements MultipleQuestionnaireProvider { +export class ChanelHuttQuiz implements QuizQuestionProvider { getProviderName(): string { - return 'multiplequestionnaire'; + return 'chanelhutt'; } makeQuizQuestions(): QuizQuestion[] { - return [ChanelHuttQuiz.makeQuestion0(), ChanelHuttQuiz.makeQuestion1()]; + return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2(),]; } - private static makeQuestion0(): MultipleQuestionnaire { + 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.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(): MultipleQuestionnaire { + private static makeQuestion1(): QuizQuestion { return new MultipleChoiceQuizQuestion( 1, 'Which answer best fits the command git push?', @@ -41,27 +41,21 @@ export class ChanelHuttQuiz implements MultipleQuestionnaireProvider { AnswerChoice.B, 'To transfer files from the local repository to remote repository hosting services', ], - [ - AnswerChoice.C, - 'To add comments to the code', - ], + [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(): MultipleQuestionnaire { + private static makeQuestion2(): QuizQuestion { return new MultipleChoiceQuizQuestion( 2, - 'Which command is used to update the your local repository with changes from your remote repository?', + '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.C, 'git commit'], [AnswerChoice.D, 'git checkout main'], ]), AnswerChoice.UNANSWERED, From 30af285ace173ecd80347b88d9cb80de35802eaf Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 12:28:39 +0000 Subject: [PATCH 4/7] all done --- lesson_03/quiz/quiz.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lesson_03/quiz/quiz.yaml b/lesson_03/quiz/quiz.yaml index f077fd998..d20889cdb 100644 --- a/lesson_03/quiz/quiz.yaml +++ b/lesson_03/quiz/quiz.yaml @@ -5,4 +5,8 @@ quiz: - $2y$10$55EXRjF26JIgebtoH800ZOJecfefvMgHicuxf/rwTENuxiUaFQcNe anotherone: - $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK - - $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa \ No newline at end of file + - $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa + chanelhuttquiz: + - $2y$10$RL0pFvQE0YDCxR.f7AFb5.P45m9x9t.0diyZ5mOnADWvBhiCJW4Ci + - $2y$10$Bgkbza7Vq5z0qz4iMZWuJep6Vfxq1Zp/ddQuo.vLzmdNo84JCDaoa + - $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa \ No newline at end of file From 02881758c65b00dbee9a132a23060d76c1baeb8a Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 13:03:11 +0000 Subject: [PATCH 5/7] quiz --- lesson_03/quiz/quiz.yaml | 4 ++-- lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts | 2 +- lesson_03/quiz/src/quizzes/quizzes.module.ts | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lesson_03/quiz/quiz.yaml b/lesson_03/quiz/quiz.yaml index d20889cdb..475e67ace 100644 --- a/lesson_03/quiz/quiz.yaml +++ b/lesson_03/quiz/quiz.yaml @@ -6,7 +6,7 @@ quiz: anotherone: - $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK - $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa - chanelhuttquiz: + chanelhutt: - $2y$10$RL0pFvQE0YDCxR.f7AFb5.P45m9x9t.0diyZ5mOnADWvBhiCJW4Ci - $2y$10$Bgkbza7Vq5z0qz4iMZWuJep6Vfxq1Zp/ddQuo.vLzmdNo84JCDaoa - - $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa \ No newline at end of file + - $2y$10$hYXAGlRHPLJME/CM556vouvwDwcUts.kH4zRRZk.jQyFQEzC9FkVa diff --git a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts index 25d462527..10c708f05 100644 --- a/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts +++ b/lesson_03/quiz/src/quizzes/Chanel_Hutt_quiz.ts @@ -11,7 +11,7 @@ export class ChanelHuttQuiz implements QuizQuestionProvider { } makeQuizQuestions(): QuizQuestion[] { - return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2(),]; + return [ChanelHuttQuiz.makeQuestion0(),ChanelHuttQuiz.makeQuestion1(),ChanelHuttQuiz.makeQuestion2()]; } private static makeQuestion0(): QuizQuestion { diff --git a/lesson_03/quiz/src/quizzes/quizzes.module.ts b/lesson_03/quiz/src/quizzes/quizzes.module.ts index ac82f4600..ad6f308c9 100644 --- a/lesson_03/quiz/src/quizzes/quizzes.module.ts +++ b/lesson_03/quiz/src/quizzes/quizzes.module.ts @@ -1,11 +1,12 @@ import { Module } from '@nestjs/common'; import { AnotherQuiz } from './another_quiz.js'; import { AnthonyMaysQuiz } from './anthony_mays_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]; +const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, ChanelHuttQuiz]; @Module({ providers: [ From 6cf2c88dc35d6d046436dc786ea3017911d1f11f Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Tue, 11 Mar 2025 21:00:51 +0000 Subject: [PATCH 6/7] changes done --- lesson_03/quiz/quiz.yaml | 2 -- lesson_03/quiz/src/quizzes/quizzes.module.ts | 10 +++------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/lesson_03/quiz/quiz.yaml b/lesson_03/quiz/quiz.yaml index 07e918e41..cd0da3774 100644 --- a/lesson_03/quiz/quiz.yaml +++ b/lesson_03/quiz/quiz.yaml @@ -6,7 +6,6 @@ quiz: anotherone: - $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK - $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa -Chutt_lesson_03 chanelhutt: - $2y$10$RL0pFvQE0YDCxR.f7AFb5.P45m9x9t.0diyZ5mOnADWvBhiCJW4Ci - $2y$10$Bgkbza7Vq5z0qz4iMZWuJep6Vfxq1Zp/ddQuo.vLzmdNo84JCDaoa @@ -20,4 +19,3 @@ Chutt_lesson_03 - $2y$10$hRwUbEYSqz761B.cG79T2uYsYPiEtKu.JgD3Aj7.Mofx27TtX5YHa - $2y$10$qE/gXxpq62FEGJOJd9MDA.vpDYLTNSsZbqZLpD/0368CKkcNBzW1y - $2y$10$yI/2BgOyqQfLdHM3ixPE5uLu89su/sHRJB2c5szDFIAYXDhRakS.C - main diff --git a/lesson_03/quiz/src/quizzes/quizzes.module.ts b/lesson_03/quiz/src/quizzes/quizzes.module.ts index a90847a05..b7153517a 100644 --- a/lesson_03/quiz/src/quizzes/quizzes.module.ts +++ b/lesson_03/quiz/src/quizzes/quizzes.module.ts @@ -1,26 +1,22 @@ import { Module } from '@nestjs/common'; import { AnotherQuiz } from './another_quiz.js'; import { AnthonyMaysQuiz } from './anthony_mays_quiz.js'; - Chutt_lesson_03 -import { ChanelHuttQuiz } from './Chanel_Hutt_quiz.js'; import { Jbeyquiz } from './jbeyquiz.js'; import { MercedesMathewsQuiz } from './mercedes_mathews_quiz.js'; -main +import { ChanelHuttQuiz } from './Chanel_Hutt_quiz.js'; export const Quizzes = Symbol.for('Quizzes'); // Add your quiz provider here. - Chutt_lesson_03 -const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, ChanelHuttQuiz]; -======= + const QUIZ_PROVIDERS = [ AnthonyMaysQuiz, AnotherQuiz, MercedesMathewsQuiz, Jbeyquiz, + ChanelHuttQuiz, ]; -main @Module({ providers: [ From 5ca446d21ab71c08f919c45e68acdf143dfcc616 Mon Sep 17 00:00:00 2001 From: NelltheWiz Date: Wed, 12 Mar 2025 12:00:04 +0000 Subject: [PATCH 7/7] Redo changes to html_lesson01 --- lesson_01/chanelhutt/index.html | 63 +++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 lesson_01/chanelhutt/index.html 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