Profile picture FandyAhmD.

FandyAhmD.

Full Stack Developer, Crypto Enthusiast, Anime Lover

Yogyakarta, Indonesia

I love coding, work in Web3, and enjoy Anime, Music, and Gaming. 🚀

Spotify Discord
$ 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' | 'x' | 'telegram' | 'facebook' | 'instagram' | 'tiktok' | 'medium' | 'discord' | 'linkedin' | 'saweria' | 'email';

const techStack: TechStack = {
    devOps: [
        'GitHub',
        'Cloudflare'
    ],
    frontend: [
        'JavaScript',
        'TypeScript',
        'TailwindCSS',
        'SCSS',
        'Astro',
        'Next.js',
        'React',
        'Vue.js'
    ],
    backend: [
        'Node.js',
        'Bun',
        'Deno'
    ]
};

// Developer profile
const me: Developer = {
    name: 'FandyAhmD.',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'Web Development',
        'Open Source',
        'UX/UI',
        'DevOps',
        'Automation',
        'Web3',
        'Games',
        'Anime'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/fandyahmd';
        case 'x':
            return 'https://x.com/fndyahmdd';
        case 'telegram':
            return 'https://fandyahmd.t.me';
        case 'facebook':
            return 'https://facebook.com/fandiahmadazizi';
        case 'instagram':
            return 'https://instagram.com/_fndyahmd';
        case 'tiktok':
            return 'https://tiktok.com/@fandyahmdd';
        case 'medium':
            return 'https://medium.com/@FandyAhmD';
        case 'discord':
            return 'https://discord.com/users/351631363805413377';
        case 'linkedin':
            return 'https://linkedin.com/in/fandyahmd';
        case 'saweria':
            return 'https://saweria.co/FandyAhmD';
        case 'email':
            return '[email protected]';
        default:
            return 'Send fax.';
    }
};

Dinime

Dinime adalah platform streaming dan unduh anime, donghua, manga, manhua, serta manhwa dalam Bahasa Indonesia, memberikan pengalaman hiburan terbaik untuk penggemar budaya Asia.

Open Project Website

Petani Crypto ID

Petani Crypto ID adalah saluran Telegram yang menyediakan informasi terkini tentang dunia kripto, termasuk airdrop, testnet, node, dan peluang lainnya untuk komunitas kripto.

Open Project Website

PUBLIC BOT

PUBLIC BOT adalah grup WhatsApp yang dirancang untuk mendukung dan berbagi pengalaman menggunakan bot WhatsApp yang dikembangkan secara khusus.

Open Project Website
Built with Astro by FandyAhmD