a little night music
Give me peace, pls…
Here is the link to the video clip: http://www.25phut.net/uploadedvideoclips/viva.html
In conclusion I’d like to say that Windows Mobile phones are the best, at least, to me. Countless softwares are available out there. And, I can do some coding for my PDA as u can see in the video, I’ve implemented image processing (Canny Edge detection), written a program to operate a robot via WIFI, and much more…
Using C# programming language to do image processing.
Using my Creative webcam: ^^
Juz finish washing and hanging out my clothes. Gonna go out to relax for a while. It’s been a beautiful Sunday morning. The weather is not very hot, not raining either. Hmm, I’ll continue to read “Dracula” when I take the bus.
Miss you and love you much, honey
Hope you have a happy Sunday with your family.
See you soon.

Love always,
SquallLTT
xxx
rapid.25phut.net is a tool which allows users to find freely available files from all around the web!
Visitors can searches: RapidShare, MegaUpload, MegaShares, Badongo, FileFront, SaveFile
To begin using this amazing tool, simply type in your search query in the search box located at the top of this page and hit search. It really is that simple! You now have the most comprehensive file search tool at your fingretips.
Note that: this tool is mainly used for searching education materials: ebooks related to computer programming or literatures
Here is the link: http://rapid.25phut.net/
When you have your site accessible both under your_domain.com and www.your_domain.com you may come up with duplicate content on Google Search. To avoid such problems you can use the following lines in your .htaccess file to force only the www version of your web site:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.your_domain.com$
RewriteRule ^(.*)$ http://www.your_domain.com/$1 [R=301]
Note that the .htaccess should be located in the web site main folder.
This will redirect all requests to the non-www version of your site to the www version using 301 Permanent redirect which will make the search engines to index your site only using the www.your_domain.com URL. In this way you will avoid a duplicate content penalty.
This similar to the www vs non-www version of your site work-around.
As you might now you, by default you can access your site as http://www.domain.com/ and http://www.domain.com/index.html with some setups it can be index.php or index.asp or default.aps, etc.
Unfortunately, this creates a risk of duplicate content from the search engine point of view. To avoid this, you can use the following ModRewrite rules in your .htaccess file:
RewriteEngine on
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/
RewriteRule ^index\.html$ http://www.domain.com/ [R=301,L]
The file should be located in your website main folder (web root).
The rules above will tell the browser or the search engine both that all requests to index.html should be directed to the "/" (slash only).