SYS-CON Media Redux: You Couldn’t Make This Stuff Up

Here is how I was going to start this post:

Do you have fifteen minutes or so? Then relax and, if you don't mind a few f-words, enjoy the hilarity of a supposed media company shooting itself in the foot. Then the other foot. Then going so far beyond shooting itself in the foot you won't believe it.

But, while that's one way to look at it, there is also the possibility that this is a tragedy. That the state of the world is so grim that these poor hapless people are driven to extremes of apparent stupidity. What could be going on in their lives to reduce them to this? Do they have landlords demanding the rent by tomorrow or they will be out on the street? Or what? Because, really, there is something here that is undeniably pathetic.

But enough of the teaser. On to the action. A couple of weeks ago I posted about my own unpleasant experience with SYS-CON media. I already knew about, but did not mention, the LinuxWorld fiasco there, because it didn't seem fair. But that's for later.

Yesterday a comment on that post led me to Jame-Ane Ervin's blog, where … Continue reading

One hundred thousand

That's the total number of page views of this blog, according to Sitemeter, although TypePad says it's only 83,000 or so. Still, it seems like a time to take stock or at least review some basic stats:

First post: November 2005. Total number of posts, excluding this one, 292. So that's about two a week. Number of visits: about 60,000. So on average a visit is two pages. Most are only one, and a few people with nothing better to do click around once in a while.

Average page view rate is about 100 per day. Probably a good half of those are inappropriate searches, and it looks which leaves an actual readership of about 50 people per day. In general my traffic is lower than that, but I seem to have a handful
of patrons (thank you Nick C, Henry F, Mark T, Brad D) who
have sent people this way and then I get a spike. Most views in a day was over 2500 when Nick Carr pointed people to Mr. Google's Guidebook. I've only had one post get traffic through reddit or digg, which was a computer software post some time ago. Audience: On … Continue reading

Mr. Amazon’s Bookshop: The Differ

[This is the sixth instalment of Mr. Amazon's Bookshop. A list of all instalments is here; the previous instalment is here.]
I rocketed over to my stables at the crack of noon and cleaned up the old difference engine, or differ as we enthusiasts call it. My friend Mr. Babbage, you will recall, had told me that Mr. Amazon had a new trick – instead of going to Mr. Amazon's Bookshop, one could use a difference engine to ask him as many questions as you like. I determined to use my differ to interrogate Amazon and better understand how his intriguing operation works.
I had to chase out a few voles and a cat that had set up house in among the levers and pistons, and it was nearly dinner time before I fired up the bellows and the great machine began to hum. It had been some while since I last set it going and the smell of burning dust was atrocious. But finally I was able to start communing with it, and I readied my questions.
My first query to Mr. Amazon's service was a simple one, … Continue reading

Motor Neuron Disease/ALS

You can react to illness in a couple  of ways.

Take me. I have had a really crappy cold for the last couple of days and so I didn't cook last night, didn't walk the dog this morning, and I've been basically slobbing around and doing nothing.

Or take my friend Tim Lester. Diagnosed with Motor Neuron Disease (also called ALS or Lou Gehrig's Disease) a couple of years ago, he still plays in a band, has done a large part of a walk across the Speyside Way, promotes MND awareness and continues to raise his kids. His son Alex (who, I happen to know, is prepared to wear a Borat thong in front of a high-school audience) narrates this video on Tim's life with MND; it's a short (2 mins 30s), clear, unsentimental, and helpful description of what challenges the disease brings with it. 

Maybe I shouldn't let a cold slow me down so much.

Continue reading

The Outsider Manoeuvre

Writers and actors are notorious for seeing themselves as outsiders. "Why did you become an actor?" they are asked. "Well, I was always a bit of an outsider…" This morning, take director Terence Davies:

"I felt like an outsider because I was from a large working-class family. And I spoke with this kind of [posh] accent even by the time I was 11," Davies noted in our interview. "I've always felt an outsider. I think I was reasonably intelligent, I largely taught myself because I didn't go to university. And I was Catholic. And I was gay. I mean, in a large, working-class Catholic family, that's very hard."

He may be right, what do I know? But it is a standard manoeuvre and we should not trust it.

Politicians are fond of the same trick, of course. Americans saw this in spades over the last few months with the self-positioning of the Republicans, after eight years in power, as "mavericks".

And the phenomenon reaches into the world of blogs as well. Dan Gilmor at Talking Points Memo writes about "The Media's Role in the Financial Crisis", making it clear that TPM and DG in particular are … Continue reading

Mr. Amazon’s Bookshop: Doubts About Amazon

[This is the fifth instalment of Mr. Amazon's Bookshop. A list of all instalments is here; the previous instalment is here.  This instalment was written over the Christmas holiday, well before Belkingate.]

My inability to understand how Amazon worked was the first step in an increasingly tormented relationship with the shop and its owner during the last few months. Two other events pushed me from by early enthusiasm with the peculiar place to a more antagonistic stance. 

First, one of the other bookstores in town closed down. Mr. Babbage's Books with a Difference (Engine) stocked books that dealt particularly with my old hobby – the steam-driven monstrosity I had built in the stables, and with which I had tinkered on the weekends for years. I bumped into him on the street and he complained that the kids these days bought all their books at Amazon's shop. It's a shame – Mr. Babbage had recommended several good books to me when I visited his shop and also given me several tips at times when I got stuck in the construction of my difference engine. I felt that the … Continue reading

Tumbleweed blogs (firstname challenge again)

So some bloke called Graham emails me about my competition and he says, like, why don't you do it yourself then? And here's a list of names: http://bel-epa.com/area51/library/names.txt.

So I says, OK then. I will. And I write myself a little python like this:

import httplib
import re
import sys
conn = httplib.HTTPConnection("bel-epa.com")
conn.request("GET", "/area51/library/names.txt")

namelist = conn.getresponse().read().split()
conn.close()

activenames = {}
inactivenames = {}

print len(namelist)

for name in namelist:
try:
host = name + ".blogspot.com"
p = re.compile('200[0-9]<')
conn = httplib.HTTPConnection(host)
conn.request("GET", "")
response = conn.getresponse()
body = response.read()
mo = p.search(body)
if mo:
activenames[name] = mo.group().rstrip('<')
print name, mo.group().rstrip('<')
else:
inactivenames[name] = "null"
print name, "null"
except:
print "Failure on " + name
conn.close()

f = open("blogdeath.csv", "w")
f.write("name,year\n")
for name, year in activenames.iteritems():
f.write(name + "," + year + "\n")
for name, year in inactivenames.iteritems():
 f.write(name + ",1900\n")

And then I plot the results and they look like this.
Blogs Continue reading