Andy Sawyer

Andy Sawyer Profile

profile.ts
1
// // Professional Profile
2
const overview = {
3
name: "Andy Sawyer",
4
role: "Strategy Leader & Advisor - Data, AI & Automation",
5
links: {
9
}
10
};
experience.ts
1
// // Professional Overview
2
class ProfessionalExperience {
3
getOverview() {
4
return "Extensive experience in data leadership roles, spanning NYSE-listed corporations, private-equity backed multinationals, and bootstrapped scale-ups";
5
}
6
7
getAchievements() {
8
return [
9
"Led teams of 20+ members",
10
"Managed budgets over $5M",
11
"Established robust data governance practices",
12
"Deployed six greenfield data warehouses",
13
"Delivered three successful data strategies"
14
];
15
}
16
}
skills.ts
1
// // Technical Proficiencies
2
const skills = {
3
currentFocus: [
4
"Data Governance Frameworks",
5
"Team Development",
6
"Data Strategy",
7
"Writing a Technical Data Book"
8
],
9
coreSkills: [
10
"Strategic Leadership",
11
"Data Engineering",
12
"Data Analytics"
13
],
14
techStack: [
15
"Snowflake",
16
"dbt",
17
"AWS",
18
"Python",
19
"TypeScript",
20
"Docker",
21
"FiveTran"
22
]
23
};
qualifications.ts
1
// // Qualifications and Certifications
2
const qualificationsAndCertifications = {
3
qualifications: [
4
"Graduate Certificate, Data Science - RMIT (2020)",
5
"Graduate Certificate, Professional Accounting - CQU (2014)",
6
"Bachelor of Business Administration - SCU (2012)"
7
],
8
certifications: [
9
"SAFe (2024)",
10
"CPA Australia (2018)",
11
"Certified Scrum Master (2017)",
12
"PRINCE2 (2012)"
13
]
14
};

© 2025 Andy Sawyer • andy-sawyer.org