Available for freelance work

Turning raw data
into business
decisions

I build data-driven web apps, professional dashboards, and automated reporting systems — helping businesses understand and act on their data.

3 Live apps
44+ Clients served
500+ Sites monitored
analytics.py
import pandas as pd
import sqlalchemy as sa

# Connect to Azure SQL
engine = sa.create_engine(
    f"mssql+pyodbc://{config}"
)

# Pull half-hourly readings
df = pd.read_sql("""
    SELECT site, utility,
           SUM(value) AS total_kwh
    FROM   readings
    WHERE  date >= DATEADD(d,-30,GETDATE())
    GROUP  BY site, utility
""", engine)

# Flag anomalies
anomalies = df[
    df.total_kwh > df.total_kwh.mean()
    + 2 * df.total_kwh.std()
]

print(f"⚠ {len(anomalies)} sites flagged")
# → Ready for PowerBI export ✓

Things I've built

Real applications solving real problems — from energy management to personalised nutrition.

● Live Energy Analytics Platform

HESS Analytics

A real-time energy management platform for multi-site operators. Monitors electricity, gas and water consumption across hundreds of locations — with anomaly detection, ESG reporting, and year-on-year benchmarking.

  • Half-hourly electricity monitoring with waste alerts
  • Gas & water tracking with leak detection
  • CO₂ / ESG reporting for compliance
  • Interactive drill-down charts & UK heat maps
44+Clients
500+Sites
3Utilities
Next.jsAzure SQLReactVercel
View Demo
hessanalytics.vercel.app
HESS Analytics
● Live Health & Nutrition App

NutriPlan

A personalised meal planning web app that generates complete 7-day nutrition plans based on individual health profiles — filtering 500+ recipes against medical conditions, allergies, and dietary preferences.

  • 500+ recipes filtered by health profile
  • 25 medical conditions covered
  • 15+ diet types (keto, vegan, gluten-free…)
  • Full macro & calorie calculations
Next.jsReactTailwind CSSVercel
View Demo
mynutriplan.vercel.app
NutriPlan
● Service Business Intelligence

PowerBI Dashboards & Reports

Professional business intelligence solutions for management teams. From interactive KPI dashboards to automated monthly reports — delivered clean, fast, and tailored to your business.

Request a Dashboard →
📊 KPI Tracking Real-time business metrics at a glance
📈 Trend Analysis Year-on-year comparisons & forecasting
🌿 ESG Reporting Carbon & sustainability compliance reports
💰 Cost Analysis Identify savings and optimise spend

What I do

End-to-end data solutions — from database design to deployed web applications.

Web App Development

Full-stack web applications built with Next.js and React. From concept to deployed, production-ready product.

PowerBI & Reporting

Interactive dashboards and automated reports that give decision-makers the right data at a glance.

Database Management

Azure SQL, SQL Server design, optimisation and management. Efficient schemas, fast queries, reliable data.

Data Analysis

Turning raw data into actionable insights — anomaly detection, trend analysis, cost reduction opportunities.

ESG & Energy Reporting

CO₂ tracking, energy benchmarking and sustainability reporting for compliance and management teams.

Data Automation

Automated pipelines that eliminate manual exports and keep your reporting always up to date.

Tools I work with

Frontend
Next.js
React
TypeScript
Tailwind CSS
Data & BI
PowerBI
DAX
Excel (Advanced)
SQL
Database
Azure SQL
SQL Server
T-SQL
Cloud & Deploy
Vercel
Azure
GitHub

Let's build something
together

Have a project in mind? Whether it's a dashboard, a web app, or a data pipeline — I'd love to hear about it.

tonarth@gmail.com