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.

hi@emjjkk.tech for work enquiries. Whatsapp or Discord for more casual ones.

Some Projects:

  • Beatmarker - Web tool to automatically detect drops from audio files and generate timeline marker .edl files for Davinci Resolve, Adobe Premiere Pro, etc. Built with Flask, Essentia, Supabase, NextJS
  • Markd - Browser markdown editor that autosaves locally and has in-built features to export to pdf or publish a sharable link. Built with NeonDB, NextJS
  • Dreamweaver - A NextJS-based AI Image generation discord bot that runs 100% on edge and gives instant results. (temporarily down due to changes in hf pricing structures). Built with DiscordJS, Supabase, HuggingFace Inference, Qwen-Image, NextJS
  • Vistab - Chrome extension to bring a new minimal new tab to your browser, supporting custom image/video backgrounds, bookmarks, and more. Built with Chrome Manifest V3, JQuery.

Pinned Loading

  1. beatmarker beatmarker Public

    Web application to automatically detect beats and drops from an audio file and export them to .edl marker files for Davinci Resolve, Adobe Premiere Pro, etc.

    TypeScript

  2. markd markd Public

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

    TypeScript

  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. 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