<?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>marramgrass &#187; G33k</title>
	<atom:link href="http://www.marramgrass.org.uk/category/g33k/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marramgrass.org.uk</link>
	<description>unexpected, and a little spiky</description>
	<lastBuildDate>Thu, 26 Jan 2012 12:26:13 +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>Running multiple Magento stores on one install.</title>
		<link>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/</link>
		<comments>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 12:24:26 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1046</guid>
		<description><![CDATA[References Overview: How Multiple Websites &#38; Stores Work MultiStore and Multiple Domains problem &#8211; /app/Mage.php was not found How To Setup Multiple Magento Stores Magento for Designers: Multi-Store Functionality Notes This assumes a standard LAMP setup. In our case, Ubuntu 10.04 LTS, Apache 2, MySQL 5 and PHP 5.3. It&#8217;s necessary to create some symlinks [...]]]></description>
			<content:encoded><![CDATA[<h3 id="references">References</h3>
<ul>
<li><a href="http://www.magentocommerce.com/knowledge-base/entry/overview-how-multiple-websites-stores-work">Overview: How Multiple Websites &amp; Stores Work</a></li>
<li><a href="http://www.magentocommerce.com/boards/viewthread/15003/">MultiStore and Multiple Domains problem &#8211; /app/Mage.php was not found</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/">How To Setup Multiple Magento Stores</a></li>
<li><a href="http://net.tutsplus.com/tutorials/php/magento-for-designers-multi-store-functionality/">Magento for Designers: Multi-Store Functionality</a></li>
</ul>
<h3 id="notes">Notes</h3>
<ul>
<li>This assumes a standard LAMP setup. In our case, Ubuntu 10.04 LTS, Apache 2, MySQL 5 and PHP 5.3.</li>
<li>It&#8217;s necessary to create some symlinks on the filesystem, so you&#8217;ll need access to do that. You don&#8217;t really want to be trying to run Magento<br />
on a shared host anyway, so this shouldn&#8217;t be a problem.</li>
<li>The stores are on different domains, although the principles are the same if it&#8217;s a subdomain, subfolder or other configuration.</li>
</ul>
<p>Magento is powerful and flexible, but not terribly well documented, so figuring out the best way to accomplish something can take some digging<br />
and some experimentation. I needed to set up two stores to run off the same Magento installation as two catalogues (one a subset of the other)<br />
from the same retailer.</p>
<p>There are two broad approaches:</p>
<ul>
<li>A single <code>VirtualHost</code> with aliases for the various domains, with logic added to the root <code>index.php</code> to decide which store to load.</li>
<li>A <code>VirtualHost</code> for each domain, linked to one core Magento installation.</li>
</ul>
<p>I took the multiple <code>VirtualHost</code>s approach, as it seemed a little more logical to me (a matter of taste, really). It has the advantage of each<br />
domain having its own <code>.htaccess</code>, which might be handy if you&#8217;re doing other things alongside Magento.</p>
<p>When running multiple stores from one Magento instance, they all share the same back office and catalogue. Once you set up a second website,<br />
store or view then anywhere they need to differentiate the option appears to use the default config or to apply a site- store- or view-specific<br />
setting. This means that themes and extensions for the various stores all live together.</p>
<h3 id="asidenote:websitesstoresandviews">A side note: websites, stores and views</h3>
<p>You&#8217;ll need to decide whether your new store is a whole new website or a new store of the same website. Broadly<br />
speaking, from the point of view of what the customer sees:</p>
<ul>
<li>Websites are separate entities</li>
<li>Stores are distinct but share customer accounts and shopping carts</li>
<li>Views may be the same store in a different language or layout</li>
</ul>
<p>Although that&#8217;s pretty configurable. Websites can be set to share customer accounts, for example. And, again, they&#8217;ll all share the same admin and<br />
catalogue.</p>
<p>In this case, we went for two distinct websites.</p>
<h3 id="themethod">The method</h3>
<ol>
<li>
<p>Create a new root category for your new website. You can put a full category tree under it and add products to the categories.</p>
</li>
<li>
<p>In the control panel, go to <em>System &gt; Manage Shops</em> and create a new website, then shop for that website and view for that shop. Take note of the<br />
code you assign to the website &#8211; you&#8217;ll need it later. Assign your newly-created root category to the new store.</p>
</li>
<li>
<p>Create a new <code>VirtualHost</code> for the new website. Note that the Magento files will need to be accessible to PHP from this <code>VirtualHost</code>,<br />
so pay attention to any restrictions on your server.</p>
</li>
<li>
<p>In the new <code>VirtualHost</code> block, you need to set two environmental variables:<br/><br />
<code>SetEnv MAGE_RUN_CODE &quot;your_new_website_code&quot;</code><br/><br />
<code>SetEnv MAGE_RUN_TYPE &quot;website&quot;</code><br/><br />
If doing this in the <code>VirtualHost</code> is a problem, your server configuration may allow you to do it in the <code>.htaccess</code> file below.</p>
</li>
<li>Copy <code>index.php</code> from the document root of the existing site to the document root of the new site. Find and modify the following variables to point<br />
to the files in the Magento installation:</p>
<ul>
<li><code>$compilerConfig</code></li>
<li><code>$mageFilename</code></li>
</ul>
</li>
<li>
<p>Copy <code>.htaccess</code> from the existing document root to that of the new site. Check it for any hostname-specific rules that have been added, and<br />
modify them as necessary.</p>
</li>
<li>Create symlinks of the following folders in the existing site&#8217;s document root to the same locations in the new site&#8217;s document root:
<ul>
<li><code>app</code></li>
<li><code>errors</code></li>
<li><code>includes</code></li>
<li><code>js</code></li>
<li><code>lib</code></li>
<li><code>media</code></li>
<li><code>skin</code></li>
<li><code>var</code></li>
</ul>
<p>For example, <code>ln -s /path/to/existing/document/root/app /path/to/new/document/root/app</code>.</p>
</li>
<li>
<p>In the control panel, go to <em>System &gt; Configuration &gt; Web</em>, select hte new website from the dropdown in the top-left corner, uncheck<br />
<em>Use Default</em> by the <em>Unsecure</em> and <em>Secure</em> <em>Base URL</em>s, then correct the URLs set to those of your new website.</p>
</li>
<li>
<p>Reindex everything.</p>
</li>
<li>
<p>Optionally set the theme for the new site under <em>System &gt; Configuration &gt; Design</em>.</p>
</li>
<li>
<p>Job done.</p>
</li>
</ol>
<p>If, after doing this, the home page of the new website is showing a default Magento 404, then check that the code for the new website<br />
is set exactly the same in the control panel and in the server environment variable. A typo in the control panel setting lost me 45 minutes.<br />
That was frustrating.</p>
<p>Also note that as we&#8217;ve edited a core file or two (<code>index.php</code> and maybe <code>.htaccess</code>), keep an eye on them if you upgrade your Magento instance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stationery.</title>
		<link>http://www.marramgrass.org.uk/2011/11/01/stationery/</link>
		<comments>http://www.marramgrass.org.uk/2011/11/01/stationery/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 22:46:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1028</guid>
		<description><![CDATA[A birthday, and the attendant (generously given, gratefully received) gifts have led to a few new things to feed my not-so-modest stationery addiction. Pictured here, a hint of the Field Notes subscription and the new most stealthy and gruntingly manly fountain pen to join my pen case, the limited edition, all matte black Pilot Capless [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/marramgrass/6304152360/" title="Stationery by Marramgrass, on Flickr"><img src="http://farm7.static.flickr.com/6037/6304152360_8f3f5d4092_m.jpg" width="240" height="240" alt="Stationery"></a></p>
<p>A birthday, and the attendant (generously given, gratefully received) gifts have led to a few new things to feed my not-so-modest stationery addiction. Pictured here, a hint of the <a href="http://fieldnotesbrand.com/">Field Notes subscription</a> and the new most stealthy and gruntingly manly fountain pen to join my pen case, the limited edition, all matte black Pilot Capless (Namiki Vanishing Point in some markets) retractable, clicky goodness. It&#8217;s very nice, and really needs to be seen in person. Black as black as black.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/11/01/stationery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On having chosen a DNS host.</title>
		<link>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/</link>
		<comments>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:32:05 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1023</guid>
		<description><![CDATA[Further to my previous post, I ended up going with Nettica. A friendly enough control panel, and a quick and easy to base service makes for sufficient happiness. I did have my first experience with their support team today (I should clarify that it wasn&#8217;t a problem needing solved; rather, it was to do with [...]]]></description>
			<content:encoded><![CDATA[<p>Further to my <a href="http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/">previous post</a>, I ended up going with <a href="http://www.nettica.com/">Nettica</a>. A friendly enough control panel, and a quick and easy to base service makes for sufficient happiness.</p>
<p>I did have my first experience with their support team today (I should clarify that it wasn&#8217;t a problem needing solved; rather, it was to do with transferring DNS for a domain between two Nettica accounts), and they were quick and helpful. Happy there for now, then.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On choosing a DNS host.</title>
		<link>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/</link>
		<comments>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:48:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1018</guid>
		<description><![CDATA[There can be several moving parts to a website. Three big ones are the domain name (the .com address), the hosting (the space on a hard disk somewhere where the website lives, from which your web browser will download it) and the DNS (the Domain Name System which translates the human-friendly .com address to the [...]]]></description>
			<content:encoded><![CDATA[<p>There can be several moving parts to a website. Three big ones are the <i>domain name</i> (the <i>.com</i> address), the <i>hosting</i> (the space on a hard disk somewhere where the website lives, from which your web browser will download it) and the <i>DNS</i> (the <i>Domain Name System</i> which translates the human-friendly <i>.com</i> address to the string of numbers &mdash; <a href="http://en.wikipedia.org/wiki/Ipv6">soon numbers and letters</a> &mdash; that computers need to find the hosting).</p>
<p>From a management point of view it&#8217;s often easiest to have all three of these handled by the same company, and that&#8217;s a very common setup. I&#8217;m not too keen on the &ldquo;eggs in one basket&rdquo; feel of that, though, and I tend to have the domain name and the hosting for any given website in different places, with the DNS taken care of by one or the other.</p>
<p>I have domains registered all over the place, so keeping track and making updates takes a little bit of doing. I was also thinking about getting in a complete separation, with DNS taken care of by a third provider.</p>
<p>So, I <a href="https://twitter.com/marramgrass/status/83465574381920256">tweeted</a>:</p>
<blockquote><p>Contemplating a specialist DNS host, rather than scattering amongst domains&#8217; registrars. DNSMadeEasy, DNSimple, who else should I look at?</p>
</blockquote>
<p>I got quite a response back, both from friends and colleagues and from DNS hosts who were watching the tweets go by. My research into possible hosts, partly informed by the twitterly response, turned up a number of possibilities.</p>
<h3>DNS Made Easy</h3>
<p>The first of the two I was vaguely aware of, <a href="http://www.dnsmadeeasy.com/">DNS Made Easy</a> comes recommended by <a href="http://twitter.com/aarpol">Aaron</a>, who is a difficult man to please. They also sent me a friendly, not too pushy, tweet or two. For my needs, I&#8217;d be looking at US$60 a year, probably plus a few US$2s per year for domains beyond the 25 included in that price.</p>
<h3>DNSimple</h3>
<p><a href="https://dnsimple.com/">DNSimple</a> was the other one I kind of knew about, although I can&#8217;t remember who recommended them to me. A bit more expensive than DNS Made Easy, at US$10 per month. However, that&#8217;s for 50 domains and they have a bunch of other useful features and offer a broader range of records for the DNS. They, too, sent me a friendly <a href="https://twitter.com/dnsimple/status/83493866585591808">tweet</a>.</p>
<h3>Dyn</h3>
<p><a href="http://twitter.com/mjsmitty1383">Two</a> <a href="http://twitter.com/Ryohara">separate</a> <a href="http://dyn.com/">Dyn</a> reps jumped on my tweet. The second one was a little intense. I emailed the first guy to see which of their offerings would suit my needs. They offer a few nice features, especially around import and export of sets of records, but US$95 per month is a fair bit more than I was planning on spending. (Dyn are the folks behind <a href="http://www.dyndns.com/">DynDNS</a>, which I have a paid account with as well. That&#8217;s a good service, but not quite the same thing as I&#8217;m looking for.)</p>
<h3>Nettica</h3>
<p><a href="http://twitter.com/djlowry">David</a> chimed in with a recommendation for <a href="http://www.nettica.com/">Nettica</a>. Their <a href="http://www.nettica.com/Domain/Bulk.aspx">Bulk DNS service</a> sounds pretty great, especially the template setup and the straightforward-as-a-straightforward-thing US$50/50 domains/year pricing.</p>
<h3>Hover</h3>
<p><a href="http://twitter.com/stuartgibson">Stuart</a>, <a href="https://twitter.com/ryangadams/status/83466444892934144">supported by</a> <a href="http://twitter.com/ryangadams">Ryan</a>, <a href="http://tweetlibrary.com/marramgrass/hover"><em>really</em> likes</a> <a href="http://www.hover.com/">Hover</a>. It&#8217;s not really what I&#8217;m looking for, though, as it&#8217;s a registrar with good DNS management. I&#8217;m not looking to shift domain registration at the moment, and it misses the separation I&#8217;m after.</p>
<h3>Amazon Route 53</h3>
<p>Amazon&#8217;s <a href="http://aws.amazon.com/route53/">Route 53</a> is part of the Amazon Web Services lineup, and I kind of half expected it to be the answer I was after. Pricing of US$1/domain/month, plus low per-request charges, place it at the higher end of the mid-price range. However, there&#8217;s no control panel &mdash; everything is done with straight API calls by feeding a little Perl script with XML. While I may be intrigued by the possibility of writing a decent client, I don&#8217;t want to have to faff about with that in the meantime.</p>
<h3>Conclusions, then</h3>
<p>I have none solid, yet. Hover&#8217;s out, as it&#8217;s not really what I&#8217;m after. Dyn is too expensive and Route 53 is too fiddly. That leaves DNS Made Easy, DNSimple and Nettica. All the services make nice, reassuring promises about uptime, with a couple of solid guarantees in there, but everyone has downtime sometimes. I&#8217;m working on the basis that a reputable provider will manage it acceptably.</p>
<p>My decision would be an approximate toss up between the first two, with a slight bias to DNSimple for their wider range of services, but I am intrigued by Nettica&#8217;s Bulk DNS service. A little more research is in order, then. Shifting a whole bunch of domains around is too painful to want to do it more than once.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Credit where due.</title>
		<link>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/</link>
		<comments>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/#comments</comments>
		<pubDate>Fri, 13 May 2011 22:33:10 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1016</guid>
		<description><![CDATA[Some industries get a bad reputation; telecoms, including ISPs, is one of them. For almost five years we got our broadband from Zen. They aren&#8217;t the cheapest out there, but they provided us with a solid service that I can only recall flickering once or twice in all that time. When necessary, their staff were [...]]]></description>
			<content:encoded><![CDATA[<p>Some industries get a bad reputation; telecoms, including <a href="http://en.wikipedia.org/wiki/Internet_Service_Provider">ISPs</a>, is one of them.</p>
<p>For almost five years we got our broadband from <a href="http://www.zen.co.uk/">Zen</a>. They aren&#8217;t the cheapest out there, but they provided us with a solid service that I can only recall flickering once or twice in all that time. When necessary, their staff were helpful and pleasant.</p>
<p>When <a href="http://www.productsandservices.bt.com:80/consumerProducts/displayTopic.do?topicId=29017&#038;s_cid=con_FURL_infinity">fibre</a> hit our area we ended up moving away from Zen (BT seem to offer the best balance of cost and features on the service). I expected to be paying an extra month&#8217;s charges for the 30 day notice period on our contract. Instead, they sent me a statement saying I was £16 in credit with them. Today I received another letter, asking for bank details so that they could send the £16.</p>
<p>I suppose it shouldn&#8217;t be remarkable that a company is offering to refund a customer money that they overpaid, but it is. So, well done to Zen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three short bits.</title>
		<link>http://www.marramgrass.org.uk/2011/03/29/three-short-bits/</link>
		<comments>http://www.marramgrass.org.uk/2011/03/29/three-short-bits/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 22:04:30 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1010</guid>
		<description><![CDATA[I got my access code to Orchestra.io today. It looks interesting if you&#8217;re a PHP-type. Haven&#8217;t had a chance to get anything running on it yet, but look forward to doing so, albeit mainly for the novelty. It appears to be something similar to Heroku for PHP, but the difference is that whereas Heroku seemed [...]]]></description>
			<content:encoded><![CDATA[<p>I got my access code to <a href="https://orchestra.io/">Orchestra.io</a> today. It looks interesting if you&#8217;re a PHP-type. Haven&#8217;t had a chance to get anything running on it yet, but look forward to doing so, albeit mainly for the novelty. It appears to be something similar to <a href="http://heroku.com">Heroku</a> for PHP, but the difference is that whereas Heroku seemed to get traction because it provided easy Rails hosting (something which I understand &mdash; I&#8217;m not a RoR guy, so I may be wrong &mdash; used to be at least a bit of an issue for some), but now focuses on fitting into your workflow for easy deployment, that latter seems to be where Orchestra comes in, since PHP hosting definitely isn&#8217;t an issue. We&#8217;ll see how it goes.</p>
<p><a href="http://basecamphq.com/">Basecamp</a> is the web-based project management software all the cool kids apparently use. We rely on it pretty heavily at Banjax, too. I&#8217;m not much of a fan, but it&#8217;s there as an &#8220;it&#8217;ll do until someone comes up with something better&#8221; kind of option. If you&#8217;re in need of some PM workflow gubbins, the free plan has been beefed up a bit, so it&#8217;s maybe worth giving it a whirl.</p>
<p>Finally, Apple&#8217;s <a href="http://en.wikipedia.org/wiki/Wwdc">World Wide Developer Conference</a> sold out in less than a day, yesterday. A technical conference, aimed at developers, sold out in <em>hours</em>. That&#8217;s nuts. Someone&#8217;s doing something right, it seems. And no, I&#8217;m not going. This year is not that year for <a href="http://yfrog.com/gzusngj">me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/03/29/three-short-bits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent listening.</title>
		<link>http://www.marramgrass.org.uk/2010/02/09/recent-listening/</link>
		<comments>http://www.marramgrass.org.uk/2010/02/09/recent-listening/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:49:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=976</guid>
		<description><![CDATA[I&#8217;ve picked up on a few new podcasts recently, all of a pretty techy bent. All from 5 by 5: The EE Podcast keeps it short, since it focuses on goings on around the ExpressionEngine content management system (which I use a lot). I&#8217;ve been pleasantly surprised at how the show keeps being worthwhile and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve picked up on a few new podcasts recently, all of a pretty techy bent.</p>
<p>All from <a href="http://5by5.tv/">5 by 5</a>:</p>
<ul>
<li><a href="http://5by5.tv/eepodcast">The EE Podcast</a> keeps it short, since it focuses on goings on around the ExpressionEngine content management system (which I use a lot). I&#8217;ve been pleasantly surprised at how the show keeps being worthwhile and enjoyable to listen to.</li>
<li><a href="http://5by5.tv/devshow">The Dev Show</a> talks around more general software development happenings. I&#8217;m finding it good to here about technologies outside of those I use myself. It makes me curious.</li>
<li><a href="http://5by5.tv/conversation">The Conversation</a> is more of a general talk-show type thing, with guests coming and going from the chat with the host. Easy going.</li>
</ul>
<p>I&#8217;ve also recently discovered <a href="http://huffduffer.com/">Huffduffer</a>, which lets you collate audio from around the web and have it sucked into iTunes as a podcast &mdash; potentially very handy.</p>
<p>I spend less time in the car, these days, but when I am driving it&#8217;s usually with a podcast on the stereo. Lately I&#8217;ve been saving the music for while I&#8217;m working.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2010/02/09/recent-listening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Addendum.</title>
		<link>http://www.marramgrass.org.uk/2010/02/05/addendum/</link>
		<comments>http://www.marramgrass.org.uk/2010/02/05/addendum/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:42:51 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=972</guid>
		<description><![CDATA[My wife read the quote from Fraser Speirs in yesterday&#8217;s post. She said, &#8220;That&#8217;s exactly how I feel about computers.&#8221; We/she/the world will benefit from a computing appliance that&#8217;s more like a washing machine: to get clean clothes, you only very rarely need to know anything about plumbing. For anyone other than the specialist or [...]]]></description>
			<content:encoded><![CDATA[<p>My wife read the quote from Fraser Speirs in yesterday&#8217;s post. She said, &ldquo;That&#8217;s <em>exactly</em> how I feel about computers.&rdquo;</p>
<p>We/she/the world will benefit from a computing appliance that&#8217;s more like a washing machine: to get clean clothes, you only very rarely need to know anything about plumbing. For anyone other than the specialist or the hobbyist, an appliance is the <em>means</em>, not the <em>end</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2010/02/05/addendum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Democratisation.</title>
		<link>http://www.marramgrass.org.uk/2010/02/04/democratisation/</link>
		<comments>http://www.marramgrass.org.uk/2010/02/04/democratisation/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:37:36 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=968</guid>
		<description><![CDATA[Apple announced some new shiny last week. The tech press made a lot of noise, lots of cheering and lots of booing, and people like me got a little excited. I won&#8217;t lie: I&#8217;m really looking forward to getting my hands on an iPad. I no longer have my eye on the Kindle DX. (The [...]]]></description>
			<content:encoded><![CDATA[<p>Apple announced some <a href="http://www.apple.com/uk/ipad/">new shiny</a> last week. The tech press made a lot of noise, lots of cheering and lots of booing, and people like me got a little excited. I won&#8217;t lie: I&#8217;m really looking forward to getting my hands on an iPad. I no longer have my eye on the Kindle DX. (The iPad has been announced at only $10 more in the States. Mental.)</p>
<p>But I&#8217;m also looking forward to seeing what happens when some of the people around me lay hands on one. It seems that this thing will meet the computing needs of an awful lot of people out there &mdash; normal people, people not like me, people who don&#8217;t need the grunt for Photoshop, who don&#8217;t always have a terminal window open, people who don&#8217;t self-identify as <i>that kind</i> of geek. Web, email, some word-processing and some presentation prep, games, other bits and pieces. If (admittedly that might be a big &lsquo;if&rsquo;) the UK pricing is in line with what&#8217;s been announced for elsewhere, the price is certainly right. It&#8217;s a little bit more than a netbook, but it looks to fill the same gaps more effectively. It certainly looks like it&#8217;ll do it much more accessibly.</p>
<p>I couldn&#8217;t get by with an iPad as my only computer, not by a long way, but I know people who could.</p>
<p>You should go and read a post by Fraser Speirs called <a href="http://speirs.org/blog/2010/1/29/future-shock.html">Future Shock</a>. Here&#8217;s a taster:</p>
<blockquote><p>&#8230;</p>
<p>For years we&#8217;ve all held to the belief that computing had to be made simpler for the &#8216;average person&#8217;. I find it difficult to come to any conclusion other than that we have totally failed in this effort.</p>
<p>Secretly, I suspect, we technologists quite liked the idea that Normals would be dependent on us for our technological shamanism. Those incantations that only we can perform to heal their computers, those oracular proclamations that we make over the future and the blessings we bestow on purchasing choices.</p>
<p>Ask yourself this: in what other walk of life do grown adults depend on other people to help them buy something? Women often turn to men to help them purchase a car but that&#8217;s because of the obnoxious misogyny of car dealers, not because ladies worry that the car they buy won&#8217;t work on their local roads. (Sorry computer/car analogy. My bad.)</p>
<p>I&#8217;m often saddened by the infantilising effect of high technology on adults. From being in control of their world, they&#8217;re thrust back to a childish, mediaeval world in which gremlins appear to torment them and disappear at will and against which magic, spells, and the local witch doctor are their only refuges.</p>
<p>&#8230;</p></blockquote>
<p>Fraser then posted this tweet the other day:</p>
<p><a href="http://twitter.com/fraserspeirs"><img src="http://www.marramgrass.org.uk/images/speirspad.jpg" alt="Colleague just asked, bewildered, 'is it infrastructure or ad hoc?' then 'TKIP or AES?'. This is how I know I'm right about iPad." class="noborder" /></a></p>
<p>Another developer, Matt Gemmell, posted these:</p>
<p><a href="http://twitter.com/mattgemmell"><img src="http://www.marramgrass.org.uk/images/gemmellpad.jpg" alt="I don't give a **** about programming or computers or operating systems. I care about people being empowered. So I care about iPad. iPad isn't a computer to anyone who doesn't care about computers. That fact alone is enormous. iPad says that software aristocracy is dying. iPad is a means to make us realise software has been about machines and tasks, whereas life is about people and goals. We need to change." class="noborder" /></a></p>
<p>Finally, you should read <a href="http://weblog.muledesign.com/2010/02/the_failure_of_empathy.php">The Failure of Empathy</a> on the Mule Design blog:</p>
<blockquote><p>&#8230;</p>
<p>They [people] want things to work most of the time, and be easy to fix when they don’t. And if the process by which it happens is &ldquo;magic&rdquo; they are totally cool with that.</p>
<p>They want the thing in the movies.</p>
<p>As an industry, we need to understand that not wanting root access doesn’t make you stupid. It simply means you do not want root access. Failing to comprehend this is not only a failure of empathy, but a failure of service.</p></blockquote>
<p>My thoughts exactly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2010/02/04/democratisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prerequisites.</title>
		<link>http://www.marramgrass.org.uk/2010/01/24/prerequisites/</link>
		<comments>http://www.marramgrass.org.uk/2010/01/24/prerequisites/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:27:56 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Films]]></category>
		<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=954</guid>
		<description><![CDATA[Yesterday evening, we had dinner with a couple of friends. The guy, who we&#8217;ll call Bob to protect the guilty, cheerfully self-identifies as a geek. But during the evening it came out that he had never seen a whole slew of films which I contend are necessary to claim that title. A sample: Highlander, The [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday evening, we had dinner with a couple of friends. The guy, who we&#8217;ll call Bob to protect the guilty, cheerfully self-identifies as a geek. But during the evening it came out that he had never seen a whole slew of films which I contend are necessary to claim that title.</p>
<p>A sample: <i>Highlander</i>, <i>The Princess Bride</i>, <i>Aliens</i>, <i>The Last Starfighter</i>, <i>Flight of the Navigator</i>, <i>The Big Lebowski</i>, <i>Tremors</i>, many more.</p>
<p>Additionally, he maintains that <i>Voyager</i> is the best <i>Star Trek</i> (when all right-thinking people know that that title belongs to <i>DS9</i>, or at least to the original series), has never seen <i>Thundercats</i> <del>and had never heard of <i>Babylon 5</i></del>.</p>
<p>There&#8217;s some edumacatin&#8217; required.</p>
<p><i>UPDATE: &#8216;Bob&#8217; informs me that he had in fact heard of B5. He&#8217;s just never seen it. As if that makes it better.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2010/01/24/prerequisites/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

