Skip to content

Commit 42367e3

Browse files
authored
Merge branch 'code-differently:main' into patch-1
2 parents 7fa2914 + 0ed006e commit 42367e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+12269
-4
lines changed

β€Ž.devcontainer/devcontainer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"ghcr.io/devcontainers/features/python:1": {},
1616
"ghcr.io/devcontainers-contrib/features/ts-node:1": {},
1717
"ghcr.io/devcontainers/features/sshd:1": {},
18-
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {}
18+
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
19+
"ghcr.io/devcontainers/features/github-cli:1": {}
1920
},
2021
"portsAttributes": {
2122
"80": {
@@ -35,7 +36,11 @@
3536
"ritwickdey.LiveServer",
3637
"mechatroner.rainbow-csv",
3738
"alexcvzz.vscode-sqlite"
38-
]
39+
],
40+
"settings": {
41+
"terminal.integrated.defaultProfile.linux": "zsh",
42+
"terminal.integrated.profiles.linux": { "zsh": { "path": "/bin/zsh" } }
43+
}
3944
}
4045
}
4146
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Check Lesson 02 Pull Request
2+
3+
on:
4+
pull_request:
5+
branches: [ "main" ]
6+
paths:
7+
- "lesson_02/quiz/**"
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up JDK 17
19+
uses: actions/setup-java@v4
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
24+
# Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies.
25+
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
26+
- name: Setup Gradle
27+
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
28+
29+
- name: Use Node.js
30+
uses: actions/setup-node@v4
31+
with:
32+
node-version: '20.x'
33+
34+
- name: Build Shared Lib with Node.js
35+
working-directory: ./lib/typescript/codedifferently-instructional
36+
run: npm ci
37+
38+
- name: Build Lesson 02 with Node.js
39+
working-directory: ./lesson_02/quiz
40+
run: |
41+
npm ci
42+
npm run test

β€Ž.github/workflows/check_push.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [ "main" ]
66
paths:
77
- "lib/**"
8+
- "lesson_02/quiz/**"
89

910
jobs:
1011
build:
@@ -26,8 +27,19 @@ jobs:
2627
- name: Setup Gradle
2728
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
2829

30+
- name: Use Node.js
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: '20.x'
34+
2935
- name: Build Shared Lib with Gradle Wrapper
3036
working-directory: ./lib/java/codedifferently-instructional
3137
run: ./gradlew check
3238

39+
- name: Build Shared Lib with Node.js
40+
working-directory: ./lib/typescript/codedifferently-instructional
41+
run: |
42+
npm ci
43+
npm run test
44+
3345

β€ŽREADME.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code Differently 2024 Q4 Cohort
22

3-
[![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/code-differently/code-differently-24-q1)
4-
[![Check Push](https://github.com/code-differently/code-differently-24-q1/actions/workflows/check_push.yml/badge.svg)](https://github.com/code-differently/code-differently-24-q1/actions/workflows/check_push.yml)
3+
[![Open in Dev Containers](https://img.shields.io/static/v1?label=Dev%20Containers&message=Open&color=blue&logo=visualstudiocode)](https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/code-differently/code-differently-24-q4)
4+
[![Check Push](https://github.com/code-differently/code-differently-24-q4/actions/workflows/check_push.yml/badge.svg)](https://github.com/code-differently/code-differently-24-q4/actions/workflows/check_push.yml)
55

66
### Purpose
77
Main project repo for the Code Differently 2024 Q4 cohort. Read the [syllabus](/syllabus/) for more information about the class. Use the lesson folders to find and submit homework assignments.

β€Žlesson_00/amiyahjones/README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Mya.README
2+
```Javascript
3+
const Mya = class SoftwareEngineer {
4+
intern(code, tools) {
5+
self.code = Javascript, HTML, CSS, Java;
6+
self.tools = React, Docker;
7+
}
8+
};
9+
10+
// Intrested in bringing ideas to life within a web browser.
11+
// Learning how websites become quick, responsive, and accesssible to everyone.
12+
```
13+
14+
<a href="https://images.app.goo.gl/ww5Jn4V8C5KFxpaC9"><img src="img/banner.png" height="200px" width="100%"/></a>
15+
16+
### ☴ My work hours
17+
<code style="color : aquamarine">9AM-5PM</code> I'm an early bird and often begin the day with a head start of my work. Feel free to reach me by email during this time, and I'll get back to you as soon as I'm able!
18+
19+
### What's the best way to communicate with me? .☘︎ ݁˖
20+
Private message through google chat works perfectly. Email works too as a follow up or if I happened to miss one of your messages.
21+
> [!TIP]
22+
> _In case I don't respond:_ Ping me again on google chat or send me another email!
23+
24+
### I'd be happy to help you with κ’° ﹍ κ’±
25+
* Code suggestions
26+
* Explain or understand a code snippet
27+
* Photos + design ideas
28+
29+
## Extra β“˜
30+
* ✦ procreate artist ↓ <br>
31+
- I like to combine my art and code together!
32+
- In case you find me with my ipad, that's why
33+
* visual learner <br>
34+
* Jr Developer HS Intern for 4 years with Code Differently (youth program)
35+
* No, I don't drink coffee. ~~Hot chocolate is my go to~~
36+
37+
> I'm the type of person that if you ask me a question and I don't know the answer, I'm gonna tell you that I don't know. But I bet you what, I know how to find the answer and I will find the answer. <br> - Will smith
38+
39+
40+
###### // readme inspired by [Kaeti's repo][kaeti-repo] , code snippet inspired by [Thai Brega]
41+
42+
[kaeti-repo]: https://github.com/kaeti/personal-readme
43+
[Thai brega]: https://github.com/Thaiane/Thaiane
913 KB
Loading

β€Žlesson_00/dasiaenglish/README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Dasia English
2+
3+
## Get to know me :)
4+
5+
Hello everyone! I am excited to be in this program and further my education in tech. I graduated from the University of Delaware majoring in Entrepreneurship, and minored in Disability Studies. Not to mention I was on the Coed Cheer team and named captain my Senior year. I have 19 years of experience in cheerleading. With that experience, I also have won a lot of cool things in those years. My most recent accomplishment is being a 4x Collegiate Champion in a row.
6+
7+
## 2024 Game Day Champions (6peat)
8+
9+
<img src= "images/Celebration.JPG" height=400/>
10+
11+
## Current jobs
12+
1. First State Gymnastics
13+
* Insructor/Front Desk
14+
1. M.O.T All Stars
15+
* Coaching a Mini level 1 prep Team
16+
1. Odessa High School Cheer Coach
17+
* JV Cheer Team
18+
1. Private Lessons (Personal business)
19+
* Tumbling, stretching, and Jump 1-on-1's
20+
21+
## Support
22+
23+
I am a hands-on-learner. I also learn from constructive feedback. I like to know when I am wrong. Mainly because I want to continuously make myself better. I also like to get credit when my credit is due.
24+
25+
## Contact me
26+
27+
I am available from 9am-9pm. The best time is before 12pm
28+
29+
## Goals for the coming Year
30+
31+
Finding my career job in Tech. I also would like my cheerleading team to be undefeated.
32+
33+
## Important to know
34+
35+
* When I am doing work I rather not get interrupted because I will lose my train of thought. I would appreciate if people would wait until I am finished to talk to me.
36+
* Time management is big for me
37+
* I have to be organized in order for me to be my most productive self
38+
39+
40+
41+
# What will get me talking
42+
43+
* I love talking about cheerleading. Like I said before I have been doing cheerleading since I was 3 years old. I have not stopped since.
44+
* I enjoy talking about clothing and shopping. I have so many clothes. I love going to the mall. I also enjoy going to the mall. I did have to take a pause on shopping because I am starting to not have anywhere to put my clothes.
45+
* I have torn my ACL and I love to relate to people in this way and give them encouragement on the 9 month process. I know how it feels to have to take a step back from doing things how you normally do them and having to adapt to your new life.
46+
* I also like to talk about cheerleading skills. I enjoy spreading my knowledge and helping people achieve skills that I already know. I get pride and joy from doing so.
390 KB
Loading

β€Ž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

0 commit comments

Comments
Β (0)