November 06, 08 by Gabi Solomon
Google announced yestarday on there blog that that they’re ending the agreement with Yahoo made earlier this year that gave Yahoo! the option of using Google to provide ads on its websites (and its publisher partners’ sites) in the U.S. and Canada.
We feel that the agreement would have been good for publishers, advertisers, and users — as well, of course, for Yahoo! and Google. Why? Because it would have allowed Yahoo! (and its existing publisher partners) to show more relevant ads for queries that currently generate few or no advertisements. Better ads are more useful for users, more efficient for advertisers, and more valuable for publishers.
August 02, 08 by Gabi Solomon
I have been writing a small website in the small free time i have had for the past 2 months, and testing it to see how it will perform if many users will start to use it and now i believe i can make it public, at least as pre-alpha state
.
The website is called YM Archive and the ideea is of an archive that will keep a track of a users activity on Yahoo messenger ( online times and avatars ). It only records the online time, not the invisible time as i value the users privacy … if he wants to be invisible he must have a reason to do it.
The website was originaly build for me, since many times i wanted to know if a person has been online today and i have missed him, but i figured maybe others will want the same information … so make it a public service.
As a pointer, the website only tracks a limited amount of users, the ones that it has in its database. To add a new user in the database you need to do a search for it and it will add it automatically, and from that point it will track its status, so next time you look the same ID up it should have some history for you ( if the user has been online since add ).
In time the website will integrate other IM services, and maybe include an user account where you will have some stats printed out for you and your friends.
Hope you enjoy it.
Cheers
PS: I am curious to see when will my hosting close my account for to many curl connections
)
June 22, 08 by Gabi Solomon
On a recent project i had to find a way to test if a yahoo user account entered by the user is real or not. The purpose of this was to not create unnecessary load on the server for an id that wasn't real. So i went to the yahoo registration form and looked on how do they check it.
In that form the access this address if i test my id :
https://edit.yahoo.com/reg_json?PartnerName=yahoo_default&AccountID=solomongaby@yahoo.com&ApiName=ValidateFields
There were a few other get parameters but i strip them out, since they didnt seem to add any more value, and the result was the same. If the account you entered ( solomongaby@yahoo.com in this case ) is a valid one the result will be :
HTML:
-
{
-
"ResultCode":"PERMANENT_FAILURE",
-
"SuggestedIDList": ["infostud_ro79@yahoo.com", "infostud_ro12@yahoo.com", "infostud_ro89@yahoo.com"],
-
"SuggestedDBIDList":["infostud_ro33@rocketmail.com","infostud_ro38@ymail.com"],
-
"ErrorList":[{"ErrorCode":"100000","ErrorField":"AccountID"}]
-
}
As you see the result already has the recomandation into it. If you try to run the same request for an id that doenst exist like solomongaby12382109 you would get this result:
Based on this i wrote a small php function :
PHP:
-
$check =
file_get_contents('https://edit.yahoo.com/reg_json?PartnerName=yahoo_default&AccountID='.
$this->
id_name.
'@yahoo.com&ApiName=ValidateFields');
-
if ( strpos($check,
'SUCCESS')===
false ) return true;
-
else return false;
Hope this has helped you.
Cheers
June 12, 08 by Gabi Solomon
Just a few minutes ago i read a shocking news about Google/Yahoo Search Partnership Announcement. It turns out that Yahoo will outsource all or part of Yahoo search marketing, and possibly search itself, to Google.
As this news not yet official but very likely to be true since there have been announces before about this potential partnership, controversial debates about if this is good or bad, and about that a competitive search market is needed for a healthy Internet are starting to apear.
Yahoo and Google will make a joint announcement at 1:30 California time this afternoon and then we will know the oficial side of the story.
Never the less this is big news for the internet marketing, SEO, and Affiliate Marketing industries.