Files
bztmon-site/src/data/experience.ts
T
jwright ae207eb79d Populate site with real CV data; restyle OG subtitle
Real career history (Woolworths, Virtus Health, Linde, ELGAS, Darktime),
cloud-heavy skills matrix, education, LinkedIn, Sydney location, and
projects mapped to actual work. OG subtitle now smaller italic serif.
2026-06-17 16:44:03 +10:00

82 lines
3.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Career history (from CV). The About section shows the most recent few;
// the full list lives here (and on /projects / the CV).
export type Role = {
title: string;
org: string;
period: string;
summary: string;
highlights: string[];
};
export const experience: Role[] = [
{
title: "Infrastructure / DevOps Engineer",
org: "Woolworths",
period: "Aug 2025 Present",
summary:
"Core DevOps infrastructure engineer for store-edge solutions — turning high-level designs into single-press deployments and CD pipelines.",
highlights: [
"Single-touch deployment of an edge AI solution running on Kubernetes at the store edge",
"GPU brought online as code — passthrough via ESXi, end-state manifests / Helm charts",
"Ansible playbook builds wired through a single source-of-truth pipeline with per-store vars",
"Removed manual practices across infra and ops — IaC throughout, spec-driven and documented as code",
],
},
{
title: "Infrastructure Systems Engineer",
org: "Virtus Health",
period: "Aug 2022 Aug 2025",
summary:
"Global IT — optimisation, implementation and projects across an enterprise estate.",
highlights: [
"Managed ~1,000 VMs across a global VMware estate",
"Re-segmented flat sites into isolated VLAN ranges; SD-WAN and Aruba ClearPass onboarding",
"Migrated workloads to Azure (Blob, AVS); upgraded Palo Alto / FortiGate firewalls",
"Led a new major-site build — end-to-end services implementation",
],
},
{
title: "Global IT Infrastructure Engineer",
org: "Linde Asia Pacific",
period: "Sep 2019 Aug 2022",
summary:
"Maintained and modernised global infrastructure to enterprise standards across the region.",
highlights: [
"Global VMware / Dell hosting; PowerShell automation of manual project tasks",
"Migrated Google Business → Microsoft 365 across the region; AWS-hosted ERP access",
"ERP hardware refresh with new mainframe and DR solution; PBX → VoIP across AU/NZ",
],
},
{
title: "Web Developer / Tech Admin",
org: "ELGAS",
period: "Aug 2018 Sep 2019",
summary:
"Development, optimisation and escalation for the IT service-desk team.",
highlights: [
"Automated network management and single-click OS updating / app packaging",
"Cost-saving remote troubleshooting and DR ownership for critical systems",
],
},
{
title: "IT Technician",
org: "Darktime Computer Services",
period: "Nov 2010 Jun 2013",
summary:
"Field and workshop IT across legal firms, schools, real estate and small business.",
highlights: [
"SBS 2008 server installs, Exchange, backups and RAID storage for small business",
"Solo on-site support — diagnose, fix, move on",
],
},
];
export const education: string[] = [
"Advanced Diploma in IT Networking and Security",
"Diploma in IT Networking",
"Certificate IV in IT Networking",
"Ongoing study in IT certifications and new techniques",
];