added all components and assembeled an okayish looking website
This commit is contained in:
parent
33621b1556
commit
d5e25dac3e
44 changed files with 38970 additions and 1587 deletions
21
src/static/data/Hobbies.ts
Normal file
21
src/static/data/Hobbies.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
import InfoCardProps from "../../types/InfoCardProps";
|
||||
|
||||
const RunningHobby: InfoCardProps = {
|
||||
title: "Running",
|
||||
description: "I started running cross country in 7th grade after wanting to beat my friend in the mile. I kept running all the way through to my senior year of high school. I made varsity my sophomore year. Today, I just run with friends casually along with other physical activity like lifting, biking, and kayaking.",
|
||||
listTitle: "Personal Records",
|
||||
list:["1600 - 4:34", "3200 - 10:11", "5K XC - 16:42"],
|
||||
link: "https://tx.milesplit.com/athletes/7325388-nicholas-orlowsky/stats",
|
||||
linkTitle: "Milesplit Profile",
|
||||
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.",
|
||||
listTitle: "Favorites",
|
||||
list: ["Galaga", "Clone Hero", "Minecraft"]
|
||||
}
|
||||
|
||||
export const AllHobbies: InfoCardProps[] = [RunningHobby, VideogameHobby];
|
||||
|
51
src/static/data/Jobs.ts
Normal file
51
src/static/data/Jobs.ts
Normal file
|
@ -0,0 +1,51 @@
|
|||
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";
|
||||
|
||||
const VrboJob: Job = {
|
||||
title: "Data Scientist",
|
||||
company: "Vrbo, a part of Expedia Group",
|
||||
uri: "https://vrbo.com",
|
||||
timespan: "August 2019 - January 2021",
|
||||
items: [
|
||||
"Worked on Natural Language Processing chatbot",
|
||||
"Worked with team to identify dataset patterns",
|
||||
"Helped reduce wait times",
|
||||
"Reduced offsite booking attempts"
|
||||
],
|
||||
image: VrboImage
|
||||
}
|
||||
|
||||
const CavCashJob: Job = {
|
||||
title: "CEO & Software Engineer",
|
||||
company: "CavCash Inc",
|
||||
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"
|
||||
],
|
||||
image: CavImage
|
||||
}
|
||||
|
||||
const ChicksJob: Job = {
|
||||
title: "Software Engineer",
|
||||
company: "Chicks Gold",
|
||||
uri: "https://chicksgold.com",
|
||||
timespan: "April 2021 - Present",
|
||||
items: [
|
||||
"Added features & bugfixes to .NET 5 API",
|
||||
"Added features & bugfixes to Aurelia website",
|
||||
"Worked with team to create new feature & bug tickets",
|
||||
"Deployed code to k8s cluster"
|
||||
],
|
||||
image: ChicksImage
|
||||
}
|
||||
|
||||
|
||||
export const AllJobs: Job[] = [VrboJob, CavCashJob, ChicksJob];
|
||||
|
40
src/static/data/Projects.ts
Normal file
40
src/static/data/Projects.ts
Normal file
|
@ -0,0 +1,40 @@
|
|||
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!",
|
||||
listTitle: "Technologies & Resources used",
|
||||
list:["React", "Typescript", "Bootstrap", "Icons8", "Docker", "Kubernetes"],
|
||||
link: "https://github.com/nickorlow/personal-site",
|
||||
linkTitle: "GitHub Repo"
|
||||
}
|
||||
|
||||
const CavCashProject: InfoCardProps = {
|
||||
title: "cavcash",
|
||||
description: "CavCash started as a project in 2017 as a way to pay with flashdrives. After recruitinf a few friends to help me, we build ourselves into a PayPal competitor but shutdown due to funding. I continued to re-write the platform as a cryptocurrency.",
|
||||
listTitle: "Technologies Used",
|
||||
list: ["C#", ".NET 5", "MSSQL", "mongoDB", "Kubernetes", "Docker", "nginx", "Azure DevOps", "React", "Cloudflare"],
|
||||
link: "https://cavcash.com",
|
||||
linkTitle: "Project Website"
|
||||
}
|
||||
|
||||
const XenMapProject: InfoCardProps = {
|
||||
title: "xenmap",
|
||||
description: "I wanted to use an old iPad as a HUD in my car similar to tesla and it needed a map to complete it. I made this widget to show your current location as a XenHTML widget.",
|
||||
listTitle: "Technologies Used",
|
||||
list: ["HTML", "JavaScript", "CSS", "XenHTML Framework", "XenInfo API"],
|
||||
link: "https://github.com/nickorlow/MapXenHTML",
|
||||
linkTitle: "GitHub Repo"
|
||||
}
|
||||
|
||||
const SPONODEProject: InfoCardProps = {
|
||||
title: "sponode",
|
||||
description: "App for Android & macOS that added songs people sent you to a playlist. Made so we could have a jukebox type setup during track workouts.",
|
||||
listTitle: "Technologies Used",
|
||||
list: ["Java", "Apple Script", "Spotify API", "node.js"],
|
||||
link: "https://github.com/nickorlow/sponode",
|
||||
linkTitle: "GitHub Repo"
|
||||
}
|
||||
|
||||
export const AllProjects: InfoCardProps[] = [WebsiteProject, CavCashProject, XenMapProject, SPONODEProject];
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue