I’ve come across many sites, forums and blogs teaching thousands of methods to earn online. Some would really zoom past your head if you don’t know basic marketing tricks. There are Paid To Click, Paid to Post, Paid to Read, Paid to Write and Paid To *insert anything here*. XD Anyways, I’ve tried various methods… Continue reading The best way to earn online
Month: July 2009
Solution to “MySQL Server Has Gone Away” Problem
Seriously guys, I got this error and I was laughing hard. The error is just too funny, don’t you think? Yes, it is but not for developers like me. Problem to this error is almost undetectable and there are more than a dozen reasons as to why this occurs and this often baffles developers. This… Continue reading Solution to “MySQL Server Has Gone Away” Problem
Searching for a text string in all files and directories recursively in PHP
Sometimes you need to edit some part of your website and unfortunately it isn’t made by you. You will, obviously, need to search for the file in which that particular part of site exists. In CMSs/forums/blogs, it get really hard to search it manually. I was having a similar problem. I needed to edit the footer of… Continue reading Searching for a text string in all files and directories recursively in PHP
Moved my blog to new domain
You might be shocked but I moved my blog to a new domain – www.absolutelytech.com, just after one day at www.insanelyme.com . Actually, that blog was more of a general life-based blog. I felt it wasn’t suitable for a tech blog. Hence the new name. It roughly took me 5 minutes to do the job.… Continue reading Moved my blog to new domain
Got a new domain for my blog (How I moved my blog to new domain)
Just bought www.insanelyme.com for my blog. As I consider myself insane (most of you will agree with that), I found this name suitable for my blog. I bought it in the same instant when I saw it was available. I added the domain in cPanel as addon domain but unfortunately it didn’t support second level… Continue reading Got a new domain for my blog (How I moved my blog to new domain)
Bluehost – the best host out there?
Before providing a review for Bluehost, I’ll take to back to the days when I knew nothing about web. When I say nothing, I just didn’t know anything except for normal browsing. Yeah, you heard it right. Through some googling and stumbling on an unknown page, I found out about adsense and its success stories.… Continue reading Bluehost – the best host out there?
Browse WAP sites using Firefox
Many a times we would want to check out some WAP sites on computer but unfortunately, we can’t. But firefox has a solution to all the problems. Download the WMLBrowser plugin from: http://wmlbrowser.mozdev.org/ And browse WAP sites normally and seamlessly!
[HowTo] Convert HTML to PDF using PHP
In a recent project, I had to output to a PDF file as well as to the browser. For this purpose first I downloaded the library from here. Then this code: <?php ob_start(); //Start buffering the output //your coding starts here …. …. … … //Coding ends here … Continue reading [HowTo] Convert HTML to PDF using PHP