<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><description>Development, the Internets, and my other interests.

Bradley Wright is a professional web developer living in London.</description><title>Bradley Wright</title><generator>Tumblr (3.0; @intranation)</generator><link>http://tumblr.intranation.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BradleyWrightBlog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="bradleywrightblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><item><title>killorn:

Here is a picture of legendary comic book writer Stan...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_ljfhd0uyTH1qbocrho1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://killorn.tumblr.com/post/4489986161" class="tumblr_blog"&gt;killorn&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Here is a picture of legendary comic book writer Stan Lee at the exact moment he regretted ever picking up a pen in the first place. &lt;/p&gt;&lt;/blockquote&gt;</description><link>http://tumblr.intranation.com/post/4693726175</link><guid>http://tumblr.intranation.com/post/4693726175</guid><pubDate>Sun, 17 Apr 2011 18:54:52 +0100</pubDate></item><item><title>Sharing files with virtual machines using NFS</title><description>&lt;p&gt;In a &lt;a href="/post/766289691/development-virtual-machines-os-x-using-vmware-ubuntu"&gt;previous post&lt;/a&gt;, I sang the virtues of &lt;a href="http://www.vmware.com/products/fusion/overview.html"&gt;VMWare Fusion&lt;/a&gt;&amp;#8217;s shared folders feature, and the way it lets one share files from the host &lt;abbr title="Operating system"&gt;OS&lt;/abbr&gt; to the guest OS.&lt;/p&gt;

&lt;p&gt;Folder sharing is a bit of a pain to install, especially because OS upgrades on the guest seem to break the guest tools installation. The solution is one of the oldest file sharing technologies there is: &lt;a href="http://en.wikipedia.org/wiki/Network_File_System_(protocol)"&gt;&lt;abbr title="Network File System"&gt;NFS&lt;/abbr&gt;&lt;/a&gt;. It&amp;#8217;s easy to set up, works on basically everything, and is solid as a rock. It also supports symlinks, which means you can sidestep &lt;a href="/post/766290952/why-i-dont-use-virtualbox"&gt;VirtualBox&amp;#8217;s issues with shared folders and symlinks&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The best bit is that once it&amp;#8217;s set up and works you can switch between any virtualisation technology you like (for example: I&amp;#8217;m now using VirtualBox at work so we can make better future use of &lt;a href="http://vagrantup.com/"&gt;Vagrant&lt;/a&gt;, but I use VMWare for Windows)—this works at the OS level so it&amp;#8217;ll just keep working.&lt;/p&gt;

&lt;h2&gt;Configuration time&lt;/h2&gt;

&lt;p&gt;This is the easy bit. First we export whichever folder we want to share from the host OS. In my case it&amp;#8217;s &lt;code&gt;~/Projects&lt;/code&gt;. Edit &lt;code&gt;/etc/exports&lt;/code&gt; as &lt;code&gt;sudo&lt;/code&gt; (this won&amp;#8217;t exist by default on OS X), and add the following line to it:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/Users/bradleyw/Projects -mapall=501:20 -network 192.168.56.0 -mask 255.255.255.0&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The first part is obviously the directory you want to share, and the &lt;code&gt;-network&lt;/code&gt; flag tells us which IP &lt;em&gt;range&lt;/em&gt; to share with. In my case my VM listens on &lt;code&gt;192.168.56.101&lt;/code&gt;, hence &lt;code&gt;192.168.56.0&lt;/code&gt;. The rest of the flags you can ignore.&lt;/p&gt;

&lt;p&gt;Now we need to run a few commands in the OS X terminal to complete this side of the configuration:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo nfsd checkexports&lt;/code&gt;
&lt;code&gt;showmount -e&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If everything went well no errors should be reported and your exported directory should be printed to &lt;code&gt;stdout&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Now on the guest OS, you first need to install the NFS software. On Debian and Ubuntu this is:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo apt-get install nfs-common&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you&amp;#8217;re on another distribution this is an exercise for the reader.&lt;/p&gt;

&lt;p&gt;We can now configure &lt;code&gt;fstab&lt;/code&gt; so &lt;code&gt;mount&lt;/code&gt; knows what to do. As a super user, edit &lt;code&gt;/etc/fstab&lt;/code&gt;, and add the following line at the bottom:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;192.168.56.1:/Users/bradleyw/Projects /mnt/nfs nfs soft,intr,rsize=8192,wsize=8192 0 0&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The important bits to change are &lt;code&gt;192.168.56.1&lt;/code&gt;, which should be the IP your guest can see your host at (so the IP address your virtual machine uses to hit OS X), the path to your export, and the &lt;code&gt;/mnt/nfs&lt;/code&gt;, which can be anything you want. I use &lt;code&gt;/mnt/nfs&lt;/code&gt; as it seemed the right thing to do.&lt;/p&gt;

&lt;p&gt;Note that you need to create &lt;code&gt;/mnt/nfs&lt;/code&gt; before proceeding: &lt;code&gt;sudo mkdir -p /mnt/nfs&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Now we can attempt to mount the shared filesystem: &lt;code&gt;sudo mount /mnt/nfs&lt;/code&gt;. If no errors are reported, it&amp;#8217;s all good!&lt;/p&gt;

&lt;p&gt;You should now be able to read and write from &lt;code&gt;/mnt/nfs&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;My own workflow&lt;/h2&gt;

&lt;p&gt;My own workflow with this is to have a case-insensitive disc image that&amp;#8217;s password protected automount on login (this is exported as &lt;code&gt;/Volumes/Smarkets&lt;/code&gt;). Then the Linux machine starts in headless mode, and because of NFS it&amp;#8217;s already mounted. So I&amp;#8217;m up and running very quickly after logging in, and the case-insensitive disc image gets around all the issues Python has when exporting from OS X to case-sensitive file systems.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://binaryclub.com/" rel="friend met colleague coworker"&gt;Hunter&lt;/a&gt; helped me a lot with some of the details here.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/4669998243</link><guid>http://tumblr.intranation.com/post/4669998243</guid><pubDate>Sat, 16 Apr 2011 22:34:00 +0100</pubDate><category>virtualisation</category><category>development</category><category>linux</category></item><item><title>git whatchanged</title><description>&lt;a href="http://twitter.com/brianfive/status/56107553049935874"&gt;git whatchanged&lt;/a&gt;: &lt;p&gt;Good tip this. Also, &lt;a href="http://www.kernel.org/pub/software/scm/git/docs/git-whatchanged.html"&gt;documentation on &lt;code&gt;git whatchanged&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/4424008297</link><guid>http://tumblr.intranation.com/post/4424008297</guid><pubDate>Thu, 07 Apr 2011 22:43:09 +0100</pubDate><category>git</category></item><item><title>Now paying for GitHub</title><description>&lt;p&gt;As I indicated &lt;a href="/post/786562910/web-based-services-i-pay-for"&gt;much earlier&lt;/a&gt;, I stopped paying for GitHub because I have the server and &lt;a href="/post/766290565/how-set-up-your-own-private-git-server-linux"&gt;know-how to host my own repos&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;However, my general policy is that I&amp;#8217;m always happy to pay a small fee to services I don&amp;#8217;t use in a way I should to justify their value, but merely to reward them for doing good work.&lt;/p&gt;

&lt;p&gt;So that brings me to the point of my post: with &lt;a href="https://github.com/"&gt;GitHub&lt;/a&gt;&amp;#8217;s new &lt;a href="https://github.com/blog/817-behold-image-view-modes"&gt;image view modes&lt;/a&gt;, they&amp;#8217;re doing amazing things for version control and collaboration, and I wanted to support that. So I&amp;#8217;m now a paid up member of GitHub again.&lt;/p&gt;

&lt;p&gt;Keep up the good work!&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/4021161210</link><guid>http://tumblr.intranation.com/post/4021161210</guid><pubDate>Tue, 22 Mar 2011 09:21:04 +0000</pubDate><category>github</category><category>software</category></item><item><title>Posterous's idea of customer service, and where I differ</title><description>&lt;p&gt;I&amp;#8217;ve been dabbling with &lt;a href="http://posterous.com/"&gt;Posterous&lt;/a&gt; as a potential way of mitigating Tumblr&amp;#8217;s recent downtime issues.&lt;/p&gt;

&lt;p&gt;The &lt;abbr title="Too long; didn't read"&gt;tl;dr&lt;/abbr&gt; version is that I didn&amp;#8217;t like their service, and suggest some &lt;a href="#improvements"&gt;improvements.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;My experience with Posterous&lt;/h2&gt;

&lt;p&gt;After importing my Tumblr blog into their system (which was all very smooth), I tried to edit a post and remove it, using one of their combo buttons:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://s3.intranation.com/blog/posterous-customer-service/posterous-combo-button.png" alt="Combo button" width="75" height="33"/&gt;&lt;/p&gt;

&lt;p&gt;Unfortunately, in both Safari and Chrome (so WebKit, basically), their Javascript is broken. It fails, and then fails to clobber the event propagation, so the page reloads (as obviously, not being progressively enhanced, all their links are empty).&lt;/p&gt;

&lt;p&gt;A cursory look in my console shows really basic errors like:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Uncaught TypeError: Cannot call method 'addClassName' of null&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;or:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Uncaught TypeError: Property '$' of object [object DOMWindow] is not a function&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now, being the responsible developer I am, I write into them with a bug report (this is on January 29, almost 2 months ago):&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Every time I click the &amp;#8220;Edit | [down arrow]&amp;#8221; button (the down arrow specifically), the page goes to a blank page. I assume this is because the JS is broken so you&amp;#8217;re not cancelling the click event on the link. I&amp;#8217;m using Safari 5.0.3 on Snow Leopard.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Not the most gracious email, I&amp;#8217;m sure we can all agree, but then again this also seems like the kind of basic error that shouldn&amp;#8217;t happen in the first place.&lt;/p&gt;

&lt;p&gt;Yesterday, on March 20th (almost 2 months after submitting the error report), I get the following response from Posterous:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Hello Brad,&lt;/p&gt;

&lt;p&gt;Should you still be experience the issue you emailed us about, try clearing safari&amp;#8217;s cache and cookies and trying again, or using another browser.&lt;/p&gt;

&lt;p&gt;Sorry for the delayed response,&lt;/p&gt;

&lt;p&gt;Theodore&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I mean, what? This is a fundamentally broken part of the site, and the best they can tell is is:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;They haven&amp;#8217;t tried verifying that the bug still exists (or even existed in the first place);&lt;/li&gt;
&lt;li&gt;They certainly haven&amp;#8217;t tried to fix it; and&lt;/li&gt;
&lt;li&gt;Their solution is to clear everything or use another browser.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And I waited two months for that? As a professional developer it&amp;#8217;s my educated opinion that the errors I describe above are easy to notice and probably easy to fix. And they can&amp;#8217;t even be bothered checking them.&lt;/p&gt;

&lt;p&gt;No thanks Posterous, I&amp;#8217;ll be sticking where I am for now.&lt;/p&gt;

&lt;h2 id="improvements"&gt;What I would have done&lt;/h2&gt;

&lt;p&gt;At &lt;a href="http://smarkets.com"&gt;Smarkets&lt;/a&gt; customer service is a part of our business that we take very seriously. I would have responded roughly as follows:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Reply within a day, telling the customer we&amp;#8217;ll look into it, and apologise for the inconvenience they&amp;#8217;re experiencing (note that this is mostly a form letter, and thus is very easy to reply with);&lt;/li&gt;
&lt;li&gt;Work out if there&amp;#8217;s actually a bug:&lt;ul&gt;&lt;li&gt;If there is, file it, and schedule a fix; or&lt;/li&gt;
    &lt;li&gt;If not, work out why the user is experiencing it anyway.&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Reply to the user with either your explanation for what they might be doing wrong, and find out if they can give you more information; or&lt;/li&gt;
&lt;li&gt;Tell them when they can expect a fix, as you&amp;#8217;ve found the bug. Give them some kudos in the email for finding the bug for them.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;At a startup, every customer is valuable and should be treated like they&amp;#8217;re important and that their opinion matters. These are trivial things to get right, and prevent long-winded disgruntled blog posts like this.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/4000317859</link><guid>http://tumblr.intranation.com/post/4000317859</guid><pubDate>Mon, 21 Mar 2011 09:30:00 +0000</pubDate><category>startups</category><category>posterous</category><category>smarkets</category></item><item><title>czottmann:

Astronaut Tracy Caldwell Dyson enjoying the view:...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_lc15sxV63f1qz4u5io1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://tumblr.zottmann.org/post/1600057524/astronaut-tracy-caldwell-dyson-enjoying-the-view" class="tumblr_blog"&gt;czottmann&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Astronaut Tracy Caldwell Dyson enjoying the view: &lt;a href="http://antwrp.gsfc.nasa.gov/apod/ap101115.html"&gt;APOD: 2010 November 15 - Home from Above&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;It’s like something from a sci-fi movie. Absolutely amazing.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1600074921</link><guid>http://tumblr.intranation.com/post/1600074921</guid><pubDate>Wed, 17 Nov 2010 13:11:32 +0000</pubDate></item><item><title>Generating an SSL certificate for testing</title><description>&lt;a href="http://www.akadia.com/services/ssh_test_certificate.html"&gt;Generating an SSL certificate for testing&lt;/a&gt;: &lt;p&gt;As pointed out to me by &lt;a href="http://russ.garrett.co.uk/" rel="friend met coworker"&gt;Russ&lt;/a&gt;. He also points out that step 3 can be skipped completely by using &lt;code&gt;-nodes&lt;/code&gt; instead of &lt;code&gt;-des3&lt;/code&gt; in step 1.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1397207827</link><guid>http://tumblr.intranation.com/post/1397207827</guid><pubDate>Mon, 25 Oct 2010 11:10:50 +0100</pubDate></item><item><title>Issues mounting shared folders in VMWare Fusion 3</title><description>&lt;p&gt;I recently took advantage of the &lt;a href="http://www.vmware.com/vmwarestore/fusion_upgrade_promo.html"&gt;VMWare 3 upgrade for only $9.99 USD&lt;/a&gt;, which has all gone well, except for one issue with &lt;code&gt;/etc/fstab&lt;/code&gt;: it turns out that VMWare Fusion 3 tools doesn&amp;#8217;t actually respect your mount settings, which means you lose all the permissions information contained therein.&lt;/p&gt;
&lt;p&gt;There&amp;#8217;s &lt;a href="http://dmoonc.com/blog/?p=288"&gt;a solution to the mount problem here&lt;/a&gt;, which works perfectly after a reboot. I hope VMWare fixes this soon, though: it&amp;#8217;s a pretty nasty bug.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1342687928</link><guid>http://tumblr.intranation.com/post/1342687928</guid><pubDate>Mon, 18 Oct 2010 09:34:44 +0100</pubDate><category>virtualisation</category><category>development</category></item><item><title>Follow up to previous UX and Ryan Carson post</title><description>&lt;p&gt;My &lt;a href="http://tumblr.intranation.com/post/1064741801/ux-professional-is-a-real-role-and-an-important-one"&gt;previous post&lt;/a&gt; seems to have &lt;a href="http://twitter.com/ryancarson/status/22994531296"&gt;gotten the attention of Ryan himself&lt;/a&gt;. As Ryan mentions, I&amp;#8217;m on Tumblr, which means no comments.&lt;/p&gt;

&lt;p&gt;I invite Ryan to email me at &lt;code&gt;brad at this domain&lt;/code&gt; with his comments (I also did on Twitter, but last time I checked he had blocked me) and I will publish them.&lt;/p&gt;

&lt;p&gt;I&amp;#8217;d also like to note that at the time of writing he has additionally blocked &lt;a href="http://twitter.com/hellomuller/status/22993356028"&gt;Tom Muller&lt;/a&gt; and &lt;a href="http://twitter.com/kapowaz/status/22974121850"&gt;Ben Darlow&lt;/a&gt; on Think Vitamin, so I wonder if he&amp;#8217;s genuinely interested in dialogue at all.&lt;/p&gt;

&lt;p&gt;See below for what I currently see when visiting Ryan&amp;#8217;s most recent Tweet (or should I say &amp;#8220;dialogue&amp;#8221;?):&lt;/p&gt;

&lt;p&gt;&lt;img src="http://s3.intranation.com.s3.amazonaws.com/random/ryan-carson-blocked.png" alt="Blocked!"/&gt;&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1065121682</link><guid>http://tumblr.intranation.com/post/1065121682</guid><pubDate>Sat, 04 Sep 2010 19:10:00 +0100</pubDate></item><item><title>UX professional is a real role, and an important one</title><description>&lt;p&gt;Over at &lt;a href="http://thinkvitamin.com/"&gt;ThinkVitamin&lt;/a&gt;, &lt;a href="http://twitter.com/ryancarson"&gt;Ryan Carson&lt;/a&gt; has boldly declared that &lt;a href="http://thinkvitamin.com/opinion/ux-professional-isnt-a-real-job/"&gt;‘UX Professional’ isn’t a Real Job&lt;/a&gt;. He lists a (relatively small) number of reasons for this, the primary being:&lt;/p&gt;

&lt;blockquote cite="http://thinkvitamin.com/opinion/ux-professional-isnt-a-real-job/"&gt;&lt;p&gt;A web site or app should be the product of a Web Designer and a Web Developer&amp;#8230;(a)nyone else who is added into this equation is a waste of money and time.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;This seems a fairly limiting argument on the face of it, as his argument is clearly confined to small (perhaps 2 person, if we take his example literally) teams. He further clarifies his position in the comments:&lt;/p&gt;

&lt;blockquote cite="http://thinkvitamin.com/opinion/ux-professional-isnt-a-real-job/#comment-22713"&gt;&lt;p&gt;Why would someone hire web designers [who are awesome at making a site look good&amp;#8230;but horrible at making an interface usable]? That’s the point of the post. UX shouldn’t be an optional skill for web designers.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;which would probably confirm to most people that this article is merely a linkbait article with a controversial title.&lt;/p&gt;

&lt;p&gt;Now, I could leave it at that, but &lt;a href="http://xkcd.com/386/"&gt;someone is wrong on the Internet&lt;/a&gt;, so I am compelled by duty to continue.&lt;/p&gt;

&lt;p&gt;As someone who has certainly worked with many good user experience designers (&lt;a href="http://yahnyinlondon.com" rel="met sweetheart friend muse"&gt;my fiancée&lt;/a&gt; being one of them), I feel the need to weigh in with my own opinion. Be warned that this response may be condescending.&lt;/p&gt;

&lt;p&gt;Much like the &lt;a href="http://powazek.com/posts/2090"&gt;recent flame war over &lt;abbr title="Search Engine Optimisation"&gt;SEO&lt;/abbr&gt;&lt;/a&gt; specialists being “snake oil salesmen” etc., I can see how a &lt;a href="http://carsonified.com/team/ryan/"&gt;small team, like Ryan’s&lt;/a&gt;, would not feel the need to hire in specialists. After all, when you’re building “web apps” (most of us professionals still call them “websites”, since that&amp;#8217;s what they are) with the size and audience Carsonified’s sites usually get, you don&amp;#8217;t really need to specialise, as a small team can, on the surface of things, achieve all that&amp;#8217;s required for a &lt;a href="http://techcrunch.com/2008/07/03/how-to-build-a-web-app-in-four-days-for-10000-say-hello-to-matt/"&gt;four day buildout&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;However, this is the same boneheaded planning that leads developers who have installed Rails for a personal blog to believe they won&amp;#8217;t need a sysadmin, or the same developers to believe they won&amp;#8217;t need a backend specialist to actually make their system scale (&lt;a href="http://failwhale.com/"&gt;Twitter circa 2008&lt;/a&gt; being a fantastic example of the latter). At some point and level of success, you’ll want people who are the best at their individual piece of the puzzle, be it: administering servers; optimising your site for discoverability (a nice way of saying SEO); keeping your &lt;acronym title="Random Access Memory"&gt;RAM&lt;/acronym&gt; usage low; or designing a complex multi-form flow in a way that doesn&amp;#8217;t haemorrage users through sheer boredom and depression. The latter is just one way a good user experience designer can help (for the others you want people of the beards and sandal variety).&lt;/p&gt;

&lt;p&gt;Again, when working on simple sites, like a &lt;a href="http://futureofwebapps.com/"&gt;conference site&lt;/a&gt;, or an &lt;a href="http://carsonified.com/"&gt;agency site&lt;/a&gt; (basically just structured content), you probably don&amp;#8217;t need to get in a specialist. And whilst most of the UX professionals I know have come from a design background (the &amp;#8220;web designer&amp;#8221; Ryan mentions in his post), and they certainly fit his mould of &amp;#8220;do-it-all designers&amp;#8221;, I don&amp;#8217;t think there&amp;#8217;s room in a single person&amp;#8217;s head to stay on top of all current research on user experience, much like there&amp;#8217;s not really enough room in my head to understand 7 browsers with their quirks, and also understand how to optimise a message queue for high throughput. This is a simple human limitation, and I&amp;#8217;m okay with that. I&amp;#8217;d rather have a team of 7 specialists doing their piece than 5 generalists doing an 80% job.&lt;/p&gt;

&lt;p&gt;Why? Because user experience is simply too important to not take into account, and to not have the best people working on it. Being a methodical, precise person who is happy to dig through reams of research and multi-variate testing doesn&amp;#8217;t necessarily make for a good creative, so I&amp;#8217;m perfectly happy to see them as separate people and roles. Yes, it&amp;#8217;s nice to have people who are superstars at everything, but in real life this just doesn&amp;#8217;t happen. As managers of teams we need to be realistic about this. And utimately that&amp;#8217;s my problem—his idea simply isn&amp;#8217;t realistic (leaving aside the fact that it&amp;#8217;s an incredibly rude post to begin with).&lt;/p&gt;

&lt;p&gt;Writing a post like this has simply shown up Ryan to be vastly less experienced in sizable and cutting edge web teams than he pretends, and should be a valuable lesson for any aspirants reading his blog: successful teams are made up of many people, and the bigger the team, the more specialised they need to be.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; &lt;a href="http://kapowaz.net" rel="met friend colleague"&gt;Ben Darlow&lt;/a&gt; has also &lt;a href="http://stumble.kapowaz.net/post/1063986523/ux-bullshit"&gt;written up his opinion of the matter&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update 2:&lt;/strong&gt; &lt;a href="http://tumblr.intranation.com/post/1065121682/follow-up-to-previous-ux-and-ryan-carson-post"&gt;Ryan has responded to me on Twitter, and I followed up&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update 3 (yay, more):&lt;/strong&gt; Andy Budd has &lt;a href="http://www.andybudd.com/archives/2010/09/why_i_think_rya/index.php"&gt;written an excellent rebuttal to Ryan&lt;/a&gt; which includes a brief foray into the history of job titles on the web, and how UX fits into that scheme. I agree with pretty much everything he&amp;#8217;s said.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1064741801</link><guid>http://tumblr.intranation.com/post/1064741801</guid><pubDate>Sat, 04 Sep 2010 17:45:00 +0100</pubDate><category>ux</category><category>web</category></item><item><title>Tom Watson MP, giving the Met some grief over the Coulson scandal</title><description>&lt;a href="http://labour-uncut.co.uk/2010/09/03/tom-watsons-letter-to-met-commissioner-sir-paul-stephenson-2/"&gt;Tom Watson MP, giving the Met some grief over the Coulson scandal&lt;/a&gt;</description><link>http://tumblr.intranation.com/post/1058470329</link><guid>http://tumblr.intranation.com/post/1058470329</guid><pubDate>Fri, 03 Sep 2010 14:49:08 +0100</pubDate><category>politics</category><category>current-affairs</category></item><item><title>Compromising Twitter's OAuth security system</title><description>&lt;a href="http://arstechnica.com/security/guides/2010/09/twitter-a-case-study-on-how-to-do-oauth-wrong.ars"&gt;Compromising Twitter's OAuth security system&lt;/a&gt;: &lt;p&gt;Well written and insightful Ars Technica article into OAuth, Twitter, and the issues Twitter is presenting to application developers via its OAuth implementation.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1054827224</link><guid>http://tumblr.intranation.com/post/1054827224</guid><pubDate>Thu, 02 Sep 2010 22:05:35 +0100</pubDate></item><item><title>The Problem with Facebook's "Places"</title><description>&lt;a href="http://log.maniacalrage.net/post/1004228594/the-problem-with-facebooks-places"&gt;The Problem with Facebook's "Places"&lt;/a&gt;: &lt;blockquote&gt;
&lt;p&gt;Here’s the thing about Facebook that really gets under my skin: They are slowly incorporating the features from every other independent web application on the internet. This is not inherently a problem—companies get bigger and they begin to have the resources to widen their feature set—the issue is that Facebook doesn’t do these features any better.&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://tumblr.intranation.com/post/1004584183</link><guid>http://tumblr.intranation.com/post/1004584183</guid><pubDate>Tue, 24 Aug 2010 19:50:32 +0100</pubDate></item><item><title>A few advanced Git tips</title><description>&lt;a href="http://mislav.uniqpath.com/2010/07/git-tips/"&gt;A few advanced Git tips&lt;/a&gt;: &lt;p&gt;Given the, shall we say, “quirks” of the Git documentation and interface, tips like these are pure gold.&lt;/p&gt;
&lt;p&gt;I particularly like &lt;code&gt;git checkout -t origin/feature&lt;/code&gt; and &lt;code&gt;git push -u origin master&lt;/code&gt;, as feature branching is a large part of my work day.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/1002576656</link><guid>http://tumblr.intranation.com/post/1002576656</guid><pubDate>Tue, 24 Aug 2010 09:35:06 +0100</pubDate><category>git</category><category>development</category></item><item><title>An excellent Watchmen side story, by scans_daily.</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_l72yfoYKBj1qz8mfvo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;An excellent &lt;em&gt;Watchmen&lt;/em&gt; side story, by &lt;a href="http://scans-daily.dreamwidth.org/2113348.html"&gt;scans_daily&lt;/a&gt;.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/946288315</link><guid>http://tumblr.intranation.com/post/946288315</guid><pubDate>Fri, 13 Aug 2010 08:35:48 +0100</pubDate><category>comic</category><category>watchmen</category></item><item><title>marco:

Given how well Jeff Bezos usually prioritizes reading...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_l6j3chlMQ61qz4rgro1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.marco.org/893288129" class="tumblr_blog"&gt;marco&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Given how well Jeff Bezos usually prioritizes reading and legibility, why are his announcements on the Amazon frontpage always &lt;em&gt;images&lt;/em&gt; of poorly rendered text?&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;In other news, I kind of want a new Kindle.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/893647291</link><guid>http://tumblr.intranation.com/post/893647291</guid><pubDate>Mon, 02 Aug 2010 17:13:02 +0100</pubDate></item><item><title>The story of "MVP Caribe", a baseball game mod for Latin America</title><description>&lt;a href="http://kotaku.com/5601435/an-mvp-hangs-in-there-with-los-muchachos-del-verano"&gt;The story of "MVP Caribe", a baseball game mod for Latin America&lt;/a&gt;: &lt;p&gt;I really love this story. It shows how good things can get on the Internet, with fans working together to provide a good product for a niche that big publishers ignore.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/888216382</link><guid>http://tumblr.intranation.com/post/888216382</guid><pubDate>Sun, 01 Aug 2010 11:20:17 +0100</pubDate></item><item><title>New York Jews modernising their religion and self expression.</title><description>&lt;iframe src="http://player.vimeo.com/video/9773523" width="400" height="300" frameborder="0"&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;New York Jews modernising their religion and self expression.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/823231256</link><guid>http://tumblr.intranation.com/post/823231256</guid><pubDate>Sat, 17 Jul 2010 11:06:21 +0100</pubDate></item><item><title>Pretty sure Tumblr’s directory listing isn’t supposed to look...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_l59gmlzaQZ1qz8mfvo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Pretty sure Tumblr’s directory listing isn’t supposed to look like this (Safari 5).&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/786895131</link><guid>http://tumblr.intranation.com/post/786895131</guid><pubDate>Thu, 08 Jul 2010 23:47:07 +0100</pubDate><category>fail</category><category>tumblr</category></item><item><title>Web–based services I pay for</title><description>&lt;p&gt;Inspired by &lt;a href="http://joshr.posterous.com/web-based-services-i-pay-for"&gt;Josh’s post&lt;/a&gt;, I’ve decided to list (and give a shout out to) the services on the web that I pay for.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://me.com"&gt;MobileMe&lt;/a&gt; (£59/year) for computer, address book, and calendar synchronisation. I pay for MobileMe because I have 2 Macs (work, home) and an iPhone, and it’s by far the easiest way to keep them all synchronised. It’s a shame it costs so much, as I don’t use the email or website publishing aspects of it at all.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.tuffmail.com/"&gt;Tuffmail&lt;/a&gt; (about £5/month) for &lt;acronym title="Internet Message Access Protocol"&gt;IMAP&lt;/acronym&gt; email. I was put onto Tuffmail by &lt;a href="http://allinthehead.com/" rel="colleague met"&gt;Drew&lt;/a&gt;. It’s a great service with fantastic spam protection, and since it’s a well–behaved IMAP service it functions much better with desktop &lt;abbr title="applications"&gt;apps&lt;/abbr&gt; than &lt;a href="http://mail.google.com"&gt;Gmail&lt;/a&gt;. I’m currently on the fence as to whether I’m going to go back to &lt;a href="http://www.google.com/apps/intl/en/group/index.html"&gt;Google Apps for your domain&lt;/a&gt; for email and calendar. For the moment Tuffmail is great, though.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://prgmr.com/xen/"&gt;PRGMR&lt;/a&gt; ($48/year) for &lt;abbr title="Virtual private server"&gt;VPS&lt;/abbr&gt; hosting. I moved away from &lt;a href="http://slicehost.com/"&gt;Slicehost&lt;/a&gt; a few months back because I wanted to downscale my hosting costs. PRGMR have been great so far, really solid, and the price is certainly right.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://aws.amazon.com/"&gt;Amazon Web Services&lt;/a&gt; (about £0.03/month) for S3 and CloudFront. I host static assets and some other backup type things there. It’s clearly the cheapest thing on my expenses list.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.flickr.com"&gt;Flickr&lt;/a&gt; ($25/year) for &lt;a href="http://flickr.com/photos/intranation"&gt;photo hosting&lt;/a&gt;. I’m sure everyone knows what Flickr is by now.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://last.fm"&gt;Last.fm&lt;/a&gt; ($36/year). I like Last.fm and what they do, as well as using their service a lot, so I think it’s worth paying for.&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;Things I used to pay for&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://github.com/"&gt;GitHub&lt;/a&gt;. I stopped this because I now &lt;a href="http://tumblr.intranation.com/post/766290565/how-set-up-your-own-private-git-server-linux"&gt;host my own private Git &lt;abbr title="repositories"&gt;repos&lt;/abbr&gt;&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slicehost.com"&gt;Slicehost&lt;/a&gt; for VPS hosting. See above.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Finally, I’d like to mention &lt;a href="http://www.dropbox.com/"&gt;Dropbox&lt;/a&gt;. As a service I think Dropbox is absolutely best of breed—it’s hands down the smoothest, slickest, and most tightly integrated web/desktop hybrid I’ve ever used. I don’t actually pay for it as I don’t have a requirement for their lowest plan yet, but if I did I’d pay it without thinking. Fantastic service (I have a &lt;a href="https://www.dropbox.com/referrals/NTE5NjgwOQ"&gt;referral link, too&lt;/a&gt;), cannot recommend it highly enough. I wish MobileMe was as slick as Dropbox.&lt;/p&gt;</description><link>http://tumblr.intranation.com/post/786562910</link><guid>http://tumblr.intranation.com/post/786562910</guid><pubDate>Thu, 08 Jul 2010 22:04:00 +0100</pubDate></item></channel></rss>
