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

College student and software engineer from Thailand, currently specializing in full-stack web development. I also build mobile apps, discord bots, and other things. I mostly work with Javascript and Python-based frameworks.

Pinned Loading

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

  2. op-template-nextjs op-template-nextjs Public template

    [WIP] Let's build a crazy feature-rich website template with localization, CMS, ecommerce, analytics and all. 好吧,让我们建立一个疯狂的功能丰富的网站模板,包括内容管理系统、电子商务、分析和所有功能。

    TypeScript 2

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

  4. Ant Ant Public

    Minimal URL shortener and QR code generator with API, using React and Flask.

    JavaScript 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