Skip to content

Commit b751eea

Browse files
authored
Merge branch 'main' into Lesson03
2 parents 82197b7 + 5c071e3 commit b751eea

18 files changed

+1015
-2
lines changed

lesson_01/chelseaogbonnia/index.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
<link rel="stylesheet" type="text/css" href="style.css">
7+
<title>Read Me HTML</title>
8+
</head>
9+
<body>
10+
<main>
11+
<h1 id="personal-readme">Personal README</h1>
12+
<section>
13+
<h2 id="introduction">Introduction</h2>
14+
<article>
15+
<div>
16+
<p>Hi there! I’m currently on my journey to becoming a full-stack software engineer. I enjoy solving problems and learning new technologies as I go. This README gives you a little insight into how I work best, what motivates me, and how I approach learning and collaboration.</p>
17+
</div>
18+
</article>
19+
</section>
20+
<section>
21+
<h2 id="how-i-learn-best">How I Learn Best</h2>
22+
<div>
23+
<ul>
24+
<li>Independent Learning: I prefer figuring things out on my own, and I enjoy working through challenges independently before reaching out for help. This allows me to build resilience and a deeper understanding of the material.</li>
25+
<li>Visual Learning: I grasp concepts more quickly when I can visualize them. Charts, diagrams, and presentations help me organize information in a way that sticks. I find that seeing a process step-by-step or looking at a flowchart helps solidify abstract concepts.</li>
26+
<li>Planning Ahead: I like having access to the curriculum early so I can break down topics and structure my learning schedule. When I can map out what’s ahead, I feel more in control and can manage my time better.</li>
27+
<li>Mastering Subjects: I work on a subject until I feel confident enough to explain it to someone else. Teaching is one of the ways I confirm my own understanding. If I can make something simple enough for others to understand, I know I’ve truly mastered it.</li>
28+
<li>Note-Taking: I’m not the type to take long-winded notes. Instead, my notes are an organized summary of my thoughts. They serve as a reference point for later, but I tend to work through most concepts in my head first before writing anything down.</li>
29+
</ul>
30+
</div>
31+
</section>
32+
<section>
33+
<h2 id="what-i-value-in-collaboration">What I Value in Collaboration</h2>
34+
<ul>
35+
<li>Clear Communication: I appreciate clear, concise communication, especially in code reviews or when getting feedback. I respond well to messages that are to the point, with direct and actionable suggestions.</li>
36+
<li>Respect for Work Styles: I understand that everyone has their own preferred way of working, and I appreciate when team environments respect those differences. For me, that means giving me space to work independently but also being available for collaboration when needed.</li>
37+
<li>Knowledge Sharing: I believe that a team works best when everyone shares what they’ve learned. I enjoy exchanging tips, resources, or strategies that can help others grow. When the team is open to learning from each other, everyone benefits.</li>
38+
</ul>
39+
</section>
40+
<section>
41+
<h2 id="fun-fact">Fun Fact</h2>
42+
<p>I often like to challenge myself with side projects. Whether it&#39;s exploring a new API or building a small application for fun, these projects give me a chance to experiment with new technologies and sharpen my skills.</p>
43+
<p><img src="https://github.com/user-attachments/assets/75cce26f-8244-4aa9-ac0a-39783d4e4473" alt="Python API Example"></p>
44+
</section>
45+
</main>
46+
</body>
47+
</html>

lesson_01/chelseaogbonnia/style.css

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
body {
2+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
3+
font-size: 16px;
4+
line-height: 1.5;
5+
color: #24292e;
6+
background-color: #fff;
7+
padding: 20px;
8+
font-size: 100%;
9+
}
10+
11+
h1, h2, h3, h4, h5, h6 {
12+
font-weight: 600;
13+
margin: 1em 0;
14+
border-bottom: 1px solid #eaecef;
15+
}
16+
17+
h1 {
18+
font-size: 2em;
19+
padding-bottom: 0.3em;
20+
}
21+
22+
p {
23+
margin-bottom: 16px;
24+
}
25+
26+
strong {
27+
font-weight: 600;
28+
}
29+
30+
em {
31+
font-style: italic;
32+
}
33+
34+
code {
35+
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
36+
background-color: #f6f8fa;
37+
padding: 0.2em 0.4em;
38+
border-radius: 6px;
39+
}
40+
41+
pre {
42+
background-color: #f6f8fa;
43+
padding: 16px;
44+
border-radius: 6px;
45+
overflow: auto;
46+
font-size: 85%;
47+
line-height: 1.45;
48+
}
49+
50+
ul, ol {
51+
padding-left: 2em;
52+
margin-bottom: 16px;
53+
}
54+
55+
li {
56+
margin-bottom: 0.25em;
57+
}
58+
59+
blockquote {
60+
border-left: 4px solid #dfe2e5;
61+
padding: 0 1em;
62+
color: #6a737d;
63+
margin: 0;
64+
}
65+
66+
a {
67+
color: #0366d6;
68+
text-decoration: none;
69+
}
70+
71+
a:hover {
72+
text-decoration: underline;
73+
}
74+
75+
table {
76+
width: 100%;
77+
border-collapse: collapse;
78+
margin-bottom: 16px;
79+
}
80+
81+
th, td {
82+
border: 1px solid #dfe2e5;
83+
padding: 6px 13px;
84+
}
85+
86+
th {
87+
background-color: #f6f8fa;
88+
font-weight: 600;
89+
}
90+
91+
hr {
92+
border: 0;
93+
border-top: 1px solid #eaecef;
94+
margin: 24px 0;
95+
}
96+
97+
img {
98+
max-width: 100%;
99+
height: auto;
100+
}
101+
102+
input[type="checkbox"] {
103+
margin-right: 0.5em;
104+
}
105+
106+
@media(max-width:480px){
107+
body {
108+
padding: 10px;
109+
}
110+
h1 {
111+
font-size: 1.5em;
112+
}
113+
p{
114+
font-size: 0.9em;
115+
}
116+
pre{
117+
white-space: pre-wrap;
118+
word-wrap: break-word;
119+
}
120+
}

lesson_03/quiz/quiz.yaml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ quiz:
1010
- $2y$10$7u0/PUZE4NFsRmjPtsaNOuQpXsQcuZh22wqYK5vli5LUO8wxIDR7q
1111
- $2y$10$zBW5IVw5BDBaa2PuxuyoO.kjixYznWpMXJ0a8hwO1zIYG8o5LJXAq
1212
- $2y$10$BjDUqT33QmjaSNeYJ99GCeyrjx99NSfCThB4l/KIh9PfbP4cJo03a
13+
jamescapparell:
14+
- $2y$10$iLvL/AaFPzcGZrcna7umMuHqkZe1f9at/ix77NUI6uakDGNuVKQCy
15+
- $2y$10$FLxmGXJLm5EziyhA5D33ju0kUjXhiDbuUdImciLQz8lBRu5ou0hee
16+
- $2y$10$hQTJ1d2giJ40AI8rSgBqWOij7j3WVqsvAMYOLFiixbYTcvETuF5cC
17+
xaviercruz:
18+
- $2y$10$1WMmkMjazP78KVns1l85zOC5r8cwgTnxLLs/scOzIkgCQ8HP28Y.q
19+
- $2y$10$9D.oRC8h/PD/10NMSR6MMOzjVAJKm.vfw4te8Rxgw1M1.0Q9x8pjK
20+
- $2y$10$ypLhtfxJikRhLaQdW0Y8GOEqO/X1uoBD8w.kSSSUPggBa9wHLkw0i
21+
- $2y$10$cYuji5D0xOEFAV2fyMaJAuaODeWEwIYu.X3089qnojdx3nQljil5G
22+
dasiaenglish:
23+
- $2y$10$ANtdDzA0GAqn/QeExPO/Du8LgHUwznRLxpv0W0ib2seYk23BZowOC
24+
- $2y$10$6vAkOUmpPrUtWrh010f8e.A4M9kEzuzCrQ8ghWI9hQSEsZeGHpQ9W
25+
- $2y$10$YYTJf2QW.BJST9EUB7NZneVpNkOywIfhsWRpxIsPBg/oTmgqoYWse
26+
chigazograham:
27+
- $2y$10$OTnSih9kHykUnsuM/YKufu3MXTpOZrif.dL13XwXt8rquJL4mV.m.
28+
- $2y$10$je60MntrKRBd/1tz7hNUY.D/cyKOEM.hp6/1fVVVGJRIIitmUGI5e
29+
- $2y$10$pPTmEp0acs8.NIAamLpmmuF7B72bXFZsikHywQI/JvfXuySkhHH5S
1330
oyeyemijimoh:
1431
- $2y$10$2LlSxAEM1HmR3Wl2fO6LQueu/77spr5SuWAh4b3MKesIWNy3CFjGe
1532
- $2y$10$csA90DFxK7.uq6dSfS06Yukk5fQPrzLvU2Lp43ArTs2za28LVvRGO
@@ -22,3 +39,32 @@ quiz:
2239
- $2y$10$XcsVuO66KZiUiN75NtssdOkKvHKhuBo91JgE/TJEnSrrzbhjxuql.
2340
- $2y$10$9fZs867NHxoPQ/VWMeLyj.us5Kg3SLPcbt9O5ki/FdJ37TbhgFMFC
2441
- $2y$10$GfjcKvtzr6n8553Mdr1RJOOYDfzOudlW.3i8otsH0HiW52CU7tUAW
42+
angelicacastillo:
43+
- $2y$10$MkiKfTFDIR5e4nWe3Q3XKOSEk2E06urRRykXIx/2JV6Y5j.OPIWMi
44+
- $2y$10$WsWcxQ.rCkq/WoUVMbdMNuUU8v5O9xDFpWdbWydVFu7/Ufz/8lLru
45+
- $2y$10$9FB5PKcxb5z0xijnLVnF8.127CghZcgd7.0Phn2QsWdCYBxxZWrwG
46+
amiyahjones:
47+
- $2y$10$QsN9VkjWORsKgZRiBT46VOUgc5HVnswKAT4uDbs7JYbTF7DdKbsw.
48+
- $2y$10$sqXEOL0L8o0kRyiAb.2s4u0RlBC2.LmOGDbGWXHj5IfBNwinkv2yq
49+
- $2y$10$HaWueXgrIzd7z8yf39HfVeTjjyr.Kgx0GFBqwCRSzW3zRSreN19yi
50+
ljmcwilliams:
51+
- $2y$10$krHODbBQL0Z.4Me1fsRc0.XODWzJQPjrEL1xzXwDa98TPONF8OeiK
52+
- $2y$10$S5HH5Vv834yLEUO2B3hHQO9gnR.8eBMA3zDORpXFrSYzXCuDsWHN6
53+
- $2y$10$nAd2FkTtyrmhHfTlhuxPcu1tWPimr7cX9mpDSGeIweUPLafpSTeiW
54+
tommytran:
55+
- $2y$10$6Mf9m8JXRHUyCgRNPn4nceimRZVOhtmsZbOGoFnI4ZJp..RluHmwy
56+
- $2y$10$Xr6W53IVq52orDvf6.TQQuXeMGaysQdgAu1cm5DYi1NyCskG2ByPe
57+
- $2y$10$x8BG/EcIbVohTU1s/thyc.TIzlfc8f/aVZaD4/1yMpcks2OWzKKMe
58+
zionbuchanan:
59+
- $2y$10$ufNCdP1efvioBYIih6K92uye33p5ckN/IrxfCvw4n7agHjN8aNfhe
60+
- $2y$10$Mb7LA1kqlDRWlN9jdBYvF.u1B8cmJqXWkrxQeMr/3ETRVOAzFlflG
61+
- $2y$10$9bTVOlLmkj4y5f9u1b3sgeTQ9hIrVFrGiz71B0HTxiIidqq0VXHGS
62+
shawndunsmore:
63+
- $2y$10$Kpde4LAfDyEhgWezFoI5texc53Sge6QQs8y5hR8DA7zHfyK8It5LW
64+
- $2y$10$T061IZuccoHb2XGjaICB/Olchf62DqrSDVIE0TE9Q9qidfLAL7sHS
65+
- $2y$10$T061IZuccoHb2XGjaICB/Olchf62DqrSDVIE0TE9Q9qidfLAL7sHS
66+
chelseaogbonnia:
67+
- $2y$10$zToVGnZqyIwx0GGE.19Cve8sJ9enR1V0hGtssvR/8l42AcsR10aJS
68+
- $2y$10$dkWnar/ZXMr9ndtRDcbTbe/HN3DhuULPoZhTx/xATi.UYQ0DUIx1W
69+
- $2y$10$.Cw9Sjf6Pf9K8EsThegQ5e8BMoJdLl40CCuJ2FKHLar1k8hVfR9fu
70+
- $2y$10$.pmOuTs0Oqjfhn9mMIQCQu7Fbe1ZOZmZIbTGqqul.hnVLqIV6bn/W
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 AmiyahJonesQuiz implements QuizQuestionProvider {
9+
getProviderName(): string {
10+
return 'amiyahjones';
11+
}
12+
13+
makeQuizQuestions(): QuizQuestion[] {
14+
return [
15+
AmiyahJonesQuiz.makeQuestion0(),
16+
AmiyahJonesQuiz.makeQuestion1(),
17+
AmiyahJonesQuiz.makeQuestion2(),
18+
];
19+
}
20+
21+
private static makeQuestion0(): QuizQuestion {
22+
return new MultipleChoiceQuizQuestion(
23+
0,
24+
'What two computer parts get mixed up often?',
25+
new Map<AnswerChoice, string>([
26+
[AnswerChoice.A, 'Power supply and mother board'],
27+
[AnswerChoice.B, 'Graphics card and ram'],
28+
[AnswerChoice.C, 'Ram and hard drive'],
29+
[AnswerChoice.D, 'None of them get mixed up'],
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 computer part figures out how everything is supposed to look on your screen?',
39+
new Map<AnswerChoice, string>([
40+
[AnswerChoice.A, 'Graphics card'],
41+
[AnswerChoice.B, 'CPU'],
42+
[AnswerChoice.C, 'Mother board'],
43+
[AnswerChoice.D, 'Ram'],
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 computer part houses everything?',
53+
new Map<AnswerChoice, string>([
54+
[AnswerChoice.A, 'Hard drive'],
55+
[AnswerChoice.B, 'Case'],
56+
[AnswerChoice.C, 'CPU'],
57+
[AnswerChoice.D, 'Power supply'],
58+
]),
59+
AnswerChoice.UNANSWERED,
60+
); // Replace `UNANSWERED` with the correct answer.
61+
}
62+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
import {
2+
AnswerChoice,
3+
MultipleChoiceQuizQuestion,
4+
QuizQuestion,
5+
QuizQuestionProvider,
6+
} from 'codedifferently-instructional';
7+
8+
export class AngelicaCQuiz implements QuizQuestionProvider {
9+
getProviderName(): string {
10+
return 'angelicacastillo';
11+
}
12+
13+
makeQuizQuestions(): QuizQuestion[] {
14+
return [
15+
AngelicaCQuiz.makeQuestion0(),
16+
AngelicaCQuiz.makeQuestion1(),
17+
AngelicaCQuiz.makeQuestion2(),
18+
];
19+
}
20+
21+
private static makeQuestion0(): QuizQuestion {
22+
return new MultipleChoiceQuizQuestion(
23+
0,
24+
'What does CPU stand for?',
25+
new Map<AnswerChoice, string>([
26+
[AnswerChoice.A, 'Central Processing Unit'],
27+
[AnswerChoice.B, 'Central Program Unit'],
28+
[AnswerChoice.C,'Center Program Unit'],
29+
[AnswerChoice.D, 'Whatever you want it to be!'],
30+
]),
31+
AnswerChoice.UNANSWERED,
32+
); // Replace `UNANSWERED` with the correct answer.
33+
}
34+
private static makeQuestion1(): QuizQuestion {
35+
return new MultipleChoiceQuizQuestion(
36+
1,
37+
'Which of the following would be a "simple" essential part of the computer?',
38+
new Map<AnswerChoice, string>([
39+
[AnswerChoice.A, 'RAM'],
40+
[AnswerChoice.B, 'CPU'],
41+
[AnswerChoice.C,'CASE'],
42+
[AnswerChoice.D, 'HARD DRIVE'],
43+
]),
44+
AnswerChoice.UNANSWERED,
45+
); // Replace `UNANSWERED` with the correct answer.
46+
}
47+
private static makeQuestion2(): QuizQuestion {
48+
return new MultipleChoiceQuizQuestion(
49+
2,
50+
'What would be considered the brains long term memory?',
51+
new Map<AnswerChoice, string>([
52+
[AnswerChoice.A, 'Mother board'],
53+
[AnswerChoice.B, 'Hard drive'],
54+
[AnswerChoice.C,'Power supply'],
55+
[AnswerChoice.D, 'Computer'],
56+
]),
57+
AnswerChoice.UNANSWERED,
58+
); // Replace `UNANSWERED` with the correct answer.
59+
}
60+
}

0 commit comments

Comments
 (0)