<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>Terence Eden has a Blog &#187; microsoft</title> <atom:link href="http://shkspr.mobi/blog/index.php/tag/microsoft/feed/" rel="self" type="application/rss+xml" /><link>http://shkspr.mobi/blog</link> <description>Mobiles, Shakespeare, Politics, Usability.</description> <lastBuildDate>Mon, 06 Feb 2012 16:31:09 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Changing the Microsoft 4000&#8242;s Zoom Keys in Ubuntu</title><link>http://shkspr.mobi/blog/index.php/2011/12/changing-the-microsoft-4000s-zoom-keys-in-ubuntu/</link> <comments>http://shkspr.mobi/blog/index.php/2011/12/changing-the-microsoft-4000s-zoom-keys-in-ubuntu/#comments</comments> <pubDate>Wed, 28 Dec 2011 12:30:15 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[linux]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[keyboard]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[ubuntu]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=5091</guid> <description><![CDATA[I&#8217;m in love with my keyboard! The Microsoft Natural Ergonomic Keyboard 4000 is a dream to type on. Large, well spaced keys, split keyboard, and a whole host of extra media buttons. There&#8217;s only one tiny problem. Two of the buttons don&#8217;t work in Linux &#8211; specifically, the keyboard scroll buttons. This is a long <a
href='http://shkspr.mobi/blog/index.php/2011/12/changing-the-microsoft-4000s-zoom-keys-in-ubuntu/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I&#8217;m in love with my keyboard! The <a
href="http://www.amazon.co.uk/gp/product/B000B9RYG8/ref=as_li_ss_tl?ie=UTF8&#038;tag=shkspr-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=B000B9RYG8">Microsoft Natural Ergonomic Keyboard 4000</a><img
src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&#038;l=as2&#038;o=2&#038;a=B000B9RYG8" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> is a dream to type on. Large, well spaced keys, split keyboard, and a whole host of extra media buttons.<br
/> <a
href="http://www.amazon.co.uk/gp/product/B000B9RYG8/ref=as_li_ss_tl?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000B9RYG8"><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/4126YPCP4DL.jpg" alt="Microsoft 4000 Keyboard" title="Microsoft 4000 Keyboard" width="500" height="309" class="aligncenter size-full wp-image-5098" /></a><br
/> There&#8217;s only one tiny problem.  Two of the buttons don&#8217;t work in Linux &#8211; specifically, the keyboard scroll buttons.  This is a <a
href="https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/313514">long standing bug in Linux</a>, but luckily it is fairly easy to fix.</p><p>Using <a
href="http://askubuntu.com/questions/69804/how-do-i-change-the-keymap-of-a-single-device-logitech-presenter">Florian Diesch&#8217;s tutorial at Ask Ubuntu</a>, I&#8217;ve come up with this simple guide to get your keyboard working.<br
/> <span
id="more-5091"></span></p><ol><li>Open a terminal.  Sorry, this is all going to be command prompt based!</li><li>Install the program evtest<pre>sudo apt-get install evtest</pre></li><li>You will need to find which input &#8220;event&#8221; corresponds to your keyboard. Run the following command<pre>sudo evtest /dev/input/event5</pre><p>When you press the scroll key on your keyboard, you should see an output like</p><pre>Event: time 1325072953.278713, type 4 (Misc), code 4 (ScanCode), value c022e
Event: time 1325072953.278729, type 1 (Key), code 109 (PageDown), value 1
Event: time 1325072953.278752, -------------- Report Sync ------------
</pre><p>If you don&#8217;t, cancel (using CTRL+C) and try another event number. Start at event0 and work your way up.</li><li>Let&#8217;s see what the keys are currently mapped to.  Type the command<pre>sudo /lib/udev/keymap -i input/event5</pre><p>(or whatever &#8220;event&#8221; number you need).  You should see an output like</p><pre>scan code: 0xC022D   key code: zoomin
scan code: 0xC022E   key code: zoomout</pre></li><li>We need to create a file which contains the new keymapping.  To do this, type<pre>sudo nano /lib/udev/keymaps/microsoft-4000</pre></li><li>Insert the following two lines into the file<pre>0xC022D pageup
0xC022E pagedown</pre><p>If you would rather scroll line-by-line, you can use</p><pre>0xC022D up
0xC022E down</pre><p>Save the file by pressing CTRL+X.</li><li>Now, let&#8217;s implement the remapped keys.  Type<pre>sudo /lib/udev/keymap input/event5 /lib/udev/keymaps/microsoft-4000</pre></li><li>Your scroll buttons should now be working!  If not&#8230; errr&#8230; try again?</li><li>Assuming it is working, we need to make this permanent so that we don&#8217;t have to type in a command every time we reboot.  To open the keymapping file, type<pre>sudo nano /lib/udev/rules.d/95-keymap.rules</pre></li><li>Scroll through the file until you see<pre>#
# The following are external USB keyboards
#

LABEL="keyboard_usbcheck"
</pre><p>Past in the following line</p><pre>ENV{ID_VENDOR_ID}=="045e", ENV{ID_MODEL_ID}=="00db", RUN+="keymap $name microsoft-4000"</pre><p>The line needs to be <strong>above</strong></p><pre>GOTO="keyboard_end"</pre><p>Save the file (CTRL+X).</li><li>Reboot.</li></ol><p>Hey presto! Your keys will now obey your commands.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5091&amp;md5=53b9e3f975e14209f72900d6a779845e" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2011/12/changing-the-microsoft-4000s-zoom-keys-in-ubuntu/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5091&amp;md5=53b9e3f975e14209f72900d6a779845e" type="text/html" /> </item> <item><title>Xbox QR Code &#8211; Proof that MS Tag is Dead?</title><link>http://shkspr.mobi/blog/index.php/2011/12/xbox-qr-code-proof-that-ms-tag-is-dead/</link> <comments>http://shkspr.mobi/blog/index.php/2011/12/xbox-qr-code-proof-that-ms-tag-is-dead/#comments</comments> <pubDate>Fri, 23 Dec 2011 11:28:25 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[qr]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[ms tag]]></category> <category><![CDATA[tag]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=5050</guid> <description><![CDATA[I&#8217;ve never been a fan of Microsoft&#8217;s proprietary 2D barcode system. With the latest news that their tag reader and creator will support QR codes, it looks like the writing is on the wall for the multi-coloured blobs. Further evidence of this can be found on Microsoft&#8217;s latest XBox poster which contains a rather prominent <a
href='http://shkspr.mobi/blog/index.php/2011/12/xbox-qr-code-proof-that-ms-tag-is-dead/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve never been a fan of <a
href="http://www.reddit.com/r/webdev/comments/nlmmc/ms_tags_vs_qr_codes/">Microsoft&#8217;s proprietary 2D barcode system</a>.  With the latest news that their <a
href="http://tag.microsoft.com/community/blog/t/microsoft_tag_announces_one-stop-shop_for_marketers_tag_qr_and_nfc.aspx">tag reader and creator will support QR codes</a>, it looks like the writing is on the wall for the multi-coloured blobs.</p><p>Further evidence of this can be found on Microsoft&#8217;s latest XBox poster which contains a rather prominent QR code.</p><p><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/Xbox-QR-Poster.jpg" alt="Xbox QR Poster" title="Xbox QR Poster" width="512" height="683" class="aligncenter size-full wp-image-5052" /></p><p>Here it is in more detail.<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/Xbox-QR-Detail.jpg" alt="Xbox QR Detail" title="Xbox QR Detail" width="512" height="503" class="aligncenter size-full wp-image-5051" /></p><p>When scanned, it goes to a <a
href="http://goo.gl/info/iGdDf">Google URL shortner</a>!</p><p>If Microsoft&#8217;s own marketing department doesn&#8217;t have faith in the MS Tag &#8211; or their own QR creator &#8211; why should anyone else?</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5050&amp;md5=bf1df5928429143356ab7fc11004756c" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2011/12/xbox-qr-code-proof-that-ms-tag-is-dead/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=5050&amp;md5=bf1df5928429143356ab7fc11004756c" type="text/html" /> </item> <item><title>Lumia Review</title><link>http://shkspr.mobi/blog/index.php/2011/12/lumia-review/</link> <comments>http://shkspr.mobi/blog/index.php/2011/12/lumia-review/#comments</comments> <pubDate>Fri, 02 Dec 2011 09:52:44 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[lumia]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[nokia]]></category> <category><![CDATA[review]]></category> <category><![CDATA[windows phone 7]]></category> <category><![CDATA[wp7]]></category><guid
isPermaLink="false">https://shkspr.mobi/blog/?p=4892</guid> <description><![CDATA[It was the best of phones &#8211; it was the worst of phones&#8230; I want to start this review by saying three things: I got this phone for free &#8211; thanks Nokia! I&#8217;m an extremely demanding mobile user. I recognise that I am an edge-case; what I find annoying, you may not. I&#8217;ve tried to <a
href='http://shkspr.mobi/blog/index.php/2011/12/lumia-review/'>[...]</a>]]></description> <content:encoded><![CDATA[<blockquote><p>It was the best of phones &#8211; it was the worst of phones&#8230;</p></blockquote><p><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/WP7-Voice-Recognition-Error.jpg" alt="WP7 Voice Recognition Error" title="WP7 Voice Recognition Error" width="480" height="662" class="aligncenter size-full wp-image-4908" /><br
/> I want to start this review by saying three things:</p><ul><li>I got this phone for free &#8211; thanks Nokia!</li><li>I&#8217;m an extremely demanding mobile user. I recognise that I am an edge-case; what I find annoying, you may not.</li><li>I&#8217;ve tried to stick to actual bugs, not just &#8220;it does things differently.&#8221;</li></ul><h2>Sergeant Elop&#8217;s Lonely Phone Club</h2><p>Imagine, of you will, you have just purchased a brand new copy of Sgt Pepper&#8217;s Lonely Hearts Club Band on vinyl.</p><p>It is beautifully designed, an astonishing work of art. You play side one and it is sublime &#8211; perhaps the perfect start to any album.</p><p>The you flip the disc to side two &#8211; and it&#8217;s Justin Bieber. A screeching, horrible, tune free noise that damages your calm and makes you want to smash your stereo.</p><p>That&#8217;s the Lumia 800 from Nokia. It&#8217;s Finland&#8217;s first Windows Phone 7.  It&#8217;s beautiful and infuriating in equal measure.<br
/> <span
id="more-4892"></span></p><h2>The Good</h2><p>There is much to praise the Lumia &#8211; and WP7 &#8211; for.  So much potential &#8211; and nearly all of it squandered. But, we&#8217;ll get to that&#8230; Let&#8217;s start with what I love.</p><h3>Beauty Is Skin Deep</h3><p>The phone is gorgeous. Like a futuristic pop-tart. Sleek, shiny, and midnight black.<br
/> It pulls off the incredible feat of being discreet and eye catching.<br
/> A pure monoblock. As enigmatic and attractive as the monolith from 2001.</p><p>There&#8217;s just one problem.  We&#8217;re in 2011.</p><h3>A Brand New Operating System</h3><p>Windows Phone 7 is different from all other phone operating systems before it. Sure, it has icons, widgets, lists, long presses, swipes, and &#8230; you know what? It isn&#8217;t different. It isn&#8217;t a new paradigm.  What it is, is gorgeous.</p><p>It&#8217;s a sparse and elegant experience. Fast and user friendly.</p><p>The &#8220;Metro UI&#8221; is really easy to use, gentle on the eye, and a clever way to organise a phone.</p><h3>Speed Demon</h3><p>This is one of the fastest phones I&#8217;ve used. It&#8217;s startup speed rivals that of BlackBerry. In day to day usage, I never found that it stuttered or slowed down &#8211; even while having several apps open at once.</p><h3>Our Friends Connected</h3><p>You can add in all your disparate social networks into your phone book.  So, when you look up a contact, you can easily see their last status message, their Facebook photos etc.</p><p>Just like Vodafone 360 did years ago&#8230;</p><p>But, unlike 360, it works really well. It seemed to match up all my Twitter, Facebook, and address book friends without hassle.</p><h3>Getting The Basics Right</h3><p>Call quality was excellent. Good speaker phone. Fine reception. Basically, it works as a phone.</p><p>The camera is quick to focus and produces outstanding images.</p><p>Ok&#8230; ok&#8230; If you want to use it as a basic smartphone, the Lumia will do you fine.<br
/> It browses the web, plays music, links all your social networks together, and looks beautiful while doing so.</p><p>It is <em>basically fine</em> &#8211; until you scratch beneath the surface.</p><h2>The Bad</h2><p>I thought that the <a
href="http://n8fail.tumblr.com/">Nokia N8 was the worst phone ever made</a> by Nokia. The Lumia may come a close second.</p><p>I&#8217;ve been posting a running commentary on Twitter of all the niggles I have with the Lumia.</p><p>Here are the highlights &#8211; and slightly more in depth explanations &#8211; of every bug and annoyance I found.  I have suffered, so that you may not.</p><p>Let&#8217;s start off with a gentle one&#8230;<br
/> <style type='text/css'>#bbpBox_141617103546494976 a { text-decoration:none; color:#0084B4; }#bbpBox_141617103546494976 a:hover { text-decoration:underline; }</style><div
id='bbpBox_141617103546494976' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Aww! <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> has a skeuomorph for its save icon. <a
href="http://t.co/4CFKklEz" rel="nofollow">http://t.co/4CFKklEz</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 29/11/2011 20:38' href='http://twitter.com/#!/edent/status/141617103546494976' target='_blank'>29/11/2011 20:38</a> via <a
href="http://twitpic.com" rel="nofollow" target="blank">Twitpic</a><a
href='https://twitter.com/intent/tweet?in_reply_to=141617103546494976&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=141617103546494976&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=141617103546494976&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/WP7-Skeuomorph.jpg" alt="WP7 Skeuomorph" title="WP7 Skeuomorph" width="480" height="360" class="aligncenter size-full wp-image-4910" /><br
/> For a very modern operating system, WP7 has a fondness for <a
href="http://en.wikipedia.org/wiki/Skeuomorph">outdated UI elements</a>. I can&#8217;t think of the last time I used a floppy disk.</p><p>That was the warm up. What would you say to a phone that you <em>can&#8217;t switch off</em>?</p><p><iframe
width="695" height="521" src="http://www.youtube.com/embed/uz-UQxBYnrw?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><p>I have since discovered that this only happens when the phone is plugged in. Maybe I&#8217;m unusual but, before going to bed, I switch off my phone and let it charge overnight.  I&#8217;ve had several WP7 fans say that I should switch my phone on to flight mode (go in to settings, scroll through) or switch my phone on to silent if I don&#8217;t want to be disturbed during the night.</p><p>There&#8217;s just two problems with that.  Firstly &#8211; why doesn&#8217;t the phone tell me that I can&#8217;t switch it off?  Secondly &#8211; it&#8217;s impossible to switch the phone on to silent.</p><h3>Silence Is Golden</h3><p>This may fall under the &#8220;just how I am used to it&#8221; school of errors, but bear me out.<br
/> On every phone I&#8217;ve owned I&#8217;ve had three sound profiles that I can toggle through.</p><ul><li>Ring and vibrate &#8211; what the phone is normally set to.</li><li>Vibrate &#8211; when I want to be notified, but having a loud ring isn&#8217;t appropriate.</li><li>Silent &#8211; I don&#8217;t want to be notified (I&#8217;m in a meeting).</li></ul><p>With the Lumia, I can toggle between Ring+Vibrate and Vibrate. There&#8217;s no way to get the phone to go silent without diving through a maze of menus.</p><p>In fairness, <a
href="http://code.google.com/p/android/issues/detail?id=9465">this is a problem which has affected recent Android phones</a> &#8211; but there are multiple (free) widgets which solve it.</p><h3>Screen Issues</h3><p>The screen on the Lumia is a mixed bag. When it&#8217;s displaying white text on a pure black background, it&#8217;s perfect. When there&#8217;s a white background, the screen seems &#8211; to me &#8211; to have lots of artefacts on it.<br
/> <a
href="http://shkspr.mobi/blog/wp-content/uploads/2011/12/WP7-Crap-lumia-screen.jpg"><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/WP7-Crap-lumia-screen.jpg" alt="WP7 Crap lumia screen" title="WP7 Crap lumia screen" width="600" height="450" class="aligncenter size-full wp-image-4935" /></a><br
/> The Lumia&#8217;s screen is at its worst when dealing with greys, and solid blogs of colours.  It suffers from lots of vertical banding which is really quite unpleasant.</p><p>I&#8217;ve scanned in the screen looking at a fairly normal grey image. While the scanner has overemphasised the problem (and my greasy finger prints!) you should be able to get an idea of how the problem manifests<img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/Lumia-Smeary-Screen.jpg" alt="Lumia Smeary Screen" title="Lumia Smeary Screen" width="480" height="904" class="aligncenter size-full wp-image-4928" />.</p><h3>Browser Bugbears</h3><p>Internet Explorer is a reasonable browser &#8211; but very buggy.</p><p>The URL bar keeps disappearing.  I&#8217;ve had this a couple of times. The URL bar just vanishes when you&#8217;re using the web. As far as I can tell, there&#8217;s no way to bring it back.</p><p><iframe
width="695" height="521" src="http://www.youtube.com/embed/at7AuVCMnZk?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><p><style type='text/css'>#bbpBox_143099517267476481 a { text-decoration:none; color:#0084B4; }#bbpBox_143099517267476481 a:hover { text-decoration:underline; }</style><div
id='bbpBox_143099517267476481' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Only two browsers have the URL bar at the bottom. <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> and Lynx.Right now, it's tough to say which is more functional...</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 03/12/2011 22:49' href='http://twitter.com/#!/edent/status/143099517267476481' target='_blank'>03/12/2011 22:49</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=143099517267476481&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=143099517267476481&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=143099517267476481&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_143253805545431040 a { text-decoration:none; color:#0084B4; }#bbpBox_143253805545431040 a:hover { text-decoration:underline; }</style><div
id='bbpBox_143253805545431040' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>One more annoyance with the Lumia's browser. Scroll down a page, click a link, then click back - it dumps you at the top of the page. <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 04/12/2011 09:02' href='http://twitter.com/#!/edent/status/143253805545431040' target='_blank'>04/12/2011 09:02</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=143253805545431040&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=143253805545431040&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=143253805545431040&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_142494761276813312 a { text-decoration:none; color:#0084B4; }#bbpBox_142494761276813312 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142494761276813312' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Unbelievable! IE on <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> doesn't reflow text when you zoom in on a web page. The Lumia is quickly losing its lustre.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 02/12/2011 06:46' href='http://twitter.com/#!/edent/status/142494761276813312' target='_blank'>02/12/2011 06:46</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142494761276813312&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142494761276813312&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142494761276813312&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p><iframe
width="695" height="391" src="http://www.youtube.com/embed/LpQhXZH1_1Y?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><p>The scrolling for the web browser sometimes stops responding.</p><p><iframe
width="695" height="521" src="http://www.youtube.com/embed/sasR5QS0Kpg?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><h3>Meeting You, Meeting Me</h3><p>It&#8217;s really hard to accept meeting invites on the Lumia.  On my Exchange email, it works perfectly.  For some Gmail invites, I have to click a link and go to Google Calendar on the web.  The Lumia doesn&#8217;t recognise <a
href="http://en.wikipedia.org/wiki/.ics">.ics files</a> &#8211; so there&#8217;s no way the email client can talk to the calendar.</p><p>But, worse is to come. I asked someone at Microsoft to send me a meeting invite to my Gmail account.  While the invite worked fine on the web, the Lumia gave me literally no way to answer the meeting invite &#8211; as this video demonstrates.</p><p><iframe
width="695" height="521" src="http://www.youtube.com/embed/5oID3NsmdJo?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><h3>Crapware</h3><p>This is Nokia&#8217;s flagship phone &#8211; so you think they would have taken more care with it, wouldn&#8217;t you?  As well as a buggy OS, they&#8217;ve filled it with&#8230; let&#8217;s just say &#8220;non-premium&#8221; apps.</p><p><style type='text/css'>#bbpBox_142165391202979840 a { text-decoration:none; color:#0084B4; }#bbpBox_142165391202979840 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142165391202979840' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>I do like the fact that I can uninstall the bloatware on the Lumia. Goodbye Ministry of Sound (what?) and Sky "News".</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 01/12/2011 08:57' href='http://twitter.com/#!/edent/status/142165391202979840' target='_blank'>01/12/2011 08:57</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142165391202979840&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142165391202979840&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142165391202979840&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_142166226637029376 a { text-decoration:none; color:#0084B4; }#bbpBox_142166226637029376 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142166226637029376' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>I think one problem with <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> is that it's caught between fun and serious. A BA app & Ministry of Sound. Xbox & Office. Feels conflicted.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 01/12/2011 09:00' href='http://twitter.com/#!/edent/status/142166226637029376' target='_blank'>01/12/2011 09:00</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142166226637029376&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142166226637029376&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142166226637029376&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p>Some apps, like this one from BA, need updating as soon as you switch on the phone. Sadly, you can&#8217;t click a button to update &#8211; you have to go into the app store.<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/BA-Update.jpg" alt="BA Update" title="BA Update" width="480" height="359" class="aligncenter size-full wp-image-4913" /></p><p>The greatest opprobrium is reserved for TripAdvisor. I know that deals like this take a lot of time and money to organise &#8211; but they really could have done better than this pathetic effort.</p><p><style type='text/css'>#bbpBox_144097260937019392 a { text-decoration:none; color:#0084B4; }#bbpBox_144097260937019392 a:hover { text-decoration:underline; }</style><div
id='bbpBox_144097260937019392' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>One of the default apps on Nokia's flagship Lumia is... an iPhone app. Well done TripAdvisor. <a
href="http://t.co/7tQPWEOf" rel="nofollow">http://t.co/7tQPWEOf</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 06/12/2011 16:53' href='http://twitter.com/#!/edent/status/144097260937019392' target='_blank'>06/12/2011 16:53</a> via <a
href="http://twitpic.com" rel="nofollow" target="blank">Twitpic</a><a
href='https://twitter.com/intent/tweet?in_reply_to=144097260937019392&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=144097260937019392&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=144097260937019392&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/Lumia-Tripadvisor.jpg" alt="Lumia Tripadvisor" title="Lumia Tripadvisor" width="273" height="457" class="aligncenter size-full wp-image-4917" /></p><p>Still, at least they let you easily install the bloat.</p><p><iframe
width="695" height="391" src="http://www.youtube.com/embed/Mn-X8aAmu2M?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p><h3>Things Go Better When We&#8217;re Together</h3><p>Microsoft may &#8211; or may not &#8211; be buying Nokia.  One thing is for sure, they&#8217;re working closely together.  What&#8217;s weird is why they&#8217;ve decided to duplicate some of the services on the phone.<br
/> <style type='text/css'>#bbpBox_142620742520029184 a { text-decoration:none; color:#0084B4; }#bbpBox_142620742520029184 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142620742520029184' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>The Lumia has both the Zune music store *and* the Nokia music store. Different prices in both. Different sign-in requirements for both. <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 02/12/2011 15:06' href='http://twitter.com/#!/edent/status/142620742520029184' target='_blank'>02/12/2011 15:06</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142620742520029184&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142620742520029184&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142620742520029184&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_142668686782758912 a { text-decoration:none; color:#0084B4; }#bbpBox_142668686782758912 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142668686782758912' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Very impressed with the Lumia's music streaming over 3G. No idea if it's Nokia music or Zune, but it's free & high quality.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 02/12/2011 18:17' href='http://twitter.com/#!/edent/status/142668686782758912' target='_blank'>02/12/2011 18:17</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142668686782758912&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142668686782758912&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142668686782758912&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_144100104570281985 a { text-decoration:none; color:#0084B4; }#bbpBox_144100104570281985 a:hover { text-decoration:underline; }</style><div
id='bbpBox_144100104570281985' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Just discover that the Lumia has Microsoft maps AND Nokia maps. Now that's what I call synergy!</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 06/12/2011 17:05' href='http://twitter.com/#!/edent/status/144100104570281985' target='_blank'>06/12/2011 17:05</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=144100104570281985&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=144100104570281985&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=144100104570281985&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> I&#8217;m all for customer choice &#8211; but here, it just seems confusing.</p><p>Finally, Nokia seems to have its own app store.  Once again, we see just how little Nokia care for UX.<br
/> <style type='text/css'>#bbpBox_143734631764725760 a { text-decoration:none; color:#0084B4; }#bbpBox_143734631764725760 a:hover { text-decoration:underline; }</style><div
id='bbpBox_143734631764725760' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Nokia Lumia: untested, buggy, & even its own app store looks amateur. Still, Facebook is hardly a major brand, is it? <a
href="http://t.co/LeXonzxj" rel="nofollow">http://t.co/LeXonzxj</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 05/12/2011 16:53' href='http://twitter.com/#!/edent/status/143734631764725760' target='_blank'>05/12/2011 16:53</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=143734631764725760&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=143734631764725760&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=143734631764725760&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/Nokia-App-Store-WP7.jpg" alt="Nokia App Store WP7" title="Nokia App Store WP7" width="480" height="360" class="aligncenter size-full wp-image-4915" /></p><h3>Paperback Writer</h3><p>The keyboard is a very strange beast. It&#8217;s mostly fine, but has some oddities.<br
/> <style type='text/css'>#bbpBox_141878056330604545 a { text-decoration:none; color:#0084B4; }#bbpBox_141878056330604545 a:hover { text-decoration:underline; }</style><div
id='bbpBox_141878056330604545' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Lumia's keyboard is infuriating. Sometimes white on dark, sometimes the inverse. Jumps up to accommodate buttons which ruins touch typing.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 30/11/2011 13:55' href='http://twitter.com/#!/edent/status/141878056330604545' target='_blank'>30/11/2011 13:55</a> via <a
href="http://www.WindowsPhone.com/" rel="nofollow" target="blank">WindowsLive</a><a
href='https://twitter.com/intent/tweet?in_reply_to=141878056330604545&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=141878056330604545&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=141878056330604545&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_142148917289693185 a { text-decoration:none; color:#0084B4; }#bbpBox_142148917289693185 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142148917289693185' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Latest Lumia niggle - the keyboard doesn't display a "next" button when filling in text fields. And "Lumia" isn't in its dictionary! <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 01/12/2011 07:51' href='http://twitter.com/#!/edent/status/142148917289693185' target='_blank'>01/12/2011 07:51</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142148917289693185&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142148917289693185&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142148917289693185&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_143958277707939840 a { text-decoration:none; color:#0084B4; }#bbpBox_143958277707939840 a:hover { text-decoration:underline; }</style><div
id='bbpBox_143958277707939840' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>The <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> keyboard tries to autocorrect the word "Google" into "Bootleg". That's a new one, spreading FUD via dictionary!</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 06/12/2011 07:41' href='http://twitter.com/#!/edent/status/143958277707939840' target='_blank'>06/12/2011 07:41</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=143958277707939840&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=143958277707939840&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=143958277707939840&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p>Weirdly, the word &#8220;Lumia&#8221; isn&#8217;t in the Lumia&#8217;s dictionary. So there&#8217;s a little red squiggle ever time you write it. Or other common words.</p><p>That said &#8211; the in-line spell check is very nice. I miss it on my Android &#8211; I think I first saw it on the BlackBerry many years ago.</p><h3>My Baby&#8217;s Got Me Wrapped Up In Chains</h3><p>We&#8217;re living in a post-PC age. Unless you&#8217;re Microsoft.  You have to connect to a Windows PC to update software, copy across music and videos, change the BlueTooth name of the device, or even subscribe to podcasts.</p><p>What&#8217;s worse, is you have to install the Zune software if you want to get music or photos off the device. You can&#8217;t send via Bluetooth, you can&#8217;t just shove in a USB cable and drag them off.  You have to install the 100MB behemoth that is Zune, restart your PC several times, fire up the software, wait for it to detect your phone, then let it sync before you can get your photos out.</p><p>Of course, you could email your photos off the phone &#8211; but the UI for that is terrible. There&#8217;s no way to select multiple images, so you have to attach each one individually.<br
/> <style type='text/css'>#bbpBox_142195891779010560 a { text-decoration:none; color:#0084B4; }#bbpBox_142195891779010560 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142195891779010560' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Guess how easy it is to email multiple photos on <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a>?Android: Gallery, select photos, send.Lumia: Email, add, photo, select one. Repeat.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 01/12/2011 10:58' href='http://twitter.com/#!/edent/status/142195891779010560' target='_blank'>01/12/2011 10:58</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142195891779010560&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142195891779010560&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142195891779010560&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p>It seems that any time you want to do something to your phone, you have to connect it to a PC running Windows.<br
/> <style type='text/css'>#bbpBox_142733991294939136 a { text-decoration:none; color:#0084B4; }#bbpBox_142733991294939136 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142733991294939136' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Yay! There's an update for my Nokia Lumia!Boo! I have to connect to a computer to install it.<a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 02/12/2011 22:36' href='http://twitter.com/#!/edent/status/142733991294939136' target='_blank'>02/12/2011 22:36</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142733991294939136&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142733991294939136&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142733991294939136&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> <style type='text/css'>#bbpBox_143088834270334976 a { text-decoration:none; color:#0084B4; }#bbpBox_143088834270334976 a:hover { text-decoration:underline; }</style><div
id='bbpBox_143088834270334976' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>Unbelievable - the Lumia won't let me download an MP3 from the web. It'll play it, sure, but it's not saved anywhere. <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 03/12/2011 22:06' href='http://twitter.com/#!/edent/status/143088834270334976' target='_blank'>03/12/2011 22:06</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=143088834270334976&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=143088834270334976&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=143088834270334976&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><h3>Let&#8217;s Talk About Text, Baby</h3><p>Do you ever use read receipts for SMS? Perfect for seeing when someone has received your message. In every other phone on the planet, the read receipt is integrated in to the SMS app &#8211; so you can see at a glance which messages have been received.</p><p>With WP7, you get a long list of phone numbers which have received a message.  It doesn&#8217;t even do the simple task of showing you the name of your contact.<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/12/WP7-Lumia-SMS-Read-receipt.jpg" alt="WP7 Lumia SMS Read receipt" title="WP7 Lumia SMS Read receipt" width="240" height="403" class="aligncenter size-full wp-image-4924" /></p><h2>No Thanks</h2><p>I hope that what I&#8217;ve shown you is a litany of bugs, errors, gotchas, and foul ups. I don&#8217;t think any of the points I&#8217;ve raised are unfair. I like to think that I judge other phones just as harshly &#8211; see my treatment of <a
href="http://shkspr.mobi/blog/index.php/2011/03/the-death-of-the-blackberry/">BlackBerry</a> and of <a
href="http://shkspr.mobi/blog/index.php/2009/02/itunes-sucks-a-rational-discussion/">iPhone</a> and of <a
href="http://shkspr.mobi/blog/index.php/2011/01/how-sony-ericsson-killed-android/">Android</a>.<br
/> <style type='text/css'>#bbpBox_142929777391706112 a { text-decoration:none; color:#0084B4; }#bbpBox_142929777391706112 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142929777391706112' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>For regular users, the Lumia is an astonishing phone, & <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> is a joy to use. For power-users, it will enrapture & disgust in equal measure.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 03/12/2011 11:34' href='http://twitter.com/#!/edent/status/142929777391706112' target='_blank'>03/12/2011 11:34</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142929777391706112&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142929777391706112&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142929777391706112&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p>I know this is a brand new OS &#8211; but you don&#8217;t get credit for trying.<br
/> <style type='text/css'>#bbpBox_142509792840261632 a { text-decoration:none; color:#0084B4; }#bbpBox_142509792840261632 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142509792840261632' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>I want to make it clear that, like the iPhone, the Lumia is an excellent device; as long as you stay within its parameters. I'm an edge case</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 02/12/2011 07:45' href='http://twitter.com/#!/edent/status/142509792840261632' target='_blank'>02/12/2011 07:45</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142509792840261632&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142509792840261632&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142509792840261632&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div><br
/> If you are prepared to stay in the walled garden, and put up with the bugs, the Lumia is a decent device.  But there are devices which do more, cost less, and have more apps on them.</p><p>I&#8217;m not giving up on Windows Phone 7.  It is still a work in progress.  There is a great deal of potential here &#8211; and I look forward to seeing what the future brings.<br
/> <style type='text/css'>#bbpBox_142196233275052032 a { text-decoration:none; color:#0084B4; }#bbpBox_142196233275052032 a:hover { text-decoration:underline; }</style><div
id='bbpBox_142196233275052032' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>For the record, Lumia is a gorgeous device, the <a
href="http://twitter.com/search?q=%23WP7" title="#WP7">#WP7</a> interface is *mostly* amazing. It feels like the original iPhone; radical and limited.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 01/12/2011 10:59' href='http://twitter.com/#!/edent/status/142196233275052032' target='_blank'>01/12/2011 10:59</a> via <a
href="http://shkspr.mobi/blog/index.php/copyright-terence-eden/" rel="nofollow" target="blank">©Terence Eden SomeRightsReserved</a><a
href='https://twitter.com/intent/tweet?in_reply_to=142196233275052032&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=142196233275052032&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=142196233275052032&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=edent'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1573862220/Terence_Eden_Headshot_Crop_normal.JPG' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=edent'>@edent</a><div
style='margin:0; padding-top:2px'>Terence Eden</div></div><div
style='clear:both'></div></div></div></p><p>For now though, avoid the Lumia. Wait until Microsoft fixes the bugs and until Nokia decides release a phone that they are happy with.  Because, honestly, I don&#8217;t think anyone at Nokia can believe this is the best that they can do.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4892&amp;md5=8271256aa781dc14eddcab3f43ae361b" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2011/12/lumia-review/feed/</wfw:commentRss> <slash:comments>14</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4892&amp;md5=8271256aa781dc14eddcab3f43ae361b" type="text/html" /> </item> <item><title>Windows Phone 7: Mango. So what?</title><link>http://shkspr.mobi/blog/index.php/2011/05/windows-phone-7-mango-so-what/</link> <comments>http://shkspr.mobi/blog/index.php/2011/05/windows-phone-7-mango-so-what/#comments</comments> <pubDate>Wed, 25 May 2011 15:18:21 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[mango]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[windows]]></category> <category><![CDATA[windows phone 7]]></category> <category><![CDATA[wp7]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=4104</guid> <description><![CDATA[I was recently invited to the Windows Phone 7 Mango preview (no, I didn&#8217;t get a free phone) &#8211; here are a few thoughts. The first thing to note is that WP7 still looks gorgeous &#8211; the front tiles (aka widgets) are smart and add a real feeling of fluidity to the phone. Juicy The <a
href='http://shkspr.mobi/blog/index.php/2011/05/windows-phone-7-mango-so-what/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I was recently invited to the Windows Phone 7 Mango preview (no, <a
href="http://www.1000heads.com/2011/05/google-v-microsoft-a-question-of-ethics/">I didn&#8217;t get a free phone</a>) &#8211; here are a few thoughts.</p><p>The first thing to note is that WP7 still looks gorgeous &#8211; the front tiles (aka widgets) are smart and add a real feeling of fluidity to the phone.</p><h2>Juicy</h2><p>The second thing is rather more depressing.  Windows is <em>still</em> playing catch-up.  It&#8217;s a standard joke that neither the iPhone nor WP7 had copy-n-paste on release &#8211; what&#8217;s not a joke is the number of &#8220;new&#8221; features that Microsoft announced are things which have been around for years.</p><ul><li>Groups of contacts. I don&#8217;t know about you, but I was able to group contacts on my ancient 6310i.</li><li>Multi-Tasking.  You know, like all those Symbian phones had years ago.</li><li>Facebook events now appear in your calendar.  Again, just like on BlackBerry, Android, etc.</li><li>Music pauses when you receive an SMS &#8211; the phone reads the message to you and you can use voice recognition to compose a message.  Nice that it&#8217;s all integrated, but hardly revolutionary.</li></ul><p><span
id="more-4104"></span></p><h2>Cognitive Dissonance</h2><p>Compare and contrast the following two statements made by Microsoft.</p><blockquote><p>The way in which people browse the web on a phone is different to how they browse the web on a desktop PC.</p></blockquote><p>&#8230;and&#8230;</p><blockquote><p>Windows Phone 7 uses Internet Explorer 9.  The exactly the same rendering engine as desktop IE9. So pages look the same on both Desktop and Mobile.</p></blockquote><p>While it&#8217;s admirable that there&#8217;s just one set of quirks for developers to code for &#8211; and potentially the same exploits on both &#8211; I can&#8217;t help but think this is misguided.  Do users really want all pages to render the same, or would they rather have a mobile specific rendering?</p><p>Here&#8217;s a sample image provided by Microsoft.<br
/> <img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/05/Browser-in-phone.jpg" alt="wp7 Browser in phone" title="wp7 Browser in phone" width="500" height="993" class="aligncenter size-full wp-image-4105" /></p><h2>Forget your troubles, come on, get &#8216;appy</h2><p>And so, finally, on to apps.</p><p>Where WP7 really excels in in 3D.  The sample BA app had a 3D seat checker which, while gimmicky, was incredibly smooth.<br
/> <a
href="http://shkspr.mobi/blog/wp-content/uploads/2011/05/3D-Seat-selection.jpg"><img
src="http://shkspr.mobi/blog/wp-content/uploads/2011/05/3D-Seat-selection.jpg" alt="3D Seat selection" title="3D Seat selection" width="512" height="284" class="aligncenter size-full wp-image-4106" /></a></p><p>With a claimed 18,000 apps, WP7 has overtaken BlackBerry and is catching up on the other platforms.  There are just two flies in the ointment.</p><h3>Private Apps</h3><p>If you&#8217;re a big business and want to put &#8220;employee only&#8221; apps on to your employee&#8217;s phones, you can!  Well, you upload the app to the marketplace, set it as private, then distribute a secret URL to your employees.  Anyone with that URL can download the app &#8211; so if an email accidentally gets forwarded&#8230;</p><p>It&#8217;s a rather unsatisfactory kludge.  Why not allow developers to deploy direct to handsets?  (I know, I know&#8230; it breaks the MS control.)</p><h3>Developer Tools</h3><p>So, you&#8217;re competing with Apple iPhone.  Presumably you want to attract iPhone developers to your platform, right?  So, why aren&#8217;t WP7 development tools available on the Mac?</p><blockquote><p>Windows 7 runs perfectly on a Mac.  Buy a licence.  We&#8217;ve no interest in making our tools available on other operating systems.</p></blockquote><p>That is, almost verbatim, the answer I received.  I can understand not making the tools available on Linux.  But iOS developers can only use a Mac.  Why should they have to fork out for and install an entire OS just to run WP7 development?</p><p><a
href="http://www.microsoft.com/mac/">Microsoft Office is available on Mac</a> &#8211; so someone in Redmond has an eye on that market.</p><p>It just seems silly that you&#8217;d ignore all the iOS developers.</p><h2>Overall</h2><p>WP7 is a great platform.  It&#8217;s finally catching up with features that other phone users take for granted.  The hardware and software work well &#8211; especially when tied in to Microsoft services like Xbox and Sharepoint.</p><p>I&#8217;m just left with a feeling of &#8220;so what?&#8221;  As a platform, there&#8217;s nothing I can do on there that can&#8217;t be done on other devices.  Yes, the 3D XNA / Silverlight thing is nice &#8211; but any better than OpenGL?</p><p>As a consumer phone, it&#8217;s perfectly acceptable.<br
/> For Xbox gamers, this is the only phone to consider.</p><p>As a business device, it ticks many of the right boxes.<br
/> If you&#8217;re heavily invested in the Microsoft way of working (Sharepoint, Office 365, Outlook), you&#8217;d be hard pressed to find a better phone.</p><p>But for everyone else, there&#8217;s no &#8220;wow&#8221; factor.  Nothing that makes me think &#8220;I have to get this phone because it does something nothing else does.&#8221;</p><p>Perhaps I&#8217;m being slightly cynical.  The hardware and software is great &#8211; it&#8217;s nice to see them catching up with all the other phones.  WP7 is a welcome addition to the ecosystem, even if it isn&#8217;t driving forward innovation.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4104&amp;md5=b813c509702f8623fa2775f2152386b3" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2011/05/windows-phone-7-mango-so-what/feed/</wfw:commentRss> <slash:comments>7</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=4104&amp;md5=b813c509702f8623fa2775f2152386b3" type="text/html" /> </item> <item><title>MS Tags vs QR Codes</title><link>http://shkspr.mobi/blog/index.php/2010/11/ms-tags-vs-qr-codes/</link> <comments>http://shkspr.mobi/blog/index.php/2010/11/ms-tags-vs-qr-codes/#comments</comments> <pubDate>Mon, 29 Nov 2010 08:00:26 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[qr]]></category> <category><![CDATA[2d codes]]></category> <category><![CDATA[bias]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[ms tag]]></category> <category><![CDATA[nablomo]]></category> <category><![CDATA[qr codes]]></category> <category><![CDATA[tag]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=3134</guid> <description><![CDATA[I don&#8217;t want this to be seen as an anti-Microsoft rant. I&#8217;m a great fan of Windows Phone 7, my Microsoft 4000 keyboard is the only device I&#8217;m comfortable typing on, and my Xbox hardware is still going strong years after release. I&#8217;m also heartily impressed with Microsoft&#8217;s continuing support of the Creative Commons. True, <a
href='http://shkspr.mobi/blog/index.php/2010/11/ms-tags-vs-qr-codes/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I don&#8217;t want this to be seen as an anti-Microsoft rant.  I&#8217;m a great fan of Windows Phone 7, my Microsoft 4000 keyboard is the only device I&#8217;m comfortable typing on, and my Xbox hardware is still going strong years after release.  I&#8217;m also heartily impressed with <a
href="http://creativecommons.org/weblog/entry/25143">Microsoft&#8217;s continuing support of the Creative Commons</a>.  True, I don&#8217;t use Windows at home &#8211; but I don&#8217;t blindly devote my life to knocking them unfairly.</p><p>But I do have serious concerns about <a
href="http://europe.hub-4.com/news/2791/riverside-machinery-lead-the-way-with-exciting-new-barcode-technology">Microsoft&#8217;s attempts to enter the 2D tag market</a>.  While talking about QR Codes on Twitter, the Online Community Manager for Microsoft Tags sent me this message.<br
/> <style type='text/css'>#bbpBox_7152696112975872 a { text-decoration:none; color:#0084B4; }#bbpBox_7152696112975872 a:hover { text-decoration:underline; }</style><div
id='bbpBox_7152696112975872' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#022330; background-image:url(http://a3.twimg.com/profile_background_images/88179178/4047922449_0aa9248f2e_o.jpg);'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>@<a
class="tweet-url username" href="http://twitter.com/PongrMedia">PongrMedia</a> @<a
class="tweet-url username" href="http://twitter.com/edent">edent</a> have you checked out Microsoft Tag? You can make some pretty cool custom designs <a
href="http://ow.ly/i/5Ljk">http://ow.ly/i/5Ljk</a></span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 23/11/2010 19:25' href='http://twitter.com/#!/elemenager/status/7152696112975872' target='_blank'>23/11/2010 19:25</a> via <a
href="http://www.hootsuite.com" rel="nofollow" target="blank">HootSuite</a><a
href='https://twitter.com/intent/tweet?in_reply_to=7152696112975872&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=7152696112975872&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=7152696112975872&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=elemenager'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a0.twimg.com/profile_images/823309610/26423_1406042878551_1456770507_31084222_6729058_n_normal.jpg' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=elemenager'>@elemenager</a><div
style='margin:0; padding-top:2px'>Elliott Lemenager</div></div><div
style='clear:both'></div></div></div></p><p>It seems that Elliot spends his entire time trying to convince QR users that <a
href="http://tag.microsoft.com/resources/faq.aspx">MS Tags</a> are the next big thing.  But are they really? <a
href="http://nfgworld.com/mb/thread/781">Not everyone is convinced</a>.  I&#8217;d like to take you through why I think that Microsoft&#8217;s tag strategy is misguided and why you should avoid using them.<br
/><div
id="attachment_3147" class="wp-caption aligncenter" style="width: 210px"><img
src="http://shkspr.mobi/blog/wp-content/uploads/2010/11/200px-High_Capacity_Color_Barcode.png" alt="MS Tag" title="200px-High_Capacity_Color_Barcode" width="200" height="200" class="size-full wp-image-3147" /><p
class="wp-caption-text">Example MS Tag</p></div><br
/> <span
id="more-3134"></span></p><h2>Indirect</h2><p>I&#8217;ve spoken before about <a
href="http://shkspr.mobi/blog/index.php/2010/11/hiding-space-invaders-in-qr-codes/">the perils of indirect codes</a>.  Essentially, an MS Tag contains just a number, the reader then has to connect to the Internet, query Microsoft&#8217;s servers, then return the information to you.</p><p>This is worse than a QR code and raises the following questions:</p><ul><li>What if Microsoft&#8217;s database goes down, gets corrupted, is switched off, or is generally unavailable?</li><li>Can Microsoft profit from your data?</li><li>When Microsoft starts charging &#8211; what happens if you don&#8217;t pay?</li><li>If a customer is roaming, or doesn&#8217;t have internet access, how do they get the content?  A QR card containing a business card can transfer contact details to your phone even if you don&#8217;t have an Internet connection.</li></ul><p>One positive feature of using an indirect code is that you can update the destination information.  You can log on to Microsoft&#8217;s servers and point your code at a different URL, that way, you don&#8217;t need to reprint your tags.<br
/> Of course, you can do this with a QR code as well!  If your QR code points to example.com/ScanMe &#8211; all you need to do is <a
href="http://www.webweaver.nu/html-tips/web-redirection.shtml">update your .htaccess file</a> to redirect the scanner to a different page.</p><h2>Controlled By a 3rd Party</h2><p>With a QR code it is <em>you</em> who are in control.  When you relinquish that control, you open yourself up to a world of uncertainty.<br
/> Take a look at these two clauses from the <a
href="http://tag.microsoft.com/tag-terms-of-use.aspx">Microsoft Tag Terms of Use</a></p><blockquote><p>we may change this Agreement, the API or any Service at any time and for any reason, with or without notice. Such changes may include removal of features, addition of new features or the requirement of fees for previously free features</p></blockquote><p>So, once your MS Tag is getting a few hundred scans a day, Microsoft can send you an email saying</p><blockquote><p>&#8220;Nice campaign you&#8217;re running there.  It would be a pity if anything happened to it.  Shall we say $10 per scan?&#8221;</p></blockquote><p>Or, take a look at this fine piece of legalese.</p><blockquote><p>THE API AND SERVICE, INCLUDING BUT NOT LIMITED TO TAGS AND REPORTS, ARE PROVIDED &#8220;AS IS&#8221; WITHOUT WARRANTY OF ANY KIND. MICROSOFT AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY, FUNCTIONALITY, ACCURACY OR AVAILABILITY OF THE SERVICE OR TAGS, OR THE INFORMATION CONTAINED IN THE DOCUMENTS, REPORTS AND/OR RELATED GRAPHICS PUBLISHED AS PART OF THE SERVICE OR IN CONJUNCTION WITH ANY TAGS FOR ANY PURPOSE</p></blockquote><p>Now, I know that all services disclaim liability.  But a QR code isn&#8217;t a service.  It&#8217;s a specification.  No one can suddenly revoke it.  It will never stop working because a company goes out of business or simply decides to retire a service.</p><h2>More Expensive To Print</h2><p>This isn&#8217;t a trivial point.  A QR code works best in black and white &#8211; but you can use colours if you want.  MS Tags require a complex colour printing process.  That&#8217;s expensive if you&#8217;re printing out fliers, photocopying leaflets, or simply ordering business cards.</p><p>You can <a
href="http://www.istartedsomething.com/20090109/hacking-microsoft-tags-hccb-works-monochrome-too/">hack MS Tags to make them readable in black and white</a> &#8211; but it&#8217;s not officially supported.</p><p>I&#8217;ll agree that the basic QR code is nothing much to look at &#8211; but that doesn&#8217;t mean you can&#8217;t <a
href="http://shkspr.mobi/blog/index.php/2010/11/qr-tetris/">make them as visually interesting as MS Tags if you want</a>.</p><h2>Limited Availability</h2><p>I&#8217;m a big fan of Windows Phone 7.  You would think it would be natural to ensure that every WP7 device has an MS Tag reader. <a
href="https://twitter.com/edent/status/7425952200003584">I asked Oded Ran, Microsoft UK&#8217;s Head of Consumer Marketing for Windows Phone, if that was the case.</a><br
/> <style type='text/css'>#bbpBox_7515358512549888 a { text-decoration:none; color:#0084B4; }#bbpBox_7515358512549888 a:hover { text-decoration:underline; }</style><div
id='bbpBox_7515358512549888' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#6e7777; background-image:url(http://a0.twimg.com/profile_background_images/105118290/twilk_background_4bfc4d73f1c6e.jpg);'><div
style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span
style='width:100%; font-size:18px; line-height:22px;'>@<a
class="tweet-url username" href="http://twitter.com/edent">edent</a> no, it doesn't come pre-installed.</span><div
class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img
align='middle' src='http://shkspr.mobi/blog/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a
title='tweeted on 24/11/2010 19:26' href='http://twitter.com/#!/odedran/status/7515358512549888' target='_blank'>24/11/2010 19:26</a> via <a
href="http://www.tweetdeck.com" rel="nofollow" target="blank">TweetDeck</a><a
href='https://twitter.com/intent/tweet?in_reply_to=7515358512549888&related=https://twitter.com/edent' class='bbp-action bbp-reply-action' title='Reply'><span><em
style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a
href='https://twitter.com/intent/retweet?tweet_id=7515358512549888&related=https://twitter.com/edent' class='bbp-action bbp-retweet-action' title='Retweet'><span><em
style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a
href='https://twitter.com/intent/favorite?tweet_id=7515358512549888&related=https://twitter.com/edent' class='bbp-action bbp-favorite-action' title='Favorite'><span><em
style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div
style='float:left; padding:0; margin:0'><a
href='http://twitter.com/intent/user?screen_name=odedran'><img
style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/1144070545/Oded_Ran_-_casual_-_smaller_normal.jpg' /></a></div><div
style='float:left; padding:0; margin:0'><a
style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=odedran'>@odedran</a><div
style='margin:0; padding-top:2px'>Oded Ran</div></div><div
style='clear:both'></div></div></div></p><p>I understand better than most the realities of bringing a device to market.  It&#8217;s a constant battle over which features have to make the cut.  It just seems odd to me that Microsoft didn&#8217;t insist on a tag reader to be installed.  True, there are readers available in the Windows Phone 7 app store &#8211; but it strikes me a glaring omission not to capitalise on the new platform. <a
href="http://news.softpedia.com/news/Microsoft-Tag-Reader-for-Windows-Phone-7-Soon-163458.shtml">The MS Tag reader wasn&#8217;t even available at launch</a>.  I&#8217;m sure Microsoft have a high level of confidence in both platforms, but it&#8217;s a worrying gap.</p><p>While Microsoft claim that they&#8217;re available on more phones than other readers, I find that hard to believe.  What&#8217;s more, because the code is proprietary, you&#8217;re once again reliant on Microsoft to release a reader for your platform.  If MS makes a business decision not to support, say, Bada, you literally cannot reach those customers.  You can see the full list of supported phones at <a
href="http://www.gettag.mobi/">http://www.gettag.mobi/</a> &#8211; Bada isn&#8217;t on the list &#8211; and there&#8217;s no indication of when or if it will ever be available.</p><p>Once again, the open standard wins through.  Readers can be created by anyone for any platform.</p><h2>Not as Recognisable</h2><p>It&#8217;s pretty cool that MS Tags can be merged into images like these.<br
/> <a
href="http://ow.ly/i/5Ljk" target="_blank"><img
src="http://static.ow.ly/photos/normal/5Ljk.jpg" alt="Owly Images" /></a><br
/> But how do you let users know that it&#8217;s a scannable image?  You either need an extra graphic or text explaining which image can be scanned.<br
/> A QR code has a distinct look which is easy for a customer to recognise.</p><h2>Continuing Support</h2><p>It&#8217;s hard introducing a new technology to a crowded marketplace &#8211; but once again, Microsoft haven&#8217;t done themselves any favours with developers.  The <a
href="http://getsatisfaction.com/microsofttag">MS Tag support portal is eerily quiet</a> and littered with unanswered questions.<br
/> True, there is only a small team working on this &#8211; but it still strikes me as a bit of a half-hearted effort.</p><h2>Final Thoughts</h2><p><a
href="http://www.denso-wave.com/qrcode/qrstandard-e.html">QR Codes are an open and published standard (ISO/IEC18004)</a>.  There are no patent or royalty fees to pay.  Ever.</p><p>I struggle to see what MS Tags bring to the party.  Their one strength &#8211; their attractive multi-coloured nature &#8211; turns out to be a considerable weakness in terms of cost to print and longevity.  What happens when those colours fade in the sunlight?</p><p>Everything else about them strikes me as a huge risk.  A closed proprietary standard which exists solely on the whim of Microsoft.  At any time Microsoft can turn it off or start charging you money for campaigns which are already live.  Those are two huge risks which simply aren&#8217;t present with QR codes.</p><p>Overall, I can&#8217;t find <em>any</em> clear advantage when using MS Tags.</p><p>Think I&#8217;m wrong?  Please let me know in the comments below.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=3134&amp;md5=da76a63023e74498c10d8af4d067e63a" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2010/11/ms-tags-vs-qr-codes/feed/</wfw:commentRss> <slash:comments>27</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=3134&amp;md5=da76a63023e74498c10d8af4d067e63a" type="text/html" /> </item> <item><title>Hate Microsoft &#8211; Love Windows Phone 7?</title><link>http://shkspr.mobi/blog/index.php/2010/07/hate-microsoft-love-windows-phone-7/</link> <comments>http://shkspr.mobi/blog/index.php/2010/07/hate-microsoft-love-windows-phone-7/#comments</comments> <pubDate>Sat, 17 Jul 2010 15:23:22 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[mobile]]></category> <category><![CDATA[android]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[ui]]></category> <category><![CDATA[ux]]></category> <category><![CDATA[windows]]></category> <category><![CDATA[windows phone 7]]></category> <category><![CDATA[wp7]]></category> <category><![CDATA[xbox]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=2167</guid> <description><![CDATA[I&#8217;m not the biggest fan of Microsoft. Both my original Xboxes now run Linux, I&#8217;ve converted my laptop and computers to Ubuntu, and I generally laugh in the face of Microsoft&#8217;s increasingly desperate attempts to stay relevant. So it was with great mirth that I went along to a BizSpark event a few weeks ago. <a
href='http://shkspr.mobi/blog/index.php/2010/07/hate-microsoft-love-windows-phone-7/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I&#8217;m not the biggest fan of Microsoft.  Both my original Xboxes now run Linux, I&#8217;ve converted my laptop and computers to Ubuntu, and I generally laugh in the face of Microsoft&#8217;s increasingly desperate attempts to stay relevant.</p><p>So it was with great mirth that I went along to a BizSpark event a few weeks ago.  Microsoft were going to be showing off their latest &#8220;innovation&#8221; &#8211; Windows Phone 7.</p><p>I went along expecting to hate it and, instead, found myself curiously drawn to it.</p><p><a
href="http://www.windowsphone7.com/">Take a look at the emulator for an interactive demo</a>.</p><p>I played with the demo hardware and software and had my expectations blown away.  I&#8217;ll be honest &#8211; I expected crap.  I had horrible memories of the stylus oriented Windows Mobile 6.  The phone which would display an hourglass if you had the temerity to receive a phone call while playing solitaire.</p><p>Windows Phone 7 (WP7) was a million miles away from the old Microsoft experience.</p><h2>Pros</h2><p>The user interface is refreshingly simple and fun to use.  It&#8217;s like nothing else I&#8217;ve tried before and I really think that Microsoft has outclassed both Android and Apple.</p><p>Pushing so much information to the homescreen really makes you want to use your phone constantly. iPhone only does this half-heartedly and Android does it without much animation or UI consistency.</p><p>App Store.  One excellent feature of the MS app store is the &#8220;Try Before You Buy&#8221; model.  Rather than a developer putting out a free, limited version and a &#8220;pro&#8221; version they can publish a single app.  They can restrict the features and functionality of the &#8220;demo&#8221; version until the customer makes the purchase. Or, after a set period of time, the demo version can become non-functioning. Or have reduced function.  Brilliant.</p><p>Gaming on this device will be huge. It looks like it will be simple to port games from the Xbox to WP7 &#8211; that gives it a great competative advantage. Tie in Xbox Live (or whatever it&#8217;s called) and you&#8217;ll get gamers buying the same game twice &#8211; once on the console and once on the phone.  The 3D power of the phones was stunning.</p><h2>Cons</h2><p>There are some serious shortcomings in the Windows Phone 7 vision of the future which Microsoft urgently need to address.</p><ul><li>Expand the development options.  If you want to write for Windows Phone 7, you&#8217;ll need Windows installed on your computer.  Given that Android allows you to develop on Windows, Mac and Linux, it doesn&#8217;t make sense to make developers buy a new operating system.  Especially as iPhone development is tied to Apple.</li><li>Open it up.  I love the <em>idea</em> of integrating my phone with my Xbox live account &#8211; but I don&#8217;t have an Xbox! Open it up so that my Wii or PS3 gaming experience can be pushed to the homescreen.</li><li>The same goes for mail and IM &#8211; don&#8217;t restrict it just to Exchange and MSN.  Openness is hard for Microsoft, but it will attract more customers to the platform.</li><li>Have a firm, public roadmap for enhancements which <em>all</em> manufacturers stick to.  Android is currently being stifled by manufacturers like HTC who refuse to update the software on their customers&#8217; devices.</li><li>Revenue share for developers needs to be better. At the moment it&#8217;s the same 70/30 split being offered by Android and Apple.  It needs to be lower for two key reasons.</li></ul><ol><li>Attract developers to the fledgling ecosystem.</li><li>To avoid any accusations of a cartel.  To have all three major platforms &#8220;independently&#8221; converge on the same revenue share deal looks suspicious.</li></ol><h2>Now What?</h2><p>I&#8217;ve played with the prototype hardware and I&#8217;m impressed.  The software is really good. Much better that Microsoft&#8217;s usual standard.</p><p>It has to be.</p><p>Microsoft are betting their mobile future on this platform.  Win6.5 failed. Kin failed. They can&#8217;t afford another high profile failure like this.  Mirosoft are putting their best people on this project and, as far as I can tell, are revisiting their Xbox strategy; SPEND SPEND SPEND.</p><p>By the time the phones launch (holiday season 2010) you won&#8217;t be able to move without seeing an advert.  They will crank up their media machine to 11.  Just like the original Xbox, they will buy their way in to the market with a view that &#8211; like the Xbox 360 &#8211; the real prize is several years away.</p><p>I hope they succeed.  Not because I have any love for Microsoft, but because Nokia, Apple, and Google will all have to raise the quality of their software and hardware to compete against Microsoft&#8217;s marketing expenditure.</p><p>I&#8217;m a Linux geek &#8211; and I think Windows Phone 7 is the best thing to come out of Redmond in a very long time.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=2167&amp;md5=bc300b648c26dba95a2d896d48c3f918" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2010/07/hate-microsoft-love-windows-phone-7/feed/</wfw:commentRss> <slash:comments>8</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=2167&amp;md5=bc300b648c26dba95a2d896d48c3f918" type="text/html" /> </item> <item><title>Microsoft&#8217;s New Marketing Campaign</title><link>http://shkspr.mobi/blog/index.php/2009/12/microsofts-new-marketing-campaign/</link> <comments>http://shkspr.mobi/blog/index.php/2009/12/microsofts-new-marketing-campaign/#comments</comments> <pubDate>Wed, 09 Dec 2009 13:07:44 +0000</pubDate> <dc:creator>Terence Eden</dc:creator> <category><![CDATA[badvertising]]></category> <category><![CDATA[linux]]></category> <category><![CDATA[advertising]]></category> <category><![CDATA[BSOD]]></category> <category><![CDATA[cbs]]></category> <category><![CDATA[crash]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[tfl]]></category> <category><![CDATA[ThisIsBroken]]></category><guid
isPermaLink="false">http://shkspr.mobi/blog/?p=1340</guid> <description><![CDATA[I wander around the world in a perpetual state of confusion. Why is the world the way it is? Why do people make bad decisions? Why &#8211; when there are so many better alternatives &#8211; do people choose the worst of all possible worlds? Rather than getting bogged down in philosophy, I refer to the <a
href='http://shkspr.mobi/blog/index.php/2009/12/microsofts-new-marketing-campaign/'>[...]</a>]]></description> <content:encoded><![CDATA[<p>I wander around the world in a perpetual state of confusion.  Why is the world the way it is?  Why do people make bad decisions?  Why &#8211; when there are so many better alternatives &#8211; do people choose the worst of all possible worlds?</p><p>Rather than getting bogged down in philosophy, I refer to the reason people choose Microsoft Windows to do anything public facing.</p><p><a
title="Broken Windows Advertising Screens on the Tube by terenceeden, on Flickr" href="http://www.flickr.com/photos/edent/4155903292/"><img
src="http://farm3.static.flickr.com/2636/4155903292_a62635f3c1.jpg" alt="Broken Windows Advertising Screens on the Tube" width="500" height="334" /></a></p><p>Advertisers obviously care enough about their message to craft 30 second videos, they invest millions on infrastructure to support showing them.  Then they take a totally unsuitable and unstable method for playing them back &#8211; why?</p><p><a
title="Broken Windows Advertising Screens on the Tube by terenceeden, on Flickr" href="http://www.flickr.com/photos/edent/4155141169/"><img
src="http://farm3.static.flickr.com/2765/4155141169_cb33242122.jpg" alt="Broken Windows Advertising Screens on the Tube" width="500" height="334" /></a></p><p>It&#8217;s a phenomena I repeatedly see.  Advertising screens around the world which are really only displaying one message.</p><p><a
title="12122007046 by terenceeden, on Flickr" href="http://www.flickr.com/photos/edent/2104834677/"><img
src="http://farm3.static.flickr.com/2164/2104834677_f4a125b487.jpg" alt="12122007046" width="375" height="500" /></a></p><p>They&#8217;re saying &#8220;Windows &#8211; The Worst Way To Get Your Message Across&#8221;.</p><p>However, it&#8217;s not just Windows which has the problem &#8211; each of these three photos show a PC which has failed to <a
href="http://en.wikipedia.org/wiki/Power-on_self-test">POST</a> correctly.  So they are stuck &#8211; forever displaying their inadequacies to thousands of passers-by.  (Click to embiggen)</p><p><a
title="The *real* reason the Bakerloo line was suspended this morning! on Twitpic" href="http://twitpic.com/1nx9t"><img
src="http://twitpic.com/show/thumb/1nx9t.jpg" alt="The *real* reason the Bakerloo line was suspended this morning! on Twitpic" width="150" height="150" /></a><a
title="CBS advertising @ Waterloo, FAIL yet again #ThisIsBroken on Twitpic" href="http://twitpic.com/1oku6"><img
src="http://twitpic.com/show/thumb/1oku6.jpg" alt="CBS advertising @ Waterloo, FAIL yet again #ThisIsBroken on Twitpic" width="150" height="150" /></a><a
title="&quot;Disk Error. Press Any Key To Continue&quot; this advertising scre... on Twitpic" href="http://twitpic.com/14rp5"><img
src="http://twitpic.com/show/thumb/14rp5.jpg" alt="&quot;Disk Error. Press Any Key To Continue&quot; this advertising scre... on Twitpic" width="150" height="150" /></a></p><p>My real rant isn&#8217;t about Windows &#8211; it&#8217;s about the design and thinking behind such advertising screens.  It would appear that each screen is driven by its own PC.  What madness!  The cost of hardware &#8211; let alone software &#8211; must be phenomenal.</p><p>At the moment, each screen displays exactly the same content as its neighbour.  There&#8217;s no reason why a single computer couldn&#8217;t be used to drive all the screens.</p><p>I say exactly the same &#8211; the screens get progressively out of sync as the day goes on.  Presumably the separate PCs don&#8217;t communicate with one and other.</p><p>The next thing that bothers me is the use of Windows.</p><p>These screens aren&#8217;t using an embedded version of Windows &#8211; they&#8217;re using XP.  Now, XP is a fine OS &#8211; but it is bloated in terms of what is needed. All that is needed is a small embedded device which can be loaded with video files and set to play back.</p><p>It doesn&#8217;t need a desktop OS.  It doesn&#8217;t need anything more complicated than a display, video codecs and an Ethernet port.  This is the sort of thing for which Linux is perfect.</p><p>So, why?  Why has this system been allowed to develop?  Every day I see another screen which is broken, out of sync, or crashed.  Why has such a fragile and expensive solution become so prevalent?</p><p>The majority of these photos show <a
href="http://www.tfl.gov.uk/businessandpartners/commercialopportunities/5559.aspx" class="broken_link">TFL advertising screens</a> managed by <a
href="http://www.cbsoutdoor.co.uk/">CBS Outdoor</a>.  I really do wonder if they ever wander through the tube and see what a shoddy experience they are delivering.</p><p><a
href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1340&amp;md5=deeae1c855e8b464632709e62d951fe7" title="Flattr" target="_blank"><img
src="http://shkspr.mobi/blog/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded> <wfw:commentRss>http://shkspr.mobi/blog/index.php/2009/12/microsofts-new-marketing-campaign/feed/</wfw:commentRss> <slash:comments>3</slash:comments> <atom:link rel="payment" href="http://shkspr.mobi/blog/?flattrss_redirect&amp;id=1340&amp;md5=deeae1c855e8b464632709e62d951fe7" type="text/html" /> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (Requested URI is rejected)

Served from: www.shkspr.mobi @ 2012-02-09 00:47:08 -->
