Access Restricted

Please identify yourself to enter the portfolio.

WorkTech StackThoughtsContactAvailable for Q4 2024

// 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

M
Marham
>
Dev Weekends
Usama - Full Stack Systems Thinker

// 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.

Enterprise Healthcare

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.

NestJSPostgreSQLRedisDocker
Read Architecture Deep Dive
triage.service.ts
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;
  }
}
Execution Stack
binarySearch(arr, 0, 10)O(log N)
binarySearch(arr, 2, 9)O(log N)
binarySearch(arr, 9, 8)O(log N)
binarySearch(arr, 4, 7)O(log N)
Community Mentorship

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.

ReactFramer MotionTypeScriptVite
Explore the Repository