-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
104 lines (104 loc) · 5.77 KB
/
config.js
File metadata and controls
104 lines (104 loc) · 5.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
window.PorfolioConfig = {
name: 'Tavish James Kingshott Cary',
jobTitle: 'Full-stack Software Engineer',
jobDescription: 'I am Tavish Cary. I am a software developer with a background in philosophy. While I have no formal education in philosophy, I’ve spent the better part of the last 8 years figuring out the world and how it works. This includes theology, politics, ethics, economics, sociology, and everything in between. This has made me good at figuring out complex problems. One change in logic can create a cascade of changes down the line. I’m good at seeing the flaws in certain ways of thinking and will bring that into my software development career.',
skills: [
{
name: 'HTML',
description: 'The most basic language, and the first one many people learn. It is the backbone of web development.'
},
{
name: 'CSS',
description: 'I\'m not the most creative or artistic person. So I like using libraries like Bootstrap and Material UI for styling, but I know vanilla CSS as well.'
},
{
name: 'JavaScript',
description: 'JS is my favorite language. I love how logical it is and all the cool things you can do with it.'
},
{
name: 'React',
description: 'An amazing JS library (or framework depending on who you ask). It\'s my favorite way to build websites. It so easily combines JS and HTML and makes your code into a very dynamic SPA.'
},
{
name: 'Node & Express',
description: 'JavaScript for the back end. I like working on the backend with Node and Express. And I get to use JS.'
},
{
name: 'MongoDB & Mongoose',
description: 'Mongo is a super fun and simple database, that\'s good for simple requests. Plus, you can use JS with Mongoose.'
},
{
name: 'SQL',
description: 'SQL is a great database language. I love the way you can create connected tables. I also have some faimliarity with MySQL and PostgreSQL.'
},
{
name: 'Python & Django',
description: 'I\'m newer with Python and Django, but I used them to build the backend for my capstone project. I am very ready to build this skill more.'
}
],
works: [
{
name: 'Do It Right',
link: 'https://rest4-hackathon.github.io/DIR-Client/',
description: 'Worked with team during Small Business Hackathon (with Data Scientists and UX designers) to develop a Chrome extension called Do It Right. DIR redirects people from third party companies like Doordash to the restaurants themselves. For those who want to support small business restaurants, this will help them do so. Built with JavaScript and HTML/CSS.'
},
{
name: 'Therapy Nomads Blog',
link: 'https://therapynomads.com',
description: 'This is a personal blog recording the travels and adventures for my wife and I. It was built primarily with React. It was built almost from scratch. I utilized Google Firebase to host it and use as a back end for storage and database.'
},
{
name: 'Tavvy\'s Games',
link: 'https://tavvycat.github.io/video-games-client/',
description: 'An app to help people find their next favorite game. V1 just has a list of user created games, that people can leave reviews on. V2 will have tags on each game, and search features so that you can look based on genre. Built with Django and PostgreSQL for the backend and React and Material UI for the front.'
},
{
name: 'The Meme Store',
link: 'https://arcreactors.github.io/Ecommerce-store-client/',
description: 'This is a simple store that "sells" memes. It was a team project where we built both the front end and back end. We used Express and Mongoose for the back end and React and Bootstrap for the front end. We also implemented Stripe for the payment.'
},
{
name: 'Travel Rehab Specialist Job Site',
link: 'https://tavvycat.github.io/Travel-Jobs-Client/',
description: 'This is an app that connects traveling rehab specialists looking for contracts to facilities and companies offering contracts. When someone signs in they can choose employer or employee, and employees choose which occupation they are. The Employers can post new jobs that anyone can see. And the employees see those jobs (next version will have ability to apply).'
},
{
name: 'Tic Tac Toe Game',
link: 'https://tavvycat.github.io/tic-tac-toe-client/',
description: 'This is the front end for a simple Tic Tac Toe game where you can sign up for an account and once signed in you can play an infinite amount of games. The API will keep track of all the games you\'ve played. I\'ve also added a computer player that will try to block you when you get 2 in a row.'
},
{
name: 'Burger Builder',
link: 'https://burger-builder-6a79e.firebaseapp.com/',
description: 'Built Burger Builder app throughout React: The Complete Guide course by Academind on Udemy. Used Redux and Routes. Used Firebase as back end. Learned all about React throughout course.'
}
],
hobbies: [
{
name: 'Video Games',
description: 'I\'ve played video games basically since birth. I think they are a great way to either relax or train your mind in strategy.'
},
{
name: 'Learning',
description: 'I love learning about just about everything. Science, Philosophy, etc. I love it all.'
},
{
name: 'Loving My Cats',
description: 'I have two kitties named Neko and Zeus. They\'re both black and so cute! Sometimes they play fetch with me. And they sleep with me at night'
}
],
contacts: {
email: 'tavish.cary@welch.edu',
mobileNo: '+3132418354',
links: [
{
name: 'GitHub',
link: 'https://github.com/TavvyCat'
},
{
name: 'LinkedIn',
link: 'https://www.linkedin.com/in/tavish-cary/'
}
]
}
};