Skip to content

Commit 760af04

Browse files
authored
Merge branch 'code-differently:main' into cdbluejr_00
2 parents 10adb04 + 821f130 commit 760af04

20 files changed

+5400
-2
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
}

lesson_00/nilejackson/README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Nile Jackson's README.md
2+
3+
## Introduction
4+
Hi, my name is Nile Jackson. I started learning JavaScript about a month ago, and I'm about two weeks into my journey with Java; I'm new. I decided to learn programming because of my fascination with digital audio workstation plugins, and I plan on building my own in due time. Before Code Differently, I worked primarily in juvenile detention; this wasn't fulfilling, so a little over a year ago I rented a room in Brooklyn, New York, and began an audio engineering internship at a place called Jungle Studios. After two months at Jungle and several odd jobs, I landed my first "gig" as the sound guy at a local bar called Skytown. I continued working small gigs for a few months while traveling back to Delaware three times a week to do carpentry work with a longtime friend. Eventually, I decided that this lifestyle wasn't sustainable, so after another four-month internship at Manhattan Beach Studios, I did some research and discovered Code Differently.
5+
6+
## Likes
7+
I enjoy cooking because I'm an eight-year vegan who misses the dishes I grew up on, namely Jamaican food; I spend a lot of downtime in the kitchen trying to "veganize" things. Other than food, I love to read. I hated books as a kid, but four or five years ago, I moved to Iowa to play (school) football at a small private college called William Penn. I wasn't a fan of Iowa or the school, so I began using the library as a place to escape. I also like my two dogs, Pico (a pit bull/Great Dane mix) and LuLu (a small mut of some sort).
8+
9+
## Dislikes
10+
I'm not a fan of the following:
11+
- Artichokes
12+
- English breakfast tea
13+
- The New York subway system
14+
- Excessively cold winters
15+
16+
## Hobbies
17+
Some of my hobbies include:
18+
- Various forms of exercise (force of habit from a life of sport)
19+
- Reading (right now I'm reading a book called *Cosmos and Psyche* by Richard Tarnas)
20+
- Anime/manga (favorite anime: *Berserk*, favorite manga: *Sakamoto Days*)
21+
- Lounging/napping with my dogs Pico and LuLu
22+
23+
## My Working/Learning Style
24+
Myers-Briggs says I'm an INTP. It usually takes me some time to open up to new people (peers/coworkers), but after that, I'm pretty much an open book. I'm a visual learner who values repetition. Professionally, I'm not sure what my style is, but I'm working on that.
25+
26+
## My Circadian Rhythm
27+
I'm a night owl, but I'd like to change that, as most of my nights tend to spill into days. This is also a work in progress.
28+
29+
## Why I Value Programming
30+
I'm sure this will change over time, but for now, I'll say I value programming because it's empowering; I went to middle/high school for fine art because I loved making "something from nothing," and the idea of making a program stirs up that same feeling.
31+
32+
## Moving Forward
33+
I look forward to learning GitHub, Git, and Docker because I don't enjoy feeling confused. I also hope I can make myself an asset to the other members of my cohort, as that would mean that I have a clue as to what's going on. My main goal here at Code Differently is to gain programming skills, get better at problem-solving, build relationships, and get a job so I can get paid to learn.
34+
35+
## Images
36+
![Nile Jackson](/lesson_00/nilejackson/images/jpeg.jpeg)
37+
38+
![Sakamoto Days](/lesson_00/nilejackson/images/sakamoto-days-other-visual-1.jpg.webp)
3.34 KB
Loading
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/** @type {import('ts-jest').JestConfigWithTsJest} **/
2+
export default {
3+
testEnvironment: "node",
4+
transform: {
5+
"^.+.tsx?$": ["ts-jest",{}],
6+
},
7+
"moduleNameMapper": {
8+
"^(\\.\\.?\\/.+)\\.js$": "$1",
9+
},
10+
};

0 commit comments

Comments
 (0)