Skip to content

Commit 62f4810

Browse files
committed
chore: undoing changes
1 parent 67e523f commit 62f4810

File tree

3 files changed

+56
-14
lines changed

3 files changed

+56
-14
lines changed

lesson_00/README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Lesson 00 - Developer Workflow: Git Fundamentals
2+
3+
## Pre-work
4+
5+
Please review the following resources before lecture:
6+
7+
### Required
8+
* [Git + GitHub Branches, Forks, and Pull Requests (Video)](https://youtu.be/oa1wXWeH1IQ?si=fnN6f4Ua1dbdWmqN)
9+
* [A Simplified Convention for Naming Branches and Commits in Git](https://dev.to/varbsan/a-simplified-convention-for-naming-branches-and-commits-in-git-il4)
10+
11+
### Recommended
12+
* [The Git Fork-Branch-Pull Workflow](https://www.tomasbeuzen.com/post/git-fork-branch-pull/)
13+
14+
## Homework
15+
16+
- [ ] Create a [personal README](#personal-readme) and [submit](#submitting-your-assignment) via GitHub.
17+
- [ ] Do pre-work for [lesson 01](/lesson_01/).
18+
19+
### Personal README
20+
21+
A personal README is a way to teach others how to best work with you. It is useful for expressing your learning style and personal preferences, likes and dislikes.
22+
23+
For this exercise, you with use the `MARKDOWN` language (the language used to author this very README) to create your own personal version. Your version should incorporate __at least one picture, one list, appropriate headings, and be at least 300 words__.
24+
25+
For inspiration, feel free to check out the examples at [Kaeti's repo][kaeti-repo] or do your own thing. Have fun, but keep it professional!
26+
27+
[kaeti-repo]: https://github.com/kaeti/personal-readme
28+
29+
### Submitting your assignment
30+
31+
To submit your assignment, please do the following:
32+
33+
1. Fork this repository (repo) under your own Github account.
34+
1. In your forked repo, create a new branch and give it a name.
35+
1. Add your `README.md` and accompanying picture files to a sub-folder you create under `lesson_00` (see [lesson_00/anthonymays](/lesson_00/anthonymays) for example).
36+
1. Commit as many changes as you need to your branch and push to Github.
37+
1. When ready to merge, visit this repo to create a pull request (PR).
38+
1. Add details to the PR and create it.
39+
40+
If you need more help, you can check out [this page here][open-source-contributions] or watch [this YouTube video][open-source-youtube].
41+
42+
**Note:** If you would rather not have this README published publicly, please indicate that in your PR description and I will review it without accepting it for merge. The PR can be deleted when done. Don't delete the README however, as you'll need it for later assignments.
43+
44+
[open-source-contributions]: https://github.com/gabrieldemarmiesse/getting_started_open_source
45+
[open-source-youtube]: https://www.youtube.com/watch?v=a_FLqX3vGR4

lesson_00/cdbluejr/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,9 @@ Here are some of the things I need to be a productive person and father.
2626
## Fun Facts
2727

2828
* I used the original IBM PC in high school.
29-
3029
* My first programming language was BASIC, which I learned at the age of 16. I placed 2nd in a national competition for organization formally know as Office Education Association.
31-
3230
* I have been married twice, first married was from June 9th, 1990 to December 2nd, 1999.
3331

3432
## Photo Gallery
3533
<a href = "https://x.com/cdbluejr/status/1838603335156298160/photo/1"><img src="images/GYQH_VxWMAASLTI.jpeg" height=400 /></a>
3634
<a href = "https://x.com/cdbluejr/status/1520458945290252290/photo/1"><img src="images/GYQMlwYW8AAFgoG.jpeg" height=400 /></a>
37-

lesson_02/quiz/src/lesson2.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class Lesson2 {
3939
[AnswerChoice.C, "To delete unnecessary files"],
4040
[AnswerChoice.D, "To run code more efficiently"],
4141
]),
42-
AnswerChoice.B, // Replace `UNANSWERED` with the correct answer.
42+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
4343
);
4444
}
4545

@@ -56,7 +56,7 @@ export class Lesson2 {
5656
[AnswerChoice.C, "A tool for merging branches"],
5757
[AnswerChoice.D, "A way to delete a repository"],
5858
]),
59-
AnswerChoice.A, // Replace `UNANSWERED` with the correct answer.
59+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
6060
);
6161
}
6262

@@ -70,7 +70,7 @@ export class Lesson2 {
7070
[AnswerChoice.C, "Push changes to the server"],
7171
[AnswerChoice.D, "Write code directly in GitHub"],
7272
]),
73-
AnswerChoice.D, // Replace `UNANSWERED` with the correct answer.
73+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
7474
);
7575
}
7676

@@ -84,7 +84,7 @@ export class Lesson2 {
8484
[AnswerChoice.C, "git branch"],
8585
[AnswerChoice.D, "git pull"],
8686
]),
87-
AnswerChoice.B, // Replace `UNANSWERED` with the correct answer.
87+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
8888
);
8989
}
9090

@@ -98,7 +98,7 @@ export class Lesson2 {
9898
[AnswerChoice.C, "NetBeans"],
9999
[AnswerChoice.D, "VS Code"],
100100
]),
101-
AnswerChoice.D, // Replace `UNANSWERED` with the correct answer.
101+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
102102
);
103103
}
104104

@@ -112,7 +112,7 @@ export class Lesson2 {
112112
[AnswerChoice.C, "Dev Containers"],
113113
[AnswerChoice.D, "Source Control"],
114114
]),
115-
AnswerChoice.C, // Replace `UNANSWERED` with the correct answer.
115+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
116116
);
117117
}
118118

@@ -126,7 +126,7 @@ export class Lesson2 {
126126
[AnswerChoice.C, "Playing music"],
127127
[AnswerChoice.D, "Managing source control"],
128128
]),
129-
AnswerChoice.C, // Replace `UNANSWERED` with the correct answer.
129+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
130130
);
131131
}
132132

@@ -140,7 +140,7 @@ export class Lesson2 {
140140
[AnswerChoice.C, "cd"],
141141
[AnswerChoice.D, "mkdir"],
142142
]),
143-
AnswerChoice.B, // Replace `UNANSWERED` with the correct answer.
143+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
144144
);
145145
}
146146

@@ -154,7 +154,7 @@ export class Lesson2 {
154154
[AnswerChoice.C, "cd"],
155155
[AnswerChoice.D, "mkdir"],
156156
]),
157-
AnswerChoice.C, // Replace `UNANSWERED` with the correct answer.
157+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
158158
);
159159
}
160160

@@ -168,7 +168,7 @@ export class Lesson2 {
168168
[AnswerChoice.C, "Remove a file or directory"],
169169
[AnswerChoice.D, "Copy a file or directory"],
170170
]),
171-
AnswerChoice.A, // Replace `UNANSWERED` with the correct answer.
171+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
172172
);
173173
}
174174

@@ -182,7 +182,7 @@ export class Lesson2 {
182182
[AnswerChoice.C, "⌘ + Q"],
183183
[AnswerChoice.D, '⌘ + S, then type "terminal"'],
184184
]),
185-
AnswerChoice.B, // Replace `UNANSWERED` with the correct answer.
185+
AnswerChoice.UNANSWERED, // Replace `UNANSWERED` with the correct answer.
186186
);
187187
}
188188
}

0 commit comments

Comments
 (0)