<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>The Tlog - a technology blog &#187; AdSense</title>
	<atom:link href="http://www.thetlog.net/adsense/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetlog.net</link>
	<description></description>
	<lastBuildDate>Fri, 18 Mar 2011 11:10:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/pt/</creativeCommons:license>		<item>
		<title>AdSense tip: how to randomize ads between 2 positions</title>
		<link>http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/</link>
		<comments>http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 14:58:41 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/</guid>
		<description><![CDATA[Some time ago, I wrote about a way to randomize ads; that is, in a particular position, show one of a number of different ads. With AdSense channels, you can use it to find out which ads (formats, colors, etc.) work better in a particular position. But now I&#8217;m going to take you one step [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/" data-text="AdSense tip: how to randomize ads between 2 positions" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Some time ago, I wrote about a way to <a href="http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/">randomize ads</a>; that is, in a particular position, show one of a number of different ads. With AdSense channels, you can use it to find out which ads (formats, colors, etc.) work better in a particular position.</p>
<p>But now I&#8217;m going to take you one step further. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What about randomizing <b>between two positions</b>? Say you want to see if an ad works better on the top or on the bottom of a page. How to show one, and <em>only one</em> of them?</p>
<p>Making the first ad show 50% of the time is easy. The problem, here, is that the second ad must have a way to tell whether the first ad was shown or not.</p>
<p>There are, of course, several ways, most of which using some kind of <i>variable</i> to store if the first ad appeared or not. But I think that there&#8217;s a better method, which has the advantage of being incredibly simple, and doesn&#8217;t require you to store anything.</p>
<p>It&#8217;s simple: <b>use the clock</b>.</p>
<p>If the current hour is <em>even</em>, you show one of the ads. If it&#8217;s <em>odd</em>, you show the other. Each of them &#8220;knows&#8221; whether it should appear or not, according to the current time.</p>
<p>Sounds complicated? It isn&#8217;t. For instance, using PHP, in the first position you put:</p>
<p><code>  function isodd($number) { return($number &#038; 1); }<br />
  $x = date('G');<br />
  if (isodd($x)) include "adsense-top.php";</code></p>
<p>And in the second position:</p>
<p><code>  function isodd($number) { return($number &#038; 1); }<br />
  $x = date('G');<br />
  if (!isodd($x)) include "adsense-bottom.php";</code></p>
<p>The &#8220;<code>adsense-top.php</code>&#8221; and &#8220;<code>adsense-bottom.php</code>&#8221; files can be mere AdSense code, or can branch itself further, using something like my <a href="http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/">original tip</a>.</p>
<p>By the way, I use hours instead of minutes (which would provide better granularity) because I want to avoid, as much as possible, the small possibility of the hour changing in the miliseconds between the two scripts. Using the hour value, it should virtually never happen (never happened to me, so far), though it wouldn&#8217;t be the end of the world anyway.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/08/30/adsense-tip-how-to-randomize-ads-between-2-positions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AdSense tip: NEVER ask your readers to click on ads!</title>
		<link>http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/</link>
		<comments>http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/#comments</comments>
		<pubDate>Mon, 07 Aug 2006 07:25:30 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/</guid>
		<description><![CDATA[Some time ago, in more &#8220;dubious&#8221; sites (porn, cracks, etc.), you&#8217;d usually see ads (usually for porn) and, near them, messages telling people to &#8220;click here to support the site&#8221;, and variants of that. These days, such messages aren&#8217;t so common, especially in more &#8220;legitimate&#8221; sites, where AdSense is allowed. In fact, those are against [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/" data-text="AdSense tip: NEVER ask your readers to click on ads!" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Some time ago, in more &#8220;dubious&#8221; sites (porn, cracks, etc.), you&#8217;d usually see ads (usually for porn) and, near them, messages telling people to <i>&#8220;click here to support the site&#8221;</i>, and variants of that.</p>
<p>These days, such messages aren&#8217;t so common, especially in more &#8220;legitimate&#8221; sites, where AdSense is allowed. In fact, those are against the AdSense terms of service, and, so, people who attempt to use them are eventually banned from the service.</p>
<p>Still, there are still people who ask, using other methods, to click on ads: by mail (e.g. mailing lists), or by asking friends.</p>
<p>However, if you don&#8217;t want to lose AdSense <i>forever</i> (including any money you have already accumulated), <b>don&#8217;t do it</b>!</p>
<p>Why? Because, if I were Google, and I wanted to battle click fraud, I&#8217;d easily find a way to fight those two methods of &#8220;artificial clicks&#8221;. Now, if I can do it, it stands to reason that <i>they</i> can do it much better, right?</p>
<p>In the <i>&#8220;mail to a site or forum&#8217;s readers asking them to click on ads once or twice a day&#8221;</i> case, what would it cause? Some tens or hundreds of particular users clicking on ads in the same site, regularly. That would, of course,create an easily detectable pattern, which they&#8217;d be able to detect with a simple script.</p>
<p>Asking friends to click, on the other hand, will often make them think <i>&#8220;I&#8217;ll click a bunch of times, to help the guy.&#8221;</i> An user clicking 20 times, in a couple of seconds, on ads <i>on the same site</i>? I think they can certainly detect that. I would.</p>
<p>In fact, in the past, I&#8217;ve had to ask friends <b>not</b> to do that anymore, because, trying to help me, they were doing it on their own initiative&#8230; and I, myself, detected it on the AdSense stats. Fortunately, the &#8220;guilty parties&#8221; told me about it (after all, they were trying to help), and I was able to ask them to stop.</p>
<p>In short: non-natural ad clicks are relatively easy to detect. Never ask anyone to do them, or you risk saying goodbye to AdSense for good.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/08/07/adsense-tip-never-ask-your-readers-to-click-on-ads/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AdSense trouble: referer spam, traffic exchange and autosurf programs</title>
		<link>http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-traffic-exchange-and-autosurf-programs/</link>
		<comments>http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-traffic-exchange-and-autosurf-programs/#comments</comments>
		<pubDate>Tue, 01 Aug 2006 10:35:48 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-and-autosurf-programs/</guid>
		<description><![CDATA[So, what was the trouble I mentioned yesterday, which made Google warn me by email? Apparently, there are some programs for generating traffic and/or clicks artificially, which Google doesn&#8217;t like, of course. This appears to be related to referer spam, which sends a lot of hits with fake referers (such as casino sites), because many [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-traffic-exchange-and-autosurf-programs/" data-text="AdSense trouble: referer spam, traffic exchange and autosurf programs" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-traffic-exchange-and-autosurf-programs/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>So, what was the trouble I mentioned yesterday, which made Google warn me by email?</p>
<p>Apparently, there are some programs for generating traffic and/or clicks artificially, which Google doesn&#8217;t like, of course.</p>
<p>This appears to be related to <a href="http://en.wikipedia.org/wiki/Referer_spam">referer spam</a>, which sends a lot of hits with fake referers (such as casino sites), because many people and sites have <i>public</i> statistics, which may mean improved PageRank for the spammer&#8217;s site. If they spam thousands of sites this way&#8230; it can really make a huge difference.</p>
<p>This new case, however, doesn&#8217;t appear to be &#8220;true&#8221; referer spam, but <b><a href="http://en.wikipedia.org/wiki/Traffic_exchange">traffic exchangers</a></b> or <b><a href="http://en.wikipedia.org/wiki/Autosurf">autosurf programs</a></b>. </p>
<p>For instance, last month the top referers for this blog were:</p>
<div align="center"><img src="http://www.thetlog.net/wp-content/referers.png" alt="bad referers" /></div>
<p><small>That&#8217;s an image, of course. I would never link to such sites. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </small><br />
<small>Note, by the way, how close the numbers are&#8230; can you say &#8220;automated&#8221;? <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </small></p>
<p>I have just blocked those, and others (go <a href="http://www.ilovejackdaniels.com/apache/block-referrer-spam/">here</a> for some tips on doing so with Apache).</p>
<p>It&#8217;s quite likely that <a href="http://www.thetlog.net/2005/09/02/blogging-tips-6-blog-exchangers/">blog exchangers</a> are considered &#8220;bad&#8221;, too. And if Google is cracking down on such services, it may be a good time to stop using them (and to edit that part of the <a href="http://www.thetlog.net/the-blogging-tips-series/">series</a>). Most poeople really use them just to surf for credits, though I have been lucky to discover a couple of very interesting blogs, which I read to this day, there.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/08/01/adsense-trouble-referer-spam-traffic-exchange-and-autosurf-programs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some AdSense trouble, and some Roger Waters too&#8230;</title>
		<link>http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/</link>
		<comments>http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/#comments</comments>
		<pubDate>Mon, 31 Jul 2006 22:27:44 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/</guid>
		<description><![CDATA[I&#8217;m too tired to do it right now, but tomorrow I&#8217;ll have to block a bunch of &#8220;bad&#8221; referrers, which have earned me a nice warning email from Google&#8217;s AdSense department. Googling around, I see I&#8217;m not the only one. More details tomorrow&#8230; but, meanwhile, one suggestion: check your logs, especially your top referrers. If [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/" data-text="Some AdSense trouble, and some Roger Waters too&#8230;" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>I&#8217;m too tired to do it right now, but tomorrow I&#8217;ll have to block a bunch of &#8220;bad&#8221; referrers, which have earned me a nice warning email from Google&#8217;s AdSense department. Googling around, I see I&#8217;m not the only one. More details tomorrow&#8230; but, meanwhile, one suggestion: check your logs, especially your <i>top referrers</i>. If they&#8217;re suspicious, it may be a good idea to start blocking them.</p>
<p>This is related to <i>referrer spam</i>, but it&#8217;s apparently something much worse &#8211; it can cause your AdSense account to be closed. As I said, more to come.</p>
<p>Meanwhile, <a href="http://www.wordpress.org/">WordPress</a> 2.0.4  is <a href="http://wordpress.org/development/2006/07/wordpress-204/">out</a>.</p>
<p>And I&#8217;ve just bought Roger Waters&#8217; <a href="http://en.wikipedia.org/wiki/%C3%87a_Ira">Ça Ira</a>. Yup, it&#8217;s opera. <i>Real</i> opera, not a metal opera like Avantasia. Something to listen to, tomorrow.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/07/31/some-adsense-trouble-and-some-roger-waters-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AdSense curiosities</title>
		<link>http://www.thetlog.net/2006/03/28/adsense-curiosities/</link>
		<comments>http://www.thetlog.net/2006/03/28/adsense-curiosities/#comments</comments>
		<pubDate>Tue, 28 Mar 2006 21:06:36 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/03/28/adsense-curiosities/</guid>
		<description><![CDATA[It&#8217;s interesting to observe how well the &#8220;contextual&#8221; part of AdSense works. For instance, for my mini-site for yesterday, Chess: basic principles, it&#8217;s working very well. Most ads are about chess, chess sets, or board games. I&#8217;m pretty impressed by this one. However, it fails completely for the Portuguese version of the above, Princípios básicos [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/03/28/adsense-curiosities/" data-text="AdSense curiosities" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/03/28/adsense-curiosities/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>It&#8217;s interesting to observe how well the &#8220;contextual&#8221; part of AdSense works.</p>
<p>For instance, for my mini-site for yesterday, <a href="http://sites.dehumanizer.com/chess/">Chess: basic principles</a>, it&#8217;s working very well. Most ads are about chess, chess sets, or board games. I&#8217;m pretty impressed by this one.</p>
<p>However, it fails completely for the Portuguese version of the above, <a href="http://sites.dehumanizer.com/xadrez/">Princípios básicos de Xadrez</a>. The ads are in Portuguese, and mostly related to games &#8211; cell phone games, soccer games and so on. There isn&#8217;t a single ad about chess or board games.</p>
<p>Why is that? The content is exactly the same, only in a different language. Even the meta tags are correct. I believe that, in this case, it isn&#8217;t Google&#8217;s fault; it&#8217;s just that there is <b>nobody</b> in Portugal using AdWords to advertise something related to chess. In this way, I sadly have to admit, we&#8217;re a more primitive country: soccer rules here. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  But I digress.</p>
<p>Another one that isn&#8217;t working is today&#8217;s mini-site, <a href="http://sites.dehumanizer.com/zombietypes/">Zombie Types</a>. This one&#8217;s in English, so there should be <i>something</i> out there (horror movies, horror games, etc.)&#8230; but the ads I&#8217;m getting, even after half a day, are &#8220;public service&#8221; ads &#8211; the kind they use when they can&#8217;t find keywords in the site. And these don&#8217;t pay. </p>
<p>This can happen, sometimes, when you put the AdSense code before there&#8217;s any content in the site, because it can take some time for <code>"Mediapartners-Google/2.1"</code> (the AdSense bot) to come back to the page, so it&#8217;s the page&#8217;s initial version that counts. But that was not the case here; the AdSense code was the last thing to be added. Oh well&#8230; it should be fine in a week or two.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/03/28/adsense-curiosities/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eric Giguere: the Single Page AdSense Site</title>
		<link>http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/</link>
		<comments>http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/#comments</comments>
		<pubDate>Mon, 06 Mar 2006 17:51:55 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/</guid>
		<description><![CDATA[Eric has an intriguing post called The Single Page AdSense Site. It&#8217;s, in a way, an even simpler variant of Making Money with Niche Websites, and it&#8217;s something I&#8217;d be doing in spades if I wasn&#8217;t such a lazy guy. Copyright &#169; 2012 The Tlog - a technology blog]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/" data-text="Eric Giguere: the Single Page AdSense Site" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Eric has an intriguing post called <a href="http://www.memwg.com/blog/adsense/The-Single-Page-AdSense-site.html">The Single Page AdSense Site</a>. It&#8217;s, in a way, an even simpler variant of <a href="http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/">Making Money with Niche Websites</a>, and it&#8217;s something I&#8217;d be doing in spades if I wasn&#8217;t such a lazy guy. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/03/06/eric-giguere-the-single-page-adsense-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inside AdSense: changing channels</title>
		<link>http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/</link>
		<comments>http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/#comments</comments>
		<pubDate>Fri, 03 Mar 2006 19:44:43 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/</guid>
		<description><![CDATA[No, I&#8217;m not implying that they read this blog. But their newest article, &#8220;Channels are made for changing&#8220;, reads a lot like part 23 of the Blogging Tips series: &#8220;Change your ads&#8220;. You can even go a bit further, and randomize your ads, and then use channels to see what variations work better. Not to [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/" data-text="Inside AdSense: changing channels" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>No, I&#8217;m not implying that they read this blog. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But their newest article, &#8220;<a href="http://adsense.blogspot.com/2006/03/channels-are-made-for-changing.html">Channels are made for changing</a>&#8220;, reads a lot like part 23 of the Blogging Tips series: &#8220;<a href="http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/">Change your ads</a>&#8220;. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You can even go a bit further, and <a href="http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/">randomize your ads</a>, and then use channels to see what variations work better. Not to mention being unpredictable, and working through people&#8217;s &#8220;mental filters&#8221;.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/03/03/inside-adsense-changing-channels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AdSense: is anyone targeting your site?</title>
		<link>http://www.thetlog.net/2006/03/03/adsense-is-anyone-targeting-your-site/</link>
		<comments>http://www.thetlog.net/2006/03/03/adsense-is-anyone-targeting-your-site/#comments</comments>
		<pubDate>Fri, 03 Mar 2006 16:19:50 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/03/03/adsense-is-anyone-targetting-your-site/</guid>
		<description><![CDATA[Inside AdSense, the official AdSense blog, has a post called &#8220;Advanced site targeting and referrals reporting&#8220;, which explains how to see whether any advertisers are targeting your site. Using channels, you can also see which sites. Apparently two of my blogs have targeted ads: The Tlog and, a bit surprisingly, Cool Stuff. I also use [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/03/03/adsense-is-anyone-targeting-your-site/" data-text="AdSense: is anyone targeting your site?" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/03/03/adsense-is-anyone-targeting-your-site/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Inside AdSense, the official AdSense blog, has a post called &#8220;<a href="http://adsense.blogspot.com/2006/03/advanced-site-targeting-and-referrals.html">Advanced site targeting and referrals reporting</a>&#8220;, which explains how to see whether any advertisers are targeting your site. Using channels, you can also see <b><i>which</i></b> sites.</p>
<p>Apparently  two of my blogs have targeted ads: <a href="http://www.thetlog.net">The Tlog</a> and, a bit surprisingly, <a href="http://coolstuff.dehumanizer.com/">Cool Stuff</a>.</p>
<p>I also use AdWords to promote some of my sites (just some pocket exchange per day, though), and I may try out targeting some sites for my own ads, soon. Maybe some popular Portuguese or Brazilian blogs, for <a href="http://blogar.dehumanizer.com/">A Arte de Blogar</a>, for instance.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/03/03/adsense-is-anyone-targeting-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More on randomizing ads</title>
		<link>http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/</link>
		<comments>http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/#comments</comments>
		<pubDate>Thu, 09 Feb 2006 10:10:55 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/</guid>
		<description><![CDATA[&#8220;I believe in coincidence. Coincidences happen every day. But I don&#8217;t trust coincidences.&#8221; &#8211; Garak, &#8220;Star Trek &#8211; Deep Space 9&#8243; Just a couple of days after my randomizing ads tip, Darren Rowse mentions a WordPress plugin to do exactly that. Funny how the universe works. The plugin may be useful to some. However, I [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/" data-text="More on randomizing ads" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p><small><i>&#8220;I believe in coincidence. Coincidences happen every day. But I don&#8217;t trust coincidences.&#8221;</i> &#8211; Garak, &#8220;Star Trek &#8211; Deep Space 9&#8243;</small></p>
<p>Just a couple of days after my <a href="http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/">randomizing ads tip</a>, Darren Rowse <a href="http://www.problogger.net/archives/2006/02/09/adrotator-ad-rotating-plugin-for-wordpress-users/">mentions</a> a <a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-adrotator-rotate-your-ads-including-adsense-dynamically/">WordPress plugin</a> to do exactly that. Funny how the universe works. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The plugin may be useful to some. However, I find my method much simpler and quicker &#8211; the plugin has 4 pages of instructions! I&#8217;m not saying it&#8217;s badly made, mind you. But, to me, the point of a WordPress plugin is to make things simpler, to prevent one from having to do things manually. Yet, I don&#8217;t think the plugin actually saves work or time, or is easier to use for non-technical users.</p>
<p>Looking at it was useful in a way, though: just like that plugin, &#8220;my&#8221; method also works for anything made in PHP &#8211; not just WordPress -, and isn&#8217;t limited to AdSense ads &#8211; indeed, it&#8217;s not limited to ads at all. You can use it to rotate between any kind of content &#8211; Chitika ads, static images, static text, a blogroll, whatever.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/02/09/more-on-randomizing-ads/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>AdSense tip: randomizing ads</title>
		<link>http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/</link>
		<comments>http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/#comments</comments>
		<pubDate>Tue, 07 Feb 2006 12:38:17 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/</guid>
		<description><![CDATA[No, this isn&#8217;t my &#8220;brilliant idea&#8221; &#8211; Chris Garrett of Performancing mentioned it first. But, while he gives a PHP example on how to get a simple random number, I&#8217;ll go a bit further&#8230; The idea, as Chris says, is to randomize a particular AdSense ad (changing formats, colors, etc.), and have different channels for [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/" data-text="AdSense tip: randomizing ads" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>No, this isn&#8217;t <i>my</i> &#8220;brilliant idea&#8221; &#8211; Chris Garrett of Performancing <a href="http://performancing.com/node/1073">mentioned it first</a>. But, while he gives a PHP example on how to get a simple random number, I&#8217;ll go a bit further&#8230;</p>
<p>The idea, as Chris says, is to randomize a particular AdSense ad (changing formats, colors, etc.), and have different channels for each version. Doing it, you can easily learn what works best, and what doesn&#8217;t, instead of having to wait for a couple of days while you test each format. This also allows you to focus on a single change &#8211; one ad &#8211; without being affected by other factors, such as the time, the day of the week, and so on &#8211; as at any day, any time, every single ad version has a chance of appearing.</p>
<p>This is just an example in PHP, which works for WordPress blogs, for instance. There are, of course, many other ways of doing this.</p>
<p>1- pick a particular ad. Replace that ad&#8217;s AdSense code with <code>&lt;?php include 'adsense-ad.php'; ?></code>.</p>
<p>2- on the WordPress directory for the theme you&#8217;re using, create a file <code>adsense-ad.php</code> with the following:</p>
<p><small><code>&lt;?php<br />
&nbsp;&nbsp;$i = rand (1,8);<br />
&nbsp;&nbsp;$script = "adsense-ad" . $i . ".php";<br />
&nbsp;&nbsp;include $script;<br />
?></code></small></p>
<p>Replace the &#8220;8&#8243; with the number of ad versions you&#8217;re going to test.</p>
<p>3- go to the AdSense options, and generate code for the first version of the ad. Remember to set a unique channel. Save it as another file, in the same directory, named <code>adsense-ad1.php</code> (note the &#8220;1&#8243;, it&#8217;s not the same file as before &#8211; that one had no number).</p>
<p>4- repeat the previous step for the other ad versions (changing the channel, and the digit in the file name).</p>
<p>Easy, wasn&#8217;t it? <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/02/07/adsense-tip-randomizing-ads/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Inside AdSense: Blogtimize!</title>
		<link>http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/</link>
		<comments>http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/#comments</comments>
		<pubDate>Tue, 31 Jan 2006 10:44:48 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/</guid>
		<description><![CDATA[Inside AdSense, the official AdSense blog, has a new AdSense optimization tips for bloggers post. Nothing there is rocket science, and there are no surprises there for regular readers of the Blogging Tips series , but it&#8217;s still a good, short, informative post. I especially like the maps: although I find that lowering the &#8220;search&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/" data-text="Inside AdSense: Blogtimize!" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Inside AdSense, the official AdSense blog, has a new <a href="http://adsense.blogspot.com/2006/01/blogtimize.html">AdSense optimization tips for bloggers</a> post. Nothing there is rocket science, and there are no surprises there for regular readers of <a href="http://www.thetlog.net/the-blogging-tips-series/">the Blogging Tips series</a> <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , but it&#8217;s still a good, short, informative post.</p>
<p>I especially like the maps:</p>
<div align="center"><img src="http://www.thetlog.net/wp-content/blogtimize-maps.jpg" alt="Blogtimize maps" /></div>
<p>although I find that lowering the &#8220;search&#8221; function a bit, and putting a square ad in its former place, works quite well.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/01/31/inside-adsense-blogtimize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eric Giguere: testing ads&#8217; relevance in blog posts</title>
		<link>http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/</link>
		<comments>http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/#comments</comments>
		<pubDate>Fri, 06 Jan 2006 18:25:31 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/</guid>
		<description><![CDATA[Following my comment on his post (it&#8217;s always nice to serve as an inspiration for someone more successful than ourselves ), Eric has a new post in which he offers a trick to use temporary URLs to test ad relevance in blogs &#8211; which I had said was not as easy as with normal sites. [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/" data-text="Eric Giguere: testing ads&#8217; relevance in blog posts" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Following <a href="http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/">my comment</a> on <a href="http://www.makeeasymoneywithgoogle.com/blog/adsense/AdSense-Case-Study-The-final-stage-begins.html">his post</a> <small>(it&#8217;s always nice to serve as an inspiration for someone more successful than ourselves <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</small>, Eric has a new post in which he offers a trick to <a href="http://www.makeeasymoneywithgoogle.com/blog/adsense/Testing-your-ad-targeting-by-changing-the-URL.html">use temporary URLs to test ad relevance in <i>blogs</i></a> &#8211; which I had said was not as easy as with normal sites.</p>
<p>His trick is based on the fact that you can add &#8220;garbage&#8221; to the end of URLs (such as &#8220;<code>?a=1</code>), which are ignored by your blog&#8217;s software, but, to Google, means it&#8217;s a different page. So, you&#8230; oh well, Eric says it well, so just go there. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/01/06/eric-giguere-testing-ads-relevance-in-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eric Giguere: using different directories to test AdSense ads&#8217; relevance</title>
		<link>http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/</link>
		<comments>http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/#comments</comments>
		<pubDate>Thu, 05 Jan 2006 19:16:28 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/</guid>
		<description><![CDATA[Eric has a recent post in which, talking about the completion of his Invisible Fence case study (very interesting reading, by the way &#8211; I&#8217;ve mentioned it before), he also mentions a nice trick: using different directories to test the relevance of AdSense ads in different configurations. Google &#8220;reads&#8221; the content of a page and [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/" data-text="Eric Giguere: using different directories to test AdSense ads&#8217; relevance" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Eric has a recent post in which, talking about the completion of his Invisible Fence case study <small>(very interesting reading, by the way &#8211; I&#8217;ve <a href="http://www.thetlog.net/2005/12/02/an-adsense-case-study/">mentioned it before</a>)</small>, he also mentions a nice trick: <a href="http://www.makeeasymoneywithgoogle.com/blog/adsense/AdSense-Case-Study-The-final-stage-begins.html">using different directories to test the relevance of AdSense ads in different configurations</a>.</p>
<p>Google &#8220;reads&#8221; the content of a page and displays mostly revelant ads quite quickly (you put the AdSense code in a page, then load it a couple of times, and the ads will probably be relevant); however, if you change the content, it can take <i>weeks</i> for the ads to update their subject to the new content. A consequence of this is that your initial tests may &#8220;stick&#8221; for a long time &#8211; even though you&#8217;ve updated the content, or keywords, or section targeting, or whatever, the ads are still related to what that page was like when you first loaded it up, after adding the AdSense code to it.</p>
<p>So, Eric suggests testing it in other places &#8211; instead of www.something.com, what about www.something.com/test1 , then, after a couple of changes, www.something.com/test2 &#8230; and so on. Each new address means Google will &#8220;learn&#8221; what your page is about, anew. Only when it&#8217;s exactly as you want should you move the files to the root directory.</p>
<p>This, of course, applies more to &#8220;normal&#8221; sites and mini-sites than to blogs, but can still be of use in blogging.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/01/05/eric-giguere-using-different-directories-to-test-adsense-ads-relevance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging and AdSense quick tip</title>
		<link>http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/</link>
		<comments>http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/#comments</comments>
		<pubDate>Thu, 05 Jan 2006 17:12:58 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Search engine optimization (SEO)]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/</guid>
		<description><![CDATA[Don&#8217;t include the word &#8220;blog&#8221; in your blog&#8217;s title, unless it&#8217;s about blogging. You may have noticed that this site is back to simply &#8220;The Tlog&#8221; (which is neutral and doesn&#8217;t affect what Google will think the blog is about), losing the &#8221; &#8211; a technology blog&#8221; part. Yup, I make mistakes like everyone else. [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/" data-text="Blogging and AdSense quick tip" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Don&#8217;t include the word &#8220;<b>blog</b>&#8221; in your blog&#8217;s title, unless it&#8217;s about blogging.</p>
<p>You may have noticed that this site is back to simply <i>&#8220;The Tlog&#8221;</i> (which is neutral and doesn&#8217;t affect what Google will think the blog is about), losing the <i>&#8221; &#8211; a technology blog&#8221;</i> part. Yup, I make mistakes like everyone else. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This can help in SEO, too.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2006/01/05/blogging-and-adsense-quick-tip/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>One of &quot;making money from the Internet&quot;&#8217;s best kept secrets</title>
		<link>http://www.thetlog.net/2005/12/30/one-of-making-money-from-the-internets-best-kept-secrets/</link>
		<comments>http://www.thetlog.net/2005/12/30/one-of-making-money-from-the-internets-best-kept-secrets/#comments</comments>
		<pubDate>Fri, 30 Dec 2005 10:28:07 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=240</guid>
		<description><![CDATA[It&#8217;s amazing that this thing has been posted in at least two places (this blog is one of them), and I&#8217;ve seen nothing, anywhere, coming from it. No blog entries. No discussions. Not even comments under the two blog entries. And it works &#8211; even my 2 &#8220;late afternoon&#8221; attempts have been actually making me [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/12/30/one-of-making-money-from-the-internets-best-kept-secrets/" data-text="One of &quot;making money from the Internet&quot;&#8217;s best kept secrets" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/12/30/one-of-making-money-from-the-internets-best-kept-secrets/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>It&#8217;s amazing that this thing has been posted in at least two places (this blog is one of them), and I&#8217;ve seen <i>nothing</i>, anywhere, coming from it. No blog entries. No discussions. Not even comments under the two blog entries. And it <i>works</i> &#8211; even my 2 &#8220;late afternoon&#8221; attempts have been actually making me money, which, considering that they don&#8217;t cost me <b>anything</b> in terms of time, effort or money, is great.</p>
<p>Let&#8217;s put it like this: imagine you can do something <i>today</i>, that, starting 6 months from now, will make you about a dollar a day. That&#8217;s $30 a month&#8230; insignificant, right?</p>
<p>But you can do it several times. As many as you want.</p>
<p><span id="more-240"></span><br />
So, if you do it 10 times, in six months you&#8217;ll be getting 10 dollars a day (in average). $300 a month.. you can&#8217;t quit your job, but maybe you can pay a few bills with it, or, perhaps, finally buy that Nintendo DS you&#8217;ve always wanted, plus a couple of games. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What if you do it 50 times? 100? More? You see, it&#8217;s something that you can do relatively quickly, and which requires no maintenance.</p>
<p>If you&#8217;ve been reading this blog for some time, you have probably already guessed what I&#8217;m talking about: <a href="http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/">static, niche mini-sites</a>.</p>
<p>And the &#8220;six months&#8221; estimate is quite conservative on my part. Consider the following: I have two <a href="http://sites.dehumanizer.com/">mini-sites</a>, each made in an hour or two. One of them is a joke, which I created mostly for a few experiments with CSS. The other is a recipes site in Portuguese, which only has 4 recipes so far (I intend to add more, but I keep forgetting or delaying it). Both are very simple, only a bunch of static pages, no images, and one AdSense ad at the bottom of each page. Both were created about a month ago.</p>
<p>And yet they make me money. They get very few hits (they&#8217;re niche stuff, not very well SEO&#8217;d, and probably &#8220;sandboxed&#8221; in some way), but for some reason CTR (click-through rate) is quite high &#8211; much higher than in any of my blogs. Not a lot &#8211; about 20-50 cents a day, in average. There&#8217;s certainly a lot of room for improvement.</p>
<p>But what if I made more of them? (I certainly intend to do so.) Better ones, too? They cost virtually nothing in terms of time, work, bandwidth, hard disk space, whatever. They require no maintenance &#8211; it&#8217;s basically &#8220;fire and forget&#8221;.</p>
<p><i>And they make money.</i> And anyone can do it.</p>
<p>Strange, isn&#8217;t it? It seems that almost nobody knows about it &#8211; I certainly haven&#8217;t seen it mentioned anywhere, except for the <a href="http://gdgrifflaw.typepad.com/my_blogging_tips/2005/11/how_to_make_mon.html">blog entry</a> that I linked to in <a href="http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/">my own</a>, and which inspired it.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/12/30/one-of-making-money-from-the-internets-best-kept-secrets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging tips #23: Making money from your blog: Change your ads</title>
		<link>http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/</link>
		<comments>http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 11:51:17 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blogging tips]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=216</guid>
		<description><![CDATA[(NOTE: this is part of the &#8220;Blogging tips&#8221; series) This is a point I&#8217;ve already made in several past posts (that sounds weird&#8230;), but it&#8217;s so relevant and so often ignored or even unknown, that it deserves its own part in this world-famous-any-day-now series. As I&#8217;ve mentioned before as well, most ad clicks come from [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/" data-text="Blogging tips #23: Making money from your blog: Change your ads" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p><i>(NOTE: this is part of the <a href="http://www.thetlog.net/the-blogging-tips-series/">&#8220;Blogging tips&#8221; series</a>)</i></p>
<p>This is a point I&#8217;ve already made in several past posts <small>(<i>that</i> sounds weird&#8230;)</small>, but it&#8217;s so relevant and so often ignored or even unknown, that it deserves its own part in this world-famous-any-day-now series.</p>
<p>As I&#8217;ve mentioned before as well, most ad clicks come from first-time visitors, as your regular readers tend to become &#8220;blind&#8221; to your ads &#8211; they filter them, unconsciously. That is mostly unavoidable &#8211; though it&#8217;s still desirable to convert newcomers into regulars, as there&#8217;s still a chance they&#8217;ll click on an ad, but, mostly important, they may link to your blog, make it more interesting with their comments, and tell other people about it.</p>
<p>But there&#8217;s still something you can do to reduce the &#8220;ad blindness&#8221;, and that is to <b>change ads from time to time</b>.</p>
<p><span id="more-216"></span><br />
Without wanting to go into psychobabble, it&#8217;s a bit like this: it&#8217;s as if people have a mental &#8220;ad filter&#8221;, which works for ads in a position they expect, or of a type they expect. So they don&#8217;t even look at those.</p>
<p>The idea, then, is to go around that &#8220;filter&#8221;, and <i>surprise</i> people, so that they see ads where they don&#8217;t expect, or in a different format.</p>
<p>So, my suggestion is this: from time to time (I&#8217;d say at least monthly), change your ads. You can do one of the following, or a combination of several:</p>
<ul>
<li>change an ad&#8217;s size or format</li>
<li>move an ad to a different position</li>
<li>completely remove an ad for a while</li>
<li>add a new ad somewhere <small>(assuming you don&#8217;t already have too many, of course &#8211; you don&#8217;t want more ads than content)</small></li>
<li>change an ad&#8217;s provider: for instance, replace an <a href="http://www.google.com/adsense">AdSense</a> ad with a <a href="https://chitika.com/mm_overview.php?refid=Dehumanizer">Chitika</a> ad, or a <a href="http://www.blogads.com/">Blogads</a> one.</li>
<li>change an ad&#8217;s colors &#8211; if it used the colors of your site, try using different, more visible colors for a while. Conversely, try changing a &#8220;blended in&#8221; ad to colors that stand out more.</li>
<li>if using non-contextual ads (such as the default Chitika mode), try changing the keywords &#8211; possibly even replacing them completely with a bunch of new ones <small>(but save the old ones somewhere, so you can compare results)</small>.</li>
</ul>
<p>This may sound like a lot of work, but can help a lot in terms of click-through rate (CTR).</p>
<p>One other reason (and a very important one, too) to do this is that you&#8217;ll be able to learn a lot about which ad formats, positions, colors, ad providers, keywords, etc. work better or worse. Remember to configure channels, if available, for each type of ad, so you can track which ones give you a better CTR, and more money.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/12/13/blogging-tips-23-making-money-from-your-blog-change-your-ads/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AdSense and delays in re-adapting to context</title>
		<link>http://www.thetlog.net/2005/12/10/adsense-and-delays-in-re-adapting-to-context/</link>
		<comments>http://www.thetlog.net/2005/12/10/adsense-and-delays-in-re-adapting-to-context/#comments</comments>
		<pubDate>Sat, 10 Dec 2005 12:31:16 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=213</guid>
		<description><![CDATA[If you read this blog regularly (and if you don&#8217;t, why not? ), you&#8217;re probably aware that, in the last few days, I&#8217;ve made a few changes around here, such as adding the sidebar to individual posts, and changing the ads below each post in the individual post pages &#8211; replacing the old &#8220;medium rectangle&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/12/10/adsense-and-delays-in-re-adapting-to-context/" data-text="AdSense and delays in re-adapting to context" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/12/10/adsense-and-delays-in-re-adapting-to-context/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>If you read this blog regularly (and if you don&#8217;t, why not? <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ), you&#8217;re probably aware that, in the last few days, I&#8217;ve made a few changes around here, such as adding the sidebar to individual posts, and changing the ads below each post in the individual post pages &#8211; replacing the old &#8220;medium rectangle&#8221; with 2 green-bordered small squares.</p>
<p>If you haven&#8217;t done so, look at them. Notice something wrong?</p>
<p>Yup, they&#8217;re all about <i>blogging</i>, or something related. Not like they used to be.</p>
<p>Even old posts (see the <a href="http://www.thetlog.net/top-10-posts-at-the-tlog/">top 10 posts</a> list, for instance) have blogging-related ads.</p>
<p>And they&#8217;ll probably be this way for a week or so. Why?</p>
<p><span id="more-213"></span><br />
Meanwhile, there&#8217;s a different phenomenon that I had already noticed, for instance, in my <a href="http://sites.dehumanizer.com">mini-sites</a>. Once, I copied the &#8220;external links&#8221; page (which already included an AdSense ad) from one site (the stem bolts one) to another (the recipes one), and, naturally, loaded it in the browser (at its new location, using the new CSS file, but still with the old content).</p>
<p>About a week has passed, and that particular page still shows ads about bolts and stuff. Not recipes. Not ads in Portuguese. </p>
<p>Why?</p>
<p>Because AdSense is very quick when reading the content <i>for the first time</i> an URL shows an ad. But, then, apparently, it only updates it from time to time. I&#8217;m guessing it&#8217;s two weeks or more.</p>
<p>And something similar happens when you change ad formats &#8211; for some reason, in my particular case, it &#8220;guessed&#8221; at some time that it was to show blogging ads, and hasn&#8217;t updated yet &#8211; even though many of the pages are months old, and had been showing appropriate ads (of other formats) for months.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/12/10/adsense-and-delays-in-re-adapting-to-context/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First check from AdSense&#8230;</title>
		<link>http://www.thetlog.net/2005/12/05/first-check-from-adsense/</link>
		<comments>http://www.thetlog.net/2005/12/05/first-check-from-adsense/#comments</comments>
		<pubDate>Mon, 05 Dec 2005 11:55:52 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=199</guid>
		<description><![CDATA[Less than 3 months of blogging&#8230; In the Google Sandbox (which means virtually no visits from Google searches)&#8230; and I still have a day job. Not a fortune, but I&#8217;ve just been able to pay the recent repairs of my car with my blogs. Nice. Today, car repairs. Tomorrow, the world! EDIT: shameless self-promotion: why [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/12/05/first-check-from-adsense/" data-text="First check from AdSense&#8230;" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/12/05/first-check-from-adsense/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><div align="center"><img src='http://www.thetlog.net/wp-content/cheque031small.jpg' alt='AdSense check' /></div>
<p>Less than 3 months of blogging&#8230; In the Google Sandbox (which means virtually no visits from Google searches)&#8230; and I still have a day job.</p>
<p>Not a fortune, but I&#8217;ve just been able to pay the recent repairs of my car with my blogs. Nice. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Today, car repairs. Tomorrow, the world! <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' /> </p>
<p><b>EDIT:</b> shameless self-promotion: why not read the <a href="http://www.thetlog.net/the-blogging-tips-series/">Blogging Tips series</a>, now with 37 parts and still growing? <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/12/05/first-check-from-adsense/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>An AdSense Case Study</title>
		<link>http://www.thetlog.net/2005/12/02/an-adsense-case-study/</link>
		<comments>http://www.thetlog.net/2005/12/02/an-adsense-case-study/#comments</comments>
		<pubDate>Fri, 02 Dec 2005 17:36:18 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Search engine optimization (SEO)]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=197</guid>
		<description><![CDATA[Eric Giguere of An AdSense Blog: Make Easy Money with Google has been doing an AdSense case study from some time now, which I&#8217;ve found quite interesting. Basically, he&#8217;s been creating a small site about invisible fences for dogs, and each stage of the site is archived, so you can compare them. For instance, the [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/12/02/an-adsense-case-study/" data-text="An AdSense Case Study" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/12/02/an-adsense-case-study/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Eric Giguere of <a href="http://www.makeeasymoneywithgoogle.com/blog/adsense/">An AdSense Blog: Make Easy Money with Google</a> has been doing an <a href="http://invisible-fence.ericgiguere.com/adsense-case-study.html">AdSense case study</a> from some time now, which I&#8217;ve found quite interesting. Basically, he&#8217;s been creating a small site about invisible fences for dogs, and each stage of the site is archived, so you can compare them. </p>
<p>For instance, the first stage, &#8220;content&#8221;, only has text and some AdSense ads; the second stage is SEO&#8217;d, the third adds images and the fourth moves all formatting to CSS, incidentally improving the looks a lot.</p>
<p>Along with <a href="http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/">this article</a>, this case study has been one of my main inspirations for my new <a href="http://sites.dehumanizer.com">mini-sites</a>.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/12/02/an-adsense-case-study/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Making money with niche websites</title>
		<link>http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/</link>
		<comments>http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/#comments</comments>
		<pubDate>Thu, 24 Nov 2005 14:24:56 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=187</guid>
		<description><![CDATA[I&#8217;ve just found an article at My Blogging Tips called &#8220;How To Make Money Online Using Niche Content Websites&#8220;. The author&#8217;s suggestion is not related to blogs at all &#8211; instead, he suggests discovering a niche that has few or no websites about (as a Groo fan, I&#8217;d suggest cheese dip, myself ), then making [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/" data-text="Making money with niche websites" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>I&#8217;ve just found an article at My Blogging Tips called &#8220;<a href="http://gdgrifflaw.typepad.com/my_blogging_tips/2005/11/how_to_make_mon.html">How To Make Money Online Using Niche Content Websites</a>&#8220;.</p>
<p>The author&#8217;s suggestion is <b><i>not</i></b> related to blogs at all &#8211; instead, he suggests discovering a niche that has few or no websites about <small>(as a Groo fan, I&#8217;d suggest cheese dip, myself <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</small>, then making a simple but useful (and <i>static</i>) site about it, with good SEO techniches, promoting it, then&#8230; <i>forgetting about it</i>!</p>
<p>He suggests that, if the niche is well chosen (something people want to know about, but which there are few sites about), after 3-6 months (allowing for getting out of any sandboxes and everything) the site can steadily earn you $1-$2 a day. Now, as that site was probably put together in a week or less <small>(but it&#8217;s still supposed to be better than the competition, which, the author suggests, probably consists of just a couple of unprofessional sites made with FrontPage or Word&#8230; yuck!)</small>, and needs no further attention, you can create <b><i>another</i></b> next week. And another, the following week. And another.</p>
<p>50 web sites (doable in a year) would give $50-$100 a day. Without requiring any further work from you. Not bad, huh?</p>
<p>And, as you do them, you&#8217;ll probably get better at it, be able to do another site more easily and more quickly, have increased knowledge about which SEO techniques work better, and so on.</p>
<p>The only bad point: you have to search for those niches all the time, and then quickly learn enough about each one to make a decent, informative, useful website &#8211; and they&#8217;re probably subjects that don&#8217;t particularly interest you.</p>
<p>As I said, these are <b><i>not</i></b> blogs. You&#8217;ll get virtually all earnings from <i>first time visitors</i>, as the sites won&#8217;t be updated <small>(unless you get &#8220;attached&#8221; to a particular one, whose subject actually interests you)</small>. Besides, return visitors tend to ignore ads a lot more than first-timers, whether it&#8217;s a blog or a static site.</p>
<p>I may try something like this in the future&#8230; <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Read the article, it goes into a lot more detail.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/11/24/making-money-with-niche-websites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AdSense tip: Using AdWords to find keywords</title>
		<link>http://www.thetlog.net/2005/11/23/adsense-tip-using-adwords-to-find-keywords/</link>
		<comments>http://www.thetlog.net/2005/11/23/adsense-tip-using-adwords-to-find-keywords/#comments</comments>
		<pubDate>Wed, 23 Nov 2005 09:50:09 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=185</guid>
		<description><![CDATA[Eric Giguere has a great tip at his blog: Plumb AdWords for keywords. He shows a quick and easy way for publishers to use AdWords (which is for advertisers) to find high-paying keywords to use in your blog. Copyright &#169; 2012 The Tlog - a technology blog]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/11/23/adsense-tip-using-adwords-to-find-keywords/" data-text="AdSense tip: Using AdWords to find keywords" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/11/23/adsense-tip-using-adwords-to-find-keywords/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Eric Giguere has a great tip at his blog: <a href="http://www.makeeasymoneywithgoogle.com/blog/adsense/AdSense-Tip-11-Plumb-AdWords-for-keywords.html">Plumb AdWords for keywords</a>. He shows a quick and easy way for publishers to use AdWords (which is for <i>advertisers</i>) to find high-paying keywords to use in your blog.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/11/23/adsense-tip-using-adwords-to-find-keywords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;What to do when your Google traffic disappears&#8221;</title>
		<link>http://www.thetlog.net/2005/11/14/what-to-do-when-your-google-traffic-disappears/</link>
		<comments>http://www.thetlog.net/2005/11/14/what-to-do-when-your-google-traffic-disappears/#comments</comments>
		<pubDate>Mon, 14 Nov 2005 15:52:23 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search engine optimization (SEO)]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=174</guid>
		<description><![CDATA[Looks like a big coincidence, doesn&#8217;t it? After I mentioned my drastic drop in hits from Google in my gaming blog, Darren from ProBlogger makes a brilliant post called &#8220;What to do when your Google traffic disappears. Go there. Read it. Now. But come back here, afterwards. One of the points Darren makes is very [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/11/14/what-to-do-when-your-google-traffic-disappears/" data-text="&#8220;What to do when your Google traffic disappears&#8221;" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/11/14/what-to-do-when-your-google-traffic-disappears/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Looks like a big coincidence, doesn&#8217;t it? After I mentioned <a href="http://www.thetlog.net/2005/11/09/the-evil-google-sandbox-strikes-again/">my drastic drop in hits from Google in my gaming blog</a>, Darren from ProBlogger makes a brilliant post called <a href="http://www.problogger.net/archives/2005/11/15/what-to-do-when-your-google-traffic-disappears/">&#8220;What to do when your Google traffic disappears</a>.</p>
<p>Go there. Read it. Now. But come back here, afterwards. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One of the points Darren makes is very important &#8211; in an already successful blog or site, such a drop in Google search rankings (whether caused by the Google Sandbox or something else) can mean a drop in your earnings of 2/3 or more! <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  What if your blog has been slowly but surely growing, and you&#8217;re starting to see some money, which causes you to see the &#8220;light at the end of the tunnel&#8221;&#8230; and suddenly, earnings drop down to a trickle, almost nobody comes from Google&#8230; it&#8217;s enough to make many people quit blogging, or at least hoping to one day make a living from it.</p>
<p>But, as Darren says, all of this &#8211; again, whether it&#8217;s the Sandbox or not &#8211; is temporary. It may take a couple of months, but you&#8217;ll get back to good positions in Google, eventually. Meanwhile, keep blogging, keep improving your blog, and get ready for the big comeback, when suddenly you&#8217;re flooded with hits. And clicks. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/11/14/what-to-do-when-your-google-traffic-disappears/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogging: some design / ad placement changes</title>
		<link>http://www.thetlog.net/2005/11/14/blogging-some-design-ad-placement-changes/</link>
		<comments>http://www.thetlog.net/2005/11/14/blogging-some-design-ad-placement-changes/#comments</comments>
		<pubDate>Mon, 14 Nov 2005 15:29:40 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=173</guid>
		<description><![CDATA[I&#8217;ve just finished making some changes to my blogs, including this one. See if you can spot them (assuming you&#8217;ve been there before, of course ). Can&#8217;t spot them? Here they are: removed the borders around the entire pages, the individual posts, the sidebar, etc.. &#8211; I think that just that minor change has made [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/11/14/blogging-some-design-ad-placement-changes/" data-text="Blogging: some design / ad placement changes" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/11/14/blogging-some-design-ad-placement-changes/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>I&#8217;ve just finished making some changes to <a href="http://www.dehumanizer.com">my blogs</a>, including this one. See if you can spot them (assuming you&#8217;ve been there before, of course <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ). </p>
<p><span id="more-173"></span><br />
Can&#8217;t spot them? Here they are:</p>
<ul>
<li>removed the borders around the entire pages, the individual posts, the sidebar, etc.. &#8211; I think that just that minor change has made my blogs look much more &#8220;fluid&#8221;, less &#8220;rigid&#8221;.</li>
<li>reduced the importance of the ad in the header, which, anyway, <a href="https://www.google.com/support/adsense/bin/static.py?page=tips.html">according to Google</a>, isn&#8217;t a good spot anyway. In some blogs, I removed it altogether.</li>
<li>in a couple of blogs, I removed the ads in the sidebar &#8211; again, they&#8217;re not usually very successful. Left it in <a href="http://garrafive.dehumanizer.com">Garrafive de 5 Litros</a>, my brother and cousin&#8217;s humor blog, as a big vertical ad like that one can work, as long as it doesn&#8217;t make the sidebar too big.</li>
<li>began using my real name in some of the blogs, instead of &#8220;Dehumanizer&#8221;. People tend to be more talkative, and comment more, if they can call the blogger by name.</li>
<li>finally, I added some ads <i>between</i> posts in the main page. These don&#8217;t feel as much <i>&#8220;not part of the content&#8221;</i> as those at the top, or the sidebar.</li>
</ul>
<p>I really think they look better now, and, as for the ad results, the next days should prove interesting&#8230; </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/11/14/blogging-some-design-ad-placement-changes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;Making money from blogging takes time&#8221;</title>
		<link>http://www.thetlog.net/2005/10/29/making-money-from-blogging-takes-time/</link>
		<comments>http://www.thetlog.net/2005/10/29/making-money-from-blogging-takes-time/#comments</comments>
		<pubDate>Sat, 29 Oct 2005 13:24:37 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=153</guid>
		<description><![CDATA[From ProBlogger, another great post: Making money from blogging takes time. It&#8217;s something I&#8217;ve also mentioned before: blogging for money is not a &#8220;get rich quick&#8221; scheme. It&#8217;s hard work, and takes dedication, talent, a bit of luck&#8230; and, above all, time. In this particular case, I don&#8217;t mean &#8220;time&#8221; as in a lot of [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/10/29/making-money-from-blogging-takes-time/" data-text="&#8220;Making money from blogging takes time&#8221;" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/10/29/making-money-from-blogging-takes-time/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>From <a href="http://www.problogger.net">ProBlogger</a>, another great post: <a href="http://www.problogger.net/archives/2005/10/28/making-money-from-blogging-takes-time/">Making money from blogging takes time</a>.</p>
<p>It&#8217;s something I&#8217;ve also <a href="http://www.thetlog.net/2005/10/14/blogging-tips-22-what-to-write-about/">mentioned before</a>: blogging for money is <i>not</i> a &#8220;get rich quick&#8221; scheme. It&#8217;s hard work, and takes dedication, talent, a bit of luck&#8230; and, above all, <b>time</b>. In this particular case, I don&#8217;t mean &#8220;time&#8221; as in a lot of hours a day, but in the sense of &#8220;been doing it regularly for years&#8221;. Because:</p>
<ol>
<li>it takes time to build a readership of regular readers, who either visit your blog(s) every day, or subscribe to the feed(s) &#8211; but still come to your blog when they want to comment, and they will do it often, because they&#8217;re <i>used</i> to your blog, they feel comfortable there, and know (even if never face to face) both you and most of the other regulars there.</li>
<li>it&#8217;s also a matter of numbers &#8211; number of posts, that is. If you&#8217;ve started your blog a week ago, it has probaly 5-20 posts, but if you&#8217;ve been blogging for 2 years, 1500 to 2000 posts are a more likely number. That gives <b>much</b> larger odds of someone googling for something and arriving at your blog &#8211; even at an old post. Which impresses the visitor, of course. <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And, being impressed, he or she then looks around, reads your more recent stuff&#8230; and you have a new reader!</li>
</ol>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/10/29/making-money-from-blogging-takes-time/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Blogging tips #16: Making money from your blog &#8211; AdSense: which ads? And where?</title>
		<link>http://www.thetlog.net/2005/10/13/blogging-tips-16-making-money-from-your-blog-adsense-which-ads-and-where/</link>
		<comments>http://www.thetlog.net/2005/10/13/blogging-tips-16-making-money-from-your-blog-adsense-which-ads-and-where/#comments</comments>
		<pubDate>Thu, 13 Oct 2005 11:35:10 +0000</pubDate>
		<dc:creator>Pedro Timóteo</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blogging tips]]></category>

		<guid isPermaLink="false">http://www.thetlog.net/?p=121</guid>
		<description><![CDATA[(NOTE: this is part of the &#8220;Blogging tips&#8221; series) At last, the long awaited (I hope) part 16! Google AdSense offers many ad formats: big, small, horizontal, vertical, with or without images&#8230; so, which to choose for your blog? The answer, of course, depends on several factors. And there probably isn&#8217;t a single one: it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.thetlog.net/2005/10/13/blogging-tips-16-making-money-from-your-blog-adsense-which-ads-and-where/" data-text="Blogging tips #16: Making money from your blog &#8211; AdSense: which ads? And where?" data-count="" data-via="socializeWP" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.thetlog.net/2005/10/13/blogging-tips-16-making-money-from-your-blog-adsense-which-ads-and-where/",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p><i>(NOTE: this is part of the <a href="http://www.thetlog.net/the-blogging-tips-series/">&#8220;Blogging tips&#8221; series</a>)</i></p>
<p>At last, the long awaited (I hope) part 16! <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google AdSense offers many ad formats: big, small, horizontal, vertical, with or without images&#8230; so, which to choose for your blog?</p>
<p>The answer, of course, depends on several factors. And there probably isn&#8217;t a single one: it&#8217;s likely that you&#8217;ll be better served by using different ad formats in different places.</p>
<p>Also, if you have other sources of money on your blog, such as affilliate ads, it may affect the number and position of AdSense ads. But affiliate programs are a subject for a later part.</p>
<p>A few tips, then:</p>
<ol>
<li>usually, you want the appropriate ad for a particular section (a vertical ad for a vertical section such as a sidebar, and a horizontal one for the rest).</li>
<li>the ad should be as big and noticeable as possible, <b>without</b>, however, drawing attention <i><b>away</b></i> from the content. Content is king. You don&#8217;t want your blog to look like an &#8220;ads blog&#8221;. People see those and close the window (or, if they&#8217;re intelligent, close the tab <img src='http://www.thetlog.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).</li>
<li>a large, horizontal ad at the top of the page, either with the page&#8217;s color scheme, or with a different one, which fits nicely, tends to work well.</li>
<li>vertical ads on the sidebar aren&#8217;t as good, but can complement the top ones nicely.</li>
<li>ads at the bottom are usually ignored. In general, don&#8217;t bother.</li>
<li>avoid &#8220;Link Unit&#8221; ads (go to <a href="https://www.google.com/adsense/adformats">https://www.google.com/adsense/adformats</a>, they&#8217;re the ones at the bottom). My experience with them has been dismal: 0 (zero) clicks in two weeks. It&#8217;s possible that in other kinds of blogs, or using them in a different way, they work&#8230; If so, I&#8217;d like to know how.</li>
<li>on individual article pages, an ad <b>after</b> the text can work well.</li>
<li>I haven&#8217;t used these yet, but I intend to: ads <b><i>between</i></b> articles in the <i>main page</i> (but only a few &#8211; no more than 2 in the whole page). Some people seem to use them quite successfully. These ones will probably work better either using the site&#8217;s color scheme, or a very similar one &#8211; they should be different enough so that people notice them, but not <b>so</b> different that people just skip them without even consciously looking.</li>
</ol>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.thetlog.net">The Tlog - a technology blog</a></strong> ]]></content:encoded>
			<wfw:commentRss>http://www.thetlog.net/2005/10/13/blogging-tips-16-making-money-from-your-blog-adsense-which-ads-and-where/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

