initial commit

This commit is contained in:
2026-06-01 01:43:58 -05:00
commit bb5bf9e028
17 changed files with 7158 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
export type Role = {
title: string;
company: string;
years: string;
current?: boolean;
bullets: string[];
};
export const work: Role[] = [
{
title: "CIO / Co-founder",
company: "SimpleLogic Solutions LLC",
years: "present",
current: true,
bullets: [
"Founded and operate a managed IT services company and infrastructure platform, providing systems administration, networking, cloud, and cybersecurity services to businesses across Tennessee.",
"Design, deploy, and maintain Linux servers, virtualization platforms, business networks, device management systems, backups, and cloud infrastructure.",
"Lead product development, software engineering, business operations, and technical strategy for Launchd and internal automation platforms.",
],
},
{
title: "Owner & Operator",
company: "NixLabs Networks",
years: "20212025",
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: "Field Technician",
company: "Metro Nashville Public Schools",
years: "2022-2023",
bullets: [
"Installed, configured, and maintained computer hardware, software, and networking equipment across district facilities.",
"Troubleshot and resolved technical issues for staff and students, minimizing service interruptions and downtime.",
"Assisted with device imaging, software deployment, inventory management, and large-scale technology rollouts.",
],
},
];