boiling memoir

journey of one man

Writing My Own Game for Wii

Now this is much more exciting than iPhone release! Nintendo is opening Wii to developers! That’s very cool, maybe I’ll be able to recreate some simple classic arcade games that I like.

Spam Using Pdf Attachments

There seems to be an increase of spams with using pdf attachments. I wonder if they are doing it because it gets away from spam filter more… spams are so annoying.

Refactor Inline Condition Assignment in While Loops

I wish IDE’s would offer refactoring to convert something like:

int len;
while ((len = read()) > 0) {
// business operation
}
into
int len = read(); 
while (len > 0) {
// business operation
len = read();
}
Nowadays I don’t think the inline modification bothers me as much as before but I still like to have the option of easily refactor it with a click of the button (or keyboard).

Speedgeeking Winner

Congratulation to propertyguru.com.au who won the Sydney Google developer day speedgeeking competition. I emailed my wife from the developer day as soon as I saw the demo, it is a really useful site for property hunters.