// Full-Stack Systems Thinker & Mentor
Bridging Legacy Reliability with Modern Scalability.
Specializing in legacy systems (PHP, Laravel) and modern stacks (Next.js, NestJS). Currently focused on engineering lightning-fast, secure systems and mentoring developers.
Trusted By

// Core Competencies
The Pillars of
System Design
Legacy-to-Modern Engineering
The Pragmatic Polyglot
Comfortable refactoring deep, complex legacy codebases (PHP, Laravel, MySQL) and expertly building lightning-fast, secure greenfield systems using modern stacks (Next.js, NestJS).
Dev Weekends Leadership
The Force Multiplier
Mentoring a clan of 30+ developers. Designing and delivering deep-dive technical sessions on Data Structures and Algorithms to bridge the gap between theory and production code.
Architectural Bookshelf
First-Principles Thinker
An avid reader utilizing foundational engineering and behavioral literature to write cleaner, more maintainable code and architect resilient systems.
// Selected Impact
Engineering at Scale.
Architecting AI Triage at Marham
Successfully scaled an AI Triage system that directly improved patient flow and increased user bookings. Handled migrating monolithic bottlenecks into robust microservices, ensuring zero-downtime deployments.
export class TriageService {
constructor(
private readonly patientModel: Model<Patient>,
private readonly aiEngine: AIEngineClient,
) {}
async processTriagePayload(payload: TriageDto) {
const cached = await this.redis.get(payload.id);
if (cached) return cached;
// Process via Microservice Queue
const result = await this.aiEngine.analyze(payload);
return result;
}
}Interactive DSA Visualizer
Built an interactive React-based visualization engine for Dev Weekends to help developers intuitively grasp recursive call stacks and algorithmic time complexities.