✨ Recently added
Supply Chain Tech
SCOMS — Supply Chain & Order Management System
Full-stack MERN order and inventory management platform with role-based (admin/client) authentication, multi-marketplace order allocation (UK, USA, Canada, UAE), supplier sourcing, PDF/Excel order export, and an admin reporting dashboard.
ReactNode.js
ExpressMongoDB
JWT
✨ Recently added
PropTech
Karachi Real Estate — Plot Inventory & Offers
GitHub ↗
A MERN platform for Karachi real estate agents to manage plot inventory and buyer offers across Bahria Town Karachi, DHA City Karachi, and DHA Karachi. AI-powered parsing turns raw, unstructured listing text into structured plot records (with a rule-based fallback), while grid/table/matrix views, filters, an offer workflow (Pending → Accepted/Rejected/Countered), and WhatsApp-ready export support agents' day-to-day workflow.
React 19Node.js
ExpressMongoDB
Gemini API
Workforce Tech
TimeTrackPK — Attendance Module
Smart workforce management with biometric integration, GPS geo-fencing, payroll, ESS portal, and multi-branch centralized reporting — built as a remote .NET developer.
Healthcare IT
CRM → EHR Integration (NKF Singapore)
CRM integration project: hourly XML/WSDL sync and nightly SFTP reconciliation pipeline for 3,000+ patients at the National Kidney Foundation Singapore.
Healthcare IT
Remote healthcare software development — CLIA-compliant medical lab automation on .NET, automating instrument tracking, competency management, and hospital communications.
Banking
Asaan Account — National Bank of Pakistan
Instant account opening application (via FIS) with Profile wrapper class on Assembly Language for government banking infrastructure.
Banking
Home Remittance Portal — Meezan Bank
MEX
Payment portal delivering RTGS, OAT, COC, IBFT, and Pay Order routing on T24 core banking — millions in daily transactions.
Infrastructure
SFTP/FTP Crawler — Meezan Bank
Automated secure file transfer modules for Pakistan's first and largest Islamic bank — built using C# and SFTP integration best practices.
Banking
VMS — Credit Card Verification
Credit Card Verification Management System — secure, reliable card transaction verification for banking clients using ASP.NET and SQL Server.
Banking
Lucky Draw System — Silk Bank
Prize draw application built with Visual Studio 2010 and MS Access — randomly selected winners from Silk Bank's account holders pool for customer reward campaigns. Handled draw logic, winner selection, and result management.
Healthcare IT
Chart Audit Application
Clinical documentation review tool for auditing patient charts — part of a broader healthcare software development portfolio.
Banking
MIS Reporting Application
Management Information System generating departmental reports across multiple banking units — executive-level data visibility via Crystal Reports and .NET.
Legacy Migration
VB6 → Flash Migration — Healthcare Domain
Converted legacy VB 6.0 desktop screens to modern Flash ActionScript interfaces using Web Services as middleware, connected to live databases. Modernized healthcare workflows without disrupting existing backend logic — an early example of legacy-to-modern technology migration.
MERN Stack
Blog & Social Media Application
GitHub ↗
Full-stack blog and social networking platform built on the MERN stack (MongoDB, Express.js, React, Node.js). Features include user authentication, post creation with rich text and image uploads, likes and comments, follower/following relationships, and a personalized activity feed — with a RESTful API backend and JWT-secured sessions.
✨ Recently added
AI / LLM
Basic AI chatbot running entirely on local infrastructure — sends single-turn prompts to a locally hosted LLM (llama3.2) via Ollama's REST API, using HttpClient and System.Text.Json for serialization.
.NET 9Ollama
HttpClientSystem.Text.Json
✨ Recently added
AI / LLM
Extends LocalAIChat with in-memory conversation history — maintains a List<ChatMessage> across turns and calls Ollama's /api/chat endpoint, so the local LLM retains context throughout the session.
.NET 9Ollama
Conversation Memory/api/chat
✨ Recently added
AI / LLM
AI Chatbot with Dependency Injection
GitHub ↗
AIChatBot — .NET architecture and Dependency Injection. Restructures the local AI chatbot around an IOllamaChatService interface, with HttpClient injected via the DI container instead of created manually, following a clean Service Layer pattern.
.NET 9Dependency Injection
InterfacesService Layer
✨ Recently added
AI / LLM
A basic Retrieval-Augmented Generation (RAG) application built with .NET 9, C#, Ollama, and Llama 3.2. It reads a document, retrieves relevant information based on the user's question, and uses the retrieved context to generate an AI answer.
.NET 9Ollama
RAGRetrieval
✨ Recently added
AI / LLM
An ASP.NET Core Web API that answers questions from PDF documents using Retrieval-Augmented Generation. Extracts and chunks text from PDFs, generates embeddings with nomic-embed-text, retrieves the most relevant chunks via cosine similarity and a similarity threshold, then uses Llama 3.2 to generate a grounded answer — exposed through Swagger with full source tracking (file name, chunk number, similarity score).
ASP.NET Core Web APIOllama
EmbeddingsVector Search