Saturday, May 16, 2009

[SPAM] Spam nowadys


Wah, spam nowadays so advance. The name and the nickname are real. Maybe the account was hacked, or its just created just for spam / virus transmission purpose.

Luckily I do some 'homework' before accepting any invitation, or else, sure got tricked by it.

不明白

真的不明白为什么他们不要直接跟 uncle seng 安排食物。uncle seng 都已声明菜色可以安排。搞到现在 unlce seng 迟开早关,甚至没开。

Friday, May 15, 2009

NUS, NTU, Top 14
Source: http://www.straitstimes.com/Breaking%2BNews/Singapore/Story/STIStory_375684.html?vgnmr=1

Close window

Sunday, May 10, 2009

Vocaloid

Vocaloid, a singing synthesizer, which able to generate vocal accoding to lyric and melody. Amazing, technology nowadays.

Below is the song "Conveni(ence Store)" by the female vocal - Miku Hatsune.


Thursday, May 07, 2009

[C Programming] Difference between const int* and int* const

const int* - a variable pointer pointing to a constant integer.
int* const - a constant pointer pointing to a variable integer.

E.g.
int i = 7;
const int* p = &i;

*p = 8; //ERROR!


* The trick is to read from right to left. :)