Operations leader · Analytics engineer · Builder

I run operations and build the systems and tools that make it possible.

Contact-center operations, custom analytics and tooling, and quality systems — held together by one belief: rigorous systems and genuine care for people are the same discipline.

Certified COPC Implementation Leader (R8.0) 5 U.S. patents Indianapolis · Remote

The through-line

An operator who engineers.

Most operations managers don’t build their own tooling; most tool-builders don’t run teams. I do both. Over the past year I moved from Operations Manager to COPC Implementation Lead on a global consumer-technology customer-care program, and along the way I built most of the analytical and operational infrastructure the site runs on — while running a team with the discipline that infrastructure was designed to serve.

Before operations, I spent nearly a decade in medical devices as a product manager and co-founder, where I invented biopsy technology protected by five U.S. patents and carried products through two acquisitions. Different industry, same instinct: understand the problem deeply, then build the thing that solves it.

What I can do

Four things, one operator.

01

Operations Leadership

Run a contact-center operation of 10 supervisors and ~200 advisors. An unbroken weekly one-on-one with every supervisor, a monthly operating standard for the whole team, and a supervisor onboarding program built from scratch. A closed-loop coaching model that measures whether coaching actually moved the metric — and launched a new line of business end to end.

02

Analytics & Data Engineering

Turn hostile raw exports into tools people actually use. Advanced dynamic-array Excel (LET, LAMBDA, FILTER, XLOOKUP), Power Query M, SAP BusinessObjects design, and a weekly ETL pipeline over enterprise BI sources. The centerpiece: an operations dashboard that runs entirely offline — a dozen views synthesized from raw workforce and performance data — used every day by ~40 supervisors and managers.

03

Software & Tooling

Build self-contained offline web applications (HTML, CSS, JavaScript), Chrome extensions (Manifest V3), Python build pipelines, and VBA automation — an ecosystem of internal tools that replaced manual reporting across attendance, adherence, quality, coaching, staffing, and cost, and put self-serve analytics in every supervisor’s hands.

04

Quality & Standards

Certified COPC Implementation Leader (CX Standard R8.0), currently facilitating a site recertification. DMAIC problem-solving, statistically-sampled quality measurement, and target-setting governance that aligns metrics with defensible, auditable measurement rather than reporting artifacts.

How I work

A consistent signature.

  • Ingest the ugly upstream — and return something a person can actually read.
  • Build for the exact moment someone is looking at the screen.
  • Validate before you ship. Perfect before you bake.
  • Don’t hoard the tooling — package it so the whole team can self-serve.
  • Investigate before you correct. Judgment is never handed to a script.
  • Systems and people are one discipline — the tools exist to help supervisors develop their people, not merely watch them.

Proof, not promises

Excel dashboards.

Built independently from public datasets, with the same principles I apply in a professional operations environment: clarity, utility, and actionable insight. Each ships with integrated light and dark modes on a single data source.

Call Center Dashboard

Dynamic performance reporting — slicers, named ranges, and structured models that update as data flows in, tuned with XLOOKUP / LET / FILTER for speed at scale.

DynamicResponsiveFast
Download (Excel) ↓

European Soccer Dashboard

Interactive data storytelling over a rich public dataset — compelling charts, conditional formatting, and drill-downs that make patterns legible at a glance.

EngagingInsightfulInteractive
Download (Excel) ↓

US Rent Dashboard

Geographic and time-series analysis with KPIs, sparklines, and dynamic text — a clean layout and reusable components that streamline both build and daily use.

EfficientCleanAnalytical
Download (Excel) ↓

Deep dive

The build log.

An exhaustive inventory of the systems behind the day job, catalogued for the technically curious — the note below explains the one thing it leaves out.

A note on what’s missing Everything here is my own work, but it belongs to the operation it serves — so product names, internal identifiers, and client context are withheld to protect proprietary work. The architecture, scale, and technique are exactly as described. Ask me about any of it in an interview and I’ll go as deep as confidentiality allows.
SYS.01Browser-extension ecosystem7 systems

A connected suite of Manifest V3 extensions and single-file tools, engineered for a managed enterprise macOS Chrome environment and operating entirely from file:// origins.

Policy-envelope interpreter

chrome://policyenterprise MDMMV3

Ingests a managed-Chrome policy export, resolves the developer-mode/extension-settings interaction, and computes the exact capability envelope available to unpacked extensions by subtracting blocked permissions and runtime-blocked hosts from the full MV3 permission set. The environment was mapped before a single tool was built.

Single-file IDE & control plane name withheld

File System Access APIIndexedDBsingle-file

An extension IDE, deployment pipeline, settings store, and bookmark manager in one self-contained HTML file run from file://. Manages multiple unpacked extensions, scaffolds new ones, and ingests whole-folder bundles through a fenced-block format with a name-match guard against accidental cross-paste. Writes real files via the File System Access API; autosave rides IndexedDB with signature comparison.

Privileged bridge extension

postMessage protocolchrome.bookmarksleast privilege

Grants the control plane Chrome-level reach from a file:// origin over a request/response envelope protocol: seven commands covering namespaced storage, full bookmark-tree read/write with favicon capture, and window/tab launching. A pinned manifest key fixes the extension ID; permissions are scoped to exactly three APIs.

Universal in-page toolkit

offscreen documentsshadow DOMSPA routing

A dual-FAB overlay injected across a single-page-app estate: route patching and MutationObserver unified into one onRoute(), a display wake-lock kept alive by a near-silent offscreen audio loop, scroll-capture-to-text, a local-tool launcher, copy/paste slots, a keystroke feed, and a global styles sheet propagated live across iframes and shadow roots.

Site-documentation surface

element pickingselector capture

An element picker with a persistent documentation table that records target identity per click — ignoring any injected UI — so every internal domain gets structured selector documentation that downstream extraction tools import.

SSO session vault

chrome.cookiesrace conditions

Persists authenticated BI sessions across browser restarts by vaulting cookies across the analytics host and the SSO identity host and re-injecting on startup. A lost-update race from parallel storage writes was diagnosed and resolved by merging all cookies into a single write.

SAP data-extraction extension

SAPUI5 internalsMAIN-world injectionnested iframes

Crosses JavaScript world boundaries to read SAPUI5 binding contexts directly (a content script’s isolated world can’t see window.sap), fans extraction triggers across nested iframes, and returns payloads through a shadow-DOM sidebar. Four extraction modes: query-panel scrape, object/variable definition reads, coordinate-grid tables, and indent-stack tree reconstruction.

SYS.02Single-file application platform5 systems

The house pattern underneath the whole fleet: self-contained offline HTML applicationsno server, no dependencies, no data leaving the machine.

The pattern

SheetJSoffline-firstzero dependency

Each tool is one HTML file with embedded JSON data and in-browser XLSX parsing, built to run in a locked-down, file-origin environment. Every shipped file is simultaneously a snapshot and a re-loadable application.

Self-baking persistence

self-serialization

A “save copy” mechanism that re-serializes the entire application with fresh data baked in — using a pristine-snapshot pattern and a dedicated script-tag injection point to dodge the classic bug where a self-editing download function’s regex matches its own source.

Empirical data laws

data correctnessreconciliation

Aggregation and merge rules validated against system-of-record anchors, never assumed: rates roll up as sum-of-numerator over sum-of-denominator; in-progress periods are excluded from trends; incremental drops merge at day grain; columns parse by header name, never index; truncated worksheet ranges are recomputed before any parse.

Token theming

design tokensdark / light

CSS-token theming with zero hardcoded colors across the fleet — every tool ships integrated dark and light modes on the same data source.

Guarded build pipeline

Pythonjsdompandas truth

Versioned Python builders assemble each tool: string replacement with exact match-count assertions, syntax checks on the extracted script, jsdom verification against pandas-computed truth values, and only baked outputs ship.

SYS.03The daily operating dashboard6 systems

The flagship name withheld: one application, twelve views — the first thing ~40 supervisors and managers open each morning.

Twelve routed views

single-file app~40 daily users

Performance, efficiency, attendance and adherence with a full auxiliary-state breakdown, coaching, alerts, calendars, per-advisor scorecards, daily ledgers, and an embedded outlier-triage view across hundreds of agentsall in one offline file with search, frozen headers, threshold filters, and XLSX/JSON/CSV export.

In-browser synthesis engine

ETL in the browser

The builder ingests raw scheduling, HR, device, and roster files and synthesizes the complete dataset entirely in the browserretiring the manually assembled workbook it replaced.

Minute-resolution small multiples

information designpre-attentive

A full pay period rendered as parallel per-day activity columns at minute resolution, anchored by clock-in/out bands, with a restrained palette that reserves a single accent for attention states — so problems surface before you consciously look for them.

Closed-loop coaching workflow

auditabilityserialized records

Structured coaching forms that preserve the six-week metric window exactly as it looked at each past session, filter the coach’s own prior wording in real time as they type, and close every record with a before/after metric delta. Serial-numbered and audit-ready.

Leave-one-out impact analytics

statistics

Per-advisor hover analytics including a leave-one-out team-impact figure: the points an advisor moves the team average versus the team without them — one hover away, never in the way.

Payroll reconciliation engine

time reconciliationfairness by design

Login/logout time reconciled against payroll time per advisor per day, feeding a daily investigation drill distributed to supervisors — every flagged discrepancy is investigated and confirmed with the person before any correction is made.

SYS.04Excel engine fleet & VBA forensics6 systems

Dozens of recurring analytical workbooks on a template-and-archive cadence, plus the forensic tooling that keeps them honest.

Dynamic-array architecture

LET / LAMBDAspill logic

LET, LAMBDA, FILTER, BYROW, HSTACK, CHOOSECOLS, SEQUENCE and spill logic as the standard formula stack, with structured-table XLOOKUP joins over a shared roster backbone common to every engine.

The fleet, sampled

20+ enginesWFM data

A schedule exporter that reshapes a 31,000-row workforce-management activity dump into readable per-person weeks; an early-warning attendance-governance workbook with escalation templates; an on-time-plotting audit that generates WFM change requests; a supervisor-effectiveness stack-ranking model with a coaching-effectiveness index; billable-training calculation pipelines; compliance controls for security attestations and refund reviews; quarterly absenteeism and attrition analyses.

Workbook forensics tool

VBAintrospection18 audit categories

A structural x-ray of any workbook: eighteen toggleable audit categories — formulas, names, pivots, conditional formatting, external links, a full VBA inventory — each wrapped in its own error trap so one failure never aborts a run. Chases external links and audits linked workbooks read-only; renders a themed report sheet plus an exhaustive JSON export.

VBA round-trip bridge

VBProject APIcode round-trip

Exports every VBA component with a JSON manifest so the extension-side editor can edit Excel code externally, then applies staged changes back — in-place replacement for document modules, remove-and-reimport for the rest — with a written apply log.

Platform-defect workarounds

Mac Excel

A documented set of Mac Excel bug mitigations: comment-shape realignment, note autosizing by wrapped-line estimation, threaded-comment migration that preserves authorship — and a deliberate one-line macro that clears the undo stack to reclaim memory on a taxed machine.

Power Query at the limit

Power Query M~2M rows

Two-million-row datasets held connection-only on a platform with no Data Model support: buffered single-pass cardinality diagnostics, distinct-first classification against millions of rows, and dynamic column derivation so schema drift never silently drops a column.

SYS.05Data & BI layer5 systems

The pipeline and query engineering the whole tool fleet stands on.

Weekly ETL backbone

SAP BusinessObjectsSuperset

A canonical query folder as the single upstream for every downstream tool: interaction, quality-evaluation, survey, and peer-feedback pulls alongside adherence, punch, roster, and scheduling extracts, refreshed on a weekly production cadence.

Multi-universe report engineering

WebI contexts235 variables

Merged reports joining six data universes into one row per interaction across 235 documented variables — built on a gatekeeper-variable pattern with strict context operators, plus a discovered list of platform constraints that shaped every formula.

Statistics in anger

correlationsample sizingchi-squared

Pairwise correlation matrices computed in-formula (LET + MAP over SEQUENCE, with SUMPRODUCT pair counts), chi-squared evidence analysis, and audit-grade sample sizing — n₀ = p(1−p)(z/E)² with finite-population correction and two-sample significance testing.

Fiscal-calendar engineering

5-4-4 periods

Retail-style 5-4-4 fiscal period math threaded through every week code in the reporting estate, cross-checked against the calendar’s own arithmetic across test anchors.

Report-automation chain

Power AutomateTask SchedulerSharePoint

Scheduled report emails captured by cloud flows, transformed locally by scheduled Python builders over synced document libraries, then published and distributed with download-forced share links — an end-to-end reporting workflow with no manual step.

SYS.06Quality & standards instrumentation6 systems

The measurement and evidence machinery behind a COPC recertificationbuilt, not bought.

Living standards reference

COPCsystem of record

A single-file application that became the program’s system of record: a searchable standards codex, a meetings log with heat-shaded calendar rails and verbatim transcript drawers (name-scrubbed), corrective-action tracking against real item numbering, and built-in calculators — behind a macOS-style global search overlay.

Corrective-action evidence discipline

audit evidenceverbatim authorship

A mandated evidence structure per corrective action — observation, actions, evidence, compliance case — under strict authorship rules: other owners’ wording preserved verbatim, nothing fabricated, gaps flagged rather than filled.

Escalation-accuracy program

measurement designformal sampling

Replaced a flattering but non-representative measure with QA-observed audits: formal sample sizing, a three-module framework (sizer, yield, actuals tracker), a collaboration form feeding the tracker, and a data spine at case-and-advisor grain whose defect flag is never null.

Target-setting governance

KPI governance

Exactly two sanctioned derivation methods; a gap-based customer-satisfaction method with scheduled refresh; a calibration scatter that exposed a structural impossibility between two paired targets (complementary tails of one distribution); utilization redefined to in-office shrinkage; trailing-twelve-month baselines with a delta projection bridging missing history.

WFM formula corrections

schedule attainmentutilization

Schedule attainment rebuilt from an aggregate ratio that could exceed 100% into a per-interval pass rate; a twenty-item discrepancy checklist with exact artifact, page, and cell locations; facilitation guides with run-of-show timing, roster chips, and domain-split question banks.

DMAIC driver analysis

DMAIChypothesis register

A multi-phase corrective program on the site’s top dissatisfaction driver: a multi-report join measured in tens of megabytes, a hypothesis-testing register with proven/disproven outcomes, weekly monitoring books, and behavior-level correlation analyses joining quality evaluations to surveys.

SYS.07Desktop, documentation & filesystem4 systems

The glue layer: native launchers, document engineering, and disk archaeology.

Native launcher layer

macOS Automator

Desktop app bundles that wrap the file-origin tools as chromeless native launchersresolving a windowing constraint no extension could — including a dual-tenant messaging split and process-kill utilities.

Filesystem inventory browser

BSD statdisk forensics

A 3,102-entry (~11 GB) filesystem manifest rendered as a dark file-tree browser with proportional size bars, lazy expansion, five-state flagging with per-node comments, and JSON export — used to reconstruct an entire analytical workstream from disk archaeology.

Interactive meeting documentation

ReportLabPDF engineering

Fragmented chat screenshots reconstructed into clean verbatim transcripts, then compiled into interactive PDFs: structured minutes with numbered footnotes and bidirectional anchor navigation between every claim and its source line.

Host-dock component system

iframe registrymessage protocol

A master dashboard housing multiple analytics tools as registered iframe components — a four-edit registration pattern, persistent mounts, and a message-protocol bridge feeding live data to each tool.

Experience

Where I’ve done it.

Grouped by company — expand any role for the full detail.

VXI Global SolutionsJul 2025 – Present
COPC Implementation LeadLeading the site’s COPC recertification and rebuilding its measurement governance.Mar 2026 – Present
  • Certified as a COPC Implementation Leader in the CX Standard Release 8.0 and promoted to lead the site’s recertification program.
  • Serve as the site’s COPC compliance facilitator across operations, workforce management, quality, and training — currently driving every corrective action to closure.
  • Rebuilt KPI target-setting methodology and governance, correcting Schedule Attainment, Utilization, and Bill-to-Pay formulas for defensible, auditable measurement.
  • Designed a statistically-sampled escalation-accuracy measurement program and architected the DMAIC corrective-action plan for the site’s top dissatisfaction driver.
  • Corrected data-integrity issues at the query source, eliminating manual transcription and enabling automated analysis.
Operations ManagerRan a ~200-advisor operation and built the analytics stack it runs on.Jul 2025 – Mar 2026
  • Managed 10 supervisors and ~200 advisors, with an unbroken weekly one-on-one with every supervisor and a monthly operating standard for the team.
  • Conceived and built the site’s daily operating dashboard — an offline, dependency-free application synthesizing raw workforce and performance data into a dozen views — used daily by ~40 supervisors and managers.
  • Built a fleet of analytical tools on a shared roster backbone and a weekly ETL pipeline over SAP BusinessObjects and Superset, replacing manual reporting across attendance, adherence, quality, coaching, staffing, and cost.
  • Stood up a new line of business — launch command center through early quality audits — and authored the supervisor onboarding program.
  • Ran a closed-loop coaching model that records a before/after metric delta for every session and confirms automated recommendations with the person before any action.
IMWIPA, LLC
Operations ManagerM&A analytics — matchmaking dashboards, EBITDA recasts, and a Python teaser generator.May 2025 – Jul 2025
  • Built buyer-seller matchmaking dashboards to surface merger and acquisition opportunities aligned with revenue and growth criteria.
  • Prepared recasts of corporate tax returns, P&Ls, and balance sheets to represent EBITDA, margins, and cash flow for investment decisions.
  • Developed a proprietary Python application to rapidly generate polished investment teasers, standardizing format across the deal pipeline.
ConduentApr 2021 – May 2025
Operations ManagerLed 10+ supervisors / 200+ agents and built the site’s reporting backbone.Jun 2022 – May 2025
  • Led a team of 10+ direct and 200+ indirect reports, consistently exceeding performance goals while managing training, compliance, headcount, and timekeeping.
  • Created and ran a new-line-of-business upskilling process, meeting 100% of requirements across all training waves for nearly 1,000 agents.
  • Streamlined the supervisor training program — rewriting course material, restructuring the syllabus, and teaching classes.
  • Created and maintained a site-wide interactive call-center dashboard adopted from supervisor to director.
  • Built numerous custom Excel tools used daily by 80+ supervisors and 10+ managers to reduce time and effort across the floor.
SupervisorTop CSAT and resolution scores within two months; promoted ahead of schedule.Apr 2021 – Jun 2022
  • Led a team of 20+ direct reports, consistently exceeding performance goals while managing attendance, adherence, compliance, training, and timekeeping.
  • Achieved top customer-satisfaction and resolution scores for the line of business within the first two months; offered a permanent role well ahead of standard timelines.
  • Reinvented mentoring recruitment with a master recruitment tool and developed top candidates into impactful mentors.
  • Created a structured support system facilitating chat support to phone agents during heavy volume.
PAVE Medicalacquired by Mermaid Medical
Product Manager / Co-FounderInvented biopsy technology; three patents; led the exit.2015 – 2022
  • Invented biopsy technologyU.S. Patents US11045173B2, US11839364B2, and US12239299B2, with EU/JP counterparts — working directly with a patent attorney.
  • Designed, conducted, and analyzed in vivo and benchtop testing with prototype devices to finalize specifications.
  • Assisted in the successful exit and transfer of technology to the Mermaid Medical team.
Argon Medical Devices
Product SpecialistCommercialized product lines through acquisition; national sales support and training.2014 – 2015
  • Ensured successful transition of commercialized product lines to the Argon sales team through the acquisition.
  • Supported sales representatives nationwide before, during, and after procedures; conducted regional product training.
US Biopsyacquired by Argon Medical Devices
Product ManagerInvented biopsy technology; two patents; trained physicians and 50+ reps.2012 – 2014
  • Invented biopsy technologyU.S. Patents US9463002B2 and US10004483B2, with EU/JP counterparts.
  • Provided critical troubleshooting during complex procedures, preventing halted procedures and strengthening brand loyalty.
  • Trained and supported physicians and 50+ sales representatives; designed and ran the trade-show booth.

Intellectual property

Five U.S. patents.

Invented biopsy technology across two medical-device companies, with related European and Japanese counterparts.

Toolkit

Skills.

Analytics & data

Dynamic-array Excel (LET, LAMBDA, FILTER, XLOOKUP) · Power Query M · VBA + workbook forensics · SAP BusinessObjects WebI · ETL (BusinessObjects, Superset, Power Automate, SharePoint) · applied statistics

Software

Single-file offline web apps (HTML / CSS / JavaScript) · Chrome extensions (Manifest V3) · Python build pipelines · UX-oriented tool design

Standards & methods

COPC CX Standard (R7.1 / R8.0) · DMAIC · target-setting governance · quality monitoring & coaching frameworks · WFM (NICE / IEX), adherence, forecasting

Leadership

People management & weekly coaching cadence · supervisor onboarding & development · new line-of-business launch · stakeholder & client communication

Fluent on Windows and macOS · Office 365, Adobe Creative Cloud. Technically minded with an eye for design and frictionless UX — off-hours in C++, Python, and Assembly.

Let’s talk

Open to operations leadership, analytics engineering, and performance-tooling roles.

References available upon request.