Profile picture Abhyudaya Gupta

Abhyudaya Gupta

Full Time Student

Gurugram, India

Passionate coder and developer with a strong interest in technology since childhood, currently a 16-year-old student at The Shri Ram School. I began coding at the age of 11 and have since gained experience across a variety of programming languages, frameworks, and AI model development. As the Head of ICT at my school, I actively contribute to tech initiatives while honing my skills in building innovative, efficient, and clean web applications with a modern tech stack. Specialized in Astro, TypeScript, and Python, and am always eager to learn, explore, and experiment with emerging technologies.

$ 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: [
        'GitLab',
        'GitHub',
        'Docker'
    ],
    frontend: [
        'JavaScript',
        'TypeScript',
        'TailwindCSS',
        'Astro',
        'React',
        'Svelte',
        'Markdown',
        'WordPress'
    ],
    backend: [
        'Supabase',
        'Node.js',
        'Bun',
        'Flask',
        'Django',
        'PostgreSQL',
        'MongoDB'
    ]
};

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

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/AbhyudayaGup';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/abhyudaya-gupta-6b7594378/';
        case 'email':
            return 'abhyudaya.gupta.ag@gmail.com';
        default:
            return 'Send msg.';
    }
};

My Projects

StemXplore VR

Created a VR game where a player can learn STEM through experiential learning. Enables access to a lab in VR. Published on appstore and displayed at ShriteQ.

View Project

Solar System Simulation

Creating an advanced simulation of the first 4 planets of the solar system, using Kepler's laws and Einstein's equation to achieve high levels of accuracy, for SSDC competition 2026.

View Project

Cosmic-Dance-BG

Created a customizable interactive background with lines which react to the cursor. Programmed the dynamic motion using sin and cos wave.

View Project

Crack Identification

While working on an research paper on using topological data analysis for patterns in cracking of mosaics, built a ML model to identify cracks in images of mosaics and calculate their Ricci curvature.

View Project

College Rankings Scraper

Developed a web scraper to collect and analyze college ranking data, providing insights and comparisons on different american as well as international colleges.

View Project
Built with Astro by Abhyudaya Gupta