This commit is contained in:
2026-07-20 10:49:30 -05:00
parent 10bacc5a3c
commit 8f344ea37e
4 changed files with 277 additions and 65 deletions
+7 -31
View File
@@ -3,7 +3,7 @@ export type Role = {
company: string;
years: string;
current?: boolean;
bullets: string[];
description: string;
};
export const work: Role[] = [
@@ -11,60 +11,36 @@ 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.",
],
description: "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.",
],
description: "Diagnosed and repaired customer computers, including hardware failures and software issues. Set up enterprise networks and servers for contract clients, while also handling storefront sales, customer service, and daily 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.",
],
description: "Deployed and configured Windows computers using Windows Deployment Services (WDS). Diagnosed hardware and software problems for staff and students across district facilities, tracked devices, and prepared equipment for 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.",
],
description: "Designed and maintained the systems architecture behind the company's hosted services. Configured Cloudflare for DNS, traffic routing, and application security, and set up load balancing to 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.",
],
description: "Troubleshot and repaired desktops, laptops, and other computer hardware. Helped customers choose systems, replacement parts, and upgrades, 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.",
],
description: "Built and maintained back-end services in TypeScript, including APIs and server-side application features. Diagnosed bugs, reviewed changes, and tested releases with a remote development team.",
},
];