<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Adam Breckler</title>
	
	<link>http://www.adambreckler.com</link>
	<description>internet professional</description>
	<lastBuildDate>Wed, 24 Feb 2010 18:27:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AdamBreckler" /><feedburner:info uri="adambreckler" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>AdamBreckler</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Proof that Ad.ly is spam</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/wAW9BQtX0u0/proof-that-ad-ly-is-spam</link>
		<comments>http://www.adambreckler.com/proof-that-ad-ly-is-spam#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:04:44 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=715</guid>
		<description><![CDATA[&#8220;In-stream&#8221; advertising startup, Ad.ly, as viewed by AdBlock Plus.

]]></description>
			<content:encoded><![CDATA[<p>&#8220;In-stream&#8221; advertising startup, <a href="http://ad.ly/">Ad.ly</a>, as viewed by AdBlock Plus.</p>
<p><a href="http://www.adambreckler.com/wp-content/uploads/2010/02/ad.ly.png"><img class="alignleft size-medium wp-image-716" title="ad.ly" src="http://www.adambreckler.com/wp-content/uploads/2010/02/ad.ly-300x88.png" alt="ad.ly" width="300" height="88" /></a></p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/wAW9BQtX0u0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/proof-that-ad-ly-is-spam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/proof-that-ad-ly-is-spam</feedburner:origLink></item>
		<item>
		<title>Spicing up you’re wordpress RSS feed</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/eVpys9rP4X4/spicing-up-youre-wordpress-rss-feed</link>
		<comments>http://www.adambreckler.com/spicing-up-youre-wordpress-rss-feed#comments</comments>
		<pubDate>Fri, 19 Feb 2010 06:20:55 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=706</guid>
		<description><![CDATA[Here&#8217;s a nifty little function you can add to you&#8217;re theme&#8217;s functions.php
to append the post category link in you&#8217;re rss feed, but the same technique can be applied to add just about anything. This can be especially useful if some sites are scraping you&#8217;re content from you&#8217;re rss feed and you want to include a [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a nifty little function you can add to you&#8217;re theme&#8217;s functions.php<br />
to append the post category link in you&#8217;re rss feed, but the same technique can be applied to add just about anything. This can be especially useful if some sites are scraping you&#8217;re content from you&#8217;re rss feed and you want to include a link back.  It utilizes the &#8216;the_excerpt_rss&#8217; and &#8216;the_content_rss&#8217; hooks depending on how you&#8217;re rss feed is configured.</p>
<pre class="php">
<span class="phpComment">//Add a feed link back to category level page
</span><span class="phpFunctionKeyword">function</span> feed_link<span class="phpOperator">(</span>$content<span class="phpOperator">)</span> <span class="phpOperator">{</span><span class="phpKeyword"> global </span>$post;
<span class="phpKeyword">
foreach<span class="phpOperator">(</span></span><span class="phpOperator">(</span>get_the_category<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpKeyword"> as </span>$category<span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpKeyword">
if </span><span class="phpOperator">(</span>$category<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>category_parent <span class="phpOperator"><span class="phpOperator">=</span>=</span> <span class="phpNumber">0</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
$cat_name <span class="phpOperator">=</span> $category<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>name<span class="phpText">;</span>
$cat_ID <span class="phpOperator">=</span> $category<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>cat_ID<span class="phpText">;</span>
$link <span class="phpOperator">=</span> get_category_link<span class="phpOperator">(</span> $cat_ID <span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
break<span class="phpText">;</span></span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
$content <span class="phpOperator">=</span> $content.<span class="phpString">'<span class="phpOperator">&lt;</span>br /<span class="phpOperator">&gt;</span><span class="phpOperator">&lt;</span>a href=<span class="phpString">"'</span>.$link<span class="phpOperator">.</span><span class="phpString">'"</span><span class="phpOperator">&gt;</span>More '</span>.$cat_name.<span class="phpString">'  posts<span class="phpOperator">&lt;</span>/a<span class="phpOperator">&gt;</span>'</span><span class="phpText">;</span>
<span class="phpKeyword">
return </span>$content;
<span class="phpOperator">}</span>
add_filter<span class="phpOperator">(</span><span class="phpString">'the_excerpt_rss'</span>,<span class="phpString">'feed_link'</span><span class="phpOperator">)</span><span class="phpText">;</span>
add_filter<span class="phpOperator">(</span><span class="phpString">'the_content_rss'</span>,<span class="phpString">'feed_link'</span><span class="phpOperator">)</span><span class="phpText">;</span>
</pre>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/eVpys9rP4X4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/spicing-up-youre-wordpress-rss-feed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/spicing-up-youre-wordpress-rss-feed</feedburner:origLink></item>
		<item>
		<title>On Economics</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/vOGcdZfRadk/on-economics</link>
		<comments>http://www.adambreckler.com/on-economics#comments</comments>
		<pubDate>Sun, 31 Jan 2010 22:43:12 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Economics]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=703</guid>
		<description><![CDATA[&#8220;Economics is not about things and tangible material objects; it is about men, their meanings and actions.  Goods, commodities, and wealth and all the other notions of conduct are not elements of nature; they are elements of human meaning and conduct.  He who wants to deal with them must not look at the [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Economics is not about things and tangible material objects; it is about men, their meanings and actions.  Goods, commodities, and wealth and all the other notions of conduct are not elements of nature; they are elements of human meaning and conduct.  He who wants to deal with them must not look at the external world; he must search for them in the meaning of acting men.&#8221;</em></p>
<p>- Ludwig von Mises, <a href="http://www.amazon.com/gp/product/0865976317?ie=UTF8&amp;tag=baho-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0865976317">Human Action: A Treatise on Economics</a><img class=" uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb uafewddhtxxqmyszktpb" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=baho-20&amp;l=as2&amp;o=1&amp;a=0865976317" border="0" alt="" width="1" height="1" /></p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/vOGcdZfRadk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/on-economics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/on-economics</feedburner:origLink></item>
		<item>
		<title>Lawyers</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/zfbYXbZoY8Y/lawyers</link>
		<comments>http://www.adambreckler.com/lawyers#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:27:47 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Economics]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=700</guid>
		<description><![CDATA[70% of Lawyers who have ever lived are alive today (roughly the same, but even higher for scientists and engineers interestingly enough). &#8211; Paul Kedrosky
Is this a reason to be optimistic or sign of a bubble forming?
]]></description>
			<content:encoded><![CDATA[<p><strong><i>70%</i></strong> of Lawyers who have ever lived are alive today (roughly the same, but even higher for scientists and engineers interestingly enough). &#8211; Paul Kedrosky</p>
<p>Is this a reason to be optimistic or sign of a bubble forming?</p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/zfbYXbZoY8Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/lawyers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/lawyers</feedburner:origLink></item>
		<item>
		<title>100 Years of Moore’s Law</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/MkGmR5crsWM/100-years-of-moores-law</link>
		<comments>http://www.adambreckler.com/100-years-of-moores-law#comments</comments>
		<pubDate>Wed, 27 Jan 2010 06:24:10 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=697</guid>
		<description><![CDATA[
Via: Paul Kedrosky Via Steve Jurvetson Via Ray Kurzweil
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-696" title="3656849977_48f6a16eb4_o_thumb" src="http://www.adambreckler.com/wp-content/uploads/2010/01/3656849977_48f6a16eb4_o_thumb.png" alt="3656849977_48f6a16eb4_o_thumb" width="500" /></p>
<p>Via: <a href="http://paul.kedrosky.com/archives/2010/01/moores_law_then.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+InfectiousGreed+%28Paul+Kedrosky%27s+Infectious+Greed%29">Paul Kedrosky</a> Via <a href="http://www.flickr.com/photos/jurvetson/3656849977/">Steve Jurvetson</a> Via <a href="http://www.kurzweilai.net">Ray Kurzweil</a></p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/MkGmR5crsWM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/100-years-of-moores-law/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/100-years-of-moores-law</feedburner:origLink></item>
		<item>
		<title>This can’t be good…</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/jUagIseKGWQ/this-cant-be-good</link>
		<comments>http://www.adambreckler.com/this-cant-be-good#comments</comments>
		<pubDate>Fri, 08 Jan 2010 05:18:31 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Economics]]></category>
		<category><![CDATA[finance]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=694</guid>
		<description><![CDATA[
In the third quarter, and this was with the benefit of a 3.6% lift in property taxes (amazing), tax receipts at the lower levels of government fell 7% in Q3 from a year ago. Sales taxes are down 9% (seems just a bit at odds with the retail sales data, no?) and income taxes off [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-693" title="f" src="http://www.adambreckler.com/wp-content/uploads/2010/01/f.jpg" alt="f" width="400" height="208" /></p>
<blockquote><p>In the third quarter, and this was with the benefit of a 3.6% lift in property taxes (amazing), tax receipts at the lower levels of government fell 7% in Q3 from a year ago. Sales taxes are down 9% (seems just a bit at odds with the retail sales data, no?) and income taxes off 12%. If that is what a recovery does to fiscal finances, imagine what the backdrop will look like if the economy actually does pull a ‘double dip’.&#8221;</p></blockquote>
<p>Via <a href="http://www.businessinsider.com/rosenberg-heres-ten-trends-for-2010-2010-1#how-can-there-be-a-recovery-if-tax-revenues-are-still-declining-5">Business Insider</a></p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/jUagIseKGWQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/this-cant-be-good/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/this-cant-be-good</feedburner:origLink></item>
		<item>
		<title>Is Google re-inventing the model of the Corporation?</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/ltGQ0KBn95w/is-google-re-inventing-the-model-of-the-corporation</link>
		<comments>http://www.adambreckler.com/is-google-re-inventing-the-model-of-the-corporation#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:03:11 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=679</guid>
		<description><![CDATA[The Old Paradigm: Rely on quasi-monopoly and second-rate legacy products to squeeze users starved of choice for every last penny (*cough* Microsoft, *cough* *cough*).

The New Paradigm: Put end-users first and profits will follow. (Google).

Much can be said about the corporate cultures (particularly Google&#8217;s) which have in part enabled this brand of user-centric thinking, but that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Old Paradigm:</strong> Rely on quasi-monopoly and second-rate legacy products to squeeze users starved of choice for every last penny (*cough* Microsoft, *cough* *cough*).</p>
<p><img title="microsuck" src="http://www.adambreckler.com/wp-content/uploads/2010/01/microsuck.gif" alt="microsuck" width="351" height="81" /></p>
<p><strong>The New Paradigm:</strong> Put end-users first and profits will follow. (Google).</p>
<p><img class="alignleft size-full wp-image-686" title="google-halo" src="http://www.adambreckler.com/wp-content/uploads/2010/01/google-halo.jpg" alt="google-halo" width="256" height="113" /></p>
<p>Much can be said about the corporate cultures (particularly Google&#8217;s) which have in part enabled this brand of user-centric thinking, but that is a topic for another discussion.</p>
<p>Time and time again Google has put the best interests of their users AHEAD of their own share-holders and short-term bottom line.  This isn&#8217;t to say that they are profit agnostic in the slightest, they happen to make very healthy profits, rather they believe that doing right by their customers will earn them more loyalty (read: money) in the long run.</p>
<p>To phrase it another way: Google is not successful in-spite of putting users interests first, to the contrary, they are successful BECAUSE they put users&#8217; interests first.<br />
<span id="more-679"></span><br />
Ok, so what are some examples of this seemingly &#8220;altruistic&#8221; behavior?</p>
<p><strong>Example 1</strong> (2007): Google get&#8217;s serious about ad quality by <a href="http://adwords.blogspot.com/2007/02/quality-score-updates.html">implementing a &#8220;quality score&#8221; </a>for all of it&#8217;s search ads.</p>
<p><strong>Example 2</strong> (2010):  <a href="http://www.techcrunch.com/2010/01/05/apple-google-carriers/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29">Google&#8217;s recent entrance into the mobile phone market</a>, providing more openness and choice in a stagnant and typically user-unfriendly industry.</p>
<p>What remains to be seen is how long this type of user-centric behavior can last.  The danger is that with time, pressure to increase profit will lead to cost-cutting measures that affect their products, but in the mean-time it seems like Google and it&#8217;s management are still eating the &#8220;don&#8217;t be evil&#8221; dogfood.</p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/ltGQ0KBn95w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/is-google-re-inventing-the-model-of-the-corporation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/is-google-re-inventing-the-model-of-the-corporation</feedburner:origLink></item>
		<item>
		<title>Designing For Social Traction: Solving 3 Big problems of Social Software</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/pDGVCDZk4hs/designing-for-social-traction-solving-3-big-problems-of-social-software</link>
		<comments>http://www.adambreckler.com/designing-for-social-traction-solving-3-big-problems-of-social-software#comments</comments>
		<pubDate>Thu, 31 Dec 2009 23:57:34 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=677</guid>
		<description><![CDATA[Great deck by Joshua Porter

Designing For Social Traction
View more documents from Joshua Porter.

]]></description>
			<content:encoded><![CDATA[<p>Great deck by <a href="http://bokardo.com/about/" target="_blank">Joshua Porter</a></p>
<p><img style="visibility: hidden; width: 0px; height: 0px;" src="http://counters.gigya.com/wildfire/IMP/CXNID=2000002.0NXC/bT*xJmx*PTEyNjIzMDM3MDA3OTImcHQ9MTI2MjMwMzcwNDg2NiZwPTEwMTkxJmQ9c3NfZW1iZWQmZz*yJm89NWNlMjY1YjMwYzE5NGRmN2IzMjhhODZjNjEzNDkzZTcmb2Y9MA==.gif" border="0" alt="" width="0" height="0" /></p>
<div id="__ss_1837099" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Designing For Social Traction" href="http://www.slideshare.net/bokardo/designing-for-social-traction">Designing For Social Traction</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=delve-designing-for-social-traction-090810123825-phpapp01&amp;stripped_title=designing-for-social-traction" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=delve-designing-for-social-traction-090810123825-phpapp01&amp;stripped_title=designing-for-social-traction" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/bokardo">Joshua Porter</a>.</div>
</div>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/pDGVCDZk4hs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/designing-for-social-traction-solving-3-big-problems-of-social-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/designing-for-social-traction-solving-3-big-problems-of-social-software</feedburner:origLink></item>
		<item>
		<title>The Direct Traffic Myth</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/KZ5_5cwKj5E/the-direct-traffic-myth</link>
		<comments>http://www.adambreckler.com/the-direct-traffic-myth#comments</comments>
		<pubDate>Sun, 27 Dec 2009 18:32:46 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[analytics]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=672</guid>
		<description><![CDATA[Have you ever wondered how exactly &#8220;direct&#8221; traffic is measured in Google Analytics? For the most part, this traffic comes from users directly navigating to your site through their browser toolbar or a bookmark.  As it turns out there could be other sources that are counted as direct traffic when they aren&#8217;t.  These [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered how exactly &#8220;direct&#8221; traffic is measured in Google Analytics? For the most part, this traffic comes from users directly navigating to your site through their browser toolbar or a bookmark.  As it turns out there could be other sources that are counted as direct traffic when they aren&#8217;t.  These include ppc,display or links from other sites that for some reason don&#8217;t pass a referrer.</p>
<p>You can paste the following code into you&#8217;re browser toolbar after clicking through an ad to you&#8217;re site to see if (any) referrer was passed.  If it&#8217;s empty than Google Analytics will count it towards direct traffic if you don&#8217;t pass any campaign tracking parameters.</p>
<pre class="javascript">
javascript:alert(document.referrer)
</pre>
<h3>How do I fix this?</h3>
<p>1. Realize that a chunk of the traffic that shows up in your &#8220;direct&#8221; bucket ~(10-15%) could be attributed to some other source e.g (ppc,display,link). This could be from click-through traffic or type-in traffic (where people see you&#8217;re ad and type in you&#8217;re url instead of clicking on it.)  The latter case is essentially free advertising and while hard to measure directly should be considered into the ROI calculation for advertising.  This is why it&#8217;s always important to display a url in you&#8217;re advertisement.</p>
<p>2. Always use tracking parameters in your urls when possible. <a href="http://www.google.com/support/googleanalytics/bin/answer.py?answer=55578&#038;hl=en">http://www.google.com/support/googleanalytics</a></p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/KZ5_5cwKj5E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/the-direct-traffic-myth/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/the-direct-traffic-myth</feedburner:origLink></item>
		<item>
		<title>Are You Making Grilled Cheese Sandwiches or Viagra?</title>
		<link>http://feedproxy.google.com/~r/AdamBreckler/~3/HXMLmoVdu44/are-you-making-grilled-cheese-sandwiches-or-viagra</link>
		<comments>http://www.adambreckler.com/are-you-making-grilled-cheese-sandwiches-or-viagra#comments</comments>
		<pubDate>Wed, 23 Dec 2009 03:04:03 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://www.adambreckler.com/?p=660</guid>
		<description><![CDATA[Is your product sexier than grilled cheese sandwiches? Do people like it better or are more willing to refer a friend to it?  I&#8217;m willing to bet in 99/100 cases the answer is&#8230;NO.
Case and point: Grilled Cheese Sandwiches have a whopping 212,686 fans who are willing to self-identify as Grilled Cheese Sandwich lovers on [...]]]></description>
			<content:encoded><![CDATA[<p>Is your product sexier than grilled cheese sandwiches? Do people like it better or are more willing to refer a friend to it?  I&#8217;m willing to bet in 99/100 cases the answer is&#8230;NO.</p>
<p>Case and point: Grilled Cheese Sandwiches have a whopping <a href="http://www.facebook.com/pages/Grilled-Cheese-Sandwiches/60573284812?ref=search&amp;sid=100000527692072.3989721539..1">212,686 fans</a> who are willing to self-identify as Grilled Cheese Sandwich lovers on Facebook!<br />
<img class="alignleft size-full wp-image-661" title="grilled-cheese.pn" src="http://www.adambreckler.com/wp-content/uploads/2009/12/grilled-cheese.pn.png" alt="grilled-cheese.pn" width="604" height="136" /></p>
<p>If most people are not willing to &#8220;self-identify&#8221; as being a fan or user of your product than you are not alone.  It is the rare exception where a product is so fantastic or speaks to a certain demographic in such a way that the users feel compelled to broadcast their affinity to others in their social spheres.</p>
<p>A great example of a product that people self-identify with is the Apple iPod, not only is it an incredibly sexy product but it is made by a company with tremendous customer affinity and good will.</p>
<p>The iPod has <a href="http://www.facebook.com/pages/Apple-Ipod/45720985448?ref=search&amp;sid=100000527692072.2838417488..1">341,820 fans</a> on Facebook.<br />
<img class="alignleft size-full wp-image-664" title="ipod" src="http://www.adambreckler.com/wp-content/uploads/2009/12/ipod.png" alt="ipod" width="609" height="117" /></p>
<p><span id="more-660"></span></p>
<p>By comparison Viagra has a flaccid (yes i said <em>flaccid</em>) <a href="http://www.facebook.com/pages/Viagra/73864457085?ref=search&amp;sid=100000527692072.287661370..1">368 fans</a> on Facebook.</p>
<p><img class="alignleft size-full wp-image-666" title="viagra" src="http://www.adambreckler.com/wp-content/uploads/2009/12/viagra.png" alt="viagra" width="609" height="107" /></p>
<p>While I picked an especially un-sexy (or sexy, depending on how you look at it) product to make the point, the same is true of countless other products and services.  If people are not willing to self-identify as users of your product than you are going to have a tougher time promoting your product organically.</p>
<p>But don&#8217;t be dismayed if you are selling an unsexy product.  The silver lining here of course is that there is usually a negative correlation between the propensity of people to self-identify with your product and the actual profitability or value being delivered.  Products like the iPod, again, being the rare exception.</p>
<p>While few are willing to admit their affiliation with online dating sites like Match.com, <a href="http://www.facebook.com/match?ref=search&amp;sid=100000527692072.3011223745..1">789 fans</a> on Facebook.<br />
<img class="alignleft size-full wp-image-668" title="match" src="http://www.adambreckler.com/wp-content/uploads/2009/12/match.png" alt="match" width="610" height="108" /></p>
<p>A whopping <a href="http://www.facebook.com/pages/Mojito/11398993594?ref=search&amp;sid=100000527692072.2601089608..1">1,255,505</a> are fans of Mojitos!<br />
<img class="alignleft size-full wp-image-662" title="pastedGraphic" src="http://www.adambreckler.com/wp-content/uploads/2009/12/pastedGraphic.png" alt="pastedGraphic" width="589" height="168" /></p>
<p>I&#8217;m willing to guess that there is a strong correlation between people who have tried Match.com and are ALSO fans of Mojitos&#8230;.but these numbers shed some light on the discrepancy in the willingness of people to self-identify with each product.</p>
<img src="http://feeds.feedburner.com/~r/AdamBreckler/~4/HXMLmoVdu44" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adambreckler.com/are-you-making-grilled-cheese-sandwiches-or-viagra/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adambreckler.com/are-you-making-grilled-cheese-sandwiches-or-viagra</feedburner:origLink></item>
	</channel>
</rss>
