This blog will contain non-technical, fun and personal posts. All my technical posts will be posted on SMD's blog, http://www.smd.com.my. Looking forward to see you there! :-)

Post PHP-Meetup 3.0

I’m in Kota Kinabalu for holiday. Sorry for no updates about PHP Meetup 3.0. ashrufzz has made an interesting review on it.

What I’ve Learned From PHP Meetup 3.0 (Part I)
What I’ve Learned From PHP Meetup 3.0 (Part II)

Thanks goes to ashrufzz. We’re looking forward to conduct grand event for the next meetup. See you [...]

Baking Mambo

Yesterday, The Mambo Foundation announced that they will use CakePHP for the next version of Mambo and at the same day I presented about CakePHP at PHP Meetup 3.0.
You can download my slide here and the announcement is here.

PHP Meetup 3.0

PHP Meetup 3.0 will be held on 21 July 2007 at Faculty Information Technology & Quantitative Science (FTMSK), Universiti Teknologi MARA (UiTM), Shah Alam, Selangor. From 9.00 am to 5.00 pm. If you’re interested to come, please put your name & email, here. Speakers list will be updated soon.
See you there!

Installing ntfs-3g On Etch

If you would like to read & write to your ntfs partition (windows’s partition), installing ntfs-3g on your machine is a better solution. This is the method I used to install ntfs-3g on my debian etch :
1. Remove old libfuse (if any) :
sudo apt-get remove libfuse2 fuse-utils
2. Get required package:

wget http://snapshot.debian.net/archive/2007/04/10/debian/pool/main/n/ntfs-3g/ntfs-3g_1.328-2_i386.deb
wget http://snapshot.debian.net/archive/2007/04/10/debian/pool/main/n/ntfs-3g/libntfs-3g0_1.328-2_i386.deb
wget http://snapshot.debian.net/archive/2007/04/10/debian/pool/main/f/fuse/libfuse2_2.6.3-2_i386.deb
wget http://snapshot.debian.net/archive/2007/04/10/debian/pool/main/f/fuse/fuse-utils_2.6.3-2_i386.deb
3. Install [...]

HTMLHelper : Link With Image

In Cakephp 1.1, if you want to display an image with a link, you’ll need to do something like this:

echo $html->link(
$html->image(’myimage.jpg’),
[...]