Software Engineer @ Arizona State University
Bookseller @ Barnes & Noble
import userInfo
public class README {
public static void main (String[] args) {
README instance = new README();
instance.displayInfo();
instance.displayEdu();
instance.displayExp();
instance.displayProjects();
}
public void displayInfo(){
String name = "Christian Ilog";
String onlineName = "Nihtster";
String pronouns = "He | Him";
String ethnicity = "Filipino";
String[] languages = {"English", "Tagalog", "Japanese"); // In order of Fluency
}
public void displayExp(){
String ide = "VSCode";
String code[] = {"Java", "Python","C/C++", "HTML", "CSS", "Bootstrap"}; // In order of experience
String gui[] = {"JavaFX", "Swing", "Tkinker");
String concepts[] = {"Data algorithms", "Object-Oriented Design", "GUI fundementals", "Software Development Principles"};
}
public void displayProjects(){
Checkers gameDemo = new Checkers(); // Game of checkers using a CLI and GUI along with a comuter opponent
PriceAtlas pa = new priceAtlas(); // MySQL game item price tracker
PythonExperience demos = new PythonExperience(); // School-influenced personal mini projects
//Website mySite = new Website(); // Incomplete website portfolio
}
}