Build Real Projects. Ship Real Code.
Step-by-step build guides for production projects. Clone, set up, run, and understand every line — not just tutorials.
MedScribe AI
Local-first AI clinical documentation — speech to structured FHIR notes
- ✓Local speech-to-text with faster-whisper — audio never leaves the server
- ✓Structured SOAP note generation with local LLM (Ollama)
- ✓5 clinical specialty templates: GP, psychiatry, surgery, emergency, pediatrics
AI Notes App
Azure-native notes app with GPT-4o-mini AI features, Clean Architecture, and full CI/CD to Azure
- ✓Create, edit, delete, and pin notes with live character counter and input validation
- ✓Instant search across all notes (press / to focus)
- ✓AI: generate a full note from just a title via Azure OpenAI GPT-4o-mini
Enterprise Verification System
Production KYC/KYP microservice — AI confidence scoring, human-in-the-loop review, state machines, and GDPR compliance
- ✓AI confidence scoring on submitted documents — never makes the final decision
- ✓Human-in-the-loop review: admin approves or rejects with reason
- ✓Strict state machine: PENDING → IN_REVIEW → APPROVED / REJECTED — no invalid transitions
TaskFlow API
Production .NET REST API with EF Core, JWT auth, and PostgreSQL
- ✓Minimal API with endpoint groups and typed results
- ✓EF Core with PostgreSQL, migrations, and async queries
- ✓JWT authentication with 15-min access + rotating refresh tokens
NotifyHub
Real-time notifications with SignalR, Hangfire background jobs, and Redis
- ✓Real-time push notifications to browser via SignalR WebSockets
- ✓Fire-and-forget email notifications with Hangfire
- ✓Scheduled digest emails with Hangfire recurring jobs
MicroMart
Microservices e-commerce platform with RabbitMQ, YARP gateway, and Docker
- ✓4 independent microservices: Catalog, Orders, Inventory, Notifications
- ✓YARP API gateway — single entry point for all services
- ✓Async messaging with RabbitMQ + MassTransit (Publish/Subscribe)
Angular TaskBoard
Full-featured task board SPA — Angular 17 + NgRx + Reactive Forms + REST API
- ✓Kanban board with drag-and-drop columns (Todo / In Progress / Done)
- ✓Create, edit, and delete tasks with reactive forms and inline validation
- ✓NgRx Store for board state — actions, reducers, selectors, effects
CleanArch Starter
Production-ready Clean Architecture template with CQRS, MediatR, and EF Core
- ✓4-layer Clean Architecture: Domain, Application, Infrastructure, API
- ✓CQRS with MediatR — Commands, Queries, and Notifications separated
- ✓FluentValidation as a MediatR pipeline behavior (no controller validation code)
AuthVault
Complete authentication system with ASP.NET Core Identity, JWT, and OAuth2
- ✓ASP.NET Core Identity for user management (register, login, lockout)
- ✓JWT access tokens (15-minute expiry) + rotating refresh tokens
- ✓Google and GitHub OAuth2 social login
.NET RAG Chat
Retrieval-Augmented Generation pipeline in C# with Azure OpenAI and Azure AI Search
- ✓Document ingestion: PDF, Word, Markdown → chunked → embedded → indexed
- ✓Vector search with Azure AI Search (HNSW index)
- ✓Hybrid search: semantic + keyword for better retrieval accuracy
Zero-to-Production Pipeline
Deploy a .NET API to Azure with Terraform, GitHub Actions, and AKS
- ✓Terraform modules for AKS, ACR, PostgreSQL, Redis, Key Vault
- ✓Multi-stage Docker build (build → publish → runtime image, <50 MB final)
- ✓GitHub Actions pipeline: lint → test → build → push → deploy
🚀
More Projects Coming Soon
Upcoming: E-commerce API with .NET & Redis · Real-time Chat with SignalR · RAG Document Q&A · CI/CD Pipeline from Scratch