<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kevin Joyner</title>
	<atom:link href="https://www.kevinjoyner.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kevinjoyner.com</link>
	<description>Interesting things from a digital analyst</description>
	<lastBuildDate>Tue, 18 Aug 2015 09:25:42 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.4.2</generator>
	<item>
		<title>Using an Android phone with a broken screen</title>
		<link>https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/</link>
		<comments>https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/#comments</comments>
		<pubDate>Sat, 07 Feb 2015 11:08:07 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=700</guid>
		<description><![CDATA[<p>I can add more detail to this post with later revisions, and you can ask questions in the comments. The situation My sister dropped her Samsung Galaxy Nexus Android phone and shattered the screen, so she gave it to me...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/">Using an Android phone with a broken screen</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I can add more detail to this post with later revisions, and you can ask questions in the comments.</p>
<p><strong>The situation</strong></p>
<p>My sister dropped her Samsung Galaxy Nexus Android phone and shattered the screen, so she gave it to me for my birthday. The screen is blank &#8211; it displays nothing &#8211; and it cannot be used to control the phone at all. Otherwise though, the phone, including the power and volume buttons, is fully functional.</p>
<p>The phone is protected with a PIN that you have to enter when you first power it up or unlock it. It&#8217;s running stock Android; it&#8217;s not rooted; the bootloader is locked; and it&#8217;s never had USB debugging enabled.</p>
<p><strong>Objectives</strong></p>
<ol>
<li>Retrieve the contents of the phone&#8217;s storage, including photographs, which are not backed up anywhere.</li>
<li>Make the phone useful for something, like as a Squeezebox player. This would let me plug it into a hifi and stream music to it.</li>
</ol>
<p><strong>The approach</strong></p>
<ol>
<li>You need to unlock the phone in order to access its storage. The Samsung Galaxy Nexus supports USB On-The-Go. This means that if you buy a USB OTG adapter, you can plug a USB keyboard into it, in order to input keystrokes. Power the phone up, and use this technique to unlock it. My sister told me her PIN, which I just typed on the keyboard&#8217;s row of numbers that appear above the letters (i.e. the number pad didn&#8217;t work); and you hit enter to submit the PIN and unlock the phone.</li>
<li>Quickly, while it stays unlocked, plug the phone into your computer, and its storage will appear in your  computer&#8217;s file browser. Copy the contents somewhere safe. Once you&#8217;ve started copying, the copy process won&#8217;t be interrupted by the phone locking again.</li>
<li>In order to be able to have any practical control over the phone, we want to be able to see and &#8216;touch&#8217; its screen remotely. So, next step: put the phone into bootloader mode, and unlock the bootloader. You&#8217;ll need the platform tools that are part of the Android SDK. Be aware, this step will wipe the phone&#8217;s data, which is why we did steps 1 and 2 above first.</li>
<li>Now that the bootloader&#8217;s unlocked, you can flash a custom recovery that has USB debugging enabled by default. I used <a href="https://www.clockworkmod.com/rommanager" title="ClockworkMod recoveries">ClockworkMod.</a></li>
<li>Next, put the phone into Recovery mode. On the Samsung Galaxy Nexus, this is easy enough without being able to see the screen: from the bootloader, you press the volume down key twice, then the power key.</li>
<li>Now, you need to enable USB debugging in Android, i.e. for when the phone is booted normally. <a href="http://stackoverflow.com/questions/13326806/enable-usb-debugging-through-clockworkmod-with-adb" title="Enable USB debugging through ClockworkMod with adb">Read this post on Stack Overflow.</a> Use ADB to edit <code>/system/build.prop</code> and <code>/data/data/com.android.providers.settings/databases/settings.db</code>. You&#8217;ll need sqlite3 to edit the database file.</li>
<li>You&#8217;ll also need Android to recognise and accept your computer&#8217;s control via ADB. Normally, when you run ADB this authorisation is granted through an on-screen dialog; but with a broken screen you won&#8217;t be able to see or touch that dialog. Instead, you need to manually add your computer&#8217;s ADB public key to Android&#8217;s list of authorised keys. <a href="http://androiddevza.blogspot.co.uk/2013/07/adb-whitelist-issue-and-android-422.html" title="AndroidDevZa post on adding ADB keys to Android">Read this blog post.</a> Your computer&#8217;s key is in <code>~/.android/adbkey.pub</code> and this needs adding to <code>/data/misc/adb/adb_keys</code> on the phone.</li>
<li>So that you can remotely &#8216;touch&#8217; the phone&#8217;s screen, you&#8217;ll need to root the phone. This is done by installing a su binary: you need to install a zip file on the phone. You can <a href="http://download.chainfire.eu/695/SuperSU/UPDATE-SuperSU-v2.45.zip" title="download a su binary">get a su binary zip file here.</a> Still in recovery mode, use ADB to push the zip file onto the phone&#8217;s storage. <a href="http://androidforums.com/threads/cwm-adb-install-zip-command.718870/#post-5813710" title="installing a zip file from recovery with ADB">Read this post on Android Forums.</a> Run <code>recovery --update_package=/sdcard/whatever.zip</code> to install the zip.</li>
<li>Now, you can boot the phone normally. USB debugging should be enabled and your computer should be authorised for ADB. You can use <a href="https://code.google.com/p/androidscreencast/" title="androidscreencast">androidscreencast</a> to see the screen, and you can <a href="http://publish.illinois.edu/weiyang-david/2013/08/08/code-numbers-for-adb-input/" title="Input Android keystrokes using ADB">input keystrokes using ADB.</a> Tab and Enter are really useful keystrokes!</li>
<li><a href="https://play.google.com/store/apps/details?id=com.webkey&#038;hl=en" title="Webkey for Android">Install Webkey remotely, from Google Play.</a></li>
<li>You need to start the Webkey app now, which you can do easily with ADB. <a href="http://stackoverflow.com/questions/22721840/open-app-with-package-name-using-adb" title="starting an app from ADB using the package name">This post on Stack Overflow</a> tells you how to start an app when all you know is the package name. Webkey&#8217;s package name is <code>com.webkey</code>.</li>
<li>Webkey needs root permission. When you start it, you&#8217;ll see (via androidscreencast) a SuperSu dialog open. You&#8217;ll need to quickly issue the tab and enter keystrokes required to grant root permission to the Webkey app.</li>
<li>You&#8217;ll also need to create a Webkey user account, so that you&#8217;ve got credentials with which to log into the phone remotely. You&#8217;ll be able to use ADB input commands to do this.</li>
<li>Webkey&#8217;s up and running, so now access the phone&#8217;s IP address (on your local network) in your computer&#8217;s web browser. Log in with the credentials you created previously.</li>
</ol>
<p>You can now remotely see and &#8216;touch&#8217; the phone&#8217;s screen. You don&#8217;t need the phone plugged in by USB anymore. You can install apps, like <a href="https://play.google.com/store/apps/details?id=de.bluegaspode.squeezeplayer&#038;hl=en" title="SqueezePlayer Android app on Google Play">SqueezePlayer</a>, and enjoy.</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/">Using an Android phone with a broken screen</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My first post for a few years</title>
		<link>https://www.kevinjoyner.com/2015/01/first-post-years/</link>
		<comments>https://www.kevinjoyner.com/2015/01/first-post-years/#respond</comments>
		<pubDate>Sun, 25 Jan 2015 14:04:41 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[apcu]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lms]]></category>
		<category><![CDATA[logitech media server]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[online privacy]]></category>
		<category><![CDATA[php fpm]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[rpi]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=608</guid>
		<description><![CDATA[<p>I&#8217;ve rebuilt my website and I&#8217;m going to start blogging again. Here&#8217;s a list of topics that I might cover: Logitech Media Server, Raspberry Pi &#038; Android renderers, and synchronised multi-room audio Getting a Samsung Galaxy Nexus with a broken...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2015/01/first-post-years/">My first post for a few years</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve rebuilt my website and I&#8217;m going to start blogging again.</p>
<p>Here&#8217;s a list of topics that I might cover:</p>
<ul>
<li>Logitech Media Server, Raspberry Pi &#038; Android renderers, and synchronised multi-room audio</li>
<li><a href="https://www.kevinjoyner.com/2015/02/using-android-phone-broken-screen/" title="Using an android phone with a broken screen">Getting a Samsung Galaxy Nexus with a broken screen up and running and usable as a Squeezebox player</a></li>
<li>Moving my web server to a virtual server and configuring Ubuntu, Nginx, PHP FPM, MariaDB, APCu, SSL certificates, and WordPress</li>
<li>Enhanced link attribution for Google Analytics, and not using JavaScript to add IDs to your link elements</li>
<li>Running your own URL shortening service</li>
<li>My website&#8217;s privacy options</li>
</ul>
<p>I&#8217;ll update this post with links to the relevant pages once I write about these topics; but in the meantime, if you find this page and you&#8217;ve got a question, you could ask in the comments below.</p>
<p>This image featured in this post is by <a href="http://epsos.de/">epSos .de.</a></p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2015/01/first-post-years/">My first post for a few years</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2015/01/first-post-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting on digital marketing:  reach, engagement and revenue</title>
		<link>https://www.kevinjoyner.com/2011/04/reporting-on-digital-marketing-reach-engagement-and-revenue/</link>
		<comments>https://www.kevinjoyner.com/2011/04/reporting-on-digital-marketing-reach-engagement-and-revenue/#respond</comments>
		<pubDate>Sun, 10 Apr 2011 13:02:48 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[engagement]]></category>
		<category><![CDATA[kpis]]></category>
		<category><![CDATA[reach]]></category>
		<category><![CDATA[reporting]]></category>
		<category><![CDATA[revenue]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=491</guid>
		<description><![CDATA[<p>I don&#8217;t much like the acronym &#8216;KPIs&#8217;. It&#8217;s because of how the term is misused, and also because of how the idea of KPIs so often leads to a misuse of web analytics. KPI (usually) stands for &#8220;Key Performance Indicator&#8221;,...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/04/reporting-on-digital-marketing-reach-engagement-and-revenue/">Reporting on digital marketing:  reach, engagement and revenue</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I don&#8217;t much like the acronym &#8216;KPIs&#8217;.  It&#8217;s because of how the term is misused, and also because of how the idea of KPIs so often leads to a misuse of web analytics.</p>
<p>KPI (usually) stands for &#8220;Key Performance Indicator&#8221;, and for me it means &#8220;a number that indicates success&#8221;.  It&#8217;s really rare to come by a true KPI, because it&#8217;s really rare that a number should be so unambiguous that its going up or down, by itself, means either success or failure.  Ten-year net profit (&pound;) is a reasonable KPI, in my book; but then, should it be change, month-on-month&#8230; or deviation from target&#8230;?<span id="more-491"></span></p>
<p>The difficulty here is that metrics must always have context; and without some context, of other metrics, and of human knowledge and intuition, a metric can be ambiguous, uninformative at best, and easily misleading.</p>
<p>And yet still we must boil down web analytics to a spreadsheet.  We must have reports!  We must have &#8216;KPIs&#8217;!  Why is that?</p>
<p>Actually this dependency inherent in virtually every marketer is not such an unreasonable demand.  I provide excel dashboards for my clients, highlighting a few key &#8211; metrics.  It&#8217;s because, with all the detail available, web analytics can feel a bit like being faced with an aircraft cockpit.</p>
<p style="text-align: center;"><img src="https://www.kevinjoyner.com/wp-content/uploads/2011/04/cockpit-300x225.jpg" alt="cockpit dash" title="cockpit dash" width="300" height="225" class="aligncenter size-medium wp-image-492" /></p>
<p>In order to know that we must act quickly &#8211; that something&#8217;s going wrong &#8211; it&#8217;s important to have reporting that is effective, but also <em>simple.</em>  As <a href="http://www.indolent.com">Mike Teasdale</a> will frequently remind you, when a pilot needs to know in a hurry whether he&#8217;s going to suffer a mid-air collision, he ignores all the dials and judges relative trajectories by a speck of dirt on the windscreen&#8230;</p>
<p>For as long as I&#8217;ve worked in digital marketing (nearly four years), reporting has always been focused on conversions, CPA and RoI; and that feels simple, because we all understand the notion of revenue driven as an obvious measure of success.  The problem with revenue and digital marketing though is that for as long as we make the most of our ability to track behaviours online with cookie-based data, rating all our marketing efforts solely with attributed revenue is neither totally effective, nor at all simple.</p>
<p>Not everything drives revenue directly!  Stop trying to report as though it does!</p>
<p>This is something that needs discussing separately, in its own right, but the important point is that by studying measures of reach and engagement, as well as revenue, you can allow each of your different marketing efforts to be credited for the jobs that it does.</p>
<p>Banners get credited for driving awareness and engagement; social media engages your audience, and gets credited with the value it deserves; different parts of your website&#8217;s content get credited with the different types of value that they drive; paid search and the web checkout process still get credited with sales.</p>
<p>And if you want, you can put pound signs next to your engagement metrics &#8211; seriously!  Plus, there aren&#8217;t too many measures of reach and engagement &#8211; you can put them all on the spreadsheet :)</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/04/reporting-on-digital-marketing-reach-engagement-and-revenue/">Reporting on digital marketing:  reach, engagement and revenue</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2011/04/reporting-on-digital-marketing-reach-engagement-and-revenue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web analytics is only part of &#8216;data solutions&#8217;</title>
		<link>https://www.kevinjoyner.com/2011/03/web-analytics-is-only-part-of-data-solutions/</link>
		<comments>https://www.kevinjoyner.com/2011/03/web-analytics-is-only-part-of-data-solutions/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 10:30:10 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[data]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=343</guid>
		<description><![CDATA[<p>Back in November I wrote an introduction to web analytics for my colleagues at Harvest Digital, and it&#8217;s repeatedly come in very handy for clients and training sessions since. The opening slide looks like this: My soundtrack begins with Muddy...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/03/web-analytics-is-only-part-of-data-solutions/">Web analytics is only part of &#8216;data solutions&#8217;</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Back in November I wrote an introduction to web analytics for my colleagues at Harvest Digital, and it&#8217;s repeatedly come in very handy for clients and training sessions since.  The opening slide looks like this:</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-453" title="muddy-waters-money" src="https://www.kevinjoyner.com/wp-content/uploads/2011/04/muddy-waters-money-300x225.jpg" alt="muddy-waters-money" width="300" height="225" /></p>
<p><span id="more-343"></span></p>
<p>My soundtrack begins with Muddy Waters&#8217; &#8216;I just want to make love to you&#8217;, which I find provides an excellent metaphor for the value of web analytics.</p>
<p>Anyway&#8230;  I cover what web analytics is, how it works, why that&#8217;s valuable and how you can sell it; also Google Website Optimizer, the Google Analytics partner network, and analytics as part of what we might call &#8216;data solutions&#8217;.</p>
<p>It&#8217;s this last point that I want to cover here.  Here&#8217;s another slide:</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-454" title="web-analytics-the-nuts" src="https://www.kevinjoyner.com/wp-content/uploads/2011/04/web-analytics-the-nuts-300x225.jpg" alt="web-analytics-the-nuts" width="300" height="225" /></p>
<p>Web analytics can quite easily not be the nuts, which you may find surprising.  The problem is that without finesse and good use, it&#8217;s just clickstream data:  i.e. a record of the content that your visitors view.  At best, this is &#8220;the what&#8221; of your marketing efforts.</p>
<p>When you use visitor classifications and throw in segmentation techniques, in order to achieve some analysis, you begin to get &#8220;the where&#8221; and &#8220;the how much&#8221;; add content testing, like the MVT that you can do with Google Website Optimizer, and it&#8217;s only then that you&#8217;ll begin to understand &#8220;the why&#8221;.</p>
<p>And you need &#8220;the why&#8221;:  after all web analytics is for making decisions.  With clickstream data you might be able to see a series of key metrics and when they change; but you can never act on those metrics until you balance and qualify them with context.  Segmentation, then testing, provide that context, &#8220;the why&#8221;, and so &#8220;the what next&#8221;, which allows you to act on the changes in your metrics.</p>
<p>It doesn&#8217;t stop there.  Web analytics at its best has to be part of a data solutions ecosystem.  Here&#8217;s another slide:</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-456" title="data-solutions" src="https://www.kevinjoyner.com/wp-content/uploads/2011/04/data-solutions-300x225.jpg" alt="data-solutions" width="300" height="225" /></p>
<p>When your draw multiple sources of data together into a central place, they can enrich each other, and work together to personalise and time micro-segmented, customer-focused communications and experiences.  Here&#8217;s a (by no means exhaustive) list of data sources:</p>
<ul>
<li>Web analytics and content testing</li>
<li>Voice of customer surveying</li>
<li>Brand mentions and sentiments (including those of your competitors and their campaigns) scraped from social channels and the web &#8211; e.g. twitter, facebook, forums</li>
<li>Revenue databases, e.g. affiliate click value, and</li>
<li>CRM databases, including call centre records</li>
</ul>
<p>When you link these data sources together with common IDs, or simply over time, then the data can work together to operate your marketing channels:</p>
<ul>
<li>email</li>
<li>paid search</li>
<li>display</li>
<li>call centre</li>
<li>in-store</li>
<li>mobile content</li>
<li>online content</li>
</ul>
<p>People get emails that correspond to their behaviour as observed by web analytics.  The call centre staff offer a discount that corresponds to the customer&#8217;s CRM churn risk; and that customer&#8217;s experience online and in-store is made to correspond too.</p>
<p>This is the stuff that marketing &#8220;decision engine&#8221; softwares, like <a title="Agillic" href="http://agillic.com/">Agillic</a>, and, to a lesser extent, <a title="Performable" href="http://www.performable.com">Perfomable</a> are doing.  It&#8217;s exciting, most of all because it has the power to make advertising really valuable to the consumer&#8230;.</p>
<p>So web analytics is the nuts?  No, not on its own.</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/03/web-analytics-is-only-part-of-data-solutions/">Web analytics is only part of &#8216;data solutions&#8217;</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2011/03/web-analytics-is-only-part-of-data-solutions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Social (media) responsibility</title>
		<link>https://www.kevinjoyner.com/2011/01/social-media-responsibility/</link>
		<comments>https://www.kevinjoyner.com/2011/01/social-media-responsibility/#respond</comments>
		<pubDate>Sun, 16 Jan 2011 22:14:26 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[Politics and the Media]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=387</guid>
		<description><![CDATA[<p>On Monday, footballer Ryan Babel was charged with improper conduct by the Football Association. In a reaction to Liverpool&#8217;s exit from the FA Cup, he posted to twitter a picture of Howard Webb &#8211; &#8216;photoshopped&#8217; to show the referee in...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/01/social-media-responsibility/">Social (media) responsibility</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>On Monday, footballer Ryan Babel was <a title="social media responsibility" href="http://www.guardian.co.uk/football/2011/jan/10/ryan-babel-fa-charge">charged with improper conduct by the Football Association.</a> In a reaction to Liverpool&#8217;s exit from the FA Cup, he posted to twitter a picture of Howard Webb &#8211; &#8216;photoshopped&#8217; to show the referee in Manchester United kit.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-396" title="Howard Webb" src="https://www.kevinjoyner.com/wp-content/uploads/2011/01/Howard-Webb-Twitter-0071.jpg" alt="Howard Webb" width="460" height="276" /></p>
<p><span id="more-387"></span></p>
<p>That is as much of the incident as has sometimes been reported, perhaps because the image of a referee in a team kit grabs attention, and I&#8217;m sure also because <em>it&#8217;s funny.</em> In fact, mightn&#8217;t this have been just a joke?  Isn&#8217;t this reminiscent of (though not quite so horrifying as) <a title="paul chambers twitter conviction" href="http://www.guardian.co.uk/commentisfree/libertycentral/2010/may/11/tweet-joke-criminal-record-airport">Paul Chambers&#8217; recent conviction?</a></p>
<p>Actually, in this case, there was a little less ambiguity than the picture on its own would have preserved.  Babel&#8217;s tweet included the line, &#8220;And they call him one of the best referees? That&#8217;s a joke. SMH [shaking my head].&#8221;  &#8216;Best&#8217; is indeed a subjective opinion when it comes to referees, but the fact remains:  he is the referee, and Babel&#8217;s tweet was a sincere criticism.</p>
<p>For me, I think this puts Babel&#8217;s indiscretion in the same category as <a title="Pete Broadbent facebook gaff" href="http://www.guardian.co.uk/world/2010/nov/23/bishop-pete-broadbent-suspended-royal-wedding">Pete Broadbent&#8217;s disparaging remarks about the royal wedding,</a> posted on Facebook.  We&#8217;re all entitled to make a frustrated and flippant joke about a service provider, even it&#8217;s a little distasteful; and even MPs, <a href="http://www.guardian.co.uk/technology/2010/nov/11/twitter-stoning-conservative-mp">like Gareth Compton,</a> can be allowed to make distasteful jokes; but a Church of England bishop can&#8217;t really get away with a sincere public attack on the monarchy any more than a professional footballer can get away with one on the referee.</p>
<p>It&#8217;s tough to judge:  hardly the clearest cut of lines.  Perhaps you could say, the difficulty is in properly sensing responsibilities (and their transgression) in the context of an unfamiliar medium.  There are two important things with which I think it&#8217;s worth getting familiar:</p>
<ol>
<li>Even if it&#8217;s a &#8216;social network&#8217;, it might still be a public medium.  That means journalists.  Children.  Security professionals.  Your boss.</li>
<li>The written communication of irony will often fail, especially with only 140 characters; and equally it&#8217;s difficult to ascertain &#8211; once in the court room or equlivalent &#8211; that it should have been perceived.</li>
</ol>
<p>I loved <a href="http://www.guardian.co.uk/commentisfree/2010/nov/15/charlie-brooker-twitter-terror-conviction">Charlie Brooker&#8217;s withering response to the judgement on Chambers,</a> and it would be great to be able to keep a new medium like twitter only for perfectly grown-up laid-back people who are hard to offend and who in any case enjoy a good dark joke.  The problem is, when a new medium is successful &#8211; and really worth caring about &#8211; that&#8217;s probably because it&#8217;s accessible to everyone, including Disgruntled of Tunbridge Wells.</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2011/01/social-media-responsibility/">Social (media) responsibility</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2011/01/social-media-responsibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual language</title>
		<link>https://www.kevinjoyner.com/2010/12/visual-language/</link>
		<comments>https://www.kevinjoyner.com/2010/12/visual-language/#respond</comments>
		<pubDate>Sun, 19 Dec 2010 13:09:14 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[symbols]]></category>
		<category><![CDATA[ue]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[visual language]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=372</guid>
		<description><![CDATA[<p>I like the &#8216;User Experience&#8217; discipline in digital marketing. It&#8217;s clever stuff. Particularly, I like ideas about creating intuitive interactivity, and using clear &#8220;visual language&#8221;. Visual language is about how you lay things out on an interface; but it also...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/12/visual-language/">Visual language</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I like the &#8216;User Experience&#8217; discipline in digital marketing.  It&#8217;s clever stuff.  Particularly, I like ideas about creating intuitive interactivity, and using clear &#8220;visual language&#8221;.</p>
<p>Visual language is about how you lay things out on an interface; but it also has to do with the symbols and shapes you use.  Here&#8217;s one of my favourite symbols:  the trippin&#8217; shaver dude.</p>
<p style="text-align: center;"><img src="https://www.kevinjoyner.com/wp-content/uploads/2011/01/trippin-shaver-dude.jpg" alt="trippin shaver dude" title="trippin shaver dude" width="250" height="250" class="aligncenter size-full wp-image-373" /></p>
<p><span id="more-372"></span></p>
<p>Look into his eyes.  He&#8217;s like, very quietly, <em>&#8220;whoooo&#8217;s&#8230; shaving&#8230; me&#8230;. ?&#8221;</em></p>
<p>I like his expression, but the important thing I think is that this is definitely shaving that&#8217;s happening.</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/12/visual-language/">Visual language</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2010/12/visual-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are ad concepts more often now assuming marketing ‘literacy’?</title>
		<link>https://www.kevinjoyner.com/2010/11/are-ad-concepts-more-often-now-assuming-marketing-literacy/</link>
		<comments>https://www.kevinjoyner.com/2010/11/are-ad-concepts-more-often-now-assuming-marketing-literacy/#respond</comments>
		<pubDate>Sat, 06 Nov 2010 11:46:44 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[ad-supported content]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[consumers]]></category>
		<category><![CDATA[free content]]></category>
		<category><![CDATA[product placement]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=352</guid>
		<description><![CDATA[<p>A couple of days ago I spotted these Orange &#38; T-Mobile ads on the tube: Sorry it&#8217;s not a very good picture. Taking photos of adverts on the tube is a bit weird anyway, even without pushing past people to...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/11/are-ad-concepts-more-often-now-assuming-marketing-literacy/">Are ad concepts more often now assuming marketing ‘literacy’?</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>A couple of days ago I spotted these Orange &amp; T-Mobile ads on the tube:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-359" title="Orange T-Mobile concept" src="https://www.kevinjoyner.com/wp-content/uploads/2010/11/Orange-T-Mobile-concept.jpg" alt="Orange T-Mobile concept" width="393" height="159" /></p>
<p>Sorry it&#8217;s not a very good picture.  Taking photos of adverts on the tube is a bit weird anyway, even without pushing past people to get a better shot.<span id="more-352"></span></p>
<p>As I understand it, Orange and T-Mobile are using their mobile networks together to support each other&#8217;s customers.  The ad concept basically is that an Orange and T-Mobile advert are placed side-by-side.  They collaborate as part of the same execution, but each within their own brand guidelines &#8211; like the symbol for <em>yin yang</em>.  The consumer reads, &#8216;teamwork&#8217;, &#8216;togetherness&#8217;, &#8216;sharing&#8217;, &#8216;harmony&#8217;, or whatever.</p>
<p><a title="branding" href="http://www.emarketeers.com/e-insight/integrated-marketing-%E2%80%93-did-orange-and-t-mobile-get-it-right/">Tracey Stern spotted it too;</a> here&#8217;s a clearer illustration lifted from her post:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-361" title="T-Mobile-Orange-Poster-Campaign" src="https://www.kevinjoyner.com/wp-content/uploads/2010/11/T-Mobile-Orange-Poster-Campaign.jpg" alt="T-Mobile-Orange-Poster-Campaign" width="393" height="262" /></p>
<p>Tracey&#8217;s concern was that the novel offering seems to have been broadcast to customers at a surprisingly low level.  I guess that may be true, but what occurred to me about this is something different.</p>
<p>I&#8217;m sure more and more we&#8217;re seeing ad concepts that rely on consumers&#8217; consciousness of marketing itself.  I think that&#8217;s fascinating.  Hasn&#8217;t there traditionally been a rule in advertising &#8211; &#8220;Ssshh! Don&#8217;t let them realise they&#8217;re being marketed to!&#8221; &#8211; where consumers ought not to feel like we&#8217;re being sold to?  Brands should offer honest advice, good value, or expert knowledge&#8230; but never clever marketing!</p>
<p>I suppose that rule is born out of the sensible assumption that consumers don&#8217;t want to pay for marketing; we want to pay for a product. But are things changing?  Especially with the growth of new mediums, we&#8217;re seeing more stuff being given away for free &#8211; music, games, services &#8211; but being bundled with and supported by advertising; and with on-demand television and a million cable TV channels, we&#8217;ve seen traditional advertising methods undermined in favour of increased &#8220;product placement&#8221;.  Advertising is becoming prominent <em>as part</em> of the products we consume, and so perhaps there&#8217;s no use pretending any more:  consumers recognise even the most subtle advertising, we know how it works, and that it&#8217;s essential &#8211; and that can be a new &#8216;hook&#8217; for marketers.</p>
<p>Of course, I&#8217;m acutely aware that perhaps it&#8217;s just me.  I&#8217;m hardly a sound judge on this question, when I work in marketing myself.  I feel convinced that there must be lots of other recent examples of what I&#8217;m talking about, but actually the only one that springs to mind right now is <a href="https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/" title="Incentivising response, and failing faster">the Google one I mentioned in a previous post,</a> and that one was aimed at marketing professionals anyway!  I wonder if I&#8217;m imagining things?</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/11/are-ad-concepts-more-often-now-assuming-marketing-literacy/">Are ad concepts more often now assuming marketing ‘literacy’?</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2010/11/are-ad-concepts-more-often-now-assuming-marketing-literacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking &#8216;Voice of Customer&#8217; with Web Analytics</title>
		<link>https://www.kevinjoyner.com/2010/10/linking-voice-of-customer-with-web-analytics/</link>
		<comments>https://www.kevinjoyner.com/2010/10/linking-voice-of-customer-with-web-analytics/#respond</comments>
		<pubDate>Sun, 31 Oct 2010 23:49:57 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[conversion optimisation]]></category>
		<category><![CDATA[data solutions]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[KISSinsights]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[voice of customer]]></category>
		<category><![CDATA[web analytics]]></category>
		<category><![CDATA[web intelligence]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=305</guid>
		<description><![CDATA[<p>If you&#8217;re reading this then you might already have noticed: for almost a couple of weeks now I&#8217;ve been running the free version of KISSinsights on kevinjoyner.com/blog. &#160; KISSinsights is a tool that can help you collect &#8216;Voice of Customer&#8217;...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/10/linking-voice-of-customer-with-web-analytics/">Linking &#8216;Voice of Customer&#8217; with Web Analytics</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;re reading this then you might already have noticed:  for almost a couple of weeks now I&#8217;ve been running the free version of <a href="http://www.kissinsights.com">KISSinsights</a> on kevinjoyner.com/blog.</p>
<div id="attachment_309" style="width: 500px" class="wp-caption aligncenter"><img src="https://www.kevinjoyner.com/wp-content/uploads/2010/10/KISSinsights-voice-of-customer.jpg" alt="KISSinsights - voice of customer" title="KISSinsights - voice of customer" width="490" height="305" class="size-full wp-image-309" /><p class="wp-caption-text">KISSinsights</p></div>
<p>&nbsp;</p>
<p>KISSinsights is a tool that can help you collect &#8216;Voice of Customer&#8217; data about your website&#8217;s visitors.<span id="more-305"></span> &#8216;Voice of Customer&#8217; research, essentially, is the use of surveys to give your visitors the opportunity to tell you, actively and consciously, what they think.  It can be really useful for collecting new ideas about what your visitors want, or for revealing the reasons for performance problems.</p>
<p>What really interests me though with voice of customer, is that conscious attitudes can be brought together with tracked behaviours:  when someone tells you, for example, that they were disappointed with what they found on your website, you can understand more about that by bringing that attitude together with a record from web analytics data about how that visitor arrived at your site, what content they viewed, and what actions they took.  This gives you much more power to act on your voice of customer responses.</p>
<p>Similarly, if you discover in your web analytics data a &#8216;problem&#8217; visitor segment based on traffic source, or content viewed, you could examine the voice of customer records for that segment in order to help you solve the problem.  Web analytics can often tell you where a problem is, but on its own it doesn&#8217;t often tell you how to solve it.</p>
<p>My solution with KISSinsights and Google Analytics involves using <a href="http://www.dannytalk.com/2010/08/19/read-google-analytics-cookie-script/">Danny Ng&#8217;s work</a> to return a GA session ID into KISSinsights along side a visitor&#8217;s response.  The responses in the KISSinsights reports then include this ID.  In GA, the session ID is not normally visible in reports, so I&#8217;m passing the same session ID also to my GA reports on a session scope <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html">custom variable.</a></p>
<p>I hope you can see the value in voice of customer, and how that is multiplied by an integration with web analytics.  If you&#8217;re doing this already &#8211; differently, or better &#8211; then let me know!</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/10/linking-voice-of-customer-with-web-analytics/">Linking &#8216;Voice of Customer&#8217; with Web Analytics</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2010/10/linking-voice-of-customer-with-web-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data-Driven Marketing (a.k.a. eCRM)</title>
		<link>https://www.kevinjoyner.com/2010/09/data-driven-marketing-a-k-a-ecrm/</link>
		<comments>https://www.kevinjoyner.com/2010/09/data-driven-marketing-a-k-a-ecrm/#respond</comments>
		<pubDate>Wed, 29 Sep 2010 14:02:30 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[behavioural targeting]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[eCRM]]></category>
		<category><![CDATA[web analytics]]></category>
		<category><![CDATA[web intelligence]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=241</guid>
		<description><![CDATA[<p>I was at ad:tech last week, and saw Felix Velarde&#8217;s presentation, &#8216;eCRM strategy made simple&#8217; (the slides for which are linked here from the IDM website). Without wanting to gush too severely, I still have to say that the pres...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/09/data-driven-marketing-a-k-a-ecrm/">Data-Driven Marketing (a.k.a. eCRM)</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I was at <a href="http://www.ad-techlondon.co.uk">ad:tech</a> last week, and saw <a href="http://twitter.com/felixvelarde">Felix Velarde&#8217;s</a> presentation, <a href="http://www.theidm.com/download/pdf/adtech_felix_velarde.pdf">&#8216;eCRM strategy made simple&#8217;</a> (the slides for which are linked here from the IDM website).</p>
<p>Without wanting to gush too severely, I still have to say that the pres was pretty inspirational; which is why I&#8217;m summarising some of it here. Since the PDF is publicly available, I&#8217;ve reproduced a couple of Felix&#8217;s slides (which hopefully is cool!).<span id="more-241"></span></p>
<p>&nbsp;</p>
<p>eCRM is electronic customer relationship marketing.  (Thinking about it now, suddenly I realise what a silly phrase &#8216;customer relationship marketing&#8217; is.  I know we have B2B, but still, how else do you market if not with relation to your customers? Anyway.)</p>
<p>Felix started by referring to a condition common amongst lots of client organisations:  loads of data, describing all sorts of different things, but in as many different separate places. Email lists. Email performance. Organic search reporting. Online &#8216;buzz&#8217;. User-generated content on your own web sites. Web analytics relating to your own web sites. Your e-commerce or revenue database. Loyalty card data. Customer profiling. Call centre&#8230;.</p>
<p>You can do so much more with all this varied data when you bring it together.  It&#8217;s a &#8216;holy grail&#8217;:  the &#8216;single customer view&#8217;; one, combined database, whose value is a million times more than the sum of its parts.</p>
<p>With a bit of work (and sometimes, I suspect, some changes to the way you collect your data), you can do a lot to combine these data sources.  You can also introduce mosaic (i.e. Experian&#8217;s geodemographic) profiling, and so you can begin to segment your database of customers through a really pretty richly informed view of their likely attitudes and behaviour.  You can test your segments against the same in your offline sales data, and so be more confident that your understanding of these different segments is sensible.</p>
[A quick note for paranoid people: it&#8217;s okay.  Nobody cares what your name is, or who you, specifically, are. This is not creepy, it&#8217;s useful. Understanding an audience means also knowing who <em>not</em> to market to.  Who knows, we might all just start seeing helpful advertising.]
<div id="attachment_242" style="width: 500px" class="wp-caption aligncenter"><img src="https://www.kevinjoyner.com/wp-content/uploads/2010/09/combining-data.jpg" alt="Combining Data" title="Combining Data" width="490" height="376" class="size-full wp-image-242" /><p class="wp-caption-text">Combining data</p></div>
<p>&nbsp;</p>
<p>Once you know who your audience is, then you can begin to devise a strategy for helping your different types of audience to research, and then eventually purchase; and to be retained, and even perhaps evangelise for you.</p>
<div id="attachment_245" style="width: 500px" class="wp-caption aligncenter"><img src="https://www.kevinjoyner.com/wp-content/uploads/2010/09/developing-audiences-towards-purchase-and-loyalty.jpg" alt="Developing audiences towards purchase and loyalty" title="Developing audiences towards purchase and loyalty" width="490" height="376" class="size-full wp-image-245" /><p class="wp-caption-text">Developing audiences towards purchase and loyalty</p></div>
<p>&nbsp;</p>
<p>This plan can guide all your marketing activity:  creative design, messaging, media buying, delivery, optimisation. Excuse the cliché, but this truly can be everyone singing from the same hymn sheet.</p>
<p>And the part I really love is this:  it&#8217;s not just about planning or reporting; it&#8217;s about dynamically-optimised delivery.  The same data sources that informed your planning in the first place, will continue to provide a view of your audience.  You keep each customer&#8217;s record updated with the most appropriate segment definition, and you can trigger emails to them as they graduate from one segment to the next. The result is the automatically-delivered ads and content that will most of all appeal to your customers, <em>next.</em></p>
<p>Felix is MD at <a href="http://www.underwired.com">Underwired;</a> they&#8217;ve built <a href="http://mccainitsallgood.co.uk">a website for McCain</a> that he claims is dynamically optimising its own content, within three clicks of a visit, according to each user&#8217;s classification and behaviour as it corresponds to a segmentation scheme. I&#8217;m not sure though.  It just offered me a coupon for hash browns, but everyone loves hash browns, right?</p>
<p>Does anyone else think this stuff is cool? If behavioural advertising works, but it needs to start offering more value to consumers, then it just needs to get better, right?  Like this?</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/09/data-driven-marketing-a-k-a-ecrm/">Data-Driven Marketing (a.k.a. eCRM)</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2010/09/data-driven-marketing-a-k-a-ecrm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incentivising response, and failing faster</title>
		<link>https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/</link>
		<comments>https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 00:58:51 +0000</pubDate>
		<dc:creator><![CDATA[Kevin]]></dc:creator>
				<category><![CDATA[Digital]]></category>
		<category><![CDATA[digital advertising]]></category>
		<category><![CDATA[direct response]]></category>
		<category><![CDATA[incentivised]]></category>
		<category><![CDATA[targeting]]></category>
		<category><![CDATA[tracking]]></category>

		<guid isPermaLink="false">https://www.kevinjoyner.com/?p=199</guid>
		<description><![CDATA[<p>I wonder if anyone else has noticed this awful advert for Brita water-filtering jugs. I was away for two weeks and when I came back it was still there on the wall at Tottenham Court Road tube station. The tag...</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/">Incentivising response, and failing faster</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>I wonder if anyone else has noticed this awful advert for Brita water-filtering jugs.  I was away for two weeks and when I came back it was still there on the wall at Tottenham Court Road tube station. The tag line reads &#8220;Vote for your favourite colour and you could win £2,000.&#8221;<span id="more-199"></span></p>
<p><img class="aligncenter size-full wp-image-221" style="display: block; margin-left: auto; margin-right: auto;" title="Brita Water-Filtering Jugs" src="https://www.kevinjoyner.com/wp-content/uploads/2010/09/brita-water-filtering-jugs.jpg" alt="Incentivised Direct Response" width="490" height="368" /></p>
<p>For some people, that they can finally purchase a water-filtering jug to properly match the curtains is I&#8217;m sure quite compelling, and I know there&#8217;s £2,000 to win, but I can&#8217;t help but be reminded of the pointless drive-to-web concepts lamented in <a href="http://2.bp.blogspot.com/_QjhMFKRvyqo/TGmCVBlyB5I/AAAAAAAADSA/4cM57HC302c/s1600/letter.jpg">Brian&#8217;s &#8216;Open Letter to All of Advertising and Marketing&#8217;.</a> Do people really want to visit an advertiser&#8217;s microsite for no particularly good reason?</p>
<p>A cash incentive may be more motivating than, say, the opportunity to upload a film of yourself explaining in less than thirty seconds why a pink water-filtering jug is so much better than a white one, and might more easily lead to greater response; but we know that luring people with the prospect of material gain often impacts negatively on the quality of a lead.  (Actually, <em>is</em> filtering-jug-fanatical better than sane?)</p>
<p>Like any investment, when an advertiser incentivises response they raise the stakes in their gamble on a profitable return.  So long as the volume of attracted and engaged visitors corresponds to the size of the incentive offered, then that incentive can be as big as the ad&#8217;s reach allows.</p>
<p>But can an incentive go too far?  Can an incentive, for example, be so large that the prospect of actually winning or receiving it becomes incredible, and so not worth pursuing?  &#8220;Nah, I&#8217;ll never win that!&#8221;</p>
<p>Or is there some level of incentive for some brands or products past which consumers begin to conclude, &#8220;they&#8217;re making far too much money &#8211; they can hardly be offering good value!&#8221;</p>
<p>Or maybe there are only so many consumers out there who are capable of forming a genuine opinion about coloured water filters; after a point, increasing your incentive merely brings in more of those who really just want a chance at £2,000, and will unsubscribe you in a flash if you even so much as think about sending them an email.</p>
<p>In digital advertising of course, campaign tracking can help each individual different advertiser get it right.  We can monitor how many people see an ad, and how many of those people respond and engage; we can simultaneously test response rates for different incentive levels, and discover the sweetest one; and we can watch what happens to the ongoing value of each group of responsive consumers, so as to be sure that we maintain a true sense of profitability.  Nobody often can count on getting it right all the time, but we can quickly, continuously and reliably identify what&#8217;s not working, and carry on with the business of getting it right.  As <a href="http://www.kaushik.net/avinash/2009/07/manifesto-web-marketers-analysts.html">Avinash Kaushik has written,</a> &#8220;God created the Internet so we could fail faster&#8221;.</p>
<p>EDIT, 8 October:</p>
<p>I know most people won&#8217;t find this quite so deeply ironic as I do, but I couldn&#8217;t help but notice that the very same placement previously occupied by the rubbish Brita ad was yesterday replaced by this one from Google:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-295" title="Google - display targeting advert" src="https://www.kevinjoyner.com/wp-content/uploads/2010/09/Google-display-targeting-advert1-e1286557019689.jpg" alt="Google - display targeting advert" width="490" height="293" /></p>
<p>The copy reads, &#8220;Making display advertising amazing isn&#8217;t a techie problem. / It&#8217;s a techie dream. / WATCH THIS SPACE. / This ad is for all the media people on the platform, particularly the ones wondering how they can get richer data, better forecasting and more accurate targeting. If you want to know more visit <a href="http://www.google.co.uk/watchthisspace">google.co.uk/watchthisspace</a>&#8221;</p>
<p>Great concept in combination with great media buying, I think.  Certainly media people do &#8216;index&#8217; highly on the platform at Tottenham Court Road, but there are loads of people for whom this ad doesn&#8217;t mean a great deal. This very thought will cross a media person&#8217;s mind; as will the thought of the beauty of digital: you don&#8217;t have to waste inventory, because you can show in an ad placement only when it&#8217;s almost certainly the right person watching.</p>
<p>The post <a rel="nofollow" href="https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/">Incentivising response, and failing faster</a> appeared first on <a rel="nofollow" href="https://www.kevinjoyner.com">Kevin Joyner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.kevinjoyner.com/2010/09/incentivising-response-and-failing-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
