<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>David John Mead</title>
	
	<link>http://davidjohnmead.com</link>
	<description>Living and working on the web, with a British point of view</description>
	<lastBuildDate>Fri, 10 Feb 2012 14:00:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DavidJohnMead" /><feedburner:info uri="davidjohnmead" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>41.653796</geo:lat><geo:long>-81.446149</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><item>
		<title>On the new HTML5 number field</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/n9Nk4MdUHJ0/</link>
		<comments>http://davidjohnmead.com/2012/02/09/on-the-new-html5-number-field/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 20:01:38 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[behaviour]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[number]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=340</guid>
		<description>With the fervor around the shiny new HTML5 elements, and the mad dash to get everything working on &amp;#8220;mobile&amp;#8221;, I worry that we&amp;#8217;re repeating the errors of the past. type=&amp;#8221;number&amp;#8221; One of the new HTML5 form options is the number attribute &amp;#8230; &lt;a href="http://davidjohnmead.com/2012/02/09/on-the-new-html5-number-field/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>With the fervor around the shiny new HTML5 elements, and the mad dash to get everything working on &#8220;mobile&#8221;, I worry that we&#8217;re repeating the errors of the past.</p>
<h2>type=&#8221;number&#8221;</h2>
<p>One of the new HTML5 form options is the <a title="W3C page on number attribute" href="http://dev.w3.org/html5/spec/Overview.html#number-state-type-number">number attribute for input fields</a>. This goes hand-in-hand with other attributes such as <a href="http://dev.w3.org/html5/spec/Overview.html#telephone-state-type-tel">tel</a>, <a href="http://dev.w3.org/html5/spec/Overview.html#e-mail-state-type-email">email</a>, etc. to help define the type of things we&#8217;re capturing with those elements.  This gets us away from the general <code>type="text"</code> attribute we&#8217;ve been used to for so long.  The other bonus using this attribute is when someone uses it on a touch device it&#8217;ll fire a numeric keypad, making it the perfect tool to capture Social Security and credit card numbers. Right?</p>
<p>Well, no. There have been a few hiccups along this Nirvana path for the number attributes use:</p>
<ol>
<li>Apple&#8217;s iOS5 introduced separating commas into the field on devices running it</li>
<li>The field contains a spinner which increases the number entered by one digit each time</li>
<li>It doesn&#8217;t always show the &#8220;right&#8221; numeric keypad on touch devices</li>
</ol>
<p>I think this comes from mis-understanding exactly what the W3C saw this being used for.  The spec states it is &#8220;<a title="W3C entry on the number input" href="http://dev.w3.org/html5/markup/input.number.html#input.number.attrs.type">a precise control for setting the element’s value to a string representing a number</a>&#8220;.  The key words they use here are <strong>control </strong>and<strong> string</strong>.</p>
<h2>Maybe type=&#8221;text&#8221; isn&#8217;t too bad</h2>
<p>There&#8217;s been a lot of discussion (at work and online) around how to get the &#8220;right&#8221; keypad to fire, and how to rid ourselves of the separator commas. But I fear this is, as I mentioned on <a title="Rob's post about Cracking the Code for a Numeric Keyboard" href="http://seesparkbox.com/foundry/cracking_the_code_for_a_numeric_keyboard#comment-428778432">Rob Tarr&#8217;s post</a>, us misunderstanding an HTML element such as we <a title="Microformats discussion" href="http://microformats.org/discuss/mail/microformats-discuss/2005-June/000013.html">used to do with <code>&lt;address&gt;</code></a>.</p>
<p>So until, as Rob &amp; I suggested in the comments of his post, a different type or additional attribute comes along, we really should not be trying to bend the number attribute to our will.</p>
<p>You see the W3C sees telephone as &#8220;Text with no line breaks&#8221;.  It is <strong>not</strong> a number. The same would probably be said for credit card information.  That&#8217;s why <code>type=text</code> still works. I&#8217;ll be promoting <a title="Brad Frost on Twitter" href="https://twitter.com/#!/brad_frost">Brad</a>&#8216;s suggestion of <a title="Brad Frosts post" href="http://bradfrostweb.com/blog/mobile/better-numerical-inputs-for-mobile-forms/">using the pattern attribute</a> to display a numeric keypad for touch devices from now on those particular fields.</p>
<p>Now I just have to wait for a time where I need to create a form for the user to &#8220;set the element’s value to a string representing a number&#8221; and I&#8217;ll know what element to use <img src='http://davidjohnmead.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/n9Nk4MdUHJ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2012/02/09/on-the-new-html5-number-field/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2012/02/09/on-the-new-html5-number-field/</feedburner:origLink></item>
		<item>
		<title>The great domain migration of 2011</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/0_A_rzOyRdw/</link>
		<comments>http://davidjohnmead.com/2012/01/03/the-great-domain-migration-of-2011/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 02:51:58 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=335</guid>
		<description>In December my domains came up for renewal.  This happens every year, but 2011 was to be when I left GoDaddy. You see I wasn&amp;#8217;t that bothered by the ads, or even by the hunting. The real reason was it &amp;#8230; &lt;a href="http://davidjohnmead.com/2012/01/03/the-great-domain-migration-of-2011/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>In December my domains came up for renewal.  This happens every year, but 2011 was to be when I left GoDaddy.</p>
<p>You see I wasn&#8217;t that bothered by the ads, or even by the hunting. The real reason was it became so damn difficult to do anything. The continuous barrage of &#8220;upgrades&#8221; that were pushed, and multiple windows spawned every-time I clicked a link. But I only went in a few times  year so I was still dithering.</p>
<p>Luckily, GoDaddy&#8217;s involvement in the completely misguided <a title="Wikipedia" href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">H.R. 3261 bill</a> (SOPA) was the final nail-in-the-coffin and, gave me a financial incentive with some companies offering transfer discounts.</p>
<p>Looking around I chose to go with <a href="http://hover.com">hover.com</a>, whom I heard about on a podcast (<a title="Great podcast by Merlin Mann &amp; Dan Benjamin" href="http://5by5.tv/b2w">B2W</a> I think). I can&#8217;t say enough good things about the service I got. Called them up and someone answered, no automated menu, and a couple of questions later they did the transfers for me. Awesome!</p>
<p>Hover still has a <a title="Tweet about discount code." href="https://twitter.com/#!/hover/status/153484358894886912">discount code of &#8216;SOPA&#8217; which will get you a transfer for only $9 (until 1/31/12)</a>.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/0_A_rzOyRdw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2012/01/03/the-great-domain-migration-of-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2012/01/03/the-great-domain-migration-of-2011/</feedburner:origLink></item>
		<item>
		<title>All hail the papernet</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/ivgIlGzygao/</link>
		<comments>http://davidjohnmead.com/2011/12/04/all-hail-the-papernet/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 05:57:46 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[berg]]></category>
		<category><![CDATA[british]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[papernet]]></category>
		<category><![CDATA[printer]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=330</guid>
		<description>A couple of days ago BERG released its Little Printer onto the World. Being released in 2012 its one of things that could be (and is) easily dismissed by some quarters, but warmly embraced in others. In this age of &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/12/04/all-hail-the-papernet/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>A couple of days ago <a title="Company website" href="http://berglondon.com/">BERG</a> released its <a title="website for the Little Printer" href="http://bergcloud.com/littleprinter/">Little Printer</a> onto the World.</p>
<p><iframe src="http://player.vimeo.com/video/32796535?byline=0&amp;portrait=0&amp;color=ffffff" frameborder="0" width="400" height="225"></iframe></p>
<p>Being released in 2012 its one of things that could be (and is) easily dismissed by some quarters, but warmly embraced in others. In this age of faster mobile what could we want with a something like a till receipt printed for us.  The appeal to people like <a title="Josh DiMauro" href="http://paperbits.net/">Josh</a>, <a title="Warren Ellis" href="http://warrenellis.com/">Warren</a>, and <a title="Jeremy Keith" href="http://adactio.com">Jeremy</a> is that physical connection with the day-to-day digital world we inhabit.</p>
<p>Is this the first step to a realized &#8221;<a title="Audio on the Papernet idea" href="http://huffduffer.com/adactio/collective/tags/papernet">papernet</a>&#8220;? Maybe. This future seems quintessentially British, and the idea of having my digital flotsam printed off in a form that fits right into my <a title="Best wallet I have ever owned" href="http://www.koyono.com/Slimmy-Special-Edition-Front-Pocket-Wallet-p/m17546se.htm">Slimmy wallet</a> for that morning coffee sits well with me.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/ivgIlGzygao" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/12/04/all-hail-the-papernet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/12/04/all-hail-the-papernet/</feedburner:origLink></item>
		<item>
		<title>My issues with YouTube &amp; Google accounts</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/2LMGN4FJHh4/</link>
		<comments>http://davidjohnmead.com/2011/12/02/my-issues-with-youtube-google-accounts/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 17:59:09 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[accounts]]></category>
		<category><![CDATA[davidjohnmead]]></category>
		<category><![CDATA[dmwebsites]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=325</guid>
		<description>I&amp;#8217;ve been ignoring the emails for a couple of months now, but the time came last night to decide what to do with my second YouTube account.  You see, before Google even had accounts, I had a YouTube account as DMWebsites.  Then, &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/12/02/my-issues-with-youtube-google-accounts/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>I&#8217;ve been ignoring the emails for a couple of months now, but the time came last night to decide what to do with my second YouTube account.  You see, before Google even had accounts, I had a YouTube account as <a title="Old YouTube account" href="http://www.youtube.com/user/DMWebsites">DMWebsites</a>.  Then, as time passed, I started creating accounts under my own name.  Hence a second YouTube account.</p>
<p>The DMWebsites one was my primary, filling up with family videos &amp; subscription, while the <a title="New personal YouTube account" href="http://www.youtube.com/user/davidjohnmead">DavidJohnMead</a> one lay barren.</p>
<p>Fast-forward and Google now wants us to link all these disparate accounts together, but there didn&#8217;t seem to be any way to rename my DMWebsites one, or migrate it all to DavidJohnMead.  Also I could only link one to <a title="About page on Google+" href="https://plus.google.com/u/0/109486665432406578271/about">my Google profile</a>.</p>
<p>So, looking at the long term, I&#8217;ve decided to hook the empty DavidJohnMead one up to my Google account and use it as the primary. My hope is making it easier to share stuff on Google+ etc. But this means re-subscribing and uploading.  It&#8217;s never been a huge social hub for me, so maybe this is a good time to clean house in there.</p>
<p>As for the DMWebsites account, well, I ended up creating a new Google account and linked to that. It seems that would mean having double accounts in Google+ under my real name (not something I wanted), so it&#8217;ll slowly dwindled to nothing, or house those <a title="My freelance work" href="http://dmwebsites.com">freelance web</a> tutorials I&#8217;ll never make.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/2LMGN4FJHh4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/12/02/my-issues-with-youtube-google-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/12/02/my-issues-with-youtube-google-accounts/</feedburner:origLink></item>
		<item>
		<title>M3 Conference</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/UnpeGqBHYGQ/</link>
		<comments>http://davidjohnmead.com/2011/11/21/m3conference/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 18:25:27 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[#m3conf]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[columbus]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[ohio]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=310</guid>
		<description>The M3 Conference (pronounced &amp;#8220;m-cubed&amp;#8221;) was a one-day event about mobile, held on November 18th, at COSI. This being the inaugural event  I think it went pretty well. I&amp;#8217;ve jotted down my notes from the event, but first a couple of small &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/11/21/m3conference/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>The <a title="Official conference website" href="http://m3conf.com/">M3 Conference</a> (pronounced &#8220;m-cubed&#8221;) was a one-day event about mobile, held on November 18th, at COSI.</p>
<p>This being the inaugural event  I think it went pretty well. I&#8217;ve jotted down my notes from the event, but first a couple of small things I thought were teething issues:</p>
<ul>
<li>The name badge <em>is</em> the map &#8211; No one I spoke to figured out right away that the name badge on the lanyard, was in fact the folded up map to show where the talks were being held. Then if you take it out you have no name badge.</li>
<li>No introductions &#8211; Apart from the two keynotes, none of the speakers I saw were introduced and were left to their own devices to quieten the room.</li>
<li>The City View area at COSI is not great for presentations.</li>
</ul>
<h2><a title="Sara on Twitter" href="http://twitter.com/ssummers">Sara Summers</a> (Morning keynote &#8211; Mobile Innovation with UX)</h2>
<p>I thought <a title="Presentation on SlideShare" href="http://www.slideshare.net/sarasummers/ux-for-innovation">Sara&#8217;s talk</a> set the right tone for the conference. She walked us through a recent trip to Stockholm where she visited the Ethnography museum, and an exhibition on Voodoo which changed her perception of that part of Haiti culture. She also ran through part of a video about the development of an iPad app for Nordtroms where the team camped out in Nordstrom&#8217;s store and did on-the-spot user research while making the app.</p>
<p>Being from Microsoft she also touched on some of the work she&#8217;s been doing for Windows Phone. &#8220;Authentically Digital&#8221; is a term they kept in their heads when designing the UI, which I like. Her approach to UX seems to be one I&#8217;m hearing a lot which is very guerrilla in its attitude. Similar to <a href="http://www.cennydd.co.uk/about/">Cennydd Bowles</a> recent work.</p>
<h2><a title="Tony on Twitter" href="http://twitter.com/tonylukasavage">Tony Lukasavage</a> ( Welcome to Titanium)</h2>
<p><a title="Live demos a-go-go #m3conf by David Mead, on Flickr" href="http://www.flickr.com/photos/davidmead/6358185517/"><img class="alignleft" src="http://farm7.staticflickr.com/6055/6358185517_53595807c1_m.jpg" alt="Live demos a-go-go #m3conf" width="160" height="240" /></a>Turns out the nice guy I was chatting to over coffee was the next speaker. I knew of <a title="Product page" href="http://www.appcelerator.com/products/titanium-cross-platform-application-development/">Titanium</a> but never actually looked into using it, but Tony peaked my interest. Turns out the product is free (which is always nice) and works by using HTML/CSS/JavaScript to push out cross-platform mobile apps.</p>
<p>The big eye-opener for my was the libraries native support.  If I call a tab set, left alone it will display like the native tab set on each platform with no extra fumbling around on my part.  This makes leveraging the pattern libraries of iOS and Android much simpler and hopefully makes it natural for the end-user.</p>
<h2><a title="Brad on Twitter" href="http://twitter.com/brad_frost">Brad Frost</a> (For a future friendly web)</h2>
<p>I hadn&#8217;t realized going in that this Brad was the same Brad from <a href="http://futurefriend.ly/">Future Friendly</a>, so I was intrigued when the space helmet logo was on the screen. You can see a <a title="Video and slideshare" href="http://bradfrostweb.com/blog/web/for-a-future-friendly-web/">version of this talk</a> on his website, but a couple of my takeaways were:</p>
<ul>
<li>&#8220;We cannot be future-proof, but we can be future-friendly&#8221;</li>
<li>&#8220;Content is like water&#8221; &#8211; Josh Clarke</li>
<li>&#8220;Context is fuzzy&#8221;</li>
<li>&#8220;Accommodate for meat sticks&#8221; (fat fingers)</li>
<li><a href="http://mobilewebbestpractices.com/">mobilewebbestpractices.com</a></li>
<li>Get the API&#8217;s down first</li>
</ul>
<p>Brad gave an excellent presentation, one that I think corralled a lot of ideas and &#8220;we already know that&#8221; items into something whole and communicably.</p>
<h2><a title="Willie on Twitter" href="http://twitter.com/willien">Willie Neumann</a> (Leveraging mobile in Enterprise)</h2>
<p>Willie had an interesting talk on the approach he took when building a mobile presence for libraries.  They had a &#8220;develop fast, deploy fast&#8221; approach and built outside their IT infrastructure (with their blessing) using a GoDaddy server and public API&#8217;s.  They also employed the WURFL stack and Google&#8217;s translation tool.  It was great to see what they achieved in just two calender months of dev time.</p>
<h2>Paul Czarnik (Afternoon Keynote &#8211; The Connected Car)</h2>
<p>I didn&#8217;t really take any notes, but Paul provided a very interesting look at what the missed opportunities are, as well as what the future may bring fro the connected cars. Also the live demo curse kicked in when trying OnStar on stage <img src='http://davidjohnmead.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h2><a title="Jen on Twitter" href="http://twitter.com/nstop">Jen Matson</a> (Adaptive Mobile UX design)</h2>
<p>Jen started off <a title="SlideShare" href="http://www.slideshare.net/nstop/adaptive-mobile-ux-design-extended-version">her presentation</a> by walking us through her frustrating real-life case of using Sear&#8217;s mobile.  I always like this approach from speakers. She had a lot of information I was already aware of, but some things are always good to re-iterate:</p>
<ul>
<li>Mobile users <strong>do</strong> need the same content</li>
<li>Improve &amp; iterate often</li>
<li>Adapt to context <strong>and</strong> capabilities</li>
</ul>
<h2>Was it any good?</h2>
<p>Overall I was really impressed by the level of speakers, and the organization that <a title="Official M3Conf Twitter" href="http://twitter.com/m3conf">everyone involved</a> put in to M3Conf. I would definitely like to attend next year and encourage people to sign up early.</p>
<p>The 250 that attended seemed to be a good mix of designers, management, and developers. And that&#8217;s important. One big takeaway for me was to reinforce that &#8220;Mobile&#8221; is still evolving and there a lot of &#8220;right&#8221; methods out there.  Its our job to start blending those in order to deliver an experience thats great for our core users, but doesn&#8217;t exclude everyone else.</p>
<p>My <a title="Photo set on Flickr" href="http://www.flickr.com/photos/davidmead/sets/72157628058228883/">photos for #M3Conf</a> are on Flickr.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/UnpeGqBHYGQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/11/21/m3conference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/11/21/m3conference/</feedburner:origLink></item>
		<item>
		<title>Its not me Gowalla, its you</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/38m3n3_NnXE/</link>
		<comments>http://davidjohnmead.com/2011/11/16/its-not-me-gowalla-its-you/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 14:40:42 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[check-in]]></category>
		<category><![CDATA[gowalla]]></category>
		<category><![CDATA[location]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=305</guid>
		<description>The location-based service Gowalla announced making changes and that it was moving in a slightly different direction.  Now I have always been a fan of Gowalla, preferring it over its main competition Foursquare.  It has always felt more thought out, looked nicer &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/11/16/its-not-me-gowalla-its-you/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>The location-based service <a href="http://gowalla.com/">Gowalla</a> <a title="Gowalla blog post" href="http://blog.gowalla.com/post/9378150015/going-forward">announced making changes</a> and that it was moving in a slightly different direction.  Now I have always been a fan of Gowalla, preferring it over its main competition Foursquare.  It has always felt more thought out, looked nicer and felt more intuitive to use.  There was the added bonus of collecting &amp; dropping items from places you checked into, <em>and,</em> I could pass my check-in straight to Foursquare &amp; Twitter from Gowalla.</p>
<p>These were the two big things for me that they dropped. Only 2% of their users were actively engaged in the scavenger hunt-type game, and you can still pass through to Foursquare &amp; Twitter, but only if you create a story <em>after</em> you&#8217;ve checked in. In <a href="http://blog.gowalla.com/post/9378150015/going-forward#comment-295247172">my comment</a> I said I wouldn&#8217;t leave over it, but that I hoped this shift didn&#8217;t go the same way as <a href="http://brightkite.com/">Brightkite</a>, a location-based service that dropped the location-based bit and is now just text messaging.</p>
<p>Well its been  a couple of months and my Gowalla check-ins have been less and less.  The focus is now on creating stories around the places that you check-in to.  That&#8217;s fine, and I can see that around conferences and events, but that&#8217;s few &amp; far between for me. Even when <a title="My tumblr for the conference" href="http://davidmead-ui16.tumblr.com/">I attended UI16</a> in Boston recently (which was excellent), I was so out of the habit of using the app I had to make a concerted effort to pull it out.  It was only after we got back from <a title="Flickr set for UI16 &amp; Boston" href="http://www.flickr.com/photos/davidmead/sets/72157628073704024/">a walk around Boston</a> that I remembered I could have used the Gowalla <a title="Gowalll's guide for Boston" href="https://gowalla.com/guides/boston">city guide</a>.</p>
<p>Feedback on a recent Gowalla <a href="http://blog.gowalla.com/post/10617909958/thanks">blog post about the changes</a> still seems to be negative around the changes.</p>
<p>I&#8217;m sure Gowalla didn&#8217;t make these decisions lightly and feel it was in the best interest of moving the company forward with the majority of its users. But for me personally the app has now moved off the home screen of my phone, relegating it to the digital back o&#8217; beyond. Maybe I&#8217;ll use it in Columbus for the <a title="Mobile conference" href="http://m3conf.com/">M3 Conference</a>. Maybe.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/38m3n3_NnXE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/11/16/its-not-me-gowalla-its-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/11/16/its-not-me-gowalla-its-you/</feedburner:origLink></item>
		<item>
		<title>New Facebook is too much work</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/cLWrDMo8hxY/</link>
		<comments>http://davidjohnmead.com/2011/09/21/new-facebook-is-too-much-work/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 13:32:17 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=299</guid>
		<description>Facebook have gone and made some changes again. Of course there&amp;#8217;s the normal slew of &amp;#8220;show your disgust&amp;#8221; posts whenever Team Zuckerberg make the slightest tweak, but these latest changes just reinforce my reluctance to spend much time on the &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/09/21/new-facebook-is-too-much-work/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>Facebook have gone and made some changes again. Of course there&#8217;s the normal slew of &#8220;show your disgust&#8221; posts whenever Team Zuckerberg make the slightest tweak, but these latest changes just reinforce my reluctance to spend much time on the site.</p>
<p>I know I&#8217;m not typical and I really just use Facebook to check if its someone&#8217;s birthday, play a couple of games and that&#8217;s it really. But every-time I go on there it seems <strong>I have to do something to accommodate their new feature</strong>. Facebook never seems to be doing anything for me.</p>
<p>Take Lists for example.</p>
<p>I set up a few lists early on to organize my friends into where I knew them from (UK, Optiem, Progressive, etc.), but now Facebook have created their own lists and given them top billing. Problem with this is not everyone who is in <em>my</em> Progressive co-worker list is in theirs. This means <em>I</em> either have to merge the two, or sort through each one and add/delete people.  There seems to be no option for me to delete or hide their list (at least not from first glance) which is only populated by people who have indicated they work at a company.  So now <em>I</em> have a lot of duplicate lists <em>I</em> have to sort out.</p>
<p>Same thing with the re-vamped News Feed.  &#8221;Top&#8221; stories are marked and <em>I</em> have to sift through and unmark them. Or try and find some buried settings to revert it back to just streaming all posts into the main column.  I don&#8217;t need options to rate or hide them.  And that separate little ticker in the corner, whats that for?</p>
<p>Like I said, I don&#8217;t spend a lot of time using the site and I don&#8217;t <strong>hate</strong> anything about it.  Its their site and they can design it however they want.  It just seems I always have to do a lot of work every-time I go in there which doesn&#8217;t make it enticing for me to spend any more time in there than I do already.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/cLWrDMo8hxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/09/21/new-facebook-is-too-much-work/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/09/21/new-facebook-is-too-much-work/</feedburner:origLink></item>
		<item>
		<title>Being hit by odd comment spam</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/Ce0Semf6Gpc/</link>
		<comments>http://davidjohnmead.com/2011/08/19/being-hit-by-odd-comment-spam/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 17:50:31 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=289</guid>
		<description>Today alone I&amp;#8217;ve had 56 comments, for various posts on this site, all spam. This is day 3 like this. Now I know this isn&amp;#8217;t a highly trafficked site and I do get waves of spam every now and again, &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/08/19/being-hit-by-odd-comment-spam/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>Today alone I&#8217;ve had 56 comments, for various posts on this site, all spam. This is day 3 like this.</p>
<p>Now I know this isn&#8217;t a highly trafficked site and I do get waves of spam every now and again, but this is a little different.</p>
<p>Sure they&#8217;re easy to spot. The single sentence that has at least one word misspelled (on purpose) to make you think its not a bot. The content is the usual vague &#8220;great post, just waht i was looking for&#8221; which bears little or no connection to the post.</p>
<p>The odd thing is instead of the names being linked to best-yak-insurance-ever.com, they are all linking to Facebook, Yahoo!, and Bing.</p>
<p>Apparently I&#8217;m not alone in this. <a title="SEO spam linking to Bing.com" href="http://pyry.lehdonvirta.com/2011/04/12/seo-spam-linking-to-bing-com/">Pyry Lehdonvirta blogged about the same thing</a> in April.</p>
<p>Has the spam software blown a fuse as some commenter&#8217;s on Pyry&#8217;s site suggest, or is it more nefarious, using legitimate links to get the comment in. If so how does this help them? Maybe to just justify charging some poor sap for their &#8220;service&#8221;.</p>
<p>Anyone else found this a problem?</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/Ce0Semf6Gpc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/08/19/being-hit-by-odd-comment-spam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/08/19/being-hit-by-odd-comment-spam/</feedburner:origLink></item>
		<item>
		<title>Stepping off the Path</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/OyfOH0B3CZc/</link>
		<comments>http://davidjohnmead.com/2011/07/18/stepping-off-the-path/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:58:08 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=285</guid>
		<description>Path is a photo sharing service that&amp;#8217;s been around for a little while now.  I hadn&amp;#8217;t tried it before as they didn&amp;#8217;t have an Android app, but now they do I though I&amp;#8217;d give it a go. First off the &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/07/18/stepping-off-the-path/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p><a href="https://www.path.com/">Path</a> is a photo sharing service that&#8217;s been around for a little while now.  I hadn&#8217;t tried it before as they didn&#8217;t have an Android app, but now they do I though I&#8217;d give it a go.</p>
<p><a class="dave" href="http://davidjohnmead.com/wp-content/uploads/2011/07/ss-path.png"><img class="alignleft size-medium wp-image-286" title="ss-path" src="http://davidjohnmead.com/wp-content/uploads/2011/07/ss-path-300x133.png" alt="Screen shot from Path" width="300" height="133" /></a>First off the initial experiences, signing up for Path on the web and using  the Android app, wasn&#8217;t intuitive for me.  I filled in the typical username, password, but didn&#8217;t want to connect Facebook&#8230;and then, well I don&#8217;t know.  I felt like I was missing something.  On the app there was no sense of &#8220;you should go do this now&#8221;.  It took me a couple of photos in to realize I hadn&#8217;t shared them with anyone.  And choosing those people to share with seemed clunky.  I would think that should have been step 1 before taking any photos - Choose the people you&#8217;re sharing with, especially since you&#8217;re limited to 50.</p>
<p>After two weeks of sharing a few moments I&#8217;m calling it quits.  It doesn&#8217;t seem to have grabbed the people I was sharing with either, most of them have only posted a couple of photos too.</p>
<p>I&#8217;m sure its filling a niche, but obviously not one I&#8217;m part of.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/OyfOH0B3CZc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/07/18/stepping-off-the-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/07/18/stepping-off-the-path/</feedburner:origLink></item>
		<item>
		<title>My frustration with Android apps (especially Google)</title>
		<link>http://feedproxy.google.com/~r/DavidJohnMead/~3/wv9nCUE-EFU/</link>
		<comments>http://davidjohnmead.com/2011/07/01/my-frustration-with-android-apps-especially-google/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 15:11:44 +0000</pubDate>
		<dc:creator>David Mead</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[frustration]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://davidjohnmead.com/?p=277</guid>
		<description>So I&amp;#8217;ve had my smartphone for sometime now, and like most I find it invaluable.  I quickly ran up against the problem of having limited space (145mb) to install apps on.  Bear in mind this also held most of the &amp;#8230; &lt;a href="http://davidjohnmead.com/2011/07/01/my-frustration-with-android-apps-especially-google/"&gt;Continue reading &lt;span class="meta-nav"&gt;&amp;#8594;&lt;/span&gt;&lt;/a&gt;</description>
			<content:encoded><![CDATA[<p>So I&#8217;ve had my <a title="myTouch 3G slide" href="http://www.t-mobile.com/shop/Phones/cell-phone-detail.aspx?cell-phone=myTouch-3G-Slide-White">smartphone</a> for sometime now, and like most I find it invaluable.  I quickly ran up against the problem of having limited space (145mb) to install apps on.  Bear in mind this also held most of the stuff that came with the phone too.  So I had an 8gb SD card sitting doing nothing.</p>
<p>After a recent update I&#8217;m now running Android 2.2.1 which lets me store apps on the SD Card. Fantastic!</p>
<p>Not so much.</p>
<p>Seems that a lot of app developers either didn&#8217;t get the memo that option was available to them, or its just too difficult to do.  Now I can kind of expect this from solo developers or small companies, but Google?  C&#8217;mon, they created the OS.  They know that there are a lot of Android handsets that had this issue. So why do they continually create great large apps (<a href="http://music.google.com/">Google Music</a> and <a href="http://plus.google.com">Google+</a> both come in at <strong>over 7mb each</strong>)  Even Google Reader is over 2mb before I&#8217;ve even looked at an RSS feed.</p>
<p>And the kicker? None of the Google apps can be moved over to the SD card.  This means that I have yet to run a single Google app for more than a day before I have to uninstall it.  Heaven forbid I try to install two.</p>
<p>Now other companies such as <a href="http://evernote.com">Evernote</a> and <a href="http://wunderlist.com">Wunderlist</a> let me move the apps over, but run into problems.  With Evernote I can&#8217;t use the widget if its on the SD card.  Frustrating, but not a deal breaker for me.</p>
<p>So Google. Please take note. I&#8217;d love to use your apps, but until I can move them onto my phones SD card I just can&#8217;t use them.</p>
<img src="http://feeds.feedburner.com/~r/DavidJohnMead/~4/wv9nCUE-EFU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://davidjohnmead.com/2011/07/01/my-frustration-with-android-apps-especially-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://davidjohnmead.com/2011/07/01/my-frustration-with-android-apps-especially-google/</feedburner:origLink></item>
	</channel>
</rss>

