From 1af0a70976b8e6bcfcc4ded60907c3f7497c62d6 Mon Sep 17 00:00:00 2001 From: Sdunsmore2006 Date: Fri, 4 Oct 2024 19:35:04 +0000 Subject: [PATCH 1/5] inital commit --- lesson_05/shawndunsmore/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 lesson_05/shawndunsmore/README.md diff --git a/lesson_05/shawndunsmore/README.md b/lesson_05/shawndunsmore/README.md new file mode 100644 index 000000000..3cbb70f32 --- /dev/null +++ b/lesson_05/shawndunsmore/README.md @@ -0,0 +1 @@ +lesson05 \ No newline at end of file From a314047ac5080c99d838e522d6a7371cac237831 Mon Sep 17 00:00:00 2001 From: Sdunsmore2006 Date: Fri, 4 Oct 2024 19:49:56 +0000 Subject: [PATCH 2/5] Extra credit for lesson05 --- lesson_05/quiz/src/lesson5.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lesson_05/quiz/src/lesson5.ts b/lesson_05/quiz/src/lesson5.ts index 9ad62bd67..74ec75628 100644 --- a/lesson_05/quiz/src/lesson5.ts +++ b/lesson_05/quiz/src/lesson5.ts @@ -38,7 +38,7 @@ export class Lesson5 { [AnswerChoice.C, "To insert an image"], [AnswerChoice.D, "To create a paragraph"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -52,7 +52,7 @@ export class Lesson5 { [AnswerChoice.C, "alt"], [AnswerChoice.D, "href"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.C, ); } @@ -66,7 +66,7 @@ export class Lesson5 { [AnswerChoice.C, "
"], [AnswerChoice.D, ""], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -80,7 +80,7 @@ export class Lesson5 { [AnswerChoice.C, ""], [AnswerChoice.D, "
"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -94,7 +94,7 @@ export class Lesson5 { [AnswerChoice.C, "Computer Style Sheets"], [AnswerChoice.D, "Cascading System Sheets"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -108,7 +108,7 @@ export class Lesson5 { [AnswerChoice.C, "text-color"], [AnswerChoice.D, "background-color"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -122,7 +122,7 @@ export class Lesson5 { [AnswerChoice.C, "/* this is a comment */"], [AnswerChoice.D, ""], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.C, ); } @@ -136,7 +136,7 @@ export class Lesson5 { [AnswerChoice.C, "text-size"], [AnswerChoice.D, "text-style"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -150,7 +150,7 @@ export class Lesson5 { [AnswerChoice.C, "inline-block"], [AnswerChoice.D, "none"], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.B, ); } @@ -164,7 +164,7 @@ export class Lesson5 { [AnswerChoice.C, ""], [AnswerChoice.D, ""], ]), - AnswerChoice.UNANSWERED, + AnswerChoice.A, ); } } From 38125a98b8041d5520a4183f80656b156630f555 Mon Sep 17 00:00:00 2001 From: Sdunsmore2006 Date: Mon, 7 Oct 2024 17:16:53 +0000 Subject: [PATCH 3/5] made user stories --- lesson_05/shawndunsmore/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lesson_05/shawndunsmore/README.md b/lesson_05/shawndunsmore/README.md index 3cbb70f32..13b3957b7 100644 --- a/lesson_05/shawndunsmore/README.md +++ b/lesson_05/shawndunsmore/README.md @@ -1 +1,6 @@ -lesson05 \ No newline at end of file +## User Stories +* As the user I would like to see recent posts iv'e liked and shared. + +* As the user I should be able to view my recent comment's in my newest post. + +* As the user I want to be able to sign up with more option's then email. \ No newline at end of file From de01640f6ebf3804413fe97b1cff8abd59fb4f8c Mon Sep 17 00:00:00 2001 From: Sdunsmore2006 Date: Fri, 11 Oct 2024 16:42:42 +0000 Subject: [PATCH 4/5] fix user stories --- lesson_05/shawndunsmore/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lesson_05/shawndunsmore/README.md b/lesson_05/shawndunsmore/README.md index 13b3957b7..799c764e9 100644 --- a/lesson_05/shawndunsmore/README.md +++ b/lesson_05/shawndunsmore/README.md @@ -1,6 +1,6 @@ ## User Stories -* As the user I would like to see recent posts iv'e liked and shared. +* As the user, I want to generate a list of Fibonacci numbers so that I can explore their properties and patterns. -* As the user I should be able to view my recent comment's in my newest post. +* As the user, I should be able to view my recent comment's in my newest post so that I can explore new user's on my post. -* As the user I want to be able to sign up with more option's then email. \ No newline at end of file +* As the user, I want to be able to sign up with more option's then email so I am not limited to one source. \ No newline at end of file From 383182ca49ac6f4fa5ebd13a06607632766607d3 Mon Sep 17 00:00:00 2001 From: "Anthony D. Mays" Date: Mon, 14 Oct 2024 06:20:33 +0000 Subject: [PATCH 5/5] chore: revert quiz before commit Signed-off-by: Anthony D. Mays --- lesson_05/quiz/src/lesson5.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lesson_05/quiz/src/lesson5.ts b/lesson_05/quiz/src/lesson5.ts index 74ec75628..9ad62bd67 100644 --- a/lesson_05/quiz/src/lesson5.ts +++ b/lesson_05/quiz/src/lesson5.ts @@ -38,7 +38,7 @@ export class Lesson5 { [AnswerChoice.C, "To insert an image"], [AnswerChoice.D, "To create a paragraph"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -52,7 +52,7 @@ export class Lesson5 { [AnswerChoice.C, "alt"], [AnswerChoice.D, "href"], ]), - AnswerChoice.C, + AnswerChoice.UNANSWERED, ); } @@ -66,7 +66,7 @@ export class Lesson5 { [AnswerChoice.C, "
"], [AnswerChoice.D, ""], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -80,7 +80,7 @@ export class Lesson5 { [AnswerChoice.C, ""], [AnswerChoice.D, "
"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -94,7 +94,7 @@ export class Lesson5 { [AnswerChoice.C, "Computer Style Sheets"], [AnswerChoice.D, "Cascading System Sheets"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -108,7 +108,7 @@ export class Lesson5 { [AnswerChoice.C, "text-color"], [AnswerChoice.D, "background-color"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -122,7 +122,7 @@ export class Lesson5 { [AnswerChoice.C, "/* this is a comment */"], [AnswerChoice.D, ""], ]), - AnswerChoice.C, + AnswerChoice.UNANSWERED, ); } @@ -136,7 +136,7 @@ export class Lesson5 { [AnswerChoice.C, "text-size"], [AnswerChoice.D, "text-style"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -150,7 +150,7 @@ export class Lesson5 { [AnswerChoice.C, "inline-block"], [AnswerChoice.D, "none"], ]), - AnswerChoice.B, + AnswerChoice.UNANSWERED, ); } @@ -164,7 +164,7 @@ export class Lesson5 { [AnswerChoice.C, ""], [AnswerChoice.D, ""], ]), - AnswerChoice.A, + AnswerChoice.UNANSWERED, ); } }