Skip to content
View Ellixit's full-sized avatar
Block or Report

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.txt
public class ReadMe {

  public static void main(String[] args) {
  
    String name = "Jeffrey Xiao";
    
    boolean interestedInProgramming = true;
    
    String currentlyLearning = "";
      if (interestedInProgramming) {
        currentlyLearning = "Fundamentals of Software Development";
        currentlyLearning += " and Computer Networks";
      }
    
    String[] howToReach = new String[] {"[email protected]", "[email protected]"};
  
  }

}

Popular repositories

  1. Ellixit Ellixit Public

    Config files for my GitHub profile.

  2. song-library song-library Public

    Song library capable of storing various songs and assigning them to designated users. Uses inheritance to compartmentalize methods.

    Java

  3. recipe-book recipe-book Public

    Recipe book capable of creating a recipe booking containing multiple subclasses such as individual recipes and ingredients.

    Java

  4. example-webpage example-webpage Public

    Rudimentary 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

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