Skip to content
View aeruo's full-sized avatar
☄️
I may be slow to respond.
☄️
I may be slow to respond.
Block or Report

Block or report aeruo

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
aeruo/README.md

Pinned

  1. Ant Ant Public

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

    JavaScript

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

  3. Basic sql database schema for ecomme... Basic sql database schema for ecommerce sites.
    1
    # Create a new SQLite database or open an existing one
    2
    sqlite3 e_commerce.db
    3
    
                  
    4
    # Define the Users table
    5
    CREATE TABLE Users (
  4. Jquery script for dark mode toggle Jquery script for dark mode toggle
    1
    $(document).ready(function () {
    2
        // Check local storage for user's theme preference
    3
        const currentTheme = localStorage.getItem('theme');
    4
        if (currentTheme) {
    5
            $('#theme-stylesheet').attr('href', currentTheme);