Subscribe to RSS Feed

Archive for November, 2008

You might have heard about the on-line marketing antics of Radiohead in recent months. They’ve already done an honesty-bar-style website to flog their latest album, and now they’re selling bits and pieces of their tracks on iTunes on their remix website. According to WASTE, their previous experiment with Nude surpassed all expectations, with some impressive statistics: over six million visitors, 10 terabytes transfer and over two thousand submitted mixes.

So I was one of the 1800 or so to try my hand at a Reckoner remix. As it goes, I don’t think much of the original, and I had to re-listen to the album to remind myself how it went. I suppose a few people agree with me, since there were fewer submissions than the Nude competition. To be totally honest, there is nothing in the top twenty worth listening to twice, IMO. However, this is supposed to be a web development blog so I will move on.

The website, for those who haven’t seen it, presents the uploaded tracks in a straight list, ten to a page, so a couple of hundred pages with MORE / PREVIOUS links. At the top, you can choose to scroll through the list by most popular, most recent or you can view a randomly-selected list. Each track is displayed with its name, and a flash player and vote button. The voting is tracked seemingly by IP (making my home static address a disadvantage).

Perhaps not surprisingly, there is a huge disparity between the amount of attention received for the top twenty and for the rest, and unless a mix is in the top two hundred it seems improbable that anyone would ever chance on it at all.

To combat this, Radiohead provide widgets that can be posted on external websites. Like blogs, widgets are another buzz-word for something that has been around for some time; a bunch of HTML code that displays an object, but the use of widgets is certainly a winning strategy for getting your website noticed. In essence, facilitating and encouraging the use of widgets turns your visitors into a massive, distributed marketing machine. After all, here I am, writing about the project on my blog, posting a link back to Radiohead, effectively doing part of their marketing for them.

I posted this widget on my own homepage, my blog (obviously), my myspace and the myspaces of anyone who’d approve the comment, and yet I still have only a handful of votes. I refuse to believe the quality of the music was a factor, its just only a few people would have seen this. On the other hand, the use of widgets presumably helped Contract Jack; who is at the time of writing both in first and second place.

However much I am impressed by Radiohead’s innovation in such a new area, I reckon that they could have done much more in their main website design to help promote the mixes that didn’t get uploaded in the first few days (and hence would never make the top twenty pages). One simple enhancement would be to display a page of the most rising mixes; that is, rather than ranking mixes by their overall number of votes, display the mixes in order of how many positions they have jumped that week. That way, the ‘popular’ mixes at the top wouldn’t feature, but interesting mixes uploaded after the first few weeks would have a chance to get a similar amount of attention as the top twenty. Once the mixes move towards the top of the charts, the number of votes required to move up the charts increases, forcing these mixes off the ‘most risen’ list.

But anyway, vote on my remix if you like it!

Continue Reading »
No Comments

I thought I used to know some good places on the web to get hold of affordable components, but I have been totally frustrated in my search for AMD and Intel CPUs today.

I’m putting together a server that will be used to support my endeavours as a freelance web developer. Very soon I will have a server that is hosted in a data centre (rather than my living room), that I can use to host the web projects that I’m working on.

I am considering the Tyan barebone systems for starters, and these seem to be readily available. But after spending a couple of hours on scan, ebuyer and ebay, as well as google shopping and other sites I’ve never visited before, it would seem that I can’t buy any CPUs to put in the damn thing. Have AMD and Intel gone bust without telling me?

Scan don’t even stock 1000 series or 2000 series opterons, although they sell a Tyan barebones that takes dual-core opterons. I’ve had some experience using sun servers and HP servers at my time with Titan Entertainment, but I was hoping to save a few quid building my own. Anyone know any good e-tailers or know why AMD CPUs are so scarce?

Continue Reading »
3 Comments

htpasswd or htdigest ?

November 7, 2008 by Dan Garland

Gotcha! Don’t make the mistake I just made when setting up digest authentication in apache2. Depending on whether you’re using basic or digest authentication, you need to use a different command line tool to generate your passwords. After fifteen minutes of confusion, I realised that I needed htdigest to generate my passwords rather than htpasswd, although this crucial fact is not obvious from a glance at the documenation.

A typical setup for digest authentication is:
<Location /some/url>
      AuthType Digest
      AuthName “realm”
      AuthDigestDomain /some/url
      AuthUserFile /path/to/.htpasswd
      Require valid-user
</Location>
Then use htdigest…
htdigest -c /path/to/.htpasswd realm username

Continue Reading »
No Comments