-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMentorPersona
21 lines (15 loc) · 2.62 KB
/
MentorPersona
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Mentors mentor1 = new Mentor("https://www.istockphoto.com/photo/ive-got-everything-i-need-to-have-a-productive-workday-gm588253980-100992091", "Naomi Negash", "naomi.negash@email.com", "linkedin.com/naominegash", "language", "Boothcamp", "Hi there! I'm Naomi. I moved to the states when I was 26. Unfortunately, my computer science degree was not recognized.
I did not want to spend another 4 years in school. A bootcamp was my best option. My journey has given me a passion to help immigrant manouver the tech realm.");
mentorsRepo.save(mentor1);
Mentors mentor2 = new Mentor("https://www.istockphoto.com/photo/the-man-with-the-plan-gm800305700-129833331?utm_source=unsplash&utm_medium=affiliate&utm_campaign=srp_photos_top&utm_content=https%3A%2F%2Funsplash.com%2Fs%2Fphotos%2Fmen-in-tech&utm_term=men%20in%20tech%3A%3Asearch-aggressive-affiliates-v1%3Aa", "Timothy Jones", "timothy.jones@email.com", "linkedin.com/timothyjones", "language", "Boothcamp", "Hi there. My name is Timothy Jones. I started off in finance with a degree from The Ohio State University
After collaborating on a project that required me to understand some of the coding logic I realized I wanted to know more. Enroll in a bootcamp helped me emensly with my career switch. Don't be afraid to make a change.
I'm so happy I did!");
mentorsRepo.save(mentor2);
Mentors mentor3 = new Mentor("https://www.istockphoto.com/photo/female-it-developer-at-workplace-gm1255905237-367553319?utm_source=unsplash&utm_medium=affiliate&utm_campaign=srp_photos_top&utm_content=https%3A%2F%2Funsplash.com%2Fs%2Fphotos%2Fwomen-in-tech&utm_term=women%20in%20tech%3A%3Asearch-aggressive-affiliates-v1%3Aa",
"Julia Webb", "julia.webb@email.com", "linkedin.com/juliawebb", "language", "Boothcamp", "Hello! My name is Julia. At the age of 36 I decided to take a chance on myself and enrolled in a computer coding bootcamp.
With no prior college education, who would have thought that I'd be a full stack developer?! If I can do it, trust me, so can you!");
mentorsRepo.save(mentor3);
Mentors mentor4 = new Mentor("https://www.istockphoto.com/photo/hes-always-ready-to-help-gm1163753970-319658364?utm_source=unsplash&utm_medium=affiliate&utm_campaign=srp_photos_top&utm_content=https%3A%2F%2Funsplash.com%2Fs%2Fphotos%2Fmen-in-tech&utm_term=men%20in%20tech%3A%3Asearch-aggressive-affiliates-v1%3Aa",
"Mark Sanchez", "mark.sanchez@email.com", "linkedin.com/marksanchez", "language", "Self-taught", "Hello, I'm Mark. I'm living proof anyone can be successful in tech. It's not easy, but possible.
With today's resources, it is even more possible. Speaking of resources, you've got one right here!");
mentorsRepo.save(mentor4);