I’m 2 month old now!

Today I turned 2 month old and I’m getting heavier (approx. 4.2 kg). Mummy said she’s struggling to carry me in her arms but too bad!

Injection…argh!

Today mummy and daddy took me to the Sydney Children’s Hospital in Randwick to have my second immunisation which includes Diphtheria-tetanus-pertussis, Polio, Hib, Hepatitis B and Pneumococcal. It wasn’t really painful since I slept right through the process!

Baby mobile with SP2

Mummy and daddy upgraded my baby mobile with service pack 2. I now have Winnie the Pooh, Tigger, and whatshisname and so on. I don’t know their names because mummy and daddy never watched Winnie the Pooh from Disney, so I will just have to wait until I grow up and watch them by myself. Hm!

Baby Mobile SP2

Songbird

Software of interest

Songbird is an open source media player.

Hello World in Java

My implementation of the Hello World program in Java:

// class definition
public class Java_HelloWorld {

// fields
private String name;
private String message;

// default constructor
public Java_HelloWorld() {
name = "Default HelloWorld";
message = "Hello World!";
}

// parameterised constructor
public Java_HelloWorld(String n, String m) {
name = n;
message = m;
}

// copy constructor
public Java_HelloWorld(Java_HelloWorld h) {
name = h.name;
message = h.message;
}

// display function
public void displayHelloWorld() {
System.out.print("Name: ");
System.out.println(name);
System.out.print("Message: ");
System.out.println(message);
}

// main function
public static void main(String args[]) {
// invoke default constructor
Java_HelloWorld h1 = new Java_HelloWorld();
// invoke parameterised constructor
Java_HelloWorld h2 = new Java_HelloWorld("HelloWorld2", "This is another Hello World message.");
// invoke copy constructor
Java_HelloWorld h3 = h1;
// invoke display function
h1.displayHelloWorld();
h2.displayHelloWorld();
h3.displayHelloWorld();
}
}

Teddy

Hi guys! This is Teddy. Auntie Ying and Auntie Rung gave him to me. I love Teddy because he’s cute and he can also make some sounds when you shake him…hang on a minute, is that my blog in the background??

Teddy

Java with Eclipse

Software of interest

One of my lecturers introduced to me an open source IDE package called Eclipse. It’s mainly known for its popularity for Java but it is also a multiple IDE with plugin support which you can configure C/C++ and many other programming languages.

Baby mobile

Since my eyes started focusing on objects, mummy wanted me to practice looking at things. After she did some web-based research, the result was a lovely homemade baby mobile. She said that the colour is correct…hang on…there is something wrong with my baby mobile. Check it out yourself.

Baby mobile

Scary shopping incident

Today mummy and daddy took me shopping at the Royal Randwick Shopping Centre. I was sitting in mummy’s carrier and looking at all the delicious cakes when an old lady with walking stick suddenly came to grab me with her hand. Mummy reacted quickly and started running away from the scary woman. Daddy also got shocked and almost called the police. The poor old lady tried to explain that she just wanted to see me. Yeah right, I’m sure we will believe that!