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
+27
View File
@@ -0,0 +1,27 @@
export type Area = {
title: string;
body: string;
};
export const practice: Area[] = [
{
title: 'Networking & Systems Administration',
body: 'Design and maintain business network infrastructure. Administer mail servers, web servers, and databases. Implement security and monitoring.',
},
{
title: 'Desktop Support & Technical Services',
body: 'End-user support across Windows, Mac, and Linux. Hardware and software troubleshooting, system imaging and deployment, IT asset management.',
},
{
title: 'Programming & Automation Engineering',
body: 'Automation through scripting and open-source development. Custom tools for operational workflows, CI/CD pipelines, and system monitoring.',
},
{
title: 'Web Development & Frontend Engineering',
body: 'Web applications with Svelte and Tailwind. Responsive, accessible interfaces for internal tools and client work.',
},
{
title: 'Creative Production & Media Services',
body: 'Video production, live audio-visual systems, and digital content for broadcast and clients.',
},
];
+15
View File
@@ -0,0 +1,15 @@
export const tools: string[] = [
'Linux',
'macOS',
'Windows',
'Python',
'TypeScript',
'Svelte',
'TailwindCSS',
'Docker',
'Git',
'GitHub',
'nginx',
'Azure',
'GoogleWorkspace',
];
+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.",
],
},
];