Halloween
Halloween tonight... explains the few strangely dressed characters on the train this evening.
One exam down, two to go.
Wooo 31 degrees tomorrow - perfect weather for cup day!
ARGGHHH this happens every semester, but has gradually got worse.
Week number 130 of uni completed! (13 weeks x 2 semesters x 5 years)
Whilst I have had panic moments when I wonder whether I have really done everything i've wanted to do while being a student, a few things in the past couple of days have reassurred me my life doesn't end once being tied down in a job
After almost 10 semesters of university, I'm heading into my final week.
Now it's my last week of my final year, and the team I am in has almost completed an application (also written in java) that has taken 3 semesters to get requirements on, design, refine, write and test with thousands of lines of code and over 50 different types user defined classes.
class ExerciseTwo {
public static void main(String[] args) {
String str1,str2,str3;
str1 = new String("This is my first try");
str2 = new String("at programming in Java");
str3 = new String("It is fun!");
System.out.println(str1);
System.out.println(str2);
System.out.println(str3);
}
}