From abb4fcd9097bb3f2fc75703df6e19f8a4b0329f1 Mon Sep 17 00:00:00 2001 From: Andy Charlwood Date: Tue, 17 Feb 2026 03:18:04 +0000 Subject: [PATCH] audit: verify skills.ts against reference documents MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Python: startYear corrected 2019→2017 (self-taught during Tesco night shifts per secondary ref); yearsOfExperience 6→8 - SQL: startYear corrected 2018→2022 (learned after gaining NHS database access per secondary ref); removed unverified pre-2022 history entries - Power BI: fixed prescribing history year inconsistency (2019→2020); removed "PharMetrics real-time expenditure dashboard" reference - All skill categories and names verified against CV Core Competencies --- src/data/skills.ts | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/data/skills.ts b/src/data/skills.ts index ac9c2b8..6c462d3 100644 --- a/src/data/skills.ts +++ b/src/data/skills.ts @@ -23,14 +23,14 @@ export const skills: SkillMedication[] = [ id: 'python', name: 'Python', frequency: 'Daily', - startYear: 2019, - yearsOfExperience: 6, + startYear: 2017, + yearsOfExperience: 8, proficiency: 90, category: 'Technical', status: 'Active', icon: 'Code2', prescribingHistory: [ - { year: 2017, description: 'Started: Self-taught for data analysis automation' }, + { year: 2017, description: 'Started: Self-taught during Tesco night shifts for data analysis automation' }, { year: 2019, description: 'Increased: Dashboard development, data pipeline work' }, { year: 2022, description: 'Specialist use: Blueteq automation, Sankey analysis tools' }, { year: 2024, description: 'Advanced: Switching algorithm (14,000 patients), CD monitoring' }, @@ -41,16 +41,15 @@ export const skills: SkillMedication[] = [ id: 'sql', name: 'SQL', frequency: 'Daily', - startYear: 2018, - yearsOfExperience: 7, + startYear: 2022, + yearsOfExperience: 3, proficiency: 88, category: 'Technical', status: 'Active', icon: 'Database', prescribingHistory: [ - { year: 2017, description: 'Started: Basic querying for prescribing analysis' }, - { year: 2019, description: 'Increased: Complex joins, data transformation' }, - { year: 2022, description: 'Advanced: Patient-level analytics, dm+d integration' }, + { year: 2022, description: 'Started: Gained access to NHS databases, prescribing data querying' }, + { year: 2023, description: 'Increased: Complex joins, data transformation, Blueteq integration' }, { year: 2024, description: 'Specialist: Comprehensive medicines data table development' }, { year: 2025, description: 'Current: Population health data infrastructure' }, ], @@ -66,9 +65,9 @@ export const skills: SkillMedication[] = [ status: 'Active', icon: 'PieChart', prescribingHistory: [ - { year: 2019, description: 'Started: Dashboard creation for team reporting' }, - { year: 2021, description: 'Increased: DAX measures, data modelling' }, - { year: 2024, description: 'Advanced: PharMetrics real-time expenditure dashboard' }, + { year: 2020, description: 'Started: Dashboard creation for team reporting' }, + { year: 2022, description: 'Increased: DAX measures, data modelling' }, + { year: 2024, description: 'Advanced: Switching progress dashboards, executive reporting' }, { year: 2025, description: 'Current: DOAC switching scenario model, executive reporting' }, ], },