Contact Information

You can email me at the string printed by the following piece of Java code:

public static void main(String[] args) {

    StringBuilder sb = new StringBuilder() //
        .append("royliu") //
        .append('@') //
        .append("cs") //
        .append('.') //
        .append("ucsd") //
        .append('.') //
        .append("edu"); //
    System.out.println(sb);
}