SYS:ONLINE

[ MODULE: POS SYSTEM ]

Restaurant POS System

LIVE

Full order-to-kitchen workflow: waiter ordering, kitchen display, table routing, and live status tracking — deployed in real restaurant operations.

class RestaurantPOS {
  status   = "LIVE";
  modules  = ["ordering", "kitchen", "tables", "payments"];
  deploy   = "pos.ibreezglobal.com";
  env      = "production";
  type     = "full-stack";
}

[ MODULE: WEB PLATFORM ]

AsfahanCo Website

LIVE

Company website with Laravel backend, custom CMS, and multi-device frontend. Handles company presence, content management, and staff operations.

class AsfahanCoWeb {
  status   = "LIVE";
  modules  = ["landing", "cms", "backend", "media"];
  deploy   = "asfahanco.com";
  type     = "company-site";
}

[ MODULE: PORTFOLIO ]

Personal Portfolio

LIVE

Terminal-style developer portfolio. Astro static site with React islands, system-tree navigation, and POS case study. Built to demonstrate real system work.

class Portfolio {
  status   = "LIVE";
  modules  = ["hero", "projects", "case-studies", "contact"];
  deploy   = "saidxyz.github.io";
  type     = "static";
}

[ MODULE: INFRASTRUCTURE ]

Server Configuration

ACTIVE

Production server provisioning: Docker containers, Nginx reverse proxy, SSL certificates, firewall rules, and SSH hardening for cPanel + bare-metal environments.

class ServerConfig {
  status   = "ACTIVE";
  modules  = ["docker", "nginx", "ssl", "firewall"];
  env      = "production";
  target   = "bare-metal";
}
// internal project

[ MODULE: DATABASE ]

Database Administration

DELIVERED

Schema design, query optimization, index tuning, and migration management across Laravel projects. MySQL primary with PostgreSQL experience.

class DbAdmin {
  status   = "DELIVERED";
  modules  = ["schema", "indexing", "migrations", "query-tuning"];
  engine   = "MySQL + Postgres";
}
// internal project

[ MODULE: AUTOMATION ]

CI/CD Workflow

ACTIVE

GitHub Actions pipelines for build, test, and deploy cycles. Reduces manual deployment steps across web and infrastructure projects.

class CIPipeline {
  status   = "ACTIVE";
  modules  = ["build", "test", "deploy"];
  provider = "GitHub Actions";
}