Skip to content
View Ericgi231's full-sized avatar

Block or report Ericgi231

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. DiscordBot_Jarvis_Java DiscordBot_Jarvis_Java Public

    Java

  2. Personal_Site_React Personal_Site_React Public

    TypeScript 1 1

  3. A small php script to create a MySQL... A small php script to create a MySQL table containing all files in a folder. It expects that a database already exists and will prompt you for database login info executed.
    1
    <?php
    2
        echo "Server:\n";
    3
        $servername = trim(fgets(STDIN));
    4
        echo "User:\n";
    5
        $username = trim(fgets(STDIN));
  4. A Tampermonkey script that adds the ... A Tampermonkey script that adds the daily New York Times Connections art to the main game page instead of hiding it in the hints page.
    1
    // ==UserScript==
    2
    // @name         Add daily art to NYT Connections
    3
    // @namespace    http://tampermonkey.net/
    4
    // @version      2025-08-19
    5
    // @description  Adds the NYT Connections daily art from the hint page to the main game page.
  5. Simple python solution to solve the ... Simple python solution to solve the Family Core puzzle in the game Blue Prince.
    1
    WORDS = ["pigs","sand","mail","date","head","clam","peak","heat","joya","well","toad","card","will","tape","legs","tree","road","maid","slab","rock","hand","vase","safe","clay","toes"]
    2
    
                  
    3
    def char_to_int(char):
    4
        return ord(char) - ord('a') + 1
    5