71 lines
2.6 KiB
TypeScript
71 lines
2.6 KiB
TypeScript
export type Role = {
|
|
title: string;
|
|
company: string;
|
|
years: string;
|
|
current?: boolean;
|
|
bullets: string[];
|
|
};
|
|
|
|
export const work: Role[] = [
|
|
{
|
|
title: "Owner & Operator",
|
|
company: "NixLabs Networks",
|
|
years: "2021 - 2024",
|
|
bullets: [
|
|
"Designed, deployed, and maintained secure network infrastructure, hosting platforms, and Linux-based systems for clients.",
|
|
"Automated infrastructure management and operational workflows using Bash, Python, and open-source technologies.",
|
|
"Provided technical support, troubleshooting, and systems administration for production server environments.",
|
|
],
|
|
},
|
|
{
|
|
title: "Technical Specialist",
|
|
company: "Computer House · Part-time",
|
|
years: "Jun - Aug 2023",
|
|
bullets: [
|
|
"Diagnosed and repaired customer computers, including hardware failures and software issues.",
|
|
"Set up enterprise networks and servers for contract clients.",
|
|
"Handled storefront sales, customer service, and day-to-day shop operations.",
|
|
],
|
|
},
|
|
{
|
|
title: "IT Support Intern",
|
|
company: "Metro Nashville Public Schools · Internship",
|
|
years: "Jan - Jul 2023",
|
|
bullets: [
|
|
"Deployed and configured Windows computers using Windows Deployment Services (WDS).",
|
|
"Diagnosed hardware and software problems for staff and students across district facilities.",
|
|
"Helped track devices and prepare equipment for district technology rollouts.",
|
|
],
|
|
},
|
|
{
|
|
title: "System Architect",
|
|
company: "Fyra Labs · Part-time",
|
|
years: "Mar - Oct 2022",
|
|
bullets: [
|
|
"Designed and maintained the systems architecture behind the company's hosted services.",
|
|
"Configured Cloudflare services for DNS, traffic routing, and application security.",
|
|
"Set up load balancing to distribute traffic and keep services available during demand spikes.",
|
|
],
|
|
},
|
|
{
|
|
title: "Technical Specialist",
|
|
company: "Computer House Inc · Seasonal",
|
|
years: "Jun - Aug 2022",
|
|
bullets: [
|
|
"Troubleshot and repaired desktops, laptops, and computer hardware for customers.",
|
|
"Helped customers choose systems, replacement parts, and upgrades based on their needs.",
|
|
"Prepared new computers for sale and supported daily storefront operations.",
|
|
],
|
|
},
|
|
{
|
|
title: "Software Engineer",
|
|
company: "Innatical · Part-time",
|
|
years: "Apr - Oct 2021",
|
|
bullets: [
|
|
"Built and maintained back-end services in TypeScript.",
|
|
"Worked on APIs and server-side application features for the company's software projects.",
|
|
"Diagnosed bugs, reviewed changes, and tested releases with a remote development team.",
|
|
],
|
|
},
|
|
];
|