Make the computer do the boring part. Automatically.

T-SQL • Python • Excel/VBA — automate reports, clean data, build repeatable pipelines, and tune slow queries.

The “expert” questions
What’s the input? What’s the output? How often? What breaks today? What’s the definition of “done”?
Code snippets (tabs)
click a tab

Common projects

  • Automated exports (CSV/PDF) on a schedule
  • SQL Server query tuning and index review
  • Excel “one-click” reports with VBA
  • Data cleanup/validation rules
  • ETL scripts (files → database)

How I keep it “expert level”

Correctness first
Edge cases, nulls, duplicates, and retries handled on purpose.
Performance and cost
Avoid RBAR, reduce IO, add the right indexes.