tag:dx13.co.uk:index dx13 Recent Posts 2012-02-14T14:02:44 tag:dx13.co.uk:Post:Copydogs 2012-02-14T14:02:44 2012-02-14T14:02:44 Copydogs <p>I still find the amount Zynga copy game concepts mind-boggling. Related to this, it looks like <a href="http://www.cultofmac.com/146141/zyngas-tiny-tower-clone-hits-u-s-app-store-and-employees-love-it/">Zynga employees love the game</a> they <a href="http://www.cultofmac.com/142552/zynga-shamelessly-rips-off-tiny-tower-apples-2011-iphone-game-of-the-year/">shamelessly ripped off</a>:</p> <blockquote>When Zynga came knocking and wanted to buy up NimbleBits, developers of Tiny Tower (which Apple recently named one of their games of the year), it didn&#8217;t take a genius to figure out that if the deal didn&#8217;t go through, Zynga would rip-off NimbleBit&#8217;s games anyway. And &#8212; shocker &#8212; it turns out that’s just what happened.</blockquote> <p>Checkout the beautiful open letter from <a href="https://s3.amazonaws.com/nbpromo/dearzynga.jpg">NimbleBit to Zynga congratulating them</a>.</p> Mike Rhodes tag:dx13.co.uk:Post:aglkeDEzLWJsb2dyDAsSBFBvc3QY8ZYIDA 2012-01-28T20:08:00 2012-01-28T20:08:00 Link: Open Web FTW <p><a href="http://gigaom.com/2011/12/27/12-for-2012/3/">Open Web FTW</a></p> <p>Matt Mullenweg, founder of Wordpress, on the future of the web.</p> <blockquote>I worry about the independent web. I worry about the content creators, and I worry that if 100 percent of the distribution of everything starts to go through just a few websites, that kills the vibrancy.</blockquote> Mike Rhodes tag:dx13.co.uk:Post:The-Raspberry-Pi 2012-01-26T21:09:40 2012-01-26T21:09:40 The Raspberry Pi <p>The <a href="http://www.raspberrypi.org/">Raspberry Pi</a> is an amazing little device. It&#8217;s a tiny, cheap yet reasonably powerful Linux PC. Having seen the recent videos of the system running <a href="http://xbmc.org/">XBMC</a> and an AirPlay client, I&#8217;m convinced they are not merely toys.</p> <p>The aims of the project are laudable: the founding aim is to provide a perfect device for teaching programming and other computer skills on a very affordable device, particularly for a school environment. I think they&#8217;ve succeeded: the cheaper variant of the device is just $25.</p> <p>At this price I&#8217;m almost certain to buy one to try out &#8212; almost certainly the $35 version, however, as the $25 version has no ethernet connection (though can connect to wifi via a <span class="caps">USB</span> dongle).</p> <p>So what am I going to do with my Raspberry Pi? I&#8217;d imagine that to begin with, I shall be playing with the media centre possibilities. Running a bare-bones install with <span class="caps">XBMC</span> atop it seems like it could be a great system. Low-power, silent and with the power to drive HD h.264 output, the system sounds ideal for this kind of thing. The community forming around the device seems keen on this idea too, so hopefully the support will be there from those more experienced with this kind of thing &#8212; and working out which remotes work well is something best crowd-sourced.</p> <p>Another dream I have is Raspberry Pi Colo, along the lines of <a href="http://macminicolo.net/">Mac Mini Colo</a>, though whether the hosting could be as affordable as the device I don&#8217;t know. Imagine a dedicated server for $35 + hosting. I can imagine that would keep this site going.</p> <p>The power available in such cheap systems continues to amaze and inspire me. The Raspberry Pi is a fantastic acheivement.</p> Mike Rhodes tag:dx13.co.uk:Post:aglkeDEzLWJsb2dyDAsSBFBvc3QYoYcIDA 2012-01-12T11:24:07 2012-01-12T11:24:07 Link: MG Siegler: Why I hate Android <p><a href="http://parislemon.com/post/15604811641/why-i-hate-android">MG Siegler: Why I hate Android</a></p> <blockquote>So that, ladies and gentleman, is why I hate Android. It has nothing to do with the actual product (which continues to improve every year and is quite good now). It has to do with a promise that was broken and swept under the rug.</blockquote> <p>You&#8217;ll have to read the full article for the reasons&#8212;and a fun Harry Potter analogy.</p> Mike Rhodes tag:dx13.co.uk:Post:Solr-text-encoding-and-unhelpful-error-messages 2012-01-06T10:06:24 2012-02-10T16:27:54 Solr, text encoding and unhelpful error messages <p>I was getting an error loading any pages in the Solr admin UI:</p> <pre>Error 404: missing core name in path</pre> <p>What this is <em>supposed</em> to mean is that you have a multicore Solr setup and have not included the core name in your <span class="caps">URL</span> used to load the admin UI. However, I don&#8217;t have more than one core; a single one is fine for my needs right now.</p> <p>It turned out that the problem was quite a far cry from that which the error message implied. I had a <code>solr.DictionaryCompoundWordTokenFilterFactory</code> filter loaded with a dictionary text file that was not UTF-8. The filter assumes UTF-8 and so was choking on my file.</p> <p>The solution was to use <code>iconv</code> to re-encode the dictionary file, but not before a lot of head-scratching. Even the traceback in the terminal wasn&#8217;t great, about an error in <code>STREAM</code>, though at least the &#8220;stream&#8221; tipped me off that it might be an issue with loading a file&#8212;once I&#8217;d figured out that if I disabled my filter the Solr admin UI would load.</p> <p><strong>Update:</strong> Looks like this happens for any configuration error; check your solr logs to see what the failure is.</p> Mike Rhodes