<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<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>stats &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/stats/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Fri, 10 Apr 2026 08:23:05 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>stats &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Displaying WordPress Posts' JetPack Statistics Using stats_get_csv()]]></title>
		<link>https://shkspr.mobi/blog/2016/04/displaying-wordpress-posts-jetpack-statistics-using-stats_get_csv/</link>
					<comments>https://shkspr.mobi/blog/2016/04/displaying-wordpress-posts-jetpack-statistics-using-stats_get_csv/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 15 Apr 2016 13:22:19 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=22775</guid>

					<description><![CDATA[Here&#039;s a quick way to display how many times a WordPress post has been read.  For this, you will need:       A blog running WordPress.     The JetPack plugin installed.     The ability to edit your themes.   Here&#039;s the snippet of code I&#039;m using to add &#34;This post has been read 12,345 times&#34;.  I&#039;ll explain how it works in a bit more detail.  if( function_exists( &#039;stats_get_csv&#039; ) ) {     …]]></description>
										<content:encoded><![CDATA[<p>Here's a quick way to display how many times a WordPress post has been read.</p>

<p>For this, you will need:</p>

<ol>
    <li>A blog running WordPress.</li>
    <li>The JetPack plugin installed.</li>
    <li>The ability to edit your themes.</li>
</ol>

<p>Here's the snippet of code I'm using to add "This post has been read 12,345 times".  I'll explain how it works in a bit more detail.</p>

<pre><code class="language-php">if( function_exists( 'stats_get_csv' ) ) {
     $stats_query = "page_stats_for_" . get_the_ID();

     if ( false === ( $special_query_results = get_transient( $stats_query ) ) ) {
       $stat_options = "post_id=".get_the_ID()."&amp;days=-1";
       $post_stats = stats_get_csv( 'postviews', $stat_options );
       $special_query_results = $post_stats[0]["views"];
       set_transient( $stats_query, $special_query_results, 6 * HOUR_IN_SECONDS );
     }

     if (($special_query_results != null) &amp;&amp; ($special_query_results &gt; 100))
     {
       echo "This post has been read " . number_format($special_query_results) . " times.";
     }
}
</code></pre>

<p>Let's start from the inside out...</p>

<h2 id="get-your-stats"><a href="https://shkspr.mobi/blog/2016/04/displaying-wordpress-posts-jetpack-statistics-using-stats_get_csv/#get-your-stats">Get Your Stats</a></h2>

<p>The call to <code>stats_get_csv()</code> is a wrapper for <a href="https://stats.wordpress.com/csv.php">https://stats.wordpress.com/csv.php</a>.</p>

<p>If you want to see the stats for the post with ID <code>123</code> you'd need to call:</p>

<pre>https://stats.wordpress.com/csv.php?
   api_key=abcxyz&amp;
   blog_uri=example.com&amp;
   post_id=123&amp;
   days=-1&amp;
   table=postviews&amp;
   format=txt</pre>

<p>The <code>days</code> parameter can be set to whatever you like - so <code>7</code> for the last week.  When set to <code>-1</code>, it will return data back to the beginning of time.</p>

<p>To call this in a PHP function, we use:</p>

<pre><code class="language-php">$post_stats = stats_get_csv( 'postviews', "post_id=123&amp;days=-1" );
</code></pre>

<p>This brings back an array, so to access the number of views:</p>

<pre><code class="language-php">$views = $post_stats[0]["views"];
</code></pre>

<p>So, putting it all together, we get:</p>

<pre><code class="language-php">$stat_options = "post_id=".get_the_ID()."&amp;days=-1";
$post_stats = stats_get_csv( 'postviews', $stat_options );
$views = $post_stats[0]["views"];
</code></pre>

<h2 id="caching"><a href="https://shkspr.mobi/blog/2016/04/displaying-wordpress-posts-jetpack-statistics-using-stats_get_csv/#caching">Caching</a></h2>

<p>Once we've got the stats, it's sensible to cache them. WordPress recommends a minimum cache of 180 seconds.  Given that each call can add around 3 seconds of latency, I think it's wise to cache for several hours.</p>

<p>We'll cache this with the <a href="https://codex.wordpress.org/Transients_API">Transients API</a> - a lightweight way to store data semi-permanently.</p>

<p>To store some data for six hours, we use:</p>

<pre><code class="language-php">set_transient( 'reference_to_data', $data, 6 * HOUR_IN_SECONDS );
</code></pre>

<p>We're going to want to store a different result for every post:</p>

<pre><code class="language-php">set_transient( "page_stats_for_" . get_the_ID(), $views, 6 * HOUR_IN_SECONDS );
</code></pre>

<p>To get the data about a specific page, we call</p>

<pre><code class="language-php">get_transient( "page_stats_for_123" );
</code></pre>

<p>Put it all together, and you get:</p>

<pre><code class="language-php">if( function_exists( 'stats_get_csv' ) ) {
     $stats_query = "page_stats_for_" . get_the_ID();

     if ( false === ( $special_query_results = get_transient( $stats_query ) ) ) {
       $stat_options = "post_id=".get_the_ID()."&amp;days=-1";
       $post_stats = stats_get_csv( 'postviews', $stat_options );
       $special_query_results = $post_stats[0]["views"];
       set_transient( $stats_query, $special_query_results, 6 * HOUR_IN_SECONDS );
     }

     if (($special_query_results != null) &amp;&amp; ($special_query_results &gt; 100))
     {
       echo "This post has been read " . number_format($special_query_results) . " times.";
     }
}
</code></pre>

<p>This snippet can be placed in your theme wherever you want a page view to appear.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=22775&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2016/04/displaying-wordpress-posts-jetpack-statistics-using-stats_get_csv/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[One Million]]></title>
		<link>https://shkspr.mobi/blog/2013/06/one-million/</link>
					<comments>https://shkspr.mobi/blog/2013/06/one-million/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 11 Jun 2013 11:53:44 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=8345</guid>

					<description><![CDATA[It&#039;s only a silly number - and not a very accurate one - but it makes me happy.  Thank you for reading - it has truly been my pleasure to write for you. …]]></description>
										<content:encoded><![CDATA[<p>It's only a silly number - and <a href="https://shkspr.mobi/blog/2012/11/nablopomo-stats/">not a very accurate one</a> - but it makes me happy.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/06/1million-fs8.png" alt="One million views on this blog" width="600" height="386" class="aligncenter size-full wp-image-8379">
Thank you for reading - it has truly been my pleasure to write for you.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=8345&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2013/06/one-million/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Surrey Police and the Case of The Misleading Pie Charts]]></title>
		<link>https://shkspr.mobi/blog/2013/03/surrey-police-and-the-case-of-the-misleading-pie-charts/</link>
					<comments>https://shkspr.mobi/blog/2013/03/surrey-police-and-the-case-of-the-misleading-pie-charts/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 07:30:10 +0000</pubDate>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[police]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[surrey]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=7820</guid>

					<description><![CDATA[Surrey County Council have sent every household in the county a booklet explaining how our council tax is being spent.  Within it is a highly political comment from Kevin Hurley, the newly elected Police and Crime Commissioner.  He presents a pie chart showing how the police force spend its money.  Take a look at it and ask yourself this question: what percentage is spent on &#34;Employees&#34;.   …]]></description>
										<content:encoded><![CDATA[<p>Surrey County Council have sent every household in the county a booklet explaining how our council tax is being spent.  Within it is a highly political comment from Kevin Hurley, the newly elected Police and Crime Commissioner.</p>

<p>He presents a pie chart showing how the police force spend its money.  Take a look at it and ask yourself this question: what percentage is spent on "Employees".</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/03/Surrey-Police-Pie-Chart1.jpg" alt="Surrey Police Pie Chart" width="600" height="363" class="aligncenter size-full wp-image-7817">

<p><del datetime="2025-01-23T06:42:40+00:00">Please use this poll to record your guess - answers at the end of this blog.</del></p>

<p>Pie charts have a long and noble history.  They were popularised by Florence Nightingale and were hugely effective in helping politicians understand the causes of death among soldiers during the Crimean War.
<a title="By w:Florence Nightingale (1820–1910). (http://www.royal.gov.uk/output/Page3943.asp) [Public domain], via Wikimedia Commons" href="http://commons.wikimedia.org/wiki/File%3ANightingale-mortality.jpg"><img width="512" alt="Nightingale-mortality" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Nightingale-mortality.jpg/960px-Nightingale-mortality.jpg"></a></p>

<p>As we understand more about the human brain and how we perceive shapes, it is becoming clear that <a href="https://en.wikipedia.org/wiki/Pie_chart#Use_and_effectiveness">pie charts are ineffective for representing complex information</a>.</p>

<p>2D pie charts can still serve a useful purpose in limited circumstances.  The real problem is with <em>3D</em> pie charts.  As far as I can tell, these abominations were popularised by Microsoft's Excel charting software.</p>

<p>3D charts distort the view of the data in such a way that it becomes increasingly hard to understand the information being presented.  A picture being worth 1000 words, allow me to demonstrate:
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/03/GraphJam3d.jpg" alt="GraphJam3d" width="499" height="335" class="aligncenter size-full wp-image-7818"></p>

<p>So, just how bad is Surrey Police's Pie Chart?  In an <em>extremely</em> scientific study of asking half a dozen people, they all guessed between 75% and 85%.  That's quite a wide range considering it's a multi-million pound difference.</p>

<p>On the opposite page to the pie chart is this summary of spending.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/03/Police-Spending.jpg" alt="Police Spending" width="600" height="320" class="aligncenter size-full wp-image-7816"></p>

<p>In slightly more readable format, it is:</p>

<table>
    <tbody><tr>
        <td><b>Category</b></td>
        <td><b>£</b></td>
        <td><b>%</b></td>
    </tr>
    <tr>
        <td><b>Employees</b></td>
        <td>£181.70</td>
        <td>81.9%</td>
    </tr>
    <tr>
        <td><b>Premises</b></td>
        <td>£8.00</td>
        <td>3.6%</td>
    </tr>
    <tr>
        <td><b>Supplies</b></td>
        <td>£27.20</td>
        <td>12.3%</td>
    </tr>
    <tr>
        <td><b>Transport</b></td>
        <td>£5.00</td>
        <td>2.3%</td>
    </tr>
    <tr>
        <td><b>Total</b></td>
        <td>£216.90</td>
        <td>97.7%</td>
    </tr>
</tbody></table>

<p><br>
A few interesting things to note here.</p>

<p>Firstly, how do we calculate the percentages?  The total spend isn't mentioned in the report (£216.90).  If we use that, "Employees" accounts for 81.9% of spending.</p>

<p>If we take into account the gross expenditure (£207.70) the figure jumps to <strong>87.5%</strong>.</p>

<p>Secondly, if we do assume that we're using the unreported total spend - there is at least 2% missing.  Some of which can be explained by rounding - but I wonder what the rest of the money is spent on.</p>

<p>Given the above, I don't think the provided pie chart allows Surrey residents to see an accurate view of how their hard earned money is being spent.</p>

<p>Hopefully, this side-by-side - of the above data - will show you how 3D pie charts distort data and end up misleading their audience.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/03/3d-2d-pie-chart-side-by-side.jpg" alt="3d 2d pie chart side by side" width="600" height="266" class="aligncenter size-full wp-image-7827"></p>

<p>With this overlay, we can see the distortion much more clearly.  The smaller sections of the chart look disproportionately larger.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/03/Pie-Charts-Overlayed.png" alt="Pie Charts Overlayed" width="408" height="377" class="aligncenter size-full wp-image-7828">
It's time to announce a zero tolerance crackdown on dodgy data representation.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=7820&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2013/03/surrey-police-and-the-case-of-the-misleading-pie-charts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[What I've Learned From A Crazy Month of Blogging]]></title>
		<link>https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/</link>
					<comments>https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 30 Nov 2012 12:05:04 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Liz]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=6780</guid>

					<description><![CDATA[Well. That was an intense NaBloPoMo!  I published a blog post every day in November - as I have for the last few years - but this was unlike anything that went before.  I had over 50,000 viewers in a single day due to one of my posts, got hit by reddit and HackerNews, and even got asked to do some paid blogging!  I started this month hoping to average 1,000 page views per day.  This was so I…]]></description>
										<content:encoded><![CDATA[<p>Well. That was an <em>intense</em> NaBloPoMo!  I published a blog post every day in November - as I have for the last few years - but this was unlike anything that went before.  I had over 50,000 viewers in a single day due to one of my posts, got hit by reddit and HackerNews, and even got asked to do some paid blogging!</p>

<p>I <a href="https://shkspr.mobi/blog/2012/11/nablopomo-stats/">started this month</a> hoping to average 1,000 page views per day.  This was so I could hit the (pretty arbitrary) milestone of half a million page views.</p>

<p>This is what my November looked like...
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/November-Stats.png" alt="" title="November Stats" width="597" height="404" class="aligncenter size-full wp-image-6817"></p>

<p>Which means my total stats since 2009 are...
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/Total-Stats.png" alt="" title="Total Stats" width="600" height="409" class="aligncenter size-full wp-image-6818"></p>

<p>So, let me take you through what I learned.</p>

<h2 id="when-you-help-others-youre-really-only-helping-yourself"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#when-you-help-others-youre-really-only-helping-yourself">When You Help Others - You're Really Only Helping Yourself</a></h2>

<p>I've been badgering my wife constantly to write on <a href="https://web.archive.org/web/20121203140518/http://mymisanthropicmusings.org.uk/">her blog</a>.  I managed to convince her to partake in NaNoBloMo and she has done marvellously.  I've been seriously impressed with her writing and her dedication. It has been great seeing her struggle with the challenge and having it pay off so magnificently.</p>

<h2 id="people-are-stupid"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#people-are-stupid">People Are Stupid</a></h2>

<p>I just wasn't able to put this adequately into words until my wife blogged, but some <a href="https://web.archive.org/web/20131217000036/http://mymisanthropicmusings.org.uk/people-are-stupid-parts-3-4/">people really are stupid</a>.  I've been told that my arguments are invalid because (in no particular order)...</p>

<ul>
    <li>I haven't calculated something to N decimal places</li>
    <li>I have an obvious anti-Apple bias</li>
    <li>I have an obvious anti-Android bias</li>
    <li>I used hyperbole</li>
    <li>I mistakenly claimed something took X months, when it actually took X+1 months</li>
</ul>

<p>In short, people seem to ignore the bigger picture, find the smallest and most inconsequential mistake, and then use that to hang an entire argument.  Predictable, I guess, but a little depressing.</p>

<p>I <em>could</em> try to write everything in formal language, perhaps written in pure predicate logic, and illustrated with examples backed up by no less than 9 separate sources - but I have the feeling that would be a little dull to read.  There must be a middle ground somewhere.</p>

<h2 id="you-only-tell-me-you-love-me-when-youre-drunk"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#you-only-tell-me-you-love-me-when-youre-drunk">You Only Tell Me You Love Me When You're Drunk</a></h2>

<p>I <strong>hate</strong> being told I'm wrong.  Especially by anonymous commentators.  By contrast, I <strong>love</strong> being told I'm right.  Especially by anonymous commentators.</p>

<p>It's a weird experience to see strangers praising and damning you in - so it seems - equal measure.  Bad reviews stick around in your brain far more than the good ones.</p>

<p>Interestingly, when I've tackled the anonymous people saying I'm an idiot, they've either apologised straight away - or run away.</p>

<h2 id="bandwidth"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#bandwidth">Bandwidth</a></h2>

<p>May 12, 2012 held the record for the busiest day - 17,186 views thanks to this article about the <a href="https://shkspr.mobi/blog/2012/05/the-sim-less-phone-is-coming-and-it-should-scare-the-shit-out-of-you/">SIM-less Phone</a>.</p>

<p>My <a href="https://shkspr.mobi/blog/2012/11/i-dont-want-to-be-part-of-your-fucking-ecosystem/">ecosystem blogpost</a> got 37,776 views on November 23rd.  The 24th of November saw it get 51,928 views!</p>

<p><a href="https://web.archive.org/web/20130415111404/http://whichwasnice.webs.com/">Which was nice</a>.</p>

<p>Luckily, my blog is heavily cached and has gzip compression turned on - but even still, I started getting alerts from my host that I was edging close to the limits of my agreed bandwith.  So, I bought some more.</p>

<p>My hosting provider - Vidahost - stayed rock solid even at the height of the traffic. They were incredibly quick to respond to my questions and even gave me some free bandwidth while I was waiting to see if the traffic would continue growing.</p>

<h2 id="tomorrow-never-knows"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#tomorrow-never-knows">Tomorrow Never Knows</a></h2>

<p>I was completely stunned by the posts which "made it" and those which fizzled into obscurity.  I thought both the one about the <a href="https://shkspr.mobi/blog/2012/11/whats-the-front-page-of-hackernews-worth/">HackerNews Effect</a> and <a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/">Why Don't Amazon Sell ePubs</a> would do rather better than they did.</p>

<p>I don't know if they contained poor ideas, weren't well written, or just didn't get promoted properly. But, there we are.</p>

<h2 id="dont-hold-back"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#dont-hold-back">Don't Hold Back</a></h2>

<p>The majority of posts were written over the last two years. One was even three years old! They'd all been sat in the draft state waiting for me to be happy with them.</p>

<p>The <a href="https://shkspr.mobi/blog/2012/11/smuggling-usb-sticks/">Smuggling USB sticks post</a> was my first big "hit" of this NaloPoMo - it got 22,553 views in a single day! Yet it was <a href="https://shkspr.mobi/blog/2010/07/digital-economy-act-deappg/">first written in 2010 after the BPI threatened to sue me</a>.  I'm not really sure why I sat on it for so long...</p>

<p>So, the moral is either "publish those posts before they get too old" or, alternatively, "Let those old posts mature like a fine wine."</p>

<h2 id="forward-never-backward"><a href="https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/#forward-never-backward">Forward, Never Backward</a></h2>

<p>I'm not sure if I can keep up with <a href="http://www.richardherring.com/warmingup/">Richard Herring in blogging every day</a> - although I do have a few posts lined up for December.  It's been a fun - and slightly stressful - November, so perhaps it's time to take a short break.</p>

<p>Thanks for reading!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=6780&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/11/what-ive-learned-from-a-crazy-month-of-blogging/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[What's The Front Page of HackerNews Worth?]]></title>
		<link>https://shkspr.mobi/blog/2012/11/whats-the-front-page-of-hackernews-worth/</link>
					<comments>https://shkspr.mobi/blog/2012/11/whats-the-front-page-of-hackernews-worth/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 22 Nov 2012 12:37:38 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[hackernews]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[ycombinator]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=6705</guid>

					<description><![CDATA[One of the things that jollies me along during NaBloPoMo (where I have to write a blog post every single day in November) is seeing that people are reading my blog.  I like watching the visitor counter tick gently upwards. I also love to see people discussing, arguing, and commenting on the posts I write.  When I started this month, I looked at the blog&#039;s statistics and decided I wanted to get…]]></description>
										<content:encoded><![CDATA[<p>One of the things that jollies me along during NaBloPoMo (where I have to write a blog post every single day in November) is seeing that people are reading my blog.  I like watching the visitor counter tick gently upwards. I also love to see people discussing, arguing, and commenting on the posts I write.</p>

<p>When I started this month, I <a href="https://shkspr.mobi/blog/2012/11/nablopomo-stats/">looked at the blog's statistics</a> and decided I wanted to get 30,000 views in the month of November.  I normally average 600 views per day.  So, how to get that up to 1,000 per day?</p>

<p>I had two main strategies (other than writing interesting and engaging content.</p>

<ol>
    <li>Share my posts on social networks - letting my friends know that I'd published something.</li>
    <li>Submit my posts to external sites - use HackerNews or Reddit to share my writing.</li>
</ol>

<p>I used the <a href="http://jetpack.me/support/publicize/">JetPack Publicize plugin</a> to send my content to Twitter, Facebook, and LinkedIn.</p>

<p>For external sites, I thought that <a href="http://ycombinator.com/">Y Combinator</a>'s <a href="http://news.ycombinator.com/">HackerNews</a> was the best destination for some of my posts.</p>

<p>My first post - about <a href="https://shkspr.mobi/blog/2012/11/smuggling-usb-sticks/">smuggling USB sticks</a> - was submitted at 1300GMT on Sunday 11th November and, fairly quickly, made it to the front page as readers upvoted it.  Near as I can tell, it remained on the front page for 24 hours.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/HackerNews-Stats.png" alt="SD Card Stats" title="HackerNews Stats" width="420" height="340" class="aligncenter size-full wp-image-6707">

<p>So, <a href="http://news.ycombinator.com/item?id=4769326">216 points and 93 comments on HackerNews</a> resulted in roughly 30,000 extra visitors.</p>

<p>You can see a graph of the performance throughout the day on <a href="http://hnrankings.info/4769326/">Hacker News Rankings</a>.
<a href="http://hnrankings.info/4769326/"><img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/HN-Stats-USB.png" alt="HN Stats USB" title="HN Stats USB" width="500" height="301" class="aligncenter size-full wp-image-6724"></a></p>

<p>My next successful post was about the <a href="https://shkspr.mobi/blog/2012/11/helen-goodman-mp-is-particularly-stupid/">antics of Helen Goodman MP</a> and her self-proclaimed inability to use the Internet.</p>

<p>I figured 1300GMT on a Friday was a good time to submit again.  It catches UK workers having or returning from lunch - and it's 0800 on the East Coast of the USA, so catches commuters there.</p>

<p>The post stayed on the front page for roughly 12 hours before dropping off.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/HackerNews-Goodman-Stats.png" alt="Goodman Stats" title="HackerNews Goodman Stats" width="479" height="340" class="aligncenter size-full wp-image-6706">
The blog got <a href="http://news.ycombinator.com/item?id=4793670">112 points and 103 comments</a>.  It netted roughly an extra 12,000 visitors.</p>

<p>Again, you can see a graph of the performance throughout the day on <a href="http://hnrankings.info/4793670/">Hacker News Rankings</a>.
<a href="http://hnrankings.info/4793670/"><img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/HN-Stats-Goodman.png" alt="HN Stats Goodman" title="HN Stats Goodman" width="500" height="300" class="aligncenter size-full wp-image-6725"></a>
The majority of these visitors came directly from HackerNews - but people obviously started sharing the posts on Twitter, Facebook, and via newsletters.</p>

<p>Once the fuss had died down, these were the sites which sent my blog the most traffic.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/Referer-Stats.png" alt="Referrer Stats" title="Referrer Stats" width="288" height="439" class="aligncenter size-full wp-image-6708">

<p>Now, not <a href="http://news.ycombinator.com/submitted?id=edent">every story I've submitted</a> has done so well. Most have never even troubled the front page.  I obviously haven't yet hit on the winning formula of decent content, inflammatory headline, and serendipitous timing.</p>

<p>As an <em>extremely</em> rough metric, <strong>every hour on the front page of HackerNews was worth around 700 page views</strong>.  It's too early to say whether that has lead to a pronounced increase in my regular visitor numbers.</p>

<p>I don't have adverts on my blog, although I do have Amazon affiliate links.  They netted me a total of £4.04.  I also encouraged a bunch of people to <a href="http://www.openrightsgroup.org/join/">join the Open Rights Group</a>, which has put me in the running to win a <a href="http://www.makeymakey.com/">MaKey MaKey</a></p>

<p>A special "thank you" to my hosting provider - Vidahost. They stayed rock solid even as I received over a month's worth of traffic in a single day.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=6705&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/11/whats-the-front-page-of-hackernews-worth/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[NaBloPoMo - Stats]]></title>
		<link>https://shkspr.mobi/blog/2012/11/nablopomo-stats/</link>
					<comments>https://shkspr.mobi/blog/2012/11/nablopomo-stats/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 01 Nov 2012 07:00:15 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=6390</guid>

					<description><![CDATA[As we enter another NaBloPoMo - where I try to write a blog post each day in Novemeber - I thought I&#039;d take a look back at how this blog has developed.  On Friday, October 30, 2009, I switched on WordPress statistics so I could get a better idea of what was popular on my site. My average traffic back then was 80 visits per day.  Not bad for a backwater blog.  Since then, my writing has been…]]></description>
										<content:encoded><![CDATA[<p>As we enter another <a href="https://web.archive.org/web/20121102181022/http://www.blogher.com/sign-novembers-nablopomo-and-join-blogging-party">NaBloPoMo</a> - where I try to write a blog post each day in Novemeber - I thought I'd take a look back at how this blog has developed.</p>

<p>On Friday, October 30, 2009, I switched on WordPress statistics so I could get a better idea of what was popular on my site. My average traffic back then was 80 visits per day.  Not bad for a backwater blog.</p>

<p>Since then, my writing has been getting better (I hope), my content has become more interesting, and I've had several stories which have spread far and wide.</p>

<p>The blog now gets ~600 visits per day.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/11/monthly-blog-stats.png" alt="monthly blog stats" title="monthly blog stats" width="600" height="199" class="aligncenter size-full wp-image-6476">

<p>What I find interesting is that it's some of the older posts which get the most regular traffic.  This post about <a href="https://shkspr.mobi/blog/2009/05/nitdroid-installing-android-on-the-nokia-n810/">getting Android to run on Nokia phones</a> is often in my "top ten" list - despite being published over three years ago.</p>

<p>May 12, 2012 was the busiest day with 17,186 views thanks to this article about the <a href="https://shkspr.mobi/blog/2012/05/the-sim-less-phone-is-coming-and-it-should-scare-the-shit-out-of-you/">SIM-less Phone</a>.</p>

<h2 id="arbitrary-milestones"><a href="https://shkspr.mobi/blog/2012/11/nablopomo-stats/#arbitrary-milestones">Arbitrary Milestones</a></h2>

<p>I'm not sure how accurate the stats are, but since they were set up (two years after this blog started) I've had <strong>470,034 views</strong> in total.</p>

<p>So, my goal is to get to the half million mark.  Hopefully by the end of NaBloPoMo or, more realistically, by the end of 2012.</p>

<p>Here we go!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=6390&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/11/nablopomo-stats/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Facebook's Mobile Adverts - Real Stats]]></title>
		<link>https://shkspr.mobi/blog/2012/10/facebooks-mobile-adverts-real-stats/</link>
					<comments>https://shkspr.mobi/blog/2012/10/facebooks-mobile-adverts-real-stats/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 17 Oct 2012 17:12:18 +0000</pubDate>
				<category><![CDATA[badvertising]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=6419</guid>

					<description><![CDATA[Facebook has been getting a lot of criticism for its lack of mobile revenue.  A fact it tried to hide from its IPO.  Much ink has been spilled, but is it really necessary for Facebook to worry?  Here&#039;s a quick case study.  Facebook has, in its infinite wisdom, decided that I would be interested in adverts for cancer.  Or, perhaps, AXA have decided that 30 something males are a prime market.   The …]]></description>
										<content:encoded><![CDATA[<p>Facebook has been getting a lot of criticism for its lack of mobile revenue.  <a href="http://www.bloomberg.com/news/2012-10-10/facebook-fought-sec-to-keep-mobile-risks-hidden-before-ipo-crash.html">A fact it tried to hide from its IPO</a>.  Much ink has been spilled, but is it really necessary for Facebook to worry?  Here's a quick case study.</p>

<p>Facebook has, in its infinite wisdom, decided that I would be interested in adverts for cancer.  Or, perhaps, AXA have decided that 30 something males are a prime market.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/10/Screenshot-from-2012-10-17-173848.png" alt="" title="Facebook Advert Screenshot" width="602" height="449" class="aligncenter size-full wp-image-6420"></p>

<p>The creator of the advert was <a href="http://www.eqtr.com">Equator</a>'s Fiona Dow who, judging from <a href="https://web.archive.org/web/20150421164646/https://bitly.com/u/fionaeqtr">her bitly profile</a> just <em>loves</em> posting about cancer.</p>

<p>As <a href="https://shkspr.mobi/blog/tag/bit-ly/">I have mentioned several times before</a>, bitly links are a great way to (unintentionally) share your stats.  If we <a href="https://web.archive.org/web/20150421163635/https://bitly.com/PlDsrf+">look at the clickthrough stats for this advert</a>, we can find some interesting nuggets.</p>

<p>Here's the biggie - referrers shows where people where when they clicked on the link:
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/10/Screenshot-from-2012-10-17-173728.png" alt="" title="Facebook Mobile Advert Stats" width="449" height="421" class="aligncenter size-full wp-image-6421"></p>

<p>In total, nearly half of all clicks came from the mobile site.</p>

<p>Perhaps this is why Facebook hasn't jumped into bed with any dedicated mobile advertiser?  It would seem that users are equally willing to click on Facebook's "Sponsored Stories" on mobile as well as web.</p>

<p>(This assumes that AXA targetted both platforms equally).</p>

<p>The only fly in the ointment is, you guessed it, AXA don't have a mobile friendly site.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2012/10/2012-10-17-17.45.14.png"><img src="https://shkspr.mobi/blog/wp-content/uploads/2012/10/2012-10-17-17.45.14-168x300.png" alt="AXA non-mobile site" title="AXA non-mobile site" width="168" height="300" class="aligncenter size-medium wp-image-6424"></a></p>

<p>I've been banging on about mobile-friendly advertising for years - and still advertisers don't get it! Not everyone has an iPhone. Not everyone who has an iPhone is on WiFi or 3G. Not every one want to have to pinch and zoom.  If the first impression you're giving your customers is that you don't care about their needs - don't expect them to stick around too long.</p>

<p>So based on this datum, Facebook users are willing to click on mobile ads - all it now requires is Facebook to show them at appropriate times and advertisers to create mobile-dedicated campaigns.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=6419&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/10/facebooks-mobile-adverts-real-stats/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Train Tickets With QR Codes]]></title>
		<link>https://shkspr.mobi/blog/2012/04/train-tickets-with-qr-codes/</link>
					<comments>https://shkspr.mobi/blog/2012/04/train-tickets-with-qr-codes/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 24 Apr 2012 14:52:42 +0000</pubDate>
				<category><![CDATA[badvertising]]></category>
		<category><![CDATA[qr]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[QR Codes]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[trains]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5610</guid>

					<description><![CDATA[No, I&#039;m not talking about Masabi&#039;s innovative technology, but of this rather odd bit of advertising found on the back of a train ticket.  There&#039;s no specific call to action - but there&#039;s not much space to play with. Let&#039;s give it a scan...   sigh A non-mobile site. With an Adobe Flash plugin in the top right which won&#039;t work on any iPhones.  Why on Earth do marketing companies insist on pointing…]]></description>
										<content:encoded><![CDATA[<p>No, I'm not talking about <a href="http://www.masabi.com/">Masabi's innovative technology</a>, but of this rather odd bit of advertising found on the back of a train ticket.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/04/QR-Codes-on-Train-Tickets.jpg" alt="QR Codes on Train Tickets" title="QR Codes on Train Tickets" width="512" height="384" class="aligncenter size-full wp-image-5611">
There's no specific call to action - but there's not much space to play with. Let's give it a scan...
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/04/Train-Tickets-non-mobile-friendly.png" alt="Train Tickets non-mobile friendly" title="Train Tickets non-mobile friendly" width="240" height="400" class="aligncenter size-full wp-image-5612"></p>

<p><em>sigh</em> A non-mobile site. With an Adobe Flash plugin in the top right which won't work on any iPhones.  Why on Earth do marketing companies insist on pointing phones to non-mobile sites. It really bemuses me.  Stations rarely have good signal (too many people leads to local network congestion) and, besides, large sites are a right pig to use on a small screen.</p>

<h2 id="stats"><a href="https://shkspr.mobi/blog/2012/04/train-tickets-with-qr-codes/#stats">Stats</a></h2>

<p>I've blogged several times about using <a href="https://shkspr.mobi/blog/tag/bit-ly/">Bit.ly links in QR codes</a>. With a little bit of hacking (adding at + character to the end of the URL) we can <a href="https://web.archive.org/web/20121025161617/http://bitly.com/yCFLtT+/global">see how many people have been scanning the code</a>.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/04/QR-Click-Stats-Rail.png" alt="QR Click Stats Rail" title="QR Click Stats Rail" width="480" height="506" class="aligncenter size-full wp-image-5613">

<p>I don't know how many of these tickets have been printed. That might be a really good conversion rate - but I doubt it.  I only noticed the QR code because someone had dropped their ticket and it landed face-down. Realistically, how many people look at the back of their tickets?</p>

<p>The best campaign in the world would fail if it's not put in front of an audience.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5610&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/04/train-tickets-with-qr-codes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[TfL QR Followup - 5,000 scans per month!]]></title>
		<link>https://shkspr.mobi/blog/2012/04/tfl-qr-followup-5000-scans-per-month/</link>
					<comments>https://shkspr.mobi/blog/2012/04/tfl-qr-followup-5000-scans-per-month/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 10 Apr 2012 13:21:07 +0000</pubDate>
				<category><![CDATA[qr]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[tfl]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5515</guid>

					<description><![CDATA[At the start of 2012, I revealed how many scans TfL&#039;s QR campaign was getting.    A lot of comments on Twitter &#38; Google+ dismissed these results as a success.  A typical response was:  70 scans a day? In a city of millions? Rubbish!  This fails to address something that advertisers are conspicuously loathe to reveal - the true &#34;response rate&#34; of any advert is hard to calculate.  How many phone…]]></description>
										<content:encoded><![CDATA[<p>At the start of 2012, <a href="https://shkspr.mobi/blog/2012/01/real-qr-statistics-from-tfl/">I revealed how many scans TfL's QR campaign was getting</a>.</p>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TfL-QR-Detail.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TfL-QR-Detail.jpg" alt="TfL QR Detail" title="TfL QR Detail" width="500" height="375" class="aligncenter size-full wp-image-5205"></a></p>

<p>A lot of comments on Twitter &amp; Google+ dismissed these results as a success.  A typical response was:</p>

<blockquote><p>70 scans a day? In a city of millions? <strong>Rubbish!</strong></p></blockquote>

<p>This fails to address something that advertisers are conspicuously loathe to reveal - the true "response rate" of any advert is hard to calculate.  How many phone calls, visits to a website, or SMS interactions are directly attributable to a regular poster?  No one really knows - or, if they know, they're not telling.</p>

<p>For the <em>first time</em>, we're able to see how many people are reacting to an advert, scanning a code, and then visiting a site.</p>

<p>Currently, TfL's campaign is running at 5,000 scans per month - peaking at 259 scans on April 3rd.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/04/tfl-statistics-5000-clicks.jpg" alt="tfl statistics 5000 clicks" title="tfl statistics 5000 clicks" width="440" height="378" class="aligncenter size-full wp-image-5517"></p>

<p>Or, 16,000 in the last five months.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/04/tfl-statistics-months-16000-clicks.jpg" alt="tfl statistics months 16000 clicks" title="tfl statistics months 16000 clicks" width="440" height="365" class="aligncenter size-full wp-image-5516">
With a rather nice growth in usage in the last few months.</p>

<p>Here come the nay-sayers....</p>

<blockquote><p>But... But.... How many sites is that across? Millions of people, thousands of sites, only a few scans?  <strong>Rubbish!</strong></p></blockquote>

<p>So, I performed a <a href="https://www.whatdotheyknow.com/request/location_of_posters_with_qr_code">Freedom of Information request to TfL</a>.</p>

<p>There were around 400 sites showing these posters in November. That may have changed by now.</p>

<p>Ideally, I would have liked TfL to have created a unique QR code for each poster. That way we could see Putney gets more scans than Waterloo, for example. But I appreciate the logistical difficulties of that!</p>

<h2 id="phone-use"><a href="https://shkspr.mobi/blog/2012/04/tfl-qr-followup-5000-scans-per-month/#phone-use">Phone Use</a></h2>

<p>We also get some interesting statistics about the makes of phones that Londoners use:</p>

<table>
<thead>
<tr><th>Platforms</th><th>Count</th><th>Percentage</th><th>Change from January</th></tr>
</thead>
<tbody><tr><td>iPhone</td><td>9001</td><td>56%</td><td>+12</td></tr>
<tr><td>Android</td><td>3651</td><td>23%</td><td>-4</td></tr>
<tr><td>BlackBerry</td><td>2869</td><td>18%</td><td>-4</td></tr>
<tr><td>Windows</td><td>179</td><td>1%</td><td>-</td></tr>
</tbody></table>

<p>iPhone has surged ahead - at the expense of Android and BlackBerry. Windows Phone 7 still remains a minority sport.</p>

<h2 id="haterz-gonna-h8"><a href="https://shkspr.mobi/blog/2012/04/tfl-qr-followup-5000-scans-per-month/#haterz-gonna-h8">Haterz Gonna H8</a></h2>

<p>Frankly, I don't care too much what the doom-mongers say.  Having over 16,000 responses to a poster campaign sounds like a success to me.  And, best of all, the <a href="http://goo.gl/info/dkooC">data is open for anyone to investigate</a>.</p>

<p>If you disagree with me - I politely ask you to show your workings :-)</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5515&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/04/tfl-qr-followup-5000-scans-per-month/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Real QR Statistics from TfL]]></title>
		<link>https://shkspr.mobi/blog/2012/01/real-qr-statistics-from-tfl/</link>
					<comments>https://shkspr.mobi/blog/2012/01/real-qr-statistics-from-tfl/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sat, 07 Jan 2012 09:35:19 +0000</pubDate>
				<category><![CDATA[qr]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[tfl]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5203</guid>

					<description><![CDATA[Last year, I suggested that TfL should use QR codes to point to their excellent mobile countdown service.  Looks like someone was listening!  I spotted this poster at a tube station.    Nestled in the corner is a QR code pointing at the mobile bus countdown service!   This is a close-to-perfect use of QR.       Points to a mobile site.     Easy to scan code.     Good call to action.   As I…]]></description>
										<content:encoded><![CDATA[<p>Last year, I suggested that <a href="https://shkspr.mobi/blog/2011/10/qr-and-tfl-countdown/">TfL should use QR codes to point to their excellent mobile countdown service</a>.</p>

<p>Looks like someone was listening!  I spotted this poster at a tube station.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TfL-QR.jpg" alt="TfL QR Poster" title="TfL QR Poster" width="320" height="427" class="aligncenter size-full wp-image-5204">

<p>Nestled in the corner is a QR code pointing at the mobile bus countdown service!
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TfL-QR-Detail.jpg" alt="TfL QR Detail" title="TfL QR Detail" width="500" height="375" class="aligncenter size-full wp-image-5205"></p>

<p>This is a close-to-perfect use of QR.</p>

<ul>
    <li>Points to a mobile site.</li>
    <li>Easy to scan code.</li>
    <li>Good call to action.</li>
</ul>

<p>As I suggested  <a href="https://shkspr.mobi/blog/2011/10/qr-and-tfl-countdown/">in my original post</a>, TfL could customise the code, or print a separate one for each bus stop.  This is, however, an excellent start.</p>

<p>What's particularly useful is that TfL are using the goo.gl URL shortener - meaning <a href="https://shkspr.mobi/blog/2012/01/tsas-qr-statistics/">we can see their statistics</a>!</p>

<h2 id="statistics"><a href="https://shkspr.mobi/blog/2012/01/real-qr-statistics-from-tfl/#statistics">Statistics</a></h2>

<p>There's a dearth of good quality QR statistics which are publicly available.  What is available is often put through the lens of a marketing team.  So it's particularly refreshing to get the data straight from the source.</p>

<p>One simply needs to append any goo.gl URL with a "+" in order to see the statistics.</p>

<p>Let's dive in!</p>

<p>Since their launch in November, the QR codes have been scanned 4,500 times.  I don't know how many of these posters are up, but that seems like a pretty impressive number.</p>

<p>The graph from the last month shows the codes are being scanned around 70 times per day.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TfL-QR-statis-graph.png" alt="TfL QR statistics graph" title="TfL QR statistics graph" width="448" height="394" class="aligncenter size-full wp-image-5210"></p>

<p>We can get a rough idea of what sort of phones Londoners use - or, at least, what those who use the buses use.</p>

<table>
<thead>
<tr><th>Platforms</th><th>Count</th></tr>
</thead>
<tbody><tr><td>
iPhone</td><td>
2014</td></tr>
<tr><td>Android</td><td>
1247</td></tr>
<tr><td>BlackBerry</td><td>
987</td></tr>
<tr><td>Windows</td><td>
73</td></tr>
<tr><td>Nokia</td><td>
58</td></tr>
<tr><td>Symbian/3</td><td>
34</td></tr>
<tr><td>iPod</td><td>
15</td></tr>
</tbody></table>

<p>iPhone takes a significant chunk - although not the majority - with 45%. Android coming next at 28%.  BlackBerry still has a strong showing among Londoners with 22%.</p>

<p>I'm unsure whether "Windows" is WP7 or the older "Windows Mobile".  Either way, Nokia's market share has collapsed.</p>

<p>The next interesting thing to look at is which countries the users are from.</p>

<table>
<thead><tr><th>Countries</th><th>Count</th></tr></thead>
<tbody><tr><td>United Kingdom</td><td>
4453</td></tr>
<tr><td>Lithuania</td><td>
15</td></tr>
<tr><td>United States</td><td>
10</td></tr>
<tr><td>Germany</td><td>
2</td></tr>
<tr><td>France</td><td>
2</td></tr>
<tr><td>Italy</td><td>
2</td></tr>
<tr><td>Jordan</td><td>
2</td></tr>
<tr><td>Netherlands</td><td>
2</td></tr>
<tr><td>Spain</td><td>
1</td></tr>
<tr><td>Ireland</td><td>
1</td></tr>
</tbody></table>

<p>As expected, the majority are using UK SIMS.</p>

<p>This doesn't count visitors who are using a local SIM on their stay - but it's still interesting to see where tose whoa re prepared to pay roaming data charges are coming from. Who knew so many Lithuanians loved our bus system...?</p>

<p>As far as I can tell, the Google statistics don't actively prevent duplications - so one enthusiastic Lithuanian could have scanned the code 15 times.</p>

<p>The data aren't entirely rigorous - but do show some interesting trends for QR use in London.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5203&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/01/real-qr-statistics-from-tfl/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[TSA's QR Statistics]]></title>
		<link>https://shkspr.mobi/blog/2012/01/tsas-qr-statistics/</link>
					<comments>https://shkspr.mobi/blog/2012/01/tsas-qr-statistics/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 05 Jan 2012 07:33:00 +0000</pubDate>
				<category><![CDATA[qr]]></category>
		<category><![CDATA[goo.gl]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[tsa]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=5161</guid>

					<description><![CDATA[The TSA have come under fire for many things. Most recently, Fred Trotter has called them out for using a &#34;dummy&#34; QR code which leads to a page the TSA don&#039;t control. An astonishingly lax approach to QR use.  Last year, I noticed this QR code as I passed through San Francisco Airport.   The code goes to a TSA site (albeit non-mobile), which is odd, as the TSA do have a capable mobile site.  What…]]></description>
										<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/Transportation_Security_Administration#Criticisms">TSA</a> have come under fire for many things. Most recently, <a href="https://web.archive.org/web/20120113111625/http://radar.oreilly.com/2012/01/tsa-qr-code-flub.html">Fred Trotter has called them out for using a "dummy" QR code</a> which leads to a page the TSA don't control. An astonishingly lax approach to QR use.</p>

<p>Last year, I noticed this QR code as I passed through San Francisco Airport.
<img class="aligncenter size-full wp-image-5163" src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TSA-QR-Poster.jpg" alt="TSA QR Poster" title="TSA QR Poster" width="512" height="683"></p>

<p>The code goes to <a href="https://web.archive.org/web/20120217234535/https://www.tsa.gov/what_we_do/screening_under12.shtm">a TSA site</a> (albeit non-mobile), which is odd, as the <a href="http://www.tsa.gov/mobile">TSA do have a capable mobile site</a>.</p>

<p>What I find most curious is that the TSA are using the Goo.gl URL shortener.</p>

<p>This is a bad idea for two reasons.</p>

<ol>
<li>How does a user know where the code is going to take them? The URL "goo.gl/Qrlx1" could lead literally anywhere. A security minded organisation should <strong>always</strong> use their own domain name when creating a QR code.</li>
<li>Google short URLs allow <em>anyone</em> to see your QR code's usage statistics.
</li></ol>

<p>So, let's see how the TSA checkpoint QR code does.</p>

<img class="aligncenter size-full wp-image-5165" src="https://shkspr.mobi/blog/wp-content/uploads/2012/01/TSA-QR-Stats.png" alt="TSA QR Stats" title="TSA QR Stats" width="600" height="628">

<p>Interesting to note that there are a few people prepared to pay roaming data charges to view the site. I've no idea if this exact QR code is at other airports, but it's gathering around 80 scans per day.</p>

<p>You can <a href="https://web.archive.org/web/20120105031119/https://www.tsa.gov/press/qr_codes.shtm">read more about the TSA's use of QR codes at their press centre.</a></p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=5161&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/01/tsas-qr-statistics/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[NaBloPoMo]]></title>
		<link>https://shkspr.mobi/blog/2009/11/nablopomo/</link>
					<comments>https://shkspr.mobi/blog/2009/11/nablopomo/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 30 Nov 2009 07:00:19 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=1198</guid>

					<description><![CDATA[NA! BLO! PO! MO!  It sounds like a Judoon war cry - &#34;Na Blo Po Mo!&#34; But rather than legions from the Shadow Proclamation, it is an amassed horde of bloggers poised to do battle with the enemy.  Gentlemen - the enemy is us.  I noticed that I had averaged a blog post every few days in October - I wondered if I could beat that and still retain some vestige of quality. During BarCampLondon I heard…]]></description>
										<content:encoded><![CDATA[<p></p><div id="attachment_1323" style="width: 380px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1323" class="size-full wp-image-1323" title="nablopomo" src="https://shkspr.mobi/blog/wp-content/uploads/2009/11/nablopomo.jpg" alt="NA! BLO! PO! MO!" width="370" height="313"><p id="caption-attachment-1323" class="wp-caption-text">NA! BLO! PO! MO!</p></div><p></p>

<p>It sounds like a <a href="http://tardis.wikia.com/wiki/Judoon">Judoon</a> war cry - "Na Blo Po Mo!" But rather than legions from the Shadow Proclamation, it is an amassed horde of bloggers poised to do battle with the enemy.</p>

<p><a href="http://geekfeminism.wikia.com/wiki/Where_are_the_women_bloggers%3F">Gentlemen</a> - the enemy is us.</p>

<p>I noticed that I had averaged a blog post every few days in October - I wondered if I could beat that and still retain some vestige of quality. During BarCampLondon I heard <a href="https://web.archive.org/web/20091105094312/http://www.stompy.org/">Abizer</a> talk about <a href="http://www.nanowrimo.org/">NaNoWriMo</a> - while I didn't think I could manage a novel, I was fairly sure I could squeeze out a post every day.</p>

<p>This has been a crazy month for me. Between attending BarCamps, organising BarCamps, speaking at conferences, going to gigs and comedy shows, turning 30, helping launch #vf360 and taking a pensions training course - I wasn't sure I'd be able to make it.</p>

<p>I do most of my writing on the train and the tube. I've found that the BlackBerry's built in memopad is good enough for drafting posts. I use the official <a href="https://wordpress.tv/2009/07/08/introducing-wordpress-for-blackberry-beta/">WordPress for BlackBerry</a> application for submitting drafts. I usually apply formatting, add multimedia, and tidy the spelling on a PC at lunchtimes.</p>

<p>At the end of October, I installed <a href="http://wordpress.org/extend/plugins/stats/">BlogStats for WordPress</a>.&nbsp; It's quite daunting seeing how popular - or not - my writing is.&nbsp; It certainly kept me motivated.</p>

<p></p><div id="attachment_1322" style="width: 671px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1322" class="size-full wp-image-1322" title="blog views" src="https://shkspr.mobi/blog/wp-content/uploads/2009/11/blog-views.png" alt="Blog Views" width="661" height="259"><p id="caption-attachment-1322" class="wp-caption-text">Blog Views</p></div><p></p>

<p>One thing I've found invaluable is the ability to schedule blog posts for publishing at specified times.  This blog post, for example was started on the 9th of November and is scheduled to be published on the last day of November.</p>

<p>I'm very proud of some of my posts here - I certainly didn't start the month expecting to be interviewed by The Register.&nbsp; I've become acutely aware of how my written and spoken style differ - and how I refine the former until it no longer resembles the latter.&nbsp; Whereupon I hit delete and start again.</p>

<p>Other posts betray the pressures of writing every day.&nbsp; Some are, if I'm honest, mere sketches of fuller articles.</p>

<p>Too often, I'd want to write about something timely - only to realise I'd already published an article that day.&nbsp; "Best to save it for tomorrow," I'd think - only to change my mind when tomorrow came.</p>

<p>I've also shied away from writing some "profound" pieces.&nbsp; I usually like to take my time - weeks or even months - over an idea. I like to wring meaning out of every sentence.&nbsp; When faced with a daily deadline, that's all but impossible.</p>

<p>It's been really fun to see how many visitors I get - what's been more interesting is seeing older articles getting hits - Android on the N810 is a perenial favourite it seems.</p>

<p></p><div id="attachment_1321" style="width: 562px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1321" class="size-full wp-image-1321" title="Top Posts" src="https://shkspr.mobi/blog/wp-content/uploads/2009/11/Top-Posts.png" alt="Top Posts" width="552" height="490"><p id="caption-attachment-1321" class="wp-caption-text">Top Posts</p></div><p></p>

<p>The long tail is alive and well!</p>

<p>I don't think I'll keep up posting every day - but I will be making sure that when I think of some interesting and original content, I'll post it as soon as I can.</p>

<p>Until next year - NA BLO PO MO!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=1198&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/11/nablopomo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Browser Statistics of 10 Downing Street]]></title>
		<link>https://shkspr.mobi/blog/2009/10/browser-statistics-of-10-downing-street/</link>
					<comments>https://shkspr.mobi/blog/2009/10/browser-statistics-of-10-downing-street/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 02 Oct 2009 10:58:32 +0000</pubDate>
				<category><![CDATA[politics]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=583</guid>

					<description><![CDATA[It&#039;s really difficult cutting through the hype to see which browsers one should support when designing a website.  There are many different measures of popularity - but many sites are only visited by techies, or only ever visited when at work, or are skewed towards the young or the old.  Yesterday morning I asked the Number 10 Downing Street web team if they could provide their statistics.  I…]]></description>
										<content:encoded><![CDATA[<p>It's really difficult cutting through the hype to see which browsers one should support when designing a website.  There are many different measures of popularity - but many sites are only visited by techies, or only ever visited when at work, or are skewed towards the young or the old.</p>

<p>Yesterday morning <a href="http://twitter.com/edent/status/4529469389">I asked the Number 10 Downing Street web team if they could provide their statistics</a>.  I figured that the <a href="http://www.number10.gov.uk/"> PM's website</a> gets enough readers from a wide selection of the web community to give a fairly impartial measure of the popular web browsers.</p>

<p>Here's their (very quick) reply</p>

<blockquote class="social-embed" id="social-embed-4549222839" lang="cy" itemscope="" itemtype="https://schema.org/SocialMediaPosting"><blockquote class="social-embed" id="social-embed-4529469389" lang="en" itemscope="" itemtype="https://schema.org/SocialMediaPosting"><header class="social-embed-header" itemprop="author" itemscope="" itemtype="https://schema.org/Person"><a href="https://twitter.com/edent" class="social-embed-user" itemprop="url"><img class="social-embed-avatar social-embed-avatar-circle" src="data:image/webp;base64,UklGRkgBAABXRUJQVlA4IDwBAACQCACdASowADAAPrVQn0ynJCKiJyto4BaJaQAIIsx4Au9dhDqVA1i1RoRTO7nbdyy03nM5FhvV62goUj37tuxqpfpPeTBZvrJ78w0qAAD+/hVyFHvYXIrMCjny0z7wqsB9/QE08xls/AQdXJFX0adG9lISsm6kV96J5FINBFXzHwfzMCr4N6r3z5/Aa/wfEoVGX3H976she3jyS8RqJv7Jw7bOxoTSPlu4gNbfXYZ9TnbdQ0MNnMObyaRQLIu556jIj03zfJrVgqRM8GPwRoWb1M9AfzFe6Mtg13uEIqrTHmiuBpH+bTVB5EEQ3uby0C//XOAPJOFv4QV8RZDPQd517Khyba8Jlr97j2kIBJD9K3mbOHSHiQDasj6Y3forATbIg4QZHxWnCeqqMkVYfUAivuL0L/68mMnagAAA" alt="" itemprop="image"><div class="social-embed-user-names"><p class="social-embed-user-names-name" itemprop="name">Terence Eden is on Mastodon</p>@edent</div></a><img class="social-embed-logo" alt="Twitter" src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0Aaria-label%3D%22Twitter%22%20role%3D%22img%22%0AviewBox%3D%220%200%20512%20512%22%3E%3Cpath%0Ad%3D%22m0%200H512V512H0%22%0Afill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%231d9bf0%22%20d%3D%22m458%20140q-23%2010-45%2012%2025-15%2034-43-24%2014-50%2019a79%2079%200%2000-135%2072q-101-7-163-83a80%2080%200%200024%20106q-17%200-36-10s-3%2062%2064%2079q-19%205-36%201s15%2053%2074%2055q-50%2040-117%2033a224%20224%200%2000346-200q23-16%2040-41%22%2F%3E%3C%2Fsvg%3E"></header><section class="social-embed-text" itemprop="articleBody"><small class="social-embed-reply"><a href="https://twitter.com/10DowningStreet/status/4528243248">Replying to @10DowningStreet</a></small><a href="https://twitter.com/downingstreet">@downingstreet</a> can you tell us how many Firefox/IE/Safari users visit the Number 10 website? Would be really helpful to UK web developers</section><hr class="social-embed-hr"><footer class="social-embed-footer"><a href="https://twitter.com/edent/status/4529469389"><span aria-label="0 likes" class="social-embed-meta">❤️ 0</span><span aria-label="0 replies" class="social-embed-meta">💬 0</span><span aria-label="0 reposts" class="social-embed-meta">🔁 0</span><time datetime="2009-10-01T17:10:55.000Z" itemprop="datePublished">17:10 - Thu 01 October 2009</time></a></footer></blockquote><header class="social-embed-header" itemprop="author" itemscope="" itemtype="https://schema.org/Person"><a href="https://twitter.com/10DowningStreet" class="social-embed-user" itemprop="url"><img class="social-embed-avatar social-embed-avatar-circle" src="data:image/webp;base64,UklGRugAAABXRUJQVlA4INwAAABQBgCdASowADAAPrVGoEmnI6MhLjgMyOAWiWkABRAe255KmcvngTIHZUZBs7q+gBls3fOCafekoFoRAAD++fsTk7Rl64MygtEv7WfR+YvwKawSuOB34F76rSTwynqUi4e2s52811JwS6k6w5xaP90fx+/gCgEdHTmIEDTtSYi2J86lXj1RTOB/HfXJ9y/+qi5oKgkFt3TsGTzoBxfTjAx6S1VWeCy3jYbtBusa2YuTW8fOOzY+7G07555Mula3+V5pNC8fVL5WUMBbZM8/1jxXJp/z/vAzIxNqIAAA" alt="" itemprop="image"><div class="social-embed-user-names"><p class="social-embed-user-names-name" itemprop="name">UK Prime Minister</p>@10DowningStreet</div></a><img class="social-embed-logo" alt="Twitter" src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0Aaria-label%3D%22Twitter%22%20role%3D%22img%22%0AviewBox%3D%220%200%20512%20512%22%3E%3Cpath%0Ad%3D%22m0%200H512V512H0%22%0Afill%3D%22%23fff%22%2F%3E%3Cpath%20fill%3D%22%231d9bf0%22%20d%3D%22m458%20140q-23%2010-45%2012%2025-15%2034-43-24%2014-50%2019a79%2079%200%2000-135%2072q-101-7-163-83a80%2080%200%200024%20106q-17%200-36-10s-3%2062%2064%2079q-19%205-36%201s15%2053%2074%2055q-50%2040-117%2033a224%20224%200%2000346-200q23-16%2040-41%22%2F%3E%3C%2Fsvg%3E"></header><section class="social-embed-text" itemprop="articleBody"><small class="social-embed-reply"><a href="https://twitter.com/edent/status/4529469389">Replying to @edent</a></small><a href="https://twitter.com/edent">@edent</a> Top are: IE7 22%, IE8 20%, IE6 12%, Firefox3.5.3 9%, FF3.5.2 7%, FF3.0.14 5%, FF3.0.13 4%, Safari 4.0.3 4%, Chrome 2.0.172.43 2%</section><hr class="social-embed-hr"><footer class="social-embed-footer"><a href="https://twitter.com/10DowningStreet/status/4549222839"><span aria-label="2 likes" class="social-embed-meta">❤️ 2</span><span aria-label="0 replies" class="social-embed-meta">💬 0</span><span aria-label="0 reposts" class="social-embed-meta">🔁 0</span><time datetime="2009-10-02T09:46:44.000Z" itemprop="datePublished">09:46 - Fri 02 October 2009</time></a></footer></blockquote>

<p>Or, to express it graphically...</p>

<p></p><div style="width: 410px" class="wp-caption aligncenter"><img src="https://shkspr.mobi/blog/wp-content/uploads/2009/10/chart.png" alt="Pie chart of the above statistics." width="400" height="256" class="aligncenter size-full wp-image-47406"><p class="wp-caption-text">Chart Showing Browser Stats</p></div><p></p>

<p>Firefox overall accounts for 25% - a fairly strong showing.  But with IE6 stubbornly stuck at 12%, it will be a while before we can consign it to the dustbin of web history.
Opera is languishing in the 15% marked as "Other" along with my browser of choice, <a href="http://lynx.isc.org/">Lynx</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=583&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/10/browser-statistics-of-10-downing-street/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Prime - My New Addiction]]></title>
		<link>https://shkspr.mobi/blog/2009/06/prime-my-new-addiction/</link>
					<comments>https://shkspr.mobi/blog/2009/06/prime-my-new-addiction/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 10 Jun 2009 11:04:00 +0000</pubDate>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[stats]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=135</guid>

					<description><![CDATA[My new gaming addiction is Prime by 59Pixels.    The premise is very simple.  There are blocks bouncing around the screen. You have a limited number of shots to remove a set number of them.    Each shot creates an explosion which, if it touches another block, causes that to explode.  This can cause a helpful chain reaction.    One of the many wonderful things about this game is how it pits you …]]></description>
										<content:encoded><![CDATA[<p>My new gaming addiction is <a href="https://web.archive.org/web/20121222054334/https://play.google.com/store/apps/details?id=org.balls">Prime</a> by <a href="https://web.archive.org/web/20090805195944/http://59pixels.com:80/wordpress/">59Pixels</a>.</p>

<img class="alignnone size-full wp-image-139" title="prime-start" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/prime-start.png" alt="prime-start" width="480" height="320">

<p>The premise is very simple.&nbsp; There are blocks bouncing around the screen. You have a limited number of shots to remove a set number of them.</p>

<img class="alignnone size-full wp-image-138" title="prime-screen" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/prime-screen.png" alt="prime-screen" width="480" height="320">

<p>Each shot creates an explosion which, if it touches another block, causes that to explode.</p>

<p>This can cause a helpful chain reaction.</p>

<img class="alignnone size-full wp-image-136" title="prime-chain-reaction" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/prime-chain-reaction.png" alt="prime-chain-reaction" width="480" height="320">

<p>One of the many wonderful things about this game is how it pits you against other players.&nbsp; Rather than posting high scores, it shows you how many other people have reached the level.</p>

<img class="alignnone size-full wp-image-137" title="prime-other-people" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/prime-other-people.png" alt="prime-other-people" width="480" height="320">

<p>Being the massive geek that I am, I've graphed how player levels drop off.&nbsp; I'm only skilled enough to get to level 89. Must try harder.</p>

<img class="alignnone size-full wp-image-140" title="Player Drop Off" src="https://shkspr.mobi/blog/wp-content/uploads/2009/06/prime.png" alt="Player Drop Off" width="729" height="608">

<p>What I find fascinating is how steady the player numbers are until each big drop-off. Obviously, at least 50,000 people have downloaded the game, but only 371 players who've made it as far as I have.</p>

<p>Anyway, if you have an Android device, <a href="https://web.archive.org/web/20090503000001/http://www.59pixels.com/wordpress/">have a play with Prime - it's a great little game</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=135&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/06/prime-my-new-addiction/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
