Opera is primarily a browser, but is has features of an email Clint with it now. That means you can actually use a browser wit all its function – surfing, downloading and now even emails. You can setup and use multiple email accounts and even manage your folders like you were using an actual email Clint.
Setting up Opera Mail is quite easy as it supports POP3, IMAP and even IRC Chat. Read more…

Nepali date converter
Hi frn, Now Nepali to English ( Bikram Sambat ) Date converter can convert 130 years of dates i.e from B.S(1970-2100) and from A.D(1913-2043). I hope I’m able to meet you need. As well as I have tested this Bikram Sambat Nepali date converter script several time and previous errors & bugs are also fixed, So I’m very much sure for the result to be 100% accurate. However if encase you find any error then please inform about that error. Any type of comments are welcome.
If you want unincrepted script of this date conversion than contact me.
As well you can put this on your web page too.
Any type of comments are welcome.
www.ashesh.com.np/nepali-date-converter.php
With the launch of Microsoft office 2007, a new Open Xml formats for documents took birth. All the previous office file extensions were added with letter x, such as docx, pptx, xlsx and more. But as many of the company offices and people still uses the old ms office 2000, 2003, xp. So here it started creating problems. People started facing need of a conversion tool for these Open Xml formats (docx, xlsx, pptx) to general and widely used (doc,xls,ppt) formats. Read more…
Love is holding hands in the street. Marriage is holding arguments in the street.
Love is dinner for two in your favourite restaurant. Marriage is a take home packet.
Love is cudding on a sofa. Marriage is one of them sleeping on a sofa.
Love is talking about having children. marriage is talking about getting away from children. Read more…
Almost every informed webmaster, SEO expert, online marketer and website promoter is aware of social
bookmarking and its benefits to increase traffic multiple times. Social bookmarking is considered a web 2.0 promotion and marketing technique which has SEO benefits as well. Planned and carefully executed social bookmarking campaigns can increase brand awareness, readership, membership and can result in a constant source of daily traffic flow. Sites like Digg, StumbleUpon, Slashdot, Propeller etc. have grown over years and are hugely popular now. Read more…
Many web servers are configured such a way that a user can only upload the maximum file size of 2MB. So there might be the problem for the people who wants to upload the .pdf file of size around 15MB. But, you can increse the maximum upload file size limit by using .htaccess file. Read more…
Irfan View Imaging Shortcuts
Lossless JPG rotation-to Left………………………………….. [Ctrl]+[Shift]+[L]
Lossless JP rotation-to Right………………………………….. [Ctrl]+[Shift]+[R]
Set as wallpaper- centered…………………………………….. [Ctrl]+[Shift]+[C]
Set as wallpaper-tiled………………………………………….. [Ctrl]+[Shift]+[T] Read more…
What matters most

brother and sister
Many years ago, when I worked as a volunteer at Stanford Hospital, I got to know a little girl named Liz who was suffering from a rare and serious disease.
Her only chance of recovery appeared to be a blood transfusion from her five year-old brother, who had miraculously survived the same disease and had developed the antibodies, needed to combat the illness.
The doctor explained the situation to her little brother, and asked the boy if he would be willing to give his blood to his sister. I saw him hesitate for only a moment before taking a deep breath and saying. “Yes, I’ll do it if it will save Liz.”
As the transfusion progressed, he lay in bed next to his sister and smiled, as we all did, seeing the color returning to her cheeks.
Then his face grew pale and his smile faded. He looked up at the doctor and asked with a trembling voice, “Will I start to die right away?”
Being young, the boy had misunderstood the doctor; he though h e was going to have to give his sister all of his blood. Attitude, after all, is everything.
By Unknown
If you need to add php code into .html (or .htm) file and you don’t want to change the file extension to .php because you already have incoming links on the .html file – although you can solve that with a simple redirect – here is the solution:
Add the following lines of code to your .htaccess file :
AddType application/x-httpd-php .html
If you just need one .html file to behave like that, then enclose that code with “files” tag like this :
AddType application/x-httpd-php .html
Pretty simple, huh?
Here is what’s Happening
when a web page is requested, the server checks the file extension to know how to handle the page. If it sees a .php extension (or .shtml, .asp etc.), it knows that it needs to execute the appropriate code before passing it along to the browser. If it sees a .htm or .html file, it sends it right to the browser because it doesn’t have anything to process on the server.
With the above piece of code, we simply tell to server to execute a .html file as if it’s a .php one.
Be aware!
* If you have an existing .htaccess file, make sure not to overwrite anything there or other settings may stop working!
* Anything in your .html files that starts with will now be executed as PHP, so if it’s in your file for some other reason (an XML tag for example) you will need to echo these lines to prevent errors.