Skip to content

Commit 3b3085a

Browse files
authored
Merge branch 'code-differently:main' into cdbluejr_00
2 parents 760af04 + b64f963 commit 3b3085a

25 files changed

+6430
-32
lines changed

README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

lesson_00/dennislipscomb/README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
## The README About Nothing 😎
3+
4+
Dennis is a born creative at heart. His creative journey started with attending The Art Institute of Philadelphia as an audio engineer and pivoting into creating music, writing music and publishing a book of spokenword entitled HeARTwork.
5+
6+
## The Motivation 🙏🏽
7+
8+
How I like to start my day
9+
10+
* Iced Matcha latte or Cold Brew w/ oatmilk
11+
* Unnecessarily loud music
12+
* BLT (turkey bacon only)
13+
* 30 minutes of exercise
14+
* Sports debate shows
15+
16+
## The Connection 🔗
17+
18+
I don't have a personal prefence with communication. If you have a direct way to reach me, use which ever works best for you.
19+
20+
Phone calls, text, e-mail, morse code ect. Anytime of day, if im awake or not busy I'll respond asap, scouts honor.
21+
22+
## The Learning Style 👀
23+
24+
**The Positive Way** 📈 I'm a visual learner. The best way for me to retain information is by seeing a visual demonstration or example and then repetition of practice.
25+
26+
**The Negative Way** 📉 Reading with out any direction of what i'm doing makes it difficult to retain information.
27+
28+
29+
## The Feedback 🫵🏽
30+
31+
I prefer to receive direct feedback in a 1-on-1 setting. Don't hold any punches. Brute honesty motivates me. I may not like you in the moment but I'll appreciate it later.
32+
33+
On the otherhand, I tend to be soft when giving feedback. I can be very politically correct and try to protect feelings while still getting the point across.
34+
35+
## The Favorite Things 🤌🏽
36+
* Chicken Wings 🍗
37+
* Autumn 🍁
38+
* Sneakers 👟
39+
* Writing Music/Poetry 🎤
40+
* Running 🏃🏽‍♂️
41+
* Cooking 👨🏽‍🍳
42+
* Hats 🧢
43+
* Music 🎧
44+
* Sports 🏀
45+
* Flannels 🪵
46+
47+
## The Goals 🥅
48+
49+
My main goal for this year is to add tech to my creative ablities in any aspect. To start my food content creator journey and to write another book.
50+
51+
## The Proudest Accomplishment 🥳
52+
53+
## heARTwork ❤️
54+
55+
<img src="images/heartwork.jpg" size=400>
679 KB
Loading

lesson_02/README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,37 @@ Please review the following resources before lecture:
88

99
## Homework
1010

11-
TODO(anthonydmays): Add this
11+
- [ ] Complete [Lesson 02 quiz](#lesson-02-quiz-instructions)
12+
- [ ] Do pre-work for [lesson 03](/lesson_03/).
13+
14+
### Prerequisites
15+
16+
To complete this assignment, you must have **Docker** and **VS Code** with the [**Dev Containers**][dev-containers-link] extension installed.
17+
18+
### Lesson 02 Quiz Instructions
19+
20+
For this assignment, you will complete a quiz by modifying a TypeScript application. Within the quiz project, there are tests that you will need to make pass in order to submit your answers. Here are the instructions for completing the assignment:
21+
22+
1. Make sure to sync your fork to pull in the latest changes.
23+
2. Open the project in **VS Code** and make sure to select `Reopen in Container` when prompted.
24+
3. Navigate to the [quiz][lesson-2-quiz-dir] directory and install the required dependencies.
25+
```bash
26+
cd lesson_02/quiz
27+
npm install --prefix ../../lib/typescript/codedifferently-instructional
28+
npm install
29+
npm start
30+
```
31+
4. Open the [lesson2.ts][lesson-2-file] file located in the [quiz/src/][lesson-2-src-dir] directory.
32+
5. Update the code to provide the correct answers to the given questions.
33+
6. When ready to test, run the following command in the `quiz` sub-directory using the terminal:
34+
```bash
35+
npm run test
36+
```
37+
7. Once all tests pass, submit your work by creating a pull request (PR).
38+
39+
[dev-containers-link]: https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers
40+
[lesson-2-quiz-dir]: quiz/
41+
[lesson-2-file]: quiz/src/lesson2.ts
42+
[lesson-2-src-dir]: quiz/src/
43+
[test-report]: quiz/lesson_02_quiz/build/reports/tests/test/index.html
44+
[spotless-link]: https://github.com/diffplug/spotless

lesson_02/quiz/.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
insert_final_newline = true

lesson_02/quiz/.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/

lesson_02/quiz/.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignore artifacts:
2+
build
3+
coverage

lesson_02/quiz/.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

lesson_02/quiz/eslint.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// @ts-check
2+
3+
import eslint from "@eslint/js";
4+
import tseslint from "typescript-eslint";
5+
import eslintConfigPrettier from "eslint-config-prettier";
6+
7+
export default tseslint.config(
8+
eslint.configs.recommended,
9+
...tseslint.configs.strict,
10+
...tseslint.configs.stylistic,
11+
eslintConfigPrettier,
12+
{
13+
ignores: ["build"],
14+
},
15+
);

lesson_02/quiz/jest.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/** @type {import('ts-jest').JestConfigWithTsJest} **/
2+
export default {
3+
testEnvironment: "node",
4+
transform: {
5+
"^.+.tsx?$": ["ts-jest", { useESM: true }],
6+
},
7+
moduleNameMapper: {
8+
"^(\\.\\.?\\/.+)\\.js$": "$1",
9+
},
10+
extensionsToTreatAsEsm: [".ts"],
11+
};

0 commit comments

Comments
 (0)