Make Money Online with Nufflets

6 Comments

Nufflets, the 4th Malaysian Advertising Network launched on 25 December 2007 marking a memorable day at Christmas celebration. With the 50% offers on revenue share to its publishers, Asian (Malaysia, Singapore, Australia, Thailand, China and Japan) publishers can now enjoy additional revenue opportunity for a great new year on 2008.

Please do not worry about displaying both Google Adsense and Nufflets Ads in your blog. You won’t get ban by Google Adsense if the formatting or color scheme of your ads is sufficiently different from the layout of the Google Adsense. Nufflets first group of live text ads will commence on the 7-8 of January 2008.

Sign up now and get USD 5 and get additional USD 10 once you provide a linkback to Nufflets. That’s bring you a total of USD 15.

Source: Nufflets

Capture Screenshot on My Symbian Phone

3 Comments

This is a very useful piece of software for me to perform screenshot capture on my Symbian phone. The name of this software is “Screenshot”. Screenshot is a FREE software and available for Symbian S60 and Symbian UIQ. I am using a Symbian OS S60 3rd phone. The current stable version is 2.80 for Symbian OS S60 3rd. It supports JPEG, PNG, BMP or MBM file format. This version supports Nokia 3250, N71, N73, N75, N76, N80, N91, N91 8 GB, N93, N93i, N95, N95 8 GB, E50, E60, E61, E61i, E62, E70.

The above picture shows the shortcut that you can use to capture screenshot. There are several shortcuts that are supported by Screenshot for Symbian OS (S60). The default one is “<Edit>”+”<OK>”. The “<Edit>” key is sometimes called “<Pencil>” key or “<ABC>” key. The “<OK>” key is the center of your joystick.

Source: Screenshot

My first birthday celebration with my daugther

11 Comments

Well, this is my first birthday celebration with my daughter. I am very happy today because I can celebrate my birthday with my wife and my daughter. My wife bought me a birthday cake from Secret Recipe. Thank you honey, :)

More

My baby girl is 4 months 3 weeks 4 days old

6 Comments

Today she is 4 months 3 weeks 4 days old.

More

Setup lighttpd 1.4.18 Virtual Hosting in CentOS 5

3 Comments

What is a virtual hosting? It is a method that web servers such as lighttpd is use to host more than one domain name on the same server or on the same IP address. Virtual hosting can be accomplished in two methods such as ip-based virtual hosting and name-based virtual hosting. In this post, I will setup lighttpd 1.4.18 virtual hosting based on name-based virtual hosting to host domain1.com, www.domain1.com (both domain1.com and www.domain1.com is referring to the same website) and www2.domain2.com on 1 single web server.

1. Create each of the website directory like this: -

mkdir /srv/www/lighttpd/domain1.com
mkdir /srv/www/lighttpd/www2.domain2.com

2. Open lighttpd configuration file like this: -

vi /etc/lighttpd/lighttpd.conf

3. Add below text to support domain1.com and www.domain1.com at the end of file: -

$HTTP["host"] =~ "^(domain1.com|www.domain1.com)" {
server.document-root = "/srv/www/lighttpd/domain1.com"
}

4. Add below text to support www2.domain2.com at the end of file: -

$HTTP["host"] == "www2.domain2.com" {
server.document-root = "/srv/www/lighttpd/www2.domain2.com"
}

5. Save and exit file. Restart the lighttpd service like this: -

service lighttpd restart

6. Upload respective HTML files. Point your browser to the website and you will see the respective website.

If you found these helpful, please contribute to help:

Source: lighttpd

Older Entries Newer Entries