I build data-driven web apps, professional dashboards, and automated reporting systems — helping businesses understand and act on their data.
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 ✓
// projects
Real applications solving real problems — from energy management to personalised nutrition.
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.
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.
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 →// services
End-to-end data solutions — from database design to deployed web applications.
Full-stack web applications built with Next.js and React. From concept to deployed, production-ready product.
Interactive dashboards and automated reports that give decision-makers the right data at a glance.
Azure SQL, SQL Server design, optimisation and management. Efficient schemas, fast queries, reliable data.
Turning raw data into actionable insights — anomaly detection, trend analysis, cost reduction opportunities.
CO₂ tracking, energy benchmarking and sustainability reporting for compliance and management teams.
Automated pipelines that eliminate manual exports and keep your reporting always up to date.
// tech stack
// contact
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