Skip to content
View emjjkk's full-sized avatar
🍚
I may be slow to respond.
🍚
I may be slow to respond.

Block or report emjjkk

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 250 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
emjjkk/README.md

Thanks for visiting - you must really have a lot of time on your hands-

Heyo, I'm a college student and software developer based for now in Rwanda, and I'm currently focusing on full-stack web development. I'm familiar with Javascript- (NextJS, Astro, Remix, etc) and Python (Flask, Django) based frameworks for web development. I can also build cross-platform mobile apps with React Native and other things like discord bots, chrome extensions, and tampermonkey scripts. I also have some self-taught skills in ethical hacking so I occassionally do bug bounty.

(Kinda) fun facts about me: I'm biracial (half thai, half nigerian)! If i'm not coding you'll most likely find me gaming (Valorant, Strinova, etc). I'm a big fan of all things speed - hopefully one day I'll get to drive a Mustang GTD.

Projects I'm proud of

  • Dreamweaver - AI image generation discord bot that runs on edge.
  • dictionary - Simple, clean dictionary web app

I offer really (like super duper) affordable web development services (Landing pages, ecommerce, blogs)! Reach out on whatsapp (+250 724 684 275), Email alabiemmanuel029@gmail.com, or Discord (for more casual jobs) @e.mjjkk.

Top Langs

Pinned Loading

  1. nextjs-discordbot-template nextjs-discordbot-template Public template

    Discord bot template based on NextJS + Supabase that can run on Vercel. Saves cost/complexity versus traditional methods requiring a persistent connection with Discord

    TypeScript 1

  2. openCode openCode Public

    Experimental and open-source AI powered web IDE for building websites and simple web applications. Securely allows you to use your own model of choice and API key. Integrates with Github and Netlify.

    TypeScript 2 1

  3. Mditor Mditor Public

    A simple, open-source markdown editor that is also the fastest way to build the simplest website ever. Built with NextJS

    TypeScript 2

  4. yt-downloader yt-downloader Public

    YouTube downloader web application built with Flask. Uses cookies to bypass bot checks. Working as of Mar 19, 2025. Python youtube 下载器。

    HTML 1

  5. Python decorator function to require... Python decorator function to require login.
    1
    def login_required(f):
    2
        """
    3
        Decorate routes to require login.
    4
        http://flask.pocoo.org/docs/1.0/patterns/viewdecorators/
    5
        """
  6. Domain status checker in Java Domain status checker in Java
    1
    import java.net.HttpURLConnection;   // Import necessary classes for HTTP connections
    2
    import java.net.InetAddress;         // Import necessary classes to resolve IP addresses
    3
    import java.net.URL;                 // Import necessary classes to work with URLs
    4
    import java.net.UnknownHostException; // Import to handle cases where the domain is unknown
    5