def intro(): name = "Jeffrey Xiao" current_focus = ["Cybersecurity", "Cloud Computing", "Web Development"] hobbies = ["Hiking", "Camping", "Skiing", "Programming", "Photography", "Guitar"] personal_website = "jeffreyxiao.info/" print(f"Hello, I'm {name}!") print(f"\nI {'love' if 'Programming' in hobbies else 'like'} 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
-
dynamic-memory-allocator
dynamic-memory-allocator PublicDynamic memory allocator that manages heap memory at runtime. Provides base functionality to allocate, reallocate, and free memory given an input byte size.
C
-
example-webpage
example-webpage PublicRudimentary website developed to demonstrate knowledge of HTML and CSS. Uses various features such as anchor and hyperlinks, absolute and relative positioning, and responsive elements.
HTML
-
oml-calculator
oml-calculator PublicRudimentary 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
-
password-vault
password-vault PublicSecure 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
-
phylogenetic-data-parser
phylogenetic-data-parser PublicPhylogenetic 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
-
solon
solon PublicAn interactive web tool analyzing U.S. voting patterns by socioeconomic and racial factors, featuring dynamic maps and data visualizations for Oklahoma and Connecticut.
JavaScript
If the problem persists, check the GitHub status page or contact support.