Last month, on the 14th, I added the Alexa widget to CodeCall and wrote this blog post. After one month, I stand by my original assumption that the widget does nothing to improve Alexa ranking.
I've been monitoring the traffic of CodeCall on a daily basis (as I have for the past 4 years) and seen an incredible increase of traffic since between the 14th of last month and now. Almost 1,000 unique visitor increase per day - 15.45% according to Google Analytics:
![]()
Johnnyboy added the Alexa widget on his blog. His traffic rank improved from 8,555,632 to 4,878,539 over one month. He had read how adding the Alexa Widget would improve rank and it seems to have worked.
I had read otherwise, that nothing short of the Alexa toolbar (or sparky for FireFox) would increase rank. We discussed it and did some research but couldn't find any definitive evidence one way or the other. There was nothing left to do but test the theory, here on CodeCall.
I just made the mistake of converting my email @ sign into "AT" here: http://forum.codecall.net/general-pr...-script-2.html
After thinking about it, that really offers no protection at all and was a useless waste of my time. Think about how easy it would be for a spammer to convert an AT into @. Here it is in PHP:
Visual Basic:Code:str_ireplace('at', '@', $text);
Code:Dim aString As String = Replace(text,
One of the many reasons I enjoy CodeCall is because it feels really good to help people. Programming can be a very frustrating subject to learn and we provide people with the solutions to overcome their frustrations. When all goes well, the solution worked perfectly, you might end up with a response such as this:
Times like these make it all worth while and brings a smileOMG... I think I'm in love with this website. I don't know why I didn't join a million years ago.
There are two things in PHP that drive me crazy. The first is the inconsistent naming scheme of the functions and parameter names in the SPL. This annoys almost everyone.
The second one may take a little longer to find annoying but you might eventually get to that point. It is the inconsistancy in parameter order. Take for example these two functions:
string strstr ( string $haystack , mixed $needle [, bool $before_needle= false ] )
mixed str_replace