job changes
This commit is contained in:
parent
e0b947da0e
commit
6ecf830639
12 changed files with 183 additions and 56 deletions
|
@ -10,6 +10,14 @@ const RunningHobby: InfoCardProps = {
|
|||
listClassName: "col-12"
|
||||
}
|
||||
|
||||
const Listing: InfoCardProps = {
|
||||
title: "Lifting",
|
||||
description: "Began lifting when I got into college. (TODO: add more before publishing)",
|
||||
listTitle: "Personal Records",
|
||||
list:["Bench - 200lbs", "Squat - 305lbs"],
|
||||
listClassName: "col-12"
|
||||
}
|
||||
|
||||
const VideogameHobby: InfoCardProps = {
|
||||
title: "Video Games",
|
||||
description: "Video games are what got me interested in programming in the first place. I tend to play them a lot less now in favor of programming though, I'll occasionally sink a couple hours into a game.",
|
||||
|
|
|
@ -2,6 +2,7 @@ import Job from "../../types/Job";
|
|||
import VrboImage from "../images/vrbo-logo-min.png";
|
||||
import CavImage from "../images/cavcash-logo-min.png";
|
||||
import ChicksImage from "../images/chicks-logo.svg";
|
||||
import CompImage from "../images/compwallet-logo.png";
|
||||
|
||||
const VrboJob: Job = {
|
||||
title: "Data Scientist",
|
||||
|
@ -19,15 +20,13 @@ const VrboJob: Job = {
|
|||
|
||||
const CavCashJob: Job = {
|
||||
title: "CEO & Software Engineer",
|
||||
company: "CavCash Inc",
|
||||
company: "CavCash",
|
||||
timespan: "May 2017 - Present",
|
||||
items: [
|
||||
"Founded the company",
|
||||
"Wrote a C# webAPI",
|
||||
"Managed mongoDB and MSSQL databases",
|
||||
"Deployed and maintained k8s clusters on bare metal",
|
||||
"Managed CI/CD & DevOps in Azure DevOps",
|
||||
"Ran & migrated services between Azure, AWS, and GCP"
|
||||
"Deployed and maintained k8s clusters on bare metal on in-house datacenter",
|
||||
],
|
||||
image: CavImage
|
||||
}
|
||||
|
@ -36,7 +35,7 @@ const ChicksJob: Job = {
|
|||
title: "Software Engineer",
|
||||
company: "Chicks Gold",
|
||||
uri: "https://chicksgold.com",
|
||||
timespan: "April 2021 - Present",
|
||||
timespan: "April 2021 - October 2021",
|
||||
items: [
|
||||
"Added features & bugfixes to .NET 5 API",
|
||||
"Added features & bugfixes to Aurelia website",
|
||||
|
@ -46,6 +45,17 @@ const ChicksJob: Job = {
|
|||
image: ChicksImage
|
||||
}
|
||||
|
||||
const CompWalletJob: Job = {
|
||||
title: "Lead Software Developer",
|
||||
company: "Casino CompWallet",
|
||||
timespan: "October 2021 - Present",
|
||||
items: [
|
||||
"Work on Ruby-On-Rails API",
|
||||
"Updated a React Native mobile app"
|
||||
],
|
||||
image: CompImage
|
||||
}
|
||||
|
||||
export const AllJobs: Job[] = [VrboJob, CavCashJob, ChicksJob];
|
||||
|
||||
export const AllJobs: Job[] = [CompWalletJob, CavCashJob, ChicksJob, VrboJob];
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import InfoCardProps from "../../types/InfoCardProps";
|
|||
|
||||
const WebsiteProject: InfoCardProps = {
|
||||
title: "personal-site (this website)",
|
||||
description: "As a primairly backend guy, I wrote my last website as a JSON file (imatating a webAPI). Feedback showed that that was a bad idea so I made this pretty neat site (in my opinion). If you like it, feel free to use it yourself!",
|
||||
description: "As a primairly backend guy, I wrote my last website as a JSON file (imatating a webAPI). Feedback showed that that was a bad idea so I made this pretty neat site (in my opinion). If you like it, feel free to use it yourself! The backend is run in a homemade datacenter (a few Dell Poweredges on a rack) running on Kubernetes.",
|
||||
listTitle: "Technologies & Resources used",
|
||||
list:["React", "Typescript", "Bootstrap", "Icons8", "Docker", "Kubernetes"],
|
||||
link: "https://github.com/nickorlow/personal-site",
|
||||
|
|
BIN
src/static/images/compwallet-logo.png
Normal file
BIN
src/static/images/compwallet-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
Loading…
Add table
Add a link
Reference in a new issue