About Me | Software Engineering | Contact Info and Links
I am a 2nd year student majoring in Computer Science and minoring in
ICAMBusiness. Following are some of my hobbies:
๐ fun fact: I'm training for a half marathon right now
I have two years of work experience and 6+ years of programming experience in total.
Here is a list of all the languages I have been exposed to:
CS can be applied to so many fields, and thereโs a lot of jobs that I want to explore. Below are some that I have or want to experience:
Feel free to contact me or check out some of my projects below:
Personal Info:
soy001@ucsd.edu | Github |
Projects:
Below is a snippet of the code: (feel free to check out the entire project here)
package com.gmail.avatar;
import android.widget.CheckedTextView;
import android.widget.LinearLayout;
public class Task {
CheckedTextView ctv;
String task;
LinearLayout linearLayout;
public Task(String task){
this.task = task;
}
public String getTaskName(){
return task;
}
}