Profile picture Xiaonuo Gantan

Xiaonuo Gantan

Full Stack Developer

Toronto, Canada

Passionate AI developer focused on creating clean, efficient, and scalable web applications with a modern tech stack.

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

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

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

const techStack: TechStack = {
    devOps: [
        'AWS',
        'Docker',
        'GitHub',
    ],
    frontend: [
        'JavaScript',
        'TypeScript',
        'TailwindCSS',
        'Astro',
        'SCSS',
        'Markdown',
        'WordPress',
    ],
    backend: [
        'Flask',
        'Node.js',
        'PostgreSQL',
        'MySQL',
        'S3',
    ]
};

// Developer profile
const me: Developer = {
    name: 'Xiaonuo Gantan',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'AI',
        'Open Source',
        'Privacy',
        'Performance',
        'Networking',
        'Distributed Systems',
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/XiaonuoGantan';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/xiaonuo-gantan';
        case 'email':
            return 'xgantan@datasvm.io';
        default:
            return 'Send fax.';
    }
};

execvision.io

Leverage the power of coaching at scale. ExecVision’s automated coaching intelligence platform surfaces insights so you can help your reps improve themselves.

Open Project Website

datasvm.io

A blog about quantitative finance, devops, data pipelines, machine learning and other stuff.

Open Project Website

evergratitude.ca

Ever Gratitude Inc. specializes in high-quality construction services including interlocking, drywall installation, and structural expansion. Our expert craftsmen deliver exceptional results that stand the test of time for both residential and commercial projects.

Open Project Website

Setting Up AWS Lambda with API Gateway

A comprehensive guide on how to deploy serverless functions with AWS Lambda and expose them via API Gateway.

Read Guide

Optimizing PostgreSQL Queries

Learn how to profile and optimize slow PostgreSQL queries for better application performance.

Read Guide