Skip to content
View mariahrucker's full-sized avatar

Organizations

@Nestle-Collections-Automation
Block or Report

Block or report mariahrucker

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

Black Girl Computer Nerd

linkedin instagram facebook tiktok

std::string name = "Mariah Rucker";
std::string personality_type = "ENTP";
std::string career = "Cybersecurity";
std::string patronus = "Thestral";
std::string favorite_language = "Python";
std::string magical_gift = "Parseltongue";
std::string magical_professor = "Arithmancy";
std::string magical_leadership = "Auror";
std::string wand = "Black Walnut Wood with a Phoenix Core 12 ¼ and Unyielding Flexibility";
std::string blood_status = "Half Blood";
std::string spell = "Protego Maxima";
std::string hogwarts_house = "Gryffinclaw";
std::vector <std::string> languages = {"English (Native)", "Español (Fluent)", "日本語 (Novice)"};
std::vector <std::string> education_earning = {"MSc in Cybersecurity & Information Assurance"};
std::vector <std::string> education_earned = {"MBA", "BSc in Computer Science", "BBA in Accounting"};
std::vector <std::string> accounting_background = {"Audit", "Risk", "Compliance"};
std::vector <std::string> technical_background = {"Web", "Mobile", "Software", "Cyber", "Analytics", "Implementation", "IT Support"};
std::vector <std::string> currently_learning = {"Japanese", "Karate", "Blockchain"};
std::vector <std::string> hobbies = {"Harry Potter", "Cosplay", "Travel", "Basketball", "Gamer", "Rollercoasters"};

Blog Posts

Harry Potter Keyboard

LeetCode

Hard

Medium

Easy


board = []  # Create an empty list to store the rows of the chessboard.

for i in range(8):
    row = []  # Create an empty list for each row.
    for j in range(8):
        if (i + j) % 2 == 0:  # Check if the sum of row and column indices is even.
            row.append("■")  # Add a dark square character to the row list.
        else:
            row.append("□")  # Add a light square character to the row list.
    board.append(row)  # Add the row list to the board list.

for row in board:
    print(" ".join(row))  # Join the characters in each row with a space delimiter and print.

Pinned

  1. Tic-Tac-Toe Tic-Tac-Toe Public

    Python implementation of the classic Tic Tac Toe game. The game is played on a 3x3 board, where the player and the AI opponent take turns placing their moves on the board.

    Python 2 2

  2. Secure-Random-Password-Generator Secure-Random-Password-Generator Public

    Generates a secure random password that is composed of characters from four different character sets: uppercase letters, lowercase letters, digits, and symbols.

    Java 1 2

  3. Hangman Hangman Public

    The game is played by guessing letters to complete a hidden word. The player has a limited number of guesses before the game is over.

    JavaScript 1 1

  4. Secret-Communication Secret-Communication Public

    An image and message encryption/decryption tool. It uses the SHA-256 hashing algorithm to store and compare passwords, and bitwise XOR encryption to encrypt both the image and message.

    C++ 1 1