Profile
$ initializing portfolio...
✓ Loading components
✓ Connecting to server
✓ Fetching projects
✓ Ready!

Hi, my name is

Ahmed Ramadan
Ayomide.

I build tools for the community.

Full-Stack Developer specializing in social bots and automation scripts. I create solutions that empower developers and strengthen communities.

01.

My Journey

2023
Built my first Telegram bot using JavaScript, deployed on Cloudflare services. This marked the beginning of my journey into bot development and automation.
2024
Created my first website, exploring web development fundamentals. Although it didn't get deployed, it was a valuable learning experience that shaped my understanding of full-stack development.
2025
Met Prime - a turning point in my career. Built 2 production websites and developed multiple bots for clients. Worked day and night, pushing boundaries and making everything work. This year taught me the value of dedication and problem-solving.
2026
Currently building TunnelDev - my most ambitious project yet. A powerful development tunneling service that allows developers to expose local servers to the internet. Focused on creating tools that make a real difference.
02.

About Me

Hello! I'm Ahmed Ramadan Ayomide, a student of Computer Engineering with a passion for building tools that make a difference. I code primarily in JavaScript and sometimes Python.

What drives me? I enjoy building social bots and writing automation scripts that solve real-world problems. Whether it's creating Discord bots with 200+ commands, developing WhatsApp automation tools, or building web platforms like TunnelDev, I'm always focused on creating value for the community.

When I'm not coding, you'll find me watching movies or researching the latest development trends. My ultimate goal is simple: help the community improve through technology and open-source contributions.

Ahmed Ramadan Ayomide
03.

Skills & Expertise

Languages

JavaScript Python HTML5 CSS3

Frameworks & Libraries

React.js Next.js Node.js Express

Styling & Design

Tailwind CSS CSS Animations Responsive Design

Tools & Platforms

Git VS Code Supabase Vercel

Specializations

Discord Bots Telegram Bots WhatsApp Bots Automation Scripts
04.

My Builds

TunnelDev

Always Maintained
TunnelDev Interface

A powerful development tunneling service that allows developers to expose local servers to the internet with custom URLs. Perfect for testing webhooks, sharing local development, and collaborative debugging. Features include custom subdomains, real-time traffic monitoring, secure HTTPS connections, and comprehensive API documentation for seamless integration into development workflows.

JavaScript Supabase Node.js WebSockets

Synapse Discord Bot

Always Maintained

A comprehensive multi-purpose Discord bot featuring over 200+ commands for moderation, entertainment, utility, and server management. Built to scale and handle high-traffic Discord communities with ease. Features include advanced moderation tools with custom warning systems, auto-moderation with AI-powered content filtering, music playback with queue management, custom server analytics and insights, role management and permission systems, and extensive logging capabilities. The bot handles thousands of concurrent users across multiple servers with minimal latency.

JavaScript Discord.js Node.js MongoDB

Telegram Moderation Bot

Source Code

Open-source Telegram bot designed for group moderation and management. Features automated spam detection using machine learning patterns, user verification systems with CAPTCHA, custom command creation for server-specific needs, comprehensive admin controls with permission levels, automated welcome/farewell messages, word filters and content moderation, user warnings and ban management, and detailed activity logs. Perfect for community managers looking to automate routine moderation tasks.

Python python-telegram-bot SQLite
Loading...
🔱 Loading...

PC Optimizer Pro

Maintained
PC Optimizer Pro

Terminal-based Windows PC optimization tool that cleans temporary files, optimizes system performance, manages startup programs, and provides detailed system diagnostics. Built for power users who prefer CLI tools. Features include deep system scanning with customizable cleanup options, registry optimization and repair, startup program management with performance impact analysis, disk space analysis and visualization, memory optimization and cache clearing, scheduled maintenance tasks, and comprehensive system health reports with actionable recommendations.

Python Windows API CLI System Tools
Loading...
🔱 Loading...

FireKid WhatsApp Bot

Maintained

Feature-rich WhatsApp bot built with Baileys library, offering dozens of commands for group management, media processing, fun utilities, and automation. Designed for both personal and community use. Features include automated responses with AI integration, media download and conversion (audio, video, images), sticker creation from images and videos, group management tools (admin commands, participant management), fun commands and games, news and information retrieval, translation services, and custom command creation for personalized automation workflows.

JavaScript Baileys Node.js FFmpeg
Loading...
🔱 Loading...

Gaming Sensitivity Generator

Live

Web application specifically designed for Free Fire players to calculate and convert optimal sensitivity settings. Includes API documentation for developers to integrate sensitivity calculations into their own tools. Features include precise sensitivity calculations based on device and playstyle, conversion between different sensitivity scales, recommendations based on professional player settings, responsive design for mobile and desktop use, and a comprehensive RESTful API with detailed documentation for third-party integrations.

React.js Next.js Tailwind CSS API
05.

Testimonials

$ cat testimonials.txt
> @Michael:
"You are Goated fr, You understood my project and delivered in time."
> @Kaneki:
"Your Discord Bots are the best, I love Synapse Bot"
> @Barry:
"Good Job bro, keep grinding"
$ _
06.

Code Snippets

WhatsApp Bot - Connection Handler
JavaScript
// Robust connection handling with auto-reconnect
async function handleConnection(socket, sessionId) {
    socket.ev.on('connection.update', async (update) => {
        const { connection, lastDisconnect } = update;
        
        if (connection === 'open') {
            await handleSuccessfulConnection(socket, sessionId);
        }
        
        if (connection === 'close') {
            const shouldReconnect = lastDisconnect?.error?.output
                ?.statusCode !== DisconnectReason.loggedOut;
            
            if (shouldReconnect) {
                await reconnectWithBackoff(sessionId);
            }
        }
    });
}
TunnelDev - Proxy Logic
JavaScript
// Secure tunnel creation with custom subdomains
async function createTunnel(localPort, subdomain) {
    const tunnel = await TunnelManager.create({
        port: localPort,
        subdomain: subdomain || generateRandomSubdomain(),
        auth: generateAuthToken()
    });
    
    // Setup WebSocket for real-time traffic monitoring
    const ws = new WebSocketServer({ tunnel });
    ws.on('request', (req) => logTraffic(req));
    
    return {
        url: `https://${subdomain}.tunneldev.app`,
        auth: tunnel.auth
    };
}
Synapse - Dynamic Command Handler
JavaScript
// Efficient command loading and execution
class CommandHandler {
    constructor() {
        this.commands = new Map();
        this.cooldowns = new Map();
    }
    
    async loadCommands() {
        const files = await fs.readdir('./commands');
        for (const file of files) {
            const command = require(`./commands/${file}`);
            this.commands.set(command.name, command);
        }
    }
}
PC Optimizer - System Analysis
Python
# Comprehensive system diagnostics
def analyze_system_health():
    metrics = {
        'cpu_usage': psutil.cpu_percent(interval=1),
        'memory': psutil.virtual_memory(),
        'disk': psutil.disk_usage('/'),
        'temp_files': scan_temp_directories()
    }
    
    # Generate optimization recommendations
    recommendations = generate_recommendations(metrics)
    
    return {
        'health_score': calculate_score(metrics),
        'recommendations': recommendations
    }
07.

Interactive Terminal

firekid@portfolio:~$
firekid@portfolio:~$ Welcome to my interactive terminal! Type 'help' to see available commands.
firekid@portfolio:~$
08.

Get In Touch

Let's Build Something Together

I'm always interested in new projects, collaborations, or just a chat about technology. Whether you need help with a bot, want to discuss automation, or have an exciting project in mind, feel free to reach out!