Archive for October, 2009

Things To Focus On

There are two things that I need to do in 2009, and I’m sure this applies to many other businesses that are just starting out:

Maximize my existing income streams
Diversify

Maximize my existing income streams
Here are all the things that I want to do in 2009 for my current sites and business models:

Newsletter: I want to start [...]

How to make Amazon webstore work

The reason why so many people either fail or don’t earn as much as they can even with all of the effort that they do is because they never bothered to setup a professional e-commerce website in the first place. Now before you take offense at what I said, let me be specific.
Many people have [...]

Amazon E-Commerce Service - ItemSearchRequest Class

http://s3.amazonaws.com/awscode/amazon-ecs/2007-07-16/cs/library/doc/index.htm?redirect=784dc061-aec4-25f5-2bd7-3da1528fd1de.htm
Amazon S3 Design Principles
The following principles of distributed system design were used to meet Amazon S3 requirements:

Decentralization: Use fully decentralized techniques to remove scaling bottlenecks and single points of failure.

Asynchrony: The system makes progress under all circumstances.

Autonomy: The system is designed such that individual components can make decisions based on local information.

Local responsibility: Each individual [...]

Amazon Web Services Discounts

Amazon web services is a great feature any webmaster can utilize during his online money making quest.
Giving a user the option to find out Amazon products that are currently on sale can significantly boost your affiliate revenues.
his link will list everything from Computers and Hardware department that sells at 80% discount or more:
http://www.amazon.com/gp/search/?node=541966&pct-off=80-
You can easily [...]

Amazon Web Services - Infrastructural Services

Amazon web services url http://aws.amazon.com/
What is Amazon web services. I heard so much about it, but what is it. After first paragraphs of reading on Amazon’s sites, I was very confused. What do they offer? What kind of services Amazon offers, as far as I know it is a retailer, did it move to the [...]

Wordtracker Results Scraping PHP code

Here is the code that scraps ups the results of the Wordtracker keyword tool. Right now it prints out the results, but you can make it to store it in the file or database.

<?php
/*************************************
Copyright 2007 WageRank
http://www.wagerank.com
*************************************/
$keyword = “YOURKEYWORD”;
$keyword = str_replace(” “, “+”, $keyword);
$wtURL = “http://freekeywords.wordtracker.com/?seed=$keyword&suggest=Hit+Me&adult_filter=remove_dubious”;
$result= hitPage($wtURL);
print $result;
$count = preg_match_all(”/\<td\>(.+?)\<\/td\>\<td\>\<a href\=\”\?seed\=(.+?)\&adult_filter/”,
$result, $matches);
for($i=0; $i<$count; $i++) {
$currCount = [...]