Profile picture Shahid Khan

Shahid Khan

Staff Frontend Engineer, Tech Lead

Austin, TX, USA

Driven by a passion for building resilient, user-focused platforms, I specialize in architecting and scaling modern web applications with React, TypeScript, Next.js and Node. My experience spans leading engineering teams, developing advanced analytics dashboards, and fostering a culture of innovation and growth. I enjoy partnering with product, design, and backend teams to deliver seamless, impactful solutions that elevate both user experience and business outcomes.

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

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

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

const techStack: TechStack = {
    frontend: [
        'JavaScript',
        'React',
        'TypeScript',
        'Redux',
        'Next.js',
        'Material-UI',
        'TailwindCSS',
        'Data Visualization',
        'HighCharts',
        'Zustand',
        'Vue.js',
        'Jest',
        'Playwright',
        'Cypress',
    ],
    backend: [
        'Node.js',
        'Supabase',
        'MySQL',
        'Java'
    ],
    devOps: [
        'GitHub',
        'Docker',
        'Jenkins',
        'GCP',
    ],
    others: [
        'Tech Leadership',
        'Agile',
        'Mentoring'
    ]
};

// Developer profile
const me: Developer = {
    name: 'Shahid Khan.',
    skills: [
        ...techStack.frontend,
        ...techStack.backend,
        ...techStack.devOps,
        ...techStack.others,
    ],
    interests: [
        'Network Observability',
        'Gen AI',
        'Security',
        'Privacy',
        'Performance',
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/shahidify';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/mohammed-shahid-khan/';
        case 'email':
            return 'shahidify@gmail.com';
        default:
            return 'Send fax.';
    }
};

DX NetOps

DX NetOps delivers industry-recognized root cause analysis and large-scale assurance; along with intelligent triage workflows that enable effective and efficient management of complex, multi-vendor, traditional and software-defined networks. In a single NOC portal, DX NetOps converts inventory, topology, performance, fault, flows, device configurations, log data and user experience metrics into actionable insights for fast and easy troubleshooting.

Open Project Website

DX Operational Intelligence

DX Operational Intelligence is an AIOps platform designed to help teams contend with the explosive growth in monitoring data, infrastructure complexity, and business demands. Using artificial intelligence and machine learning, the platform normalizes, correlates, and analyzes the increasing volume and variety of operational data.

Open Project Website

PAM Threat Analytics

Symantec Threat Analytics integrates with Privileged Access Manager to evaluate the risk of privileged user activity to detect and mitigate threats from suspicious activity. Evaluation factors include the location of a privileged user, time and duration of activity, the system connections, and user history for security.

Open Project Website
Built with Astro by Shahid Khan