<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">

<channel>
	<title>Scraping Pennies</title>
	
	<link>http://scrapingpennies.com</link>
	<description>Tight budget. Audacious goal. Full Transparency.</description>
	<pubDate>Tue, 13 May 2008 22:59:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ScrapingPennies" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">1956372</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Creating Redirects for Affiliate Links</title>
		<link>http://scrapingpennies.com/2008/05/creating-redirects-for-affiliate-links/</link>
		<comments>http://scrapingpennies.com/2008/05/creating-redirects-for-affiliate-links/#comments</comments>
		<pubDate>Tue, 13 May 2008 22:30:04 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[Affiliate Programs]]></category>

		<category><![CDATA[Tech Tricks]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=15</guid>
		<description><![CDATA[You may have noticed already, but I use redirect pages when I link out to different programs. Some of those programs are affiliate links, but not all of them. I will use these redirect pages for almost all the links out for advertiser programs, for three main reasons.
Reason 1: Protecting affiliate links
Not all the links [...]]]></description>
			<content:encoded><![CDATA[<p>You may have noticed already, but I use redirect pages when I link out to different programs. Some of those programs are affiliate links, but not all of them. I will use these redirect pages for almost all the links out for advertiser programs, for three main reasons.</p>
<h3>Reason 1: Protecting affiliate links</h3>
<p>Not all the links are affiliate links, but some are. Affiliate links are often formed in a way that the affiliate information is easy to derive from the address. These parts can easily be stripped if someone doesn&#8217;t want you to receive the commissions that are associated with that. While I don&#8217;t like it when people do that (it won&#8217;t make it cheaper for you in any way), I don&#8217;t care about the people who do it. I care about the software that does that. </p>
<p>There is malicious software out there that <a href="http://www.webproworld.com/affiliate-marketing-discussion-forum/37584-affiliate-link-hijacking.html">hijacks affiliate links</a>, stripping my affiliate-id and replacing it with the id of someone else. This is what I really don&#8217;t like, because the intentions of the visitor are good, but they and I are harmed by someone with malicious intent. </p>
<p>As far as I&#8217;ve been able to find this happens by software on the visitors pc. But there are also reports about hacked websites, where files and links have been replaced. Serious stuff!</p>
<h3>Reason 2: Central Link Management</h3>
<p>The outbound (affiliate) links are all placed inside a nice little folder on my server. If a program decides to change the structure of their affiliate link (I know <a href="http://scrapingpennies.com/go/tla.php">TLA</a> did this once) I can simply go to that folder, modify the appropriate file and all my links are okay again.</p>
<p>This is also a benefit in case you might want to sell you blog at one point. Not all affiliate accounts are transferrable, and for the ones that aren&#8217;t you (or the new owner) can simple replace the affiliate links in the redirects and the entire archive of posts links to the new affiliate id. Easy as pie!</p>
<h3>Reason 3: Easy Opt-Out</h3>
<p>It&#8217;s feasible that I change my mind about a program, or have other reasons to not wanting to link out to a program any longer. In that case I can easily replace the redirect page, with another page with the same name, explaining all the reasons why I don&#8217;t promote that program anymore.</p>
<p>It&#8217;s the easy opt-out. I want out, but I don&#8217;t want to go back through all my articles to find where I linked to that particular program (would take hours). I simply replace it with another page (which would take minutes).<br />
<span id="more-15"></span></p>
<h3>How to create a redirect</h3>
<p>There are several methods to choose from, but there are two methods that I will describe here:</p>
<ul>
<li><strong>Meta refresh</strong><br />
This method uses the meta-tag in the header of the HTML file to redirect to another page. It uses client-side redirects (in other words, the internet browser does the work). This method has been abused with malicious intent by spammers and is discouraged by search engines. But it works.</li>
<li><strong>.htaccess redirect</strong><br />
This method uses the .htaccess file on the server to redirect pages to another address. This method uses server-side redirects, which means that the internet browser doesn&#8217;t even notice it. This method is pretty safe, but only works on Apache servers.</li>
</ul>
<h3>Meta Refresh</h3>
<p>This is not really hard to do. What you need is a simple text editor and FTP access to your server.</p>
<p><strong>Step 1:</strong> Open the text editor, and copy paste the following template in there.</p>
<blockquote><p><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot;&gt;<br />
&lt;title&gt;[INSERT PAGE TITLE HERE]&lt;/title&gt;<br />
&lt;meta name=&quot;robots&quot; content=&quot;noindex,nofollow&quot;&gt;<br />
&lt;script&gt;window.location=&quot;[INSERT AFFILIATE URL HERE]&quot;;&lt;/script&gt;<br />
&lt;meta http-equiv=&quot;refresh&quot; content=&quot;1; url=[INSERT AFFILIATE URL HERE]&quot;&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;p align=&quot;center&quot;&gt;You are being taken to the correct page.<br />
&lt;br&gt;If the page does load after 5 seconds,<br />
&lt;a href=&quot;[INSERT AFFILIATE URL HERE]&quot;&gt;click here&lt;/a&gt;.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p></blockquote>
<p><strong>Step 2:</strong> Insert the correct links and save.<br />
Replace the [INSERT &#8230; HERE] placeholders with the appropriate content. After that save the document as a .html or .php file.</p>
<p><strong>Step 3:</strong> Upload the file to the server<br />
Start your FTP-program (I use <a href="http://filezilla-project.org/">FileZilla</a>) and upload the file to your server.</p>
<p><strong>Step 4:</strong> Link to it.<br />
That&#8217;s it, now use that link instead of the original link. You could even add the <a href="http://en.wikipedia.org/wiki/Nofollow">rel=nofollow attribute</a> to the link to tell search engines that they need not follow the link (but a lot of them do it anyway).</p>
<h3>.htaccess redirect</h3>
<p><span style="COLOR: #ff0000"><strong>Editing the .htaccess file can make your website inaccessible if done incorrectly. Always make sure you have a back-up of the current version of the .htaccess file, to go back to a working version.</strong></span></p>
<p>.htaccess is a file on Apache servers. It&#8217;s a very powerful tool, but often requires <a href="http://www.askapache.com/htaccess/apache-htaccess.html">rather detailed technical knowledge</a> to edit. Thankfully it&#8217;s not that difficult for the purpose of redirecting pages on server level.</p>
<p><strong>Step 1:</strong> Check for existing .htaccess<br />
First you need to find out whether you have a .htaccess file already. Start your FTP-program (<a href="http://www.htaccesstools.com/htaccess-faq/#dotFiles">make sure your program shows the .htaccess file</a>), browse to the root of your domain and look for it (it&#8217;s usually on top of the list). If it&#8217;s there, download it. <span style="COLOR: #ff0000"><strong>Make sure to make a back-up of the current file!</strong></span></p>
<p><strong>Step 2:</strong> Edit it to add redirects<br />
Open the .htaccess file in a text editor and add the following lines to the file. </p>
<blockquote><p><code># Temporary redirects for affiliate links<br />
Redirect 302 /[subdir]/[filename] http://example.com/?id=12345<br />
Redirect 302 /[subdir]/[filename] http://example.com/?id=34567<br />
# End of affiliate redirects<br />
</code></p></blockquote>
<p>Now replace /[subdir]/[filename] with the right link, and replace http://example.com/?id=12345 with the address you want to send your visitors to when they click the link.</p>
<p>Make sure you use a temporary redirect. The status code 302 tells the other server that the page is redirected temporary, and that they should not update their addresses to the new address.</p>
<p>For example, for my <a href="http://scrapingpennies.com/go/e-junkie.php">e-junkie affiliate link</a> this looks like this:</p>
<blockquote><p><code>Redirect 302 /go/e-junkie.php http://www.e-junkie.com/?r=11261<br />
</code></p></blockquote>
<p><strong>Step 3:</strong> Save and upload<br />
Upload and overwrite the old .htaccess file on the server.<br />
<span style="COLOR: #ff0000"><strong>Again make sure you have a back-up of the old version before you do this!</strong></span></p>
<p><strong>Step 4:</strong> Link to it.<br />
That&#8217;s it, now use that link instead of the original link. It doesn&#8217;t even matter if there&#8217;s a file or not on the original location.</p>
<p>If you&#8217;re using <a href="http://wordpress.org">WordPress</a> as your (self-hosted) blogging platform, you could also <a href="http://www.joostdevalk.nl/wordpress/meta-robots-wordpress-plugin/">use Joost de Valk&#8217;s plugin Robots Meta to edit the .htaccess file</a> from within the WordPress admin interface. </p>
<p>Again, use caution with this file. Make sure you have a copy of a working version and ftp-access to your server in case things go wrong. An error in the .htaccess file could effectively deny you access to the WordPress Admin interface. In which case you&#8217;ll have to replace the erroneous file with the back-up through FTP.</p>
<h3>Recap</h3>
<p>Redirecting your affiliate links is not a sneaky trick, it&#8217;s a legitimate way to protect yourself and your visitors from the effects of malicious software that targets those links. Using the .htaccess method is preferred, because it&#8217;s not discouraged by search engines.</p>
<p>Nothing is entirely safe, because there are always ways to hack a site. But using this method, you&#8217;ll eliminate that 80-90% of causes. If you make sure you <a href="http://www.josiahcole.com/2007/07/11/almost-perfect-htaccess-file-for-wordpress-blogs/">protect your .htaccess file properly</a> too, you&#8217;re well on your way to being safe.</p>
<p>While I may be <strike>hiding</strike> protecting my affiliate codes, <a href="http://scrapingpennies.com">Scraping Pennies</a> still gives full transparency about it. That&#8217;s what this blog is all about, making money online and showing how I do it. <a href="http://feeds.feedburner.com/ScrapingPennies">Subscribe</a> now, to stay on top of tricks and tips like these. It might just make you a couple of pennies, heck a dime even!</p>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=Aw050h"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=Aw050h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=wh1K3h"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=wh1K3h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=eGdZth"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=eGdZth" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=COvHeH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=COvHeH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=mTVKSH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=mTVKSH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=HXdEOh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=HXdEOh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/289750450" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/creating-redirects-for-affiliate-links/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fcreating-redirects-for-affiliate-links%2F</feedburner:awareness></item>
		<item>
		<title>Monetization Policy for Scraping Pennies</title>
		<link>http://scrapingpennies.com/2008/05/monetization-policy-for-scraping-pennies/</link>
		<comments>http://scrapingpennies.com/2008/05/monetization-policy-for-scraping-pennies/#comments</comments>
		<pubDate>Tue, 13 May 2008 14:47:40 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[About Scraping Pennies]]></category>

		<category><![CDATA[MMO Strategies]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=14</guid>
		<description><![CDATA[This is only a small post now, but I will expand it as a page later on.
My aim is to give full transparency on Scraping Pennies, and I call upon you to ask me questions when things are not clear. One of the main things I&#8217;m disclosing right now, is the monetization policy. In fact [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is only a small post now, but I will expand it as a page later on.</em></p>
<p>My aim is to give full transparency on Scraping Pennies, and I call upon you to ask me questions when things are not clear. One of the main things I&#8217;m disclosing right now, is the monetization policy. In fact it&#8217;s pretty short and simple: </p>
<p><strong>&#8220;If it can be monetized, it WILL be monetized. Unless&#8230;&#8221;</strong></p>
<p>The &#8220;Unless&#8230;&#8221; part is my escape. It&#8217;s a highly subjective part, and I will define it along the way, as I encounter situations in which I <strong>choose</strong> not to monetize. </p>
<p>This can happen for instance when terms and conditions prevent me from giving any transparency. There are some advertisement programs who state that you can&#8217;t disclose any part of their service. <a href="http://scrapingpennies.com/go/tla.php">Text Link Ads</a> for one, has a service that has this condition. I declined it, because it goes against the spirit of Scraping Pennies.</p>
<p>On the other hand I know Google Adsense prevents the disclosure of some metrics in their program. While this doesn&#8217;t give full transparency, the amount of transparency I can give is enough to align with the aim of Scraping Pennies. </p>
<p>I can also imagine that there are opportunities that clash with my personal values and ethics. I don&#8217;t want to promote scammy, spammy, sneaky and shady activities. In those situations I will go with my gut feeling and report my decision here as well. Scraping Pennies is as much about what I do to make money online, as it is about what I choose NOT to do.</p>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=e9X2Lh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=e9X2Lh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=e4z4uh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=e4z4uh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=BPMiXh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=BPMiXh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=oPZWMH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=oPZWMH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=wWeCVH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=wWeCVH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=0NyETh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=0NyETh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/289480757" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/monetization-policy-for-scraping-pennies/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fmonetization-policy-for-scraping-pennies%2F</feedburner:awareness></item>
		<item>
		<title>Weekly Income Report - 2</title>
		<link>http://scrapingpennies.com/2008/05/weekly-income-report-2/</link>
		<comments>http://scrapingpennies.com/2008/05/weekly-income-report-2/#comments</comments>
		<pubDate>Sun, 11 May 2008 08:27:48 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[Income Reports]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=13</guid>
		<description><![CDATA[Every week on I will report on the performance of this blog. Target is to give full transparency on money and hours spent and money earned. DO ask questions if things are not clear.
This week I invested hours, not money. This caused an increase in the money/hour figure, but only fictional. There&#8217;s no money inflow, [...]]]></description>
			<content:encoded><![CDATA[<p><em>Every week on I will report on the performance of this blog. Target is to give full transparency on money and hours spent and money earned. DO ask questions if things are not clear.</em></p>
<p>This week I invested hours, not money. This caused an increase in the money/hour figure, but only fictional. There&#8217;s no money inflow, so I&#8217;m only diluting the loss with hours. It&#8217;s still a loss at a little less than $1 per hour. This week I&#8217;m setting out strategies, and I&#8217;m probably going to invest some money.</p>
<h3>Key Performance Indicators</h3>
<table border="0">
<tbody>
<tr>
<td><strike>Earn</strike> / Burn rate (this week):</td>
<td>$ 0 / hour</td>
</tr>
<tr>
<td><strike>Earn</strike> / Burn rate (cumulative):</td>
<td>$ 0.96 / hour</td>
</tr>
<tr>
<td>Cumulative hours spent:</td>
<td>19.25 hours</td>
</tr>
<tr>
<td>Cumulative result:</td>
<td>- $18.51</td>
</tr>
</tbody>
</table>
<h3>Money spent</h3>
<p>I did not spend any money this week. I mainly put in hours, using free resources. Check the <a href="http://scrapingpennies.com/credits/">credits page</a> to see what resources exactly.</p>
<h3>Money earned</h3>
<p>Nothing&#8230;yet.</p>
<h3>Hours spent</h3>
<ul>
<li><strong>Technical: 0.75 hours</strong></li>
<ul>
<li>Creating hoplink pages</li>
</ul>
<li><strong>Creating Content: 3.75 hours</strong></li>
<ul>
<li>Three posts</li>
<li>Credits page</li>
</ul>
<li><strong>Design: 10.5 hours</strong></li>
<ul>
<li>Browsing free themes</li>
<li>Finding and editing images</li>
<li>Changing the design in CSS</li>
</ul>
<li><strong>Monetization: 1.5 hours</strong></li>
<ul>
<li>Setting up account in <a href="http://scrapingpennies.com/go/amazon-aff.php">affiliate program Amazon</a></li>
<li>Applying to <a href="http://scrapingpennies.com/go/tla.php">Text Link Ads</a>, <a href="http://scrapingpennies.com/go/reviewme.php">ReviewMe</a> and <a href="http://scrapingpennies.com/go/kontera.php">Kontera</a></li>
<li>Affiliate program <a href="http://scrapingpennies.com/go/e-junkie.php">e-Junkie</a></li>
</ul>
</ul>
<p>Total hours: <strong>16.5 hours</strong></p>
<h3>Budget status (this week)</h3>
<table border="0">
<tbody>
<tr>
<td>Balance (start):</td>
<td>$181.49</td>
</tr>
<tr>
<td>Cash In:</td>
<td>$ 0</td>
</tr>
<tr>
<td>Cash Out:</td>
<td>$ 0</td>
</tr>
<tr>
<td>Balance (end):</td>
<td>$ 181.49</td>
</tr>
</tbody>
</table>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=T7wBzh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=T7wBzh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=J2rLhh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=J2rLhh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=7rdWOh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=7rdWOh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=89zp8H"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=89zp8H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=lUQL6H"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=lUQL6H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=gysqrh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=gysqrh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/287945280" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/weekly-income-report-2/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fweekly-income-report-2%2F</feedburner:awareness></item>
		<item>
		<title>Advertiser Networks vs. New Blogs</title>
		<link>http://scrapingpennies.com/2008/05/advertiser-networks-vs-new-blogs/</link>
		<comments>http://scrapingpennies.com/2008/05/advertiser-networks-vs-new-blogs/#comments</comments>
		<pubDate>Fri, 09 May 2008 21:15:40 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[Ad Programs]]></category>

		<category><![CDATA[Frustrations]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=12</guid>
		<description><![CDATA[A small new blog applying at giant advertiser networks. It&#8217;s really a tale of David and Goliath. Although David&#8217;s chances in this match-up are far slimmer than in the original.
Advertiser Networks
There are several advertiser networks that will match advertisers to publishers (bloggers and other people with websites). They have the advantage that they have a [...]]]></description>
			<content:encoded><![CDATA[<p>A small new blog applying at giant advertiser networks. It&#8217;s really a tale of David and Goliath. Although David&#8217;s chances in this match-up are far slimmer than in the original.</p>
<h3>Advertiser Networks</h3>
<p>There are several advertiser networks that will match advertisers to publishers (bloggers and other people with websites). They have the advantage that they have a bigger mass than the average blog on the internet and are able to publish advertisements to a much larger audience than a single blog can do.</p>
<p>They are the middle men. Now the term middle men may bring up all kinds of negative feelings, but that&#8217;s not necessary. Sure they <strike>get</strike> take a (large) cut of the advertisers paycheck, but they <strong>do</strong> provide the service of finding advertisers. Or of advertisers finding them, but that&#8217;s kind of like the same thing. Advertisers will not find you if you&#8217;re a small new blog, like Scraping Pennies is right now.</p>
<h3>Signing up as a new blog</h3>
<p>Last night I tried to sign-up for three rather well known advertiser networks:</p>
<p><strong><a href="http://scrapingpennies.com/go/tla.php">Text Link Ads</a></strong><br />
<a href="http://scrapingpennies.com/go/tla.php">Text Link Ads</a> sells text links in several forms and shapes. As links in a sidebar, beneath a single post, in <a href="http://feeds.feedburner.com/ScrapingPennies">RSS feed</a>s, or even within the content of a post. Google isn&#8217;t particularly fond of them, but advertisers are. So for Making Money Online it&#8217;s an interesting alternative. </p>
<p>Signing up was easy. The account was set up in a matter of minutes, but that doesn&#8217;t mean you&#8217;re taken into the inventory of publishers automatically. <a href="http://scrapingpennies.com/go/tla.php">TLA</a> reviews the submissions (mostly automatic I assume), and it didn&#8217;t take long (less than 24 hours) for the rejection to hit my mailbox. As a consolation I&#8217;m enrolled into the affiliate program. Yay! I&#8217;ve got a banner now.</p>
<p><strong><a href="http://scrapingpennies.com/go/reviewme.php">ReviewMe</a></strong><br />
<a href="http://scrapingpennies.com/go/reviewme.php">ReviewMe</a> is a site that pays you for writing blog posts with reviews about blogs, products, books, services and more. You&#8217;ve got the liberty to choose what you review, so you can review the things you like and discard what you don&#8217;t. That is&#8230;if you&#8217;re allowed into the program <img src='http://scrapingpennies.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>They let me fill in all the forms, and declined my application automatically and instantly. Not enough traffic and inbound links (that&#8217;s not surprising). &#8220;<em>Try again in a few months.</em>&#8221; Okay, that&#8217;s not nice! I understand it of course, but please let people check their eligibility <strong>before</strong> they fill out the forms! Or wait 24 hours before telling them like TLA does. That at least gives the appearance that you gave it some thought. </p>
<p>And why is there no affiliate program?</p>
<p><strong><a href="http://scrapingpennies.com/go/kontera.php">Kontera Content Links</a></strong><br />
<a href="http://scrapingpennies.com/go/kontera.php">Kontera</a> provides a system that scans your content live to find words that they have advertisers for. If they find these keywords, they turn them into recognizable links. Hover over the links and a small pop-up appears with the site or product from the advertiser. If visitors click on the link inside that pop-up, you&#8217;ll get a share of the revenue.</p>
<p>Signing up here was easy as well. But they warn you beforehand that you need to comply with some (not so stringent) program terms. Again, I&#8217;m not admitted into the program instantly. They need to review my application. Oh boy. No answer yet, but I can guess what it will be.</p>
<p><strong>UPDATE (2008-05-13):</strong> I actually got approved into the program. That was highly unexpected, but a nice surprise nevertheless!</p>
<h3>The giants win&#8230;for now anyway</h3>
<p>I did not expect that I would excite the advertiser networks with my new unknown, but soon to be very famous blog. I mean, they probably get a lot of applications like this on a daily basis.</p>
<p>The reason I applied for the networks so early was to report the experiences here. When you&#8217;re starting out as a new blog and you intend to monetize, you should focus on getting traffic and links. This little experiment just showed you why.</p>
<p>No traffic and no links, and they drop you like a brick. So it&#8217;s time to create some buzz around Scraping Pennies!</p>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=Gz74Bh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=Gz74Bh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=KQsDJh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=KQsDJh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=cTTPph"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=cTTPph" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=dQCNGH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=dQCNGH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=rLb08H"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=rLb08H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=5xTQfh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=5xTQfh" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/287093714" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/advertiser-networks-vs-new-blogs/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fadvertiser-networks-vs-new-blogs%2F</feedburner:awareness></item>
		<item>
		<title>Why The $200 Budget to Start With?</title>
		<link>http://scrapingpennies.com/2008/05/why-the-200-budget-to-start-with/</link>
		<comments>http://scrapingpennies.com/2008/05/why-the-200-budget-to-start-with/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:19:59 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[About Scraping Pennies]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=10</guid>
		<description><![CDATA[You might be wondering why I chose to start with a $200 budget, instead of starting from scratch with no budget at all, without a penny to scrape with in the first place. Well, there&#8217;s three reasons why I chose to start with a budget (and damn good ones too).
1. Commitment
The fact that I put [...]]]></description>
			<content:encoded><![CDATA[<p>You might be wondering why I chose to start with a $200 budget, instead of starting from scratch with no budget at all, without a penny to scrape with in the first place. Well, there&#8217;s three reasons why I chose to start with a budget (and damn good ones too).</p>
<h3>1. Commitment</h3>
<p>The fact that I put in money is a token of commitment. If I quit, I&#8217;m at a loss. A tangible loss. $200 is an amount big enough to do some nice things with, and as such is big enough to make it a loss I can feel. After all I could&#8217;ve bought an <a href="http://www.amazon.com/gp/product/B0012S7GRY?ie=UTF8&#038;tag=scrapingpennies-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0012S7GRY">Apple iPod nano 8GB</a><img src="http://www.assoc-amazon.com/e/ir?t=scrapingpennies-20&#038;l=as2&#038;o=1&#038;a=B0012S7GRY" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />, or <a href="http://www.amazon.com/gp/product/B000VWLMEU?ie=UTF8&#038;tag=scrapingpennies-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B000VWLMEU">six seasons of the series 24</a><img src="http://www.assoc-amazon.com/e/ir?t=scrapingpennies-20&#038;l=as2&#038;o=1&#038;a=B000VWLMEU" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> on DVD, or the first <a href="http://www.amazon.com/gp/product/B0017HZZP0?ie=UTF8&#038;tag=scrapingpennies-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0017HZZP0">three seasons of Lost</a><img src="http://www.assoc-amazon.com/e/ir?t=scrapingpennies-20&#038;l=as2&#038;o=1&#038;a=B0017HZZP0" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and $100 change. Or I could&#8217;ve treated my wife and myself to a very luxurious day at a Spa-resort, including hot stone massages. Get the picture?   </p>
<p>That $200 makes things more real, and make sure that I take this experiment serious. It makes sure that the psychology of investing money is helping me to succeed, or at the least to persist.</p>
<h3>2. Brand and Web Presence Continuity</h3>
<p>The budget enables me to build a brand and have continuity in web presence from day 1. Having my own domain with affordable hosting simply costs money. But because the blog remains in the same address from day one, every link you get stays in place. There&#8217;s a lasting presence on the web, and every effort you put in building the brand adds to the value of the brand. </p>
<p>And a strong brand and a strong web presence increases the likelihood of getting a nice price for your blog, in case you decide to sell it one day. Of course, that&#8217;s totally out of the question for Scraping Pennies for now. We&#8217;re just starting, but it&#8217;s good to know that every effort adds to the total value of the brand.</p>
<p>Of course there are free domains and free hosting, they&#8217;re widely available even. But they either show ads that don&#8217;t earn YOU money but them (the hosts), have terrible performance (and most of the times both!) and generally have a very amateuristic image. And as soon as you start to get serious, you want to move to your own domain and start building your web presence from there (again).</p>
<h3>3. Kick-Starting The Earnings Curve</h3>
<p>Making Money Online is not new, there are more blogs about it. And there are many systems and tools that you can use to earn money. Some are free, but a lot of them are not. Having the $200 budget makes sure that I can decide on buying a tool or entering a program, that can help me earn money faster. But the budget is tight enough to make sure I take deliberate decisions, instead of impulsive ones.</p>
<p>The $200 budget will help to skip the pennies stages of the Earning Curve as soon as possible and speed ahead to the dollars stage of the curve. After all, my intention with Scraping Pennies is not to scrape pennies <img src='http://scrapingpennies.com/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> I intend to get past that stage, and by disclosing everything it&#8217;s going to be an interesting case study on how making money online is done.</p>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=FnPbYh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=FnPbYh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=pFOx3h"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=pFOx3h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=XqQL9h"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=XqQL9h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=v0pITH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=v0pITH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=MakiTH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=MakiTH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=Rfjo6h"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=Rfjo6h" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/286106519" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/why-the-200-budget-to-start-with/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fwhy-the-200-budget-to-start-with%2F</feedburner:awareness></item>
		<item>
		<title>Weekly Income Report - 1</title>
		<link>http://scrapingpennies.com/2008/05/weekly-income-report-1/</link>
		<comments>http://scrapingpennies.com/2008/05/weekly-income-report-1/#comments</comments>
		<pubDate>Mon, 05 May 2008 21:18:44 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[Income Reports]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=4</guid>
		<description><![CDATA[Every week on I will report on the performance of this blog. Target is to give full transparency on money and hours spent and money earned. DO ask questions if things are not clear.
Key Performance Indicators



Earn / Burn rate (this week):
$ 6.73 / hour


Earn / Burn rate (cumulative):
$ 6.73 / hour


Cumulative result:
- $18.51



Money spent

Domain registration [...]]]></description>
			<content:encoded><![CDATA[<p><em>Every week on I will report on the performance of this blog. Target is to give full transparency on money and hours spent and money earned. DO ask questions if things are not clear.</em></p>
<h3>Key Performance Indicators</h3>
<table border="0">
<tbody>
<tr>
<td><span style="text-decoration: line-through;">Earn</span> / Burn rate (this week):</td>
<td>$ 6.73 / hour</td>
</tr>
<tr>
<td><span style="text-decoration: line-through;">Earn</span> / Burn rate (cumulative):</td>
<td>$ 6.73 / hour</td>
</tr>
<tr>
<td>Cumulative result:</td>
<td>- $18.51</td>
</tr>
</tbody>
</table>
<h3>Money spent</h3>
<ul>
<li>Domain registration (GoDaddy): $10.19</li>
<li>Hosting May Deluxe Plan (GoDaddy): $8.32</li>
</ul>
<p>Total spent: <strong>$18.51</strong></p>
<h3>Money earned</h3>
<p>Nothing.</p>
<h3>Hours spent</h3>
<ul>
<li><strong>Technical: 2.5 hours</strong>
<ul>
<li>Domain registration</li>
<li>Setting up hosting</li>
<li>WordPress configuration</li>
<li>Feedburner integration</li>
<li>Google Analytics integration</li>
</ul>
</li>
<li><strong>Creating Content: 0.25 hours</strong></li>
</ul>
<p>Total hours: <strong>2.75 hours</strong></p>
<h3>Budget status</h3>
<table border="0">
<tbody>
<tr>
<td>Balance (start):</td>
<td>$200.00</td>
</tr>
<tr>
<td>Cash In:</td>
<td>$ 0</td>
</tr>
<tr>
<td>Cash Out:</td>
<td>$ 18.51</td>
</tr>
<tr>
<td>Balance (end):</td>
<td>$ 181.49</td>
</tr>
</tbody>
</table>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=Jf5pdh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=Jf5pdh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=dDzaBh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=dDzaBh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=imyQwh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=imyQwh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=7ROlAH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=7ROlAH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=XKa2XH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=XKa2XH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=iI9Kch"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=iI9Kch" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/284195598" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/weekly-income-report-1/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fweekly-income-report-1%2F</feedburner:awareness></item>
		<item>
		<title>Welcome to Scraping Pennies</title>
		<link>http://scrapingpennies.com/2008/05/welcome-to-scraping-pennies/</link>
		<comments>http://scrapingpennies.com/2008/05/welcome-to-scraping-pennies/#comments</comments>
		<pubDate>Fri, 02 May 2008 18:26:13 +0000</pubDate>
		<dc:creator>Lode</dc:creator>
		
		<category><![CDATA[About Scraping Pennies]]></category>

		<guid isPermaLink="false">http://scrapingpennies.com/?p=3</guid>
		<description><![CDATA[Welcome to Scraping Pennies!
Chances are that you&#8217;re reading this post, even before the launch of this blog. In that case you&#8217;re reading in an RSS reader, and have subscribed even before the official launch. Wow!
So to give you a sneak preview of what you can expect from Scraping Pennies, I&#8217;m going to share a part [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Welcome to Scraping Pennies!</strong></p>
<p>Chances are that you&#8217;re reading this post, even before the launch of this blog. In that case you&#8217;re reading in an RSS reader, and have subscribed even before the official launch. Wow!</p>
<p>So to give you a sneak preview of what you can expect from Scraping Pennies, I&#8217;m going to share a part of the upcoming about-page with you guys and gals.</p>
<p><strong>So tell us, what&#8217;s Scraping Pennies?</strong></p>
<p>The name Scraping Pennies means &#8220;to be poor; to earn very little money&#8221;. And face it, a lot of bloggers are doing just that. Earning very little money. And if it would be the only source of income, yeah we would know the meaning of poor! We would be scraping pennies to make ends meet.</p>
<p>Scraping Pennies, the blog, is an experiment. But not a casual experiment, it&#8217;s serious business. The concept is to start with a tight budget of $200. The goal is to get to a four figure monthly income as soon as possible, and beyond. And what&#8217;s going to be remarkable is that I will give FULL TRANSPARENCY.</p>
<p>That&#8217;s right: <strong>Full Transparency</strong>.</p>
<p>I&#8217;ll give an overview every week on Sunday with:</p>
<ul>
<li>Money spent in full detail (how much, on what, why)</li>
<li>Money earned in full detail (how much, from what source)</li>
<li>Hours spent (how many, on what, why)</li>
<li>Income per hour - weekly</li>
<li>Income per hour - cumulative</li>
<li>Balance statement (how much is left / did I make from the $200)</li>
</ul>
<p>And more, if that&#8217;s needed to give full transparency.</p>
<p>I&#8217;ll write about strategies, about the various methods of making money online and more. You&#8217;ll also be part of my frustrations (I know they&#8217;ll be there), my failures and mistakes (they&#8217;ll be there too) but you&#8217;ll also be part of my successes and the times I just got lucky. I hope that the latter two are more frequent than the first two of course.</p>
<p>This blog will launch on May 14. The budget is too tight to start with give-aways. But if you&#8217;re among the first 50 to comment on this post, I will make it worth your while when this blog takes off.</p>
<p>Post from: <a href="http://scrapingpennies.com">Scraping Pennies</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=XT95ch"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=XT95ch" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=S1sBkh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=S1sBkh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=e7NtXh"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=e7NtXh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=x5GWjH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=x5GWjH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=J2r8QH"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=J2r8QH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/ScrapingPennies?a=pdTNph"><img src="http://feeds.feedburner.com/~f/ScrapingPennies?i=pdTNph" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ScrapingPennies/~4/282704600" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://scrapingpennies.com/2008/05/welcome-to-scraping-pennies/feed/</wfw:commentRss>
		<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetItemData?uri=ScrapingPennies&amp;itemurl=http%3A%2F%2Fscrapingpennies.com%2F2008%2F05%2Fwelcome-to-scraping-pennies%2F</feedburner:awareness></item>
	<feedburner:awareness xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://api.feedburner.com/awareness/1.0/GetFeedData?uri=ScrapingPennies</feedburner:awareness></channel>
</rss>
