Abdulaziz Awwad

Software Engineer

Jeddah, Saudi Arabia

Seasoned Software Engineer with extensive experience architecting modern, scalable systems. Proven expertise in full-stack development, leading end-to-end delivery of large-scale web applications, and implementing robust CI/CD pipelines. Adept at the complete software development lifecycle—from design and implementation to testing, deployment, and monitoring. Combines deep technical knowledge with DevOps principles to deliver high-performance, maintainable solutions across diverse platforms and tech stacks.

$ npx connect
Initializing...
Ready to connect.
Waiting for contact request...
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
     backend: string[];
     frontend: string[];
    devOps: string[];
};

type ContactType = 'github' | 'linkedIn' | 'email';

const techStack: TechStack = {
    devOps: [
        'GitLab',
        'GitHub',
        'Cloudflare',
        'Docker'
    ],
    frontend: [
        'TypeScript',
        'JavaScript',
        'React',
        'Next.js',
        'TailwindCSS',
        'Markdown',
        'React Query/TanStack Query',
        'Vite',
        'Astro',
        'RadixUI'
    ],
    backend: [
        'Nest.js'
        'Express.js',
        'Fastify',
        'Python',
        'Node.js',
        'Bun',
        'Deno',
        'RabbitMQ',
        'Apache Kafka',
        'Nginx',
        'PostgreSQL',
        'tRPC',
        'MySQL',
        'S3 Storage',
    ]
};

// Developer profile
const me: Developer = {
    name: 'Abdulaziz Awwad',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'Open Source',
        'Security',
        'Privacy',
        'Performance',
        'Self-Hosting',
        'Networking'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'linkedIn':
            return 'https://www.linkedin.com/in/aziz-is';
        case 'email':
            return '[email protected]';
        default:
            return 'Send fax.';
    }
};

Mardud Algorithmic Trading Platform

Automated trading platform for the Saudi Stock Market (Tadawul) that executes systematic trading strategies based on predefined rules and market conditions. Built with real-time data processing, risk management controls, and automated order execution to maintain disciplined, consistent trading approaches.

Open Project Website

Jeddah Second Health Cluster Platform

Comprehensive web platform for Jeddah Second Health Cluster that digitizes manual workflows across four key departments. Built with React, Next.js, and PostgreSQL featuring role-based access control, automated request routing, and integrated dashboards to streamline community participation processes and centralize volunteer management systems.