<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<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/"
	>

<channel>
	<title>Kyle Smego</title>
	<link>http://www.kylesmego.com</link>
	<description>Family, work and random stuff</description>
	<pubDate>Wed, 20 Dec 2006 16:21:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>Are your queries optimized?</title>
		<link>http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/</link>
		<comments>http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 03:06:46 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category>MySQL</category>

		<guid isPermaLink="false">http://www.kylesmego.com/?p=7</guid>
		<description><![CDATA[We've all had problems with slow queries, which can lead to sluggish applications and dissatisfied users. You've looked at your code and just can't figure out what's causing the problem. Have you looked at the effectiveness of your MySQL queries? Here's an easy way to analyze your queries to make sure they are being executed [...]]]></description>
			<content:encoded><![CDATA[<p>We've all had problems with slow queries, which can lead to sluggish applications and dissatisfied users. You've looked at your code and just can't figure out what's causing the problem. Have you looked at the effectiveness of your MySQL queries? Here's an easy way to analyze your queries to make sure they are being executed efficiently.</p>
<p>Here's a very simplistic example. Let's start out by creating a table of NFL teams.</p>
<div class="igBar"><span id="lmysql-6"><a href="#" onclick="javascript:showPlainTxt('mysql-6'); return false;">CODE VIEW</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-6">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">CREATE TABLE</span> `nflteams` <span style="color: #66cc66;">&#40;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`nflteam_id` <span style="color: #aa9933; font-weight: bold;">SMALLINT</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">2</span><span style="color: #66cc66;">&#41;</span> <span style="color: #aa3399; font-weight: bold;">UNSIGNED</span> <span style="color: #aa3399; font-weight: bold;">NOT NULL</span> <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #ff0000;">'0'</span>,</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`nflteam_city` <span style="color: #aa9933; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">50</span><span style="color: #66cc66;">&#41;</span> <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #aa3399; font-weight: bold;">NULL</span>,</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`nflteam_name` <span style="color: #aa9933; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">50</span><span style="color: #66cc66;">&#41;</span> <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #aa3399; font-weight: bold;">NULL</span>,</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`nflteam_abbv` <span style="color: #aa9933; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">3</span><span style="color: #66cc66;">&#41;</span> <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #aa3399; font-weight: bold;">NULL</span>,</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">`nflteam_icon` <span style="color: #aa9933; font-weight: bold;">VARCHAR</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">20</span><span style="color: #66cc66;">&#41;</span> <span style="color: #aa3399; font-weight: bold;">NOT NULL</span> <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #ff0000;">''</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #66cc66;">&#41;</span> ENGINE=MyISAM <span style="color: #aa3399; font-weight: bold;">DEFAULT</span> <span style="color: #aa3399; font-weight: bold;">CHARSET</span>=latin1; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>So a sample record would look like this:</p>
<div class="igBar"><span id="lmysql-7"><a href="#" onclick="javascript:showPlainTxt('mysql-7'); return false;">CODE VIEW</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-7">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #993333; font-weight: bold;">INTO</span> `nflteams` <span style="color: #993333; font-weight: bold;">VALUES</span> <span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;color:#800000;">14</span>, <span style="color: #ff0000;">'Pittsburgh'</span>, <span style="color: #ff0000;">'Steelers'</span>, <span style="color: #ff0000;">'PIT'</span>, <span style="color: #ff0000;">'pit.gif'</span><span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>We're going to start out with a simple query. Let's try:</p>
<div class="igBar"><span id="lmysql-8"><a href="#" onclick="javascript:showPlainTxt('mysql-8'); return false;">CODE VIEW</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-8">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">SELECT</span> nflteam_name <span style="color: #993333; font-weight: bold;">FROM</span> nflteams</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">WHERE</span> nflteam_id = <span style="color: #ff0000;">'14'</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Our results:</p>
<p><img align="bottom" alt="MySQL query" title="MySQL query" src="http://www.kylesmego.com/images/origquery.jpg" /></p>
<p>Simple enough, right? Now the question is...is this query as efficient as it could be?</p>
<p>MySQL's EXPLAIN syntax shows how queries are being executed. Is the query correctly using indexes...is it utilizing indexes at all?</p>
<p>Let's try running EXPLAIN on the previous query:</p>
<div class="igBar"><span id="lmysql-9"><a href="#" onclick="javascript:showPlainTxt('mysql-9'); return false;">CODE VIEW</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-9">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">EXPLAIN</span> <span style="color: #993333; font-weight: bold;">SELECT</span> nflteam_name <span style="color: #993333; font-weight: bold;">FROM</span> nflteams</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">WHERE</span> nflteam_id = <span style="color: #ff0000;">'14'</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>The result of the EXPLAIN query is below:<br />
<img align="bottom" title="MySQL Explain" alt="MySQL Explain" src="http://www.kylesmego.com/images/origexplain.jpg" /></p>
<p>So, what does this tell us?</p>
<p><a id="more-7"></a><br />
<!--adsense--></p>
<p>It shows that there was one result returned using a simple SELECT query of the "nflteams" table. It also shows the following:</p>
<p><em>type</em>: This shows what type of join is being used. Here's a quick an dirty explaination of some the possible "types" you will see from best possible result to worst <span style="font-size: 8px">(descriptions from MySQL manual):</span></p>
<ul>
<li><strong>system</strong>: The table only has one row</li>
<li><strong>const</strong>:  The table has at most one matching row, which is read at the start of the query.</li>
<li><strong>eq_ref: </strong>One row is read from this table for each combination of rows from the previous tables. Other than the system and const types, this is the best possible join type. It is used when all parts of an index are used by the join and the index is a PRIMARY KEY or UNIQUE index.<strong><br />
</strong></li>
<li><strong>ref: </strong> All rows with matching index values are read from this table for each combination of rows from the previous tables. ref is used if the join uses only a leftmost prefix of the key or if the key is not a PRIMARY KEY or UNIQUE index (in other words, if the join cannot select a single row based on the key value). If the key that is used matches only a few rows, this is a good join type.<strong><br />
</strong></li>
<li><strong>range: </strong> Only rows that are in a given range are retrieved, using an index to select the rows. The key column in the output row indicates which index is used. The key_len contains the longest key part that was used. The <code class="literal">ref</code> column is NULL for this type.<strong><br />
</strong></li>
<li><strong>index: </strong> This join type is the same as ALL, except that only the index tree is scanned. This usually is faster than ALL because the index file usually is smaller than the data file.<strong><br />
</strong></li>
<li><strong>ALL: </strong> A full table scan is done for each combination of rows from the previous tables. This is normally not good if the table is the first table not marked const, and usually very bad in all other cases. Normally, you can avoid ALL by adding indexes that allow row retrieval from the table based on constant values or column values from earlier tables.</li>
</ul>
<p>As you can see, our query returned the least desirabe result (ALL). A full table scan was done and on large table this can be incredibly slow.</p>
<p><em>possible_key</em> and key: Shows which indexes were available and which ones were actually used in the query. In our case it was NULL since we had no keys.</p>
<p><em>key_len</em>:  Shows the length of the key used. Again, ours was NULL since we had no keys. Note: the smaller number the better.</p>
<p><em>ref</em>: Shows which columns or constants are compared to the index named in the key column to select rows from the table.</p>
<p><em>rows</em>: The number of rows that were scanned. In our case it was 32..the total amount of records in the table (a full table scan)</p>
<p><em>Extra</em>:  Denotes additional information about the query. Note: stay away from value</p>
<p>Now that we know our query isn't fully optimized, let's try adding an index on "nflteam_id"</p>
<div class="igBar"><span id="lmysql-10"><a href="#" onclick="javascript:showPlainTxt('mysql-10'); return false;">CODE VIEW</a></span></div>
<div class="syntax_hilite"><span class="langName">MySQL:</span>
<div id="mysql-10">
<div class="mysql">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #993333; font-weight: bold;">ALTER TABLE</span> `footballdb`.`nflteams` ADD <span style="color: #993333; font-weight: bold;">PRIMARY KEY</span><span style="color: #66cc66;">&#40;</span>`nflteam_id`<span style="color: #66cc66;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Now let's run the EXPLAIN statement again and see what we get.</p>
<p><img align="bottom" alt="MySQL EXPLAIN statement" title="MySQL EXPLAIN statement" src="http://www.kylesmego.com/images/secondquery.jpg" /></p>
<p>This time around we did much better. The query returned 1 result using a simple SELECT. It was utilizing a PRIMARY key (nflteam_id, key length of 2). Since it used an index, MySQL knew where to look and only scanned 1 row (instead of the previous full table scan of 32).</p>
<p>Again, this is a very simple example, but as you can imagine EXPLAIN can come in quite handy when analyzing complex JOIN queries on large tables.
</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Del.icio.us"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Are your queries optimized?' to Del.icio.us" alt="Add 'Are your queries optimized?' to Del.icio.us"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to digg"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Are your queries optimized?' to digg" alt="Add 'Are your queries optimized?' to digg"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Are+your+queries+optimized%3F&amp;u=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to FURL"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Are your queries optimized?' to FURL" alt="Add 'Are your queries optimized?' to FURL"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Are+your+queries+optimized%3F&amp;Description=Are+your+queries+optimized%3F&amp;Url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to blinklist"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinklist.png" title="Add 'Are your queries optimized?' to blinklist" alt="Add 'Are your queries optimized?' to blinklist"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to reddit"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Are your queries optimized?' to reddit" alt="Add 'Are your queries optimized?' to reddit"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Are+your+queries+optimized%3F&amp;url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;version=0.7" title="Add 'Are your queries optimized?' to Feed Me Links"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/feedmelinks.png" title="Add 'Are your queries optimized?' to Feed Me Links" alt="Add 'Are your queries optimized?' to Feed Me Links"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Technorati"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Are your queries optimized?' to Technorati" alt="Add 'Are your queries optimized?' to Technorati"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;t=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Yahoo My Web"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/yahoo_myweb.png" title="Add 'Are your queries optimized?' to Yahoo My Web" alt="Add 'Are your queries optimized?' to Yahoo My Web"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;h=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Newsvine"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/newsvine.png" title="Add 'Are your queries optimized?' to Newsvine" alt="Add 'Are your queries optimized?' to Newsvine"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Socializer"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/socializer.png" title="Add 'Are your queries optimized?' to Socializer" alt="Add 'Are your queries optimized?' to Socializer"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F&amp;description=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Ma.gnolia"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/magnolia.png" title="Add 'Are your queries optimized?' to Ma.gnolia" alt="Add 'Are your queries optimized?' to Ma.gnolia"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/refer.php?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Stumble Upon"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/stumbleupon.png" title="Add 'Are your queries optimized?' to Stumble Upon" alt="Add 'Are your queries optimized?' to Stumble Upon"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Google Bookmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Are your queries optimized?' to Google Bookmarks" alt="Add 'Are your queries optimized?' to Google Bookmarks"  border="0"/></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;tttl=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to RawSugar"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rawsugar.png" title="Add 'Are your queries optimized?' to RawSugar" alt="Add 'Are your queries optimized?' to RawSugar"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Squidoo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/squidoo.png" title="Add 'Are your queries optimized?' to Squidoo" alt="Add 'Are your queries optimized?' to Squidoo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Spurl"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/spurl.png" title="Add 'Are your queries optimized?' to Spurl" alt="Add 'Are your queries optimized?' to Spurl"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to BlinkBits"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinkbits.png" title="Add 'Are your queries optimized?' to BlinkBits" alt="Add 'Are your queries optimized?' to BlinkBits"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F&amp;popup=no" title="Add 'Are your queries optimized?' to Netvouz"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/netvouz.png" title="Add 'Are your queries optimized?' to Netvouz" alt="Add 'Are your queries optimized?' to Netvouz"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Rojo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rojo.png" title="Add 'Are your queries optimized?' to Rojo" alt="Add 'Are your queries optimized?' to Rojo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Blogmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bmarks.png" title="Add 'Are your queries optimized?' to Blogmarks" alt="Add 'Are your queries optimized?' to Blogmarks"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shadows.com/shadows.aspx?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Shadows"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/shadows.png" title="Add 'Are your queries optimized?' to Shadows" alt="Add 'Are your queries optimized?' to Shadows"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Simpy"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/simpy.png" title="Add 'Are your queries optimized?' to Simpy" alt="Add 'Are your queries optimized?' to Simpy"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Co.mments"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/comments.png" title="Add 'Are your queries optimized?' to Co.mments" alt="Add 'Are your queries optimized?' to Co.mments"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.scuttle.org/bookmarks.php/maxpower?action=add&amp;address=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/&amp;title=Are+your+queries+optimized%3F&amp;description=Are+your+queries+optimized%3F" title="Add 'Are your queries optimized?' to Scuttle"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/scuttle.png" title="Add 'Are your queries optimized?' to Scuttle" alt="Add 'Are your queries optimized?' to Scuttle"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Bloglines"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bloglines.png" title="Add 'Are your queries optimized?' to Bloglines" alt="Add 'Are your queries optimized?' to Bloglines"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=Are+your+queries+optimized%3F&amp;link_href=http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/" title="Add 'Are your queries optimized?' to Tailrank"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/tailrank.png" title="Add 'Are your queries optimized?' to Tailrank" alt="Add 'Are your queries optimized?' to Tailrank"  border="0"/></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.kylesmego.com/2006/12/19/are-your-queries-optimized/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Intro to Adsense, Utilizing Channels</title>
		<link>http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/</link>
		<comments>http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/#comments</comments>
		<pubDate>Fri, 15 Dec 2006 05:57:45 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category>Adsense</category>

		<guid isPermaLink="false">http://www.kylesmego.com/?p=6</guid>
		<description><![CDATA[In my first part of the Google Adsense introduction I talked about ad placement, ad blending and the importance of understanding the Adsense program policies. I just want to stress it one more time...make sure you play by the Adsense rules. If you try to push the envelope, you may make a decent amount of [...]]]></description>
			<content:encoded><![CDATA[<p>In my first part of the <a title="Adsense tips" href="http://www.kylesmego.com/?p=4">Google Adsense introduction</a> I talked about ad placement, ad blending and the importance of understanding the Adsense program policies. I just want to stress it one more time...make sure you play by the Adsense rules. If you try to push the envelope, you may make a decent amount of money in the short term, but in the long run you're just hurting yourself. If you violate the Google Adsense TOS, you're account <em>will</em> eventually get banned. So just play it safe and the profits will come. Be patient, monitor your advertising campaign and optimize it accordingly.</p>
<p>Ok, let's continue where we left off. You've chosen your ad format, your ad color scheme and you've integrated the ads into you website. Now you can just sit back and watch the money come rolling it. WRONG! It would be nice if it we're that simple, but it's not. Adsense tracking is very important, you must monitor your ads and make adjustments to those that aren't performing well. Luckily for us Adsense makes it easy to monitor ad performance via Channels. There are two types of reporting channels, URL and Custom.</p>
<p>URL channels allow you to track ad performance across a whole site, a specific page and  even a specific directory. You can enable URL channels without modifying the actual Adsense code.<br />
<a id="more-6"></a><br />
<!--adsense--></p>
<p><strong>To create a URL channel: </strong></p>
<ol>
<li>Select the Adsense Setup tab and then Channels from the sub-tab</li>
<li>Choose the AdSense for content sub-tab and click the URL Channels link</li>
<li>Click Add new URL channel and enter the URL that you would like to track.</li>
<li>Click Add channels.</li>
</ol>
<p><img alt="Using Adsense URL channels" title="Using Adsense URL channels" src="http://www.kylesmego.com/images/URLchannels.jpg" /></p>
<p>That was easy enough, now you have URL channels setup.</p>
<p>The second type of channel, Custom channels, are even more important in tracking your ad performance. Custom channels allow you to track individual ads within a page. For example, if you have three adsense blocks on a page, URL channel only displays the stats for the whole page, while custom channels allow you to track the performance of each ad within the page.</p>
<p><strong>To create a Custom Channel:</strong></p>
<ol>
<li>Select the Adsense Setup tab and then Channels from the sub-tab</li>
<li>Choose the AdSense for content sub-tab and click the Custom Channels link</li>
<li>Click Add new Custom channel and enter the ad you want to track. (I find it best to name the ad like this --- Site name, Page name, Ad unit....ex Mysite.com_SportsPage_468horizontalLinks</li>
<li>Click Add channels.</li>
</ol>
<p><img title="Using Adsens Custom Channels" alt="Using Adsens Custom Channels" src="http://www.kylesmego.com/images/customchannels.jpg" /></p>
<p>We're not done yet. Unlike URL channels, Custom channels require changing the Adsense code.</p>
<p><strong>To add the custom channel code to your webpage:</strong></p>
<p>1. Creat a new Google Adsense unit<br />
2. After you select the ad size, format, etc...you will see a final option to add a channel.<br />
Select the custom channel you wish to track<br />
3. Copy-and-paste the layout code into your web pages. Remember to place the ad code in the right place depending on which channel you selected.</p>
<p>Remember to repeat this for each ad you place. This will allow you to easily track each individual ad. All channel stats will be accessible through the Adsense reporting tab. Keep a close on eye it. If you notice a certain ad that isn't doing well, try moving it to a new location on the page, changing the ad format, etc to maximize your adsense revenue.</p>
<p>-- Are you a Firefox user? Try the "<a target="_blank" title="Adsense notifier" href="https://addons.mozilla.org/firefox/500/">Adsense Notifier</a>" plugin. It will display your Google Adsense earnings in the status bar. Currently several languages are supported. Pretty cool!
</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Del.icio.us"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Intro to Adsense, Utilizing Channels' to Del.icio.us" alt="Add 'Intro to Adsense, Utilizing Channels' to Del.icio.us"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to digg"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Intro to Adsense, Utilizing Channels' to digg" alt="Add 'Intro to Adsense, Utilizing Channels' to digg"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Intro+to+Adsense%2C+Utilizing+Channels&amp;u=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to FURL"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Intro to Adsense, Utilizing Channels' to FURL" alt="Add 'Intro to Adsense, Utilizing Channels' to FURL"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Intro+to+Adsense%2C+Utilizing+Channels&amp;Description=Intro+to+Adsense%2C+Utilizing+Channels&amp;Url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to blinklist"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinklist.png" title="Add 'Intro to Adsense, Utilizing Channels' to blinklist" alt="Add 'Intro to Adsense, Utilizing Channels' to blinklist"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to reddit"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Intro to Adsense, Utilizing Channels' to reddit" alt="Add 'Intro to Adsense, Utilizing Channels' to reddit"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Intro+to+Adsense%2C+Utilizing+Channels&amp;url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;version=0.7" title="Add 'Intro to Adsense, Utilizing Channels' to Feed Me Links"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/feedmelinks.png" title="Add 'Intro to Adsense, Utilizing Channels' to Feed Me Links" alt="Add 'Intro to Adsense, Utilizing Channels' to Feed Me Links"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Technorati"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Intro to Adsense, Utilizing Channels' to Technorati" alt="Add 'Intro to Adsense, Utilizing Channels' to Technorati"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;t=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Yahoo My Web"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/yahoo_myweb.png" title="Add 'Intro to Adsense, Utilizing Channels' to Yahoo My Web" alt="Add 'Intro to Adsense, Utilizing Channels' to Yahoo My Web"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;h=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Newsvine"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/newsvine.png" title="Add 'Intro to Adsense, Utilizing Channels' to Newsvine" alt="Add 'Intro to Adsense, Utilizing Channels' to Newsvine"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Socializer"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/socializer.png" title="Add 'Intro to Adsense, Utilizing Channels' to Socializer" alt="Add 'Intro to Adsense, Utilizing Channels' to Socializer"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels&amp;description=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Ma.gnolia"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/magnolia.png" title="Add 'Intro to Adsense, Utilizing Channels' to Ma.gnolia" alt="Add 'Intro to Adsense, Utilizing Channels' to Ma.gnolia"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/refer.php?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Stumble Upon"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/stumbleupon.png" title="Add 'Intro to Adsense, Utilizing Channels' to Stumble Upon" alt="Add 'Intro to Adsense, Utilizing Channels' to Stumble Upon"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Google Bookmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Intro to Adsense, Utilizing Channels' to Google Bookmarks" alt="Add 'Intro to Adsense, Utilizing Channels' to Google Bookmarks"  border="0"/></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;tttl=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to RawSugar"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rawsugar.png" title="Add 'Intro to Adsense, Utilizing Channels' to RawSugar" alt="Add 'Intro to Adsense, Utilizing Channels' to RawSugar"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Squidoo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/squidoo.png" title="Add 'Intro to Adsense, Utilizing Channels' to Squidoo" alt="Add 'Intro to Adsense, Utilizing Channels' to Squidoo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Spurl"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/spurl.png" title="Add 'Intro to Adsense, Utilizing Channels' to Spurl" alt="Add 'Intro to Adsense, Utilizing Channels' to Spurl"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to BlinkBits"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinkbits.png" title="Add 'Intro to Adsense, Utilizing Channels' to BlinkBits" alt="Add 'Intro to Adsense, Utilizing Channels' to BlinkBits"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels&amp;popup=no" title="Add 'Intro to Adsense, Utilizing Channels' to Netvouz"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/netvouz.png" title="Add 'Intro to Adsense, Utilizing Channels' to Netvouz" alt="Add 'Intro to Adsense, Utilizing Channels' to Netvouz"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Rojo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rojo.png" title="Add 'Intro to Adsense, Utilizing Channels' to Rojo" alt="Add 'Intro to Adsense, Utilizing Channels' to Rojo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Blogmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bmarks.png" title="Add 'Intro to Adsense, Utilizing Channels' to Blogmarks" alt="Add 'Intro to Adsense, Utilizing Channels' to Blogmarks"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shadows.com/shadows.aspx?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Shadows"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/shadows.png" title="Add 'Intro to Adsense, Utilizing Channels' to Shadows" alt="Add 'Intro to Adsense, Utilizing Channels' to Shadows"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Simpy"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/simpy.png" title="Add 'Intro to Adsense, Utilizing Channels' to Simpy" alt="Add 'Intro to Adsense, Utilizing Channels' to Simpy"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Co.mments"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/comments.png" title="Add 'Intro to Adsense, Utilizing Channels' to Co.mments" alt="Add 'Intro to Adsense, Utilizing Channels' to Co.mments"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.scuttle.org/bookmarks.php/maxpower?action=add&amp;address=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/&amp;title=Intro+to+Adsense%2C+Utilizing+Channels&amp;description=Intro+to+Adsense%2C+Utilizing+Channels" title="Add 'Intro to Adsense, Utilizing Channels' to Scuttle"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/scuttle.png" title="Add 'Intro to Adsense, Utilizing Channels' to Scuttle" alt="Add 'Intro to Adsense, Utilizing Channels' to Scuttle"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Bloglines"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bloglines.png" title="Add 'Intro to Adsense, Utilizing Channels' to Bloglines" alt="Add 'Intro to Adsense, Utilizing Channels' to Bloglines"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=Intro+to+Adsense%2C+Utilizing+Channels&amp;link_href=http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/" title="Add 'Intro to Adsense, Utilizing Channels' to Tailrank"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/tailrank.png" title="Add 'Intro to Adsense, Utilizing Channels' to Tailrank" alt="Add 'Intro to Adsense, Utilizing Channels' to Tailrank"  border="0"/></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.kylesmego.com/2006/12/15/intro-to-adsense-part-ii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My favorite SEO / webmaster tools</title>
		<link>http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/</link>
		<comments>http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/#comments</comments>
		<pubDate>Fri, 15 Dec 2006 01:09:18 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category>SEO</category>

		<guid isPermaLink="false">http://www.kylesmego.com/?p=5</guid>
		<description><![CDATA[Please note, these are not my websites or tools, just some of my favorite SEO and webmaster tools that I use on a regular basis. I'll be posting more in the future

Check your backlinks and anchor text



Strongest subpages tool :: finds the top 30 strongest subpages from your domain and show which sites are linking [...]]]></description>
			<content:encoded><![CDATA[<p>Please note, these are not my websites or tools, just some of my favorite SEO and webmaster tools that I use on a regular basis. I'll be posting more in the future</p>
<ul>
<li><a target="_blank" title="Check backlinks and anchor text" href="http://www.webuildpages.com/neat-o/">Check your backlinks and anchor text</a></li>
</ul>
<p><a target="_blank" title="Check backlinks and anchor text" href="http://www.webuildpages.com/neat-o/" /></p>
<ul>
<li><a title="Strongest subpages" href="http://www.webuildpages.com/seo-tools/strongest-subpages-tool.php">Strongest subpages tool</a> :: finds the top 30 strongest subpages from your domain and show which sites are linking to them</li>
</ul>
<ul>
<li><a target="_blank" title="Deep link ratio" href="http://www.webuildpages.com/seo-tools/index.php">Deep link ratio analysis</a> ::  Find the deep link ratio for the top 10 search engine results for a search phrase.</li>
</ul>
<ul>
<li><a target="_blank" title="Backlink checker" href="http://www.kylesmego.com/It%20will%20show%20you">Backlink Watch</a>  ::                    It will show you "anchor" text, pagerank, total outbound                    links on that page, and nofollow flag for each of your inbound                    link available.</li>
</ul>
<ul>
<li><a target="_blank" title="Keyword density tool" href="http://developers.evrsoft.com/seotool/">Keyword Density</a> ::  Analyzes your meta tags and keywords within your webpage suggests the keywords you should be using</li>
</ul>
<ul>
<li><a target="_blank" title="Pagerank checker" href="http://www.digpagerank.com/">"Dig" Pagerank</a> :: A cool little tool that will check your websites pagerank in 700+ datacenter</li>
</ul>
<ul>
<li><a target="_blank" title="Keyword Tracker" href="http://www.digitalpoint.com/tools/keywords/">Keyword Tracker</a> : Keyword and backlink tracker. Show's daily, weekly and monthly fluctuation of your keywords. Also features custom charts and backlink tracker (free, requires a login)</li>
</ul>
<ul>
<li><a target="_blank" title="Pagerank prediction" href="http://www.rustybrick.com/pagerank-prediction.php">Pagerank Prediction</a> ::  Mostly for fun. It "predicts" your future Google Pagerank.</li>
</ul>
<ul>
<li><a target="_blank" title="Page strength" href="http://www.seomoz.org/tools/page-strength.php">Pagestrength Tool</a>  :: Check your Page Strength, which looks at a variety of factors...Age of domain, backlinks, domain name visibity, etc</li>
</ul>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Del.icio.us"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'My favorite SEO / webmaster tools' to Del.icio.us" alt="Add 'My favorite SEO / webmaster tools' to Del.icio.us"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to digg"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'My favorite SEO / webmaster tools' to digg" alt="Add 'My favorite SEO / webmaster tools' to digg"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=My+favorite+SEO+%2F+webmaster+tools&amp;u=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to FURL"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'My favorite SEO / webmaster tools' to FURL" alt="Add 'My favorite SEO / webmaster tools' to FURL"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=My+favorite+SEO+%2F+webmaster+tools&amp;Description=My+favorite+SEO+%2F+webmaster+tools&amp;Url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to blinklist"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinklist.png" title="Add 'My favorite SEO / webmaster tools' to blinklist" alt="Add 'My favorite SEO / webmaster tools' to blinklist"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to reddit"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'My favorite SEO / webmaster tools' to reddit" alt="Add 'My favorite SEO / webmaster tools' to reddit"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=My+favorite+SEO+%2F+webmaster+tools&amp;url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;version=0.7" title="Add 'My favorite SEO / webmaster tools' to Feed Me Links"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/feedmelinks.png" title="Add 'My favorite SEO / webmaster tools' to Feed Me Links" alt="Add 'My favorite SEO / webmaster tools' to Feed Me Links"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Technorati"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'My favorite SEO / webmaster tools' to Technorati" alt="Add 'My favorite SEO / webmaster tools' to Technorati"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;t=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Yahoo My Web"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/yahoo_myweb.png" title="Add 'My favorite SEO / webmaster tools' to Yahoo My Web" alt="Add 'My favorite SEO / webmaster tools' to Yahoo My Web"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;h=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Newsvine"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/newsvine.png" title="Add 'My favorite SEO / webmaster tools' to Newsvine" alt="Add 'My favorite SEO / webmaster tools' to Newsvine"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Socializer"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/socializer.png" title="Add 'My favorite SEO / webmaster tools' to Socializer" alt="Add 'My favorite SEO / webmaster tools' to Socializer"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools&amp;description=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Ma.gnolia"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/magnolia.png" title="Add 'My favorite SEO / webmaster tools' to Ma.gnolia" alt="Add 'My favorite SEO / webmaster tools' to Ma.gnolia"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/refer.php?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Stumble Upon"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/stumbleupon.png" title="Add 'My favorite SEO / webmaster tools' to Stumble Upon" alt="Add 'My favorite SEO / webmaster tools' to Stumble Upon"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Google Bookmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'My favorite SEO / webmaster tools' to Google Bookmarks" alt="Add 'My favorite SEO / webmaster tools' to Google Bookmarks"  border="0"/></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;tttl=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to RawSugar"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rawsugar.png" title="Add 'My favorite SEO / webmaster tools' to RawSugar" alt="Add 'My favorite SEO / webmaster tools' to RawSugar"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Squidoo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/squidoo.png" title="Add 'My favorite SEO / webmaster tools' to Squidoo" alt="Add 'My favorite SEO / webmaster tools' to Squidoo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Spurl"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/spurl.png" title="Add 'My favorite SEO / webmaster tools' to Spurl" alt="Add 'My favorite SEO / webmaster tools' to Spurl"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to BlinkBits"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinkbits.png" title="Add 'My favorite SEO / webmaster tools' to BlinkBits" alt="Add 'My favorite SEO / webmaster tools' to BlinkBits"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools&amp;popup=no" title="Add 'My favorite SEO / webmaster tools' to Netvouz"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/netvouz.png" title="Add 'My favorite SEO / webmaster tools' to Netvouz" alt="Add 'My favorite SEO / webmaster tools' to Netvouz"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Rojo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rojo.png" title="Add 'My favorite SEO / webmaster tools' to Rojo" alt="Add 'My favorite SEO / webmaster tools' to Rojo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Blogmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bmarks.png" title="Add 'My favorite SEO / webmaster tools' to Blogmarks" alt="Add 'My favorite SEO / webmaster tools' to Blogmarks"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shadows.com/shadows.aspx?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Shadows"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/shadows.png" title="Add 'My favorite SEO / webmaster tools' to Shadows" alt="Add 'My favorite SEO / webmaster tools' to Shadows"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Simpy"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/simpy.png" title="Add 'My favorite SEO / webmaster tools' to Simpy" alt="Add 'My favorite SEO / webmaster tools' to Simpy"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Co.mments"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/comments.png" title="Add 'My favorite SEO / webmaster tools' to Co.mments" alt="Add 'My favorite SEO / webmaster tools' to Co.mments"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.scuttle.org/bookmarks.php/maxpower?action=add&amp;address=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/&amp;title=My+favorite+SEO+%2F+webmaster+tools&amp;description=My+favorite+SEO+%2F+webmaster+tools" title="Add 'My favorite SEO / webmaster tools' to Scuttle"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/scuttle.png" title="Add 'My favorite SEO / webmaster tools' to Scuttle" alt="Add 'My favorite SEO / webmaster tools' to Scuttle"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Bloglines"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bloglines.png" title="Add 'My favorite SEO / webmaster tools' to Bloglines" alt="Add 'My favorite SEO / webmaster tools' to Bloglines"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=My+favorite+SEO+%2F+webmaster+tools&amp;link_href=http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/" title="Add 'My favorite SEO / webmaster tools' to Tailrank"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/tailrank.png" title="Add 'My favorite SEO / webmaster tools' to Tailrank" alt="Add 'My favorite SEO / webmaster tools' to Tailrank"  border="0"/></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.kylesmego.com/2006/12/14/my-favorite-webmaster-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introduction to Adsense :: Part I</title>
		<link>http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/</link>
		<comments>http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 22:25:47 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category>Adsense</category>

		<guid isPermaLink="false">http://www.kylesmego.com/?p=4</guid>
		<description><![CDATA[Please keep in mind that this is only based on personal experience and each sites success will vary depending on the content, placement, integration, traffic, etc. This is a very basic overview geared towards first time "Adsensers".
Before you even think about getting Adsense up and running on your site, I highly recommend reading over the [...]]]></description>
			<content:encoded><![CDATA[<p>Please keep in mind that this is only based on personal experience and each sites success will vary depending on the content, placement, integration, traffic, etc. This is a very basic overview geared towards first time "Adsensers".</p>
<p>Before you even think about getting Adsense up and running on your site, I highly recommend reading over the <a target="_blank" title="Adsense Program Policies" rel="nofollow" href="https://google.com/adsense/support/bin/answer.py?answer=48182&#038;sourceid=aso&#038;subid=ww-ww-et-asui&#038;medium=link&#038;hl=en_US">Google Adsense Program Policies</a>. Be sure to not only read them, but understand them because you don't want to risk having your account banned.</p>
<p>Some of the most important (and basic) policies to remember are:</p>
<ul>
<li>DO NOT click your own ads.</li>
<li>DO NOT alter the Adsense code in any way.</li>
<li>DO NOT encourage users to click on your ads. The only text that can be used to  label your ads are "Sponsored Links" or "Advertisements"</li>
<li>DO NOT try to inflate your page impressions.</li>
<li>Up to 3 ads may be displayed per page</li>
<li>Adsense can only be placed on "content" pages. DO NOT place ads on registration pages, user profile pages, etc.</li>
<li>You may have one, and only one, Adsense account</li>
</ul>
<p>Ok, now that you've read over the policies it's time to start setting up Adsense for your website.</p>
<p><em><strong>Choosing the right format</strong></em></p>
<p>From my experience these are the Adsense formats that have performed best for me:</p>
<ul>
<li>336 x 280 large rectangle</li>
<li>300 X 250 medium rectangle</li>
<li>468 X 15  horizontal ad links</li>
</ul>
<p><a id="more-4"></a>We'll talk about ad placement later.<br />
<script type="text/javascript"><br />
<!--<br />
google_ad_client = "pub-8214950495248126";<br />
google_ad_width = 468;<br />
google_ad_height = 60;<br />
google_ad_format = "468x60_as";<br />
google_ad_type = "text";<br />
//2006-12-14: KYLE<br />
google_ad_channel = "7224389372";<br />
google_color_border = "FFFFFF";<br />
google_color_bg = "FFFFFF";<br />
google_color_link = "CC0000";<br />
google_color_text = "000000";<br />
google_color_url = "000000"; //--></script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"><br />
</script></p>
<p><strong>Choosing the right color scheme </strong></p>
<p>It's best to blend the ads to your website's style and color scheme so they look like part of the content. Here are some tips on blending your ads:</p>
<ul>
<li>Background : Set this to the background used on your site, where the content appear.</li>
<li>Border : Set as the same color as the "Background color". Remember ads without borders tend to do better.</li>
<li>Link :  Set this to the color that you use for you links on your site.</li>
<li>URL: Set this to the color that you use for your main content text</li>
<li>Text :Set this to the color that you use for your main content</li>
</ul>
<p><strong>Ad Placement </strong></p>
<p>Now that you've selected you ad format and color scheme, it's onto the most important part....ad placement.</p>
<p>For best results, place the ads above the fold since that's the part of the page that users will see first.</p>
<p>The 336X280  and 300 X 250 rectangles are most effective when embedded within the article content at the top left. This is where the readers eyes land first.<br />
The 468X15 link unit seems to be most effective when placed in the "usually" navigation bar area of the website OR...directly after the article. Most users finish reading the article and are looking for somewhere else to go within your website, so placing the ad units seems logical.</p>
<p><em><strong>Sample Placements</strong></em> <img title="Adsense Placement" alt="Adsense Placement" src="http://www.kylesmego.com/images/adplacement.jpg" /></p>
<p><strong> Adsense Gray areas</strong></p>
<p>Probably the biggest gray area, at least for me, is whether or not images are allowed next to Adsense ads. It seems that there is no definitive answer and is determined on a case-by-case basis. For the most part, it seems that images are allowed next to ads as along as there is a border separating the images and ads and that they are "fairly" spaced from eachother.  The images must not appear to be part of the ad unit and must not be used in a way to trick the user into clicking the ads. If you are thinking about using images next to Adsense, it's best to contact the Adsense team to see if your placement is within the TOS. If they do okay the placement make sure that you keep the email...just in case. Here is an example of an image/adsense placement that was "approved":</p>
<p><img title="Images next to adsense" alt="Images next to adsense" src="http://www.kylesmego.com/images/reggiead.jpg" /><br />
The follow-on to this tutorial will cover the following:</p>
<ul>
<li>Utilizing channels to track your Adsense performance.</li>
<li>Using section targeting to optimize ad relevancy</li>
<li>Maintaining your Adsense campaign, alternating ads, and "placement maintenance"</li>
<li>Samples of great Adsense placement and integration</li>
</ul>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Del.icio.us"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Introduction to Adsense :: Part I' to Del.icio.us" alt="Add 'Introduction to Adsense :: Part I' to Del.icio.us"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to digg"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Introduction to Adsense :: Part I' to digg" alt="Add 'Introduction to Adsense :: Part I' to digg"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Introduction+to+Adsense+%3A%3A+Part+I&amp;u=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to FURL"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Introduction to Adsense :: Part I' to FURL" alt="Add 'Introduction to Adsense :: Part I' to FURL"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Introduction+to+Adsense+%3A%3A+Part+I&amp;Description=Introduction+to+Adsense+%3A%3A+Part+I&amp;Url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to blinklist"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinklist.png" title="Add 'Introduction to Adsense :: Part I' to blinklist" alt="Add 'Introduction to Adsense :: Part I' to blinklist"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to reddit"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Introduction to Adsense :: Part I' to reddit" alt="Add 'Introduction to Adsense :: Part I' to reddit"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Introduction+to+Adsense+%3A%3A+Part+I&amp;url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;version=0.7" title="Add 'Introduction to Adsense :: Part I' to Feed Me Links"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/feedmelinks.png" title="Add 'Introduction to Adsense :: Part I' to Feed Me Links" alt="Add 'Introduction to Adsense :: Part I' to Feed Me Links"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Technorati"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Introduction to Adsense :: Part I' to Technorati" alt="Add 'Introduction to Adsense :: Part I' to Technorati"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;t=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Yahoo My Web"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/yahoo_myweb.png" title="Add 'Introduction to Adsense :: Part I' to Yahoo My Web" alt="Add 'Introduction to Adsense :: Part I' to Yahoo My Web"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;h=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Newsvine"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/newsvine.png" title="Add 'Introduction to Adsense :: Part I' to Newsvine" alt="Add 'Introduction to Adsense :: Part I' to Newsvine"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Socializer"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/socializer.png" title="Add 'Introduction to Adsense :: Part I' to Socializer" alt="Add 'Introduction to Adsense :: Part I' to Socializer"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I&amp;description=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Ma.gnolia"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/magnolia.png" title="Add 'Introduction to Adsense :: Part I' to Ma.gnolia" alt="Add 'Introduction to Adsense :: Part I' to Ma.gnolia"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/refer.php?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Stumble Upon"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/stumbleupon.png" title="Add 'Introduction to Adsense :: Part I' to Stumble Upon" alt="Add 'Introduction to Adsense :: Part I' to Stumble Upon"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Google Bookmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Introduction to Adsense :: Part I' to Google Bookmarks" alt="Add 'Introduction to Adsense :: Part I' to Google Bookmarks"  border="0"/></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;tttl=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to RawSugar"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rawsugar.png" title="Add 'Introduction to Adsense :: Part I' to RawSugar" alt="Add 'Introduction to Adsense :: Part I' to RawSugar"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Squidoo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/squidoo.png" title="Add 'Introduction to Adsense :: Part I' to Squidoo" alt="Add 'Introduction to Adsense :: Part I' to Squidoo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Spurl"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/spurl.png" title="Add 'Introduction to Adsense :: Part I' to Spurl" alt="Add 'Introduction to Adsense :: Part I' to Spurl"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to BlinkBits"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinkbits.png" title="Add 'Introduction to Adsense :: Part I' to BlinkBits" alt="Add 'Introduction to Adsense :: Part I' to BlinkBits"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I&amp;popup=no" title="Add 'Introduction to Adsense :: Part I' to Netvouz"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/netvouz.png" title="Add 'Introduction to Adsense :: Part I' to Netvouz" alt="Add 'Introduction to Adsense :: Part I' to Netvouz"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Rojo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rojo.png" title="Add 'Introduction to Adsense :: Part I' to Rojo" alt="Add 'Introduction to Adsense :: Part I' to Rojo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Blogmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bmarks.png" title="Add 'Introduction to Adsense :: Part I' to Blogmarks" alt="Add 'Introduction to Adsense :: Part I' to Blogmarks"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shadows.com/shadows.aspx?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Shadows"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/shadows.png" title="Add 'Introduction to Adsense :: Part I' to Shadows" alt="Add 'Introduction to Adsense :: Part I' to Shadows"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Simpy"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/simpy.png" title="Add 'Introduction to Adsense :: Part I' to Simpy" alt="Add 'Introduction to Adsense :: Part I' to Simpy"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Co.mments"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/comments.png" title="Add 'Introduction to Adsense :: Part I' to Co.mments" alt="Add 'Introduction to Adsense :: Part I' to Co.mments"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.scuttle.org/bookmarks.php/maxpower?action=add&amp;address=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/&amp;title=Introduction+to+Adsense+%3A%3A+Part+I&amp;description=Introduction+to+Adsense+%3A%3A+Part+I" title="Add 'Introduction to Adsense :: Part I' to Scuttle"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/scuttle.png" title="Add 'Introduction to Adsense :: Part I' to Scuttle" alt="Add 'Introduction to Adsense :: Part I' to Scuttle"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Bloglines"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bloglines.png" title="Add 'Introduction to Adsense :: Part I' to Bloglines" alt="Add 'Introduction to Adsense :: Part I' to Bloglines"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=Introduction+to+Adsense+%3A%3A+Part+I&amp;link_href=http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/" title="Add 'Introduction to Adsense :: Part I' to Tailrank"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/tailrank.png" title="Add 'Introduction to Adsense :: Part I' to Tailrank" alt="Add 'Introduction to Adsense :: Part I' to Tailrank"  border="0"/></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.kylesmego.com/2006/12/14/introduction-to-adsense-part-i/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Now Online</title>
		<link>http://www.kylesmego.com/2006/11/18/hello-world/</link>
		<comments>http://www.kylesmego.com/2006/11/18/hello-world/#comments</comments>
		<pubDate>Sat, 18 Nov 2006 16:32:55 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
		
		<category>Random</category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I thought I would throw a little site together for myself. You won't find anything fancy here. No fancy web layout, no "bells and whistles", just a simple Wordpress layout. This is "my page" where I can practice (and share) my coding techniques, share family news and work on some long overdue projects.
Over time, I [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I would throw a little site together for myself. You won't find anything fancy here. No fancy web layout, no "bells and whistles", just a simple Wordpress layout. This is "my page" where I can practice (and share) my coding techniques, share family news and work on some long overdue projects.</p>
<p>Over time, I will be posting some PHP script samples and snippets to help you (and me) sharpen your skills. Most scripts will be sports or financial-related, but you never know. I've also begun to focus more on MySQL database normalization and optimization. After scouring other developers work, I've come to the conclusion that most do not know what a "good" and efficient database is. I'll clue you in on some tricks that can speed up your application...a lot.</p>
<p>I'll also be blogging about Adsense, Search engine optimization and other interesting subjects targeted towards webmaster and online entrepreneurs.</p>
<p>I started working on my <a href="http://www.kylesmego.com/retrospect/index.php">family tree</a>, which is something I've always wanted to do, but never got around to it. Feel free to <a href="http://www.kylesmego.com/retrospect/index.php">take a look.</a>
</p>
<!-- Social Bookmarks BEGIN --><div class="social_bookmark"><em>Bookmark to:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Del.icio.us"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/delicious.png" title="Add 'Now Online' to Del.icio.us" alt="Add 'Now Online' to Del.icio.us"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to digg"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/digg.png" title="Add 'Now Online' to digg" alt="Add 'Now Online' to digg"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Now+Online&amp;u=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to FURL"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/furl.png" title="Add 'Now Online' to FURL" alt="Add 'Now Online' to FURL"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Now+Online&amp;Description=Now+Online&amp;Url=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to blinklist"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinklist.png" title="Add 'Now Online' to blinklist" alt="Add 'Now Online' to blinklist"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to reddit"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/reddit.png" title="Add 'Now Online' to reddit" alt="Add 'Now Online' to reddit"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Now+Online&amp;url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;version=0.7" title="Add 'Now Online' to Feed Me Links"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/feedmelinks.png" title="Add 'Now Online' to Feed Me Links" alt="Add 'Now Online' to Feed Me Links"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Technorati"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/technorati.png" title="Add 'Now Online' to Technorati" alt="Add 'Now Online' to Technorati"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.kylesmego.com/2006/11/18/hello-world/&amp;t=Now+Online" title="Add 'Now Online' to Yahoo My Web"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/yahoo_myweb.png" title="Add 'Now Online' to Yahoo My Web" alt="Add 'Now Online' to Yahoo My Web"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.kylesmego.com/2006/11/18/hello-world/&amp;h=Now+Online" title="Add 'Now Online' to Newsvine"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/newsvine.png" title="Add 'Now Online' to Newsvine" alt="Add 'Now Online' to Newsvine"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Socializer"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/socializer.png" title="Add 'Now Online' to Socializer" alt="Add 'Now Online' to Socializer"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ma.gnolia.com/bookmarklet/add?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online&amp;description=Now+Online" title="Add 'Now Online' to Ma.gnolia"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/magnolia.png" title="Add 'Now Online' to Ma.gnolia" alt="Add 'Now Online' to Ma.gnolia"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/refer.php?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Stumble Upon"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/stumbleupon.png" title="Add 'Now Online' to Stumble Upon" alt="Add 'Now Online' to Stumble Upon"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Google Bookmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/google.png" title="Add 'Now Online' to Google Bookmarks" alt="Add 'Now Online' to Google Bookmarks"  border="0"/></a><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rawsugar.com/tagger/?turl=http://www.kylesmego.com/2006/11/18/hello-world/&amp;tttl=Now+Online" title="Add 'Now Online' to RawSugar"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rawsugar.png" title="Add 'Now Online' to RawSugar" alt="Add 'Now Online' to RawSugar"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Squidoo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/squidoo.png" title="Add 'Now Online' to Squidoo" alt="Add 'Now Online' to Squidoo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Spurl"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/spurl.png" title="Add 'Now Online' to Spurl" alt="Add 'Now Online' to Spurl"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to BlinkBits"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/blinkbits.png" title="Add 'Now Online' to BlinkBits" alt="Add 'Now Online' to BlinkBits"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online&amp;popup=no" title="Add 'Now Online' to Netvouz"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/netvouz.png" title="Add 'Now Online' to Netvouz" alt="Add 'Now Online' to Netvouz"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.rojo.com/add-subscription/?resource=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Rojo"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/rojo.png" title="Add 'Now Online' to Rojo" alt="Add 'Now Online' to Rojo"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Blogmarks"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bmarks.png" title="Add 'Now Online' to Blogmarks" alt="Add 'Now Online' to Blogmarks"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shadows.com/shadows.aspx?url=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Shadows"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/shadows.png" title="Add 'Now Online' to Shadows" alt="Add 'Now Online' to Shadows"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Simpy"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/simpy.png" title="Add 'Now Online' to Simpy" alt="Add 'Now Online' to Simpy"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://co.mments.com/track?url=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online" title="Add 'Now Online' to Co.mments"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/comments.png" title="Add 'Now Online' to Co.mments" alt="Add 'Now Online' to Co.mments"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.scuttle.org/bookmarks.php/maxpower?action=add&amp;address=http://www.kylesmego.com/2006/11/18/hello-world/&amp;title=Now+Online&amp;description=Now+Online" title="Add 'Now Online' to Scuttle"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/scuttle.png" title="Add 'Now Online' to Scuttle" alt="Add 'Now Online' to Scuttle"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Bloglines"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/bloglines.png" title="Add 'Now Online' to Bloglines" alt="Add 'Now Online' to Bloglines"  border="0"/></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tailrank.com/share/?title=Now+Online&amp;link_href=http://www.kylesmego.com/2006/11/18/hello-world/" title="Add 'Now Online' to Tailrank"><img src="http://www.kylesmego.com/wp-content/plugins/social_bookmarks/tailrank.png" title="Add 'Now Online' to Tailrank" alt="Add 'Now Online' to Tailrank"  border="0"/></a></div>
<!-- Social Bookmarks END -->]]></content:encoded>
			<wfw:commentRss>http://www.kylesmego.com/2006/11/18/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
