Skip to content
View emjjkk's full-sized avatar
💭
Are you still lacking the courage to look back?
💭
Are you still lacking the courage to look back?

Highlights

  • Pro

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Proficient in Javascript (NextJS, Astro) and Python (Flask, Django) for web development. I also build discord bots and chrome extensions. hi@emjjkk.tech for work enquiries. Whatsapp or Discord for more casual ones.

Pinned Loading

  1. markd markd Public

    markdown editor with download and page creation features, built with nextjs

    TypeScript

  2. beat-detection beat-detection Public

    A basic beat detection script to generate timestamps and .edl marker files for use with Davinci Resolve, Adobe Premiere Pro, etc.

    Python 3

  3. dreamweaver dreamweaver Public

    AI text-to-image discord bot powered by Qwen-Image. Built with NextJS, running on Vercel

    TypeScript

  4. yt-downloader yt-downloader Public

    YouTube downloader web application built with Flask. Uses cookies to bypass bot checks.

    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