Skip to content
View Ellixit's full-sized avatar

Block or report Ellixit

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
Ellixit/README.py
def intro():
    name = "Jeffrey Xiao"
    current_focus = ["Security", "Cloud Computing", "Web Development"]
    hobbies = ["Hiking", "Camping", "Skiing", "Programming", "Photography", "Playing Guitar"]
    personal_website = "jeffreyxiao.info/"
    
    print(f"Hello, I'm {name}!")
    print(f"\nI love programming and exploring technology.")
    print("\nCurrently, I'm focusing on:")
    for focus in current_focus:
        print(f"  - {focus}")
    print("\nWhen I'm not coding, you might find me:")
    for hobby in hobbies:
        print(f"  - {hobby}")
    print("\nLet's connect and build something great together!")
    
intro()

Pinned Loading

  1. solon solon Public

    An interactive web tool analyzing U.S. voting patterns by socioeconomic and racial factors, featuring dynamic maps and data visualizations for Oklahoma and Connecticut.

    JavaScript

  2. dynamic-memory-allocator dynamic-memory-allocator Public

    Dynamic memory allocator that manages heap memory at runtime. Provides base functionality to allocate, reallocate, and free memory given an input byte size.

    C

  3. oml-calculator oml-calculator Public

    Rudimentary program that calculates current OMS points based on criteria outlined in USACC Circular 601-24-1. Uses Python and implements basic command-line interface.

    Python

  4. password-vault password-vault Public

    Secure Password Vault Manager: A Python-based CLI tool for managing encrypted password vaults. Features include password generation, lookup, update, and deletion, secured using AES-GCM encryption a…

    Python

  5. phylogenetic-data-parser phylogenetic-data-parser Public

    Phylogenetic data parser that reads genetic distance data from .csv and calculates phylogenetic tree based on neighbor-joining algorithm. Capable of outputting resultant tree in matrix or Newick fo…

    C

  6. word-guesser word-guesser Public

    Start the program and guess the secret word, one letter at a time.

    Python