Archives Posts
January 31st, 2007 by elias.kai
Google opens a Research & Development center in Haifa, Israel Technion - Israel Institute of Technology, where it will be Google's seventh center outside the United States. Google Haifa has around 10 engineers and we do not know what are their focuses.
Archives Posts
January 31st, 2007 by elias.kai
A lot of webmasters worries about numbers of backlinks they can get in order to rank higher on Google, Yahoo MSN but you have to make attention that quantity is not everything, you should have better tools where it can show you the quality of those backlinks.
Add a live badge to your blog or website that queries Yahoo Site Explorer for the number of links to your site or page on the web. Select the type of link counts you want, the size and look of the badge and then cut and paste the code to your web site.
Check it out here Yahoo Badge for Backlinks
Archives Posts
January 30th, 2007 by elias.kai
Inside Google
Why would Niniane jump between 3D and Google Desktop ?
It can be a social space where users can create their own 3D representative using sketchup, or any sensors that can represent your real profile and you can add it or travel to any geographical area , anytime you want and meet or interact with others.
You can begin meeting people using orkut than gmail and when you are face to face pickup Gtalk and see or talk to them.
In this world, Advertising of course is allowed and Google can manage to distribute the bidding in accordance with population existence.
Hey, you can even pay cash and see your physical transaction using Google CheckOut, play poker, visit casinos, watch movies and get to Manchest United game or Los Angeles Lakers, pay and view others (from same community) watching the live Poker Games.
This can be called Googland, and after this you can go for 5000 usd to the GooglMoon using the latest Nasa Google product.
A complete scenario is going on at Google blogoscoped
Filed under
Free TV,
Online World,
Digital,
SecondLife,
Project Entropia,
Inside Google,
Googland,
Digital Art,
Tweak,
Football World Cup 2006,
Gadgets,
I am a Tester,
Google,
Google Earth,
casino,
Social Media optimization,
How having
No Comments »
Archives Posts
January 27th, 2007 by elias.kai
Hurley spoke on the last full day of the World Economic Forum, which brings together the world’s political, social and business leaders for a five-day schmooze fest on the problems facing the world.
YouTube co-founder Chad Hurley made news at a meeting of some of the globe’s most powerful people on Saturday, announcing that his wildly successful site will start sharing revenue with its millions of users.
Archives Posts
January 26th, 2007 by elias.kai
Yahoo Search Marketing Spam.It’s not yahoo email marketing campaign but some spammers using yahoo search marketing as name that appears on your inbox and the internal message is a happy new year 2007.

Archives Posts
January 26th, 2007 by elias.kai
Google Video New Interface Design.
I am not sure if it is a testing by showing the top 10 on each section when you have a mouse over.

Archives Posts
January 26th, 2007 by elias.kai
I have read on some online and offline newspapers some critics against Google in Sweden. WHAT was the Reason behind having the word HOROR on a dating site sponsored link ?
Google had some sponsored links AdWords or what is called in swedish Sponsrade Länkar for their client in Dating sector: sites are Meetic.se and Motesplatsen.se.
Whenever Internet users were searching for the word “horor” (Horror in english), two dating sites appeared on the right or top side of Google.se
Google Sverige presschef appraised the answer with apologizes to the concerned swedish market and the 2 dating sites meetic.se and motesplatsen.se
In My opinion, it can be a human editing and/or robot error for this reason:
There was a popular sex horor forum in sweden that still positioned number one in Google.se when you search for “horor”. This site contained these words Porr, horor och feminister and was or used to be on adsense program or had a popular search term as its name horor.
So Google robot picked up a popular search term related to a sex forum and placed it as Title sponsored links for their respective cliens. This process was automated.
http://forum.onecenter.com/sverigesex/
You can Check the Web Archives WayBack Machine and read what this site had as content.
Try this Old Page
Or This one
More about this Google Mistake can be found here IDG.se
Google-sökning på “horor” ger länkar till dejtingsajter Dejtingsajten Meetic.se - som bland annat sponsrat TV4s Förkväll - har köpt sökordet “horor” på Google.
DagensMedia
Filed under
AdWords Manager,
Google Tips,
AdWords Keyword Tool,
AdWords Tips,
AdWords Secret,
AdWords Analyzer,
How to lose a site in 10 days ?,
Lunarstorm,
Meetic.se,
Motesplatsen.se,
Google Horor,
Eniro,
Swedish IT,
SEO,
Google Sverige,
Sponsored links,
Sökmotoroptimering,
Sponsrade länkar,
Marknadsföring,
PPC Search Marketing,
I am a Tester,
Search Engine Optimization,
Internetmarknadsföring,
Annons och annonsera,
dejting kontaktannons,
Adwords Management consultant,
Google Adsense,
Google Adwords,
sökmarknadsföring,
sökmotormarknadsföring,
How having
1 Comment »
Archives Posts
January 25th, 2007 by elias.kai
Testing on the Toilet January 22, 2007
Better Stubbing in Python
So you’ve learned all about method stubs, mock objects, and fakes. You might be tempted to stub out slow or I/O-dependent built-ins. For example:
def Foo(path):
if os.path.exists(path):
return DoSomething()
else:
return DoSomethingElse()
def testFoo(self): # Somewhere in your unit test class
old_exists = os.path.exists
try:
os.path.exists = lambda x: True
self.assertEqual(Foo(’bar’), something)
os.path.exists = lambda x: False
self.assertEqual(Foo(’bar’), something_else)
finally:
os.path.exists = old_exists # Remember to clean-up after yourself!
Congratulations, you just achieved 100% coverage! Unfortunately, you might find that this test fails in strange ways. For example, given the following DoSomethingElse, which checks the existence of a different file:
def DoSomethingElse():
assert os.path.exists(some_other_file)
return some_other_file
Foo will now throw an exception in its second invocation because os.path.exists returns False so the
assertion fails.
You could avoid this problem by stubbing or mocking out DoSomethingElse, but the task might be daunting in a
real-life situation. Instead, it is safer and faster to parameterize the built-in:
def Foo(path, path_checker=os.path.exists):
if path_checker(path):
return DoSomething()
else:
return DoSomethingElse()
def testFoo(self):
self.assertEqual(Foo(’bar’, lambda x: True), something)
self.assertEqual(Foo(’bar’, lambda x: False), something_else)
More information, feedback, and discussion:
http://googletesting.blogspot.com
