Skip to content
View mite404's full-sized avatar
🐢
learning
🐢
learning

Block or report mite404

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

Pinned Loading

  1. restaurant-order-app restaurant-order-app Public

    CSS

  2. film-review-js film-review-js Public

    Film Review site using Vite & vanilla JS

    JavaScript

  3. recipe-finder-js recipe-finder-js Public

    JavaScript

  4. cli-todo cli-todo Public

    practicing OPP to make a Python CLI To DO app

    Python

  5. clear screen func via 'os' pkg clear screen func via 'os' pkg
    1
    def clear():
    2
        # Clear screen for Windows
    3
        if os.name == "nt":
    4
            os.system("cls")
    5
        # Clear screen for Linux/macOS