Conferences are for the Elite

I was recently helping John Sellens out at the SAGE booth at Real World Linux in Toronto, and it was nice to be out promoting SAGE and USENIX. As I said to some booth visitors, I’ve been a member of another technical society who I won’t name directly (but whose acronym is composed entirely of vowels) and was less than impressed. That particular organization seemed to be geared to alpha-geeks and academics; reading their monthly periodical and wading through conference proceedings was about as time-consuming and unpleasant as swimming through raw sewage. As a graduate of an engineering program, I’ve already endured four years of lectures by professors who, though intelligent, felt that the only way to demonstrate that intellect was to show off their mastery of LATeX and the art of acronym creation. So I was pleasantly surprised to find USENIX and SAGE to be organizations that are actually dedicated to the day-to-day problems that software developers, system administrators and others in the IT field actually encounter.

One thing that John apologized for, on a number of occasions, to booth visitors was the fact that USENIX membership fees are fairly expensive, particularly since they are expressed in US dollars. For us Canadians, the US$200 in fees annually that we must fork out for USENIX and SAGE membership is fairly steep. But, as I said, compared to (lack of) value I got from The Acronym and Vowel Institute, I’m happy to pay it.

What I do have issue with are the steep conference fees. While looking at the brochure for the 2003 USENIX Annual Technical Conference, I did the arithmetic and realized that it would cost me several thousand dollars out of my own pocket to attend this conference, including plane tickets and accommodation. I have no doubt, of course, that were I to attend the conference, I would learn a lot at the conference– but I’m not willing to do that tango to the tune of several thousand dollars of my own money.

At this point some of you might think, why don’t you get your company to pay for it? If you’re saying this, you probably work for a massive firm like IBM who has enough cash to blow to send upwards of twenty employees to a trade show like Real World Linux. Unfortunately I work for a very small Internet security firm, and with less than 40 employees, we have a hard enough time buying new computers, never mind sending employees on any kind of training.

I started thinking about why the conference fees were so expensive, and sadly, I’ve come to the conclusion that these conferences are put on by the elite for the elite. If you’re able to attend one, you likely fall into one of the following categories:

  1. You work for a large multinational like IBM whose training budget is several thousand dollars per year, per employee.
  2. You attend graduate school at a prestigious technical institution like MIT or Princeton, and are presenting a paper. Since you are doing graduate studies, you also are paying a great deal of money, through your tuition, to attend the conference.
  3. You are a senior developer in one of the areas of research at the technical conference, and are being sponsored by someone to attend the conference. For example, one of my former colleagues is Jake Burkholder, who works on the FreeBSD/sparc64 port and has been sponsored by DARPA to attend BSDCon.
  4. You play a major role in USENIX; you are, for example, like John Sellens, the SAGE Secretary, and USENIX is paying for part of your expenses. (In essence, this means that USENIX or SAGE members like myself are indirectly sponsoring you to go to the conference out of our membership fees.)
  5. You run your own company and are able to take the time off, plus write off part of the conference expenses, on your tax return.
  6. You are one of the minority who made a bundle during the dot-bomb era, and are spending some of that windfall.

From this list I think I am reasonably correct in drawing the following conclusions:

  1. Of the conference attendees, the majority are attending the conference on some kind of subsidy or affiliation which allows them to pay less than full price;
  2. Everyone else who is paying full price is either being directly subsidized by their employer, or they are just suckers.

I have a real problem with this. Think about what kind of people compose the group described by (ii). That’s right, it’s going to be a bunch of grizzled old computer veterans trying to one-up each other with stories of the first PDP-9 they ever hacked on. Throw into that mix a bunch of current alpha-geeks, who, ten or twenty years from now, are going to be the same grizzled veterans. Behold, you have the USENIX elite.

Since the path of least resistance into these conferences — without selling the shirt off your back — is to gain admission to the elite, the conference fees are a great way for USENIX to keep the base of power concentrated within a few, carefully chosen people. If you don’t belong to that club, you can pay full price, and become one of the suckers helping to subsidize the elite.

Lest any readers think that I’m bitter, I’m not. I certainly don’t see myself as a typical UNIX hacker, nor do I foresee myself morphing into one in the future. So I don’t mind being excluded from these conferences by the high fees, because hell, if the price I have to pay to learn things is to become an alpha-geek, then thanks, but I can just do that on my own. I just want USENIX members to see the prohibitive conference fees for what they are: a way for the USENIX elite to exclude regular generic hackers like myself from the “coalition of the chosen”.

if it doesn’t have a www it’s not a website?

What is it with website operators who think that if it doesn’t have a “www” in front of it, it’s not a website?

I mean, how hard is it to replace:


ServerName www.froufrou.net

with:


ServerName froufrou.net
ServerAlias www.froufrou.net

?

I mean it’s not like they’re running Insecure Information Services or something. It can’t be that hard to do.

Of course, mind you, they are running a version of Apache with known security holes, a version of PHP with known security holes, and a version of OpenSSL with known security holes.

Perl blows camels!

Oh Perl, how I do loathe thee!

Perl sucks. (Or, to paraphrase Larry Wall, there are a hundred different ways to say Perl sucks.) Just off the top of my head I can name a number of things I hate about Perl.

  1. Perl syntax is unintuitive and difficult to learn or remember. Aside from the various different kinds of punctuation and their meanings ($foo != %foo != @foo) you have commands like “chomp” or “carp”. Every time I think I’ve mastered all the Perl hack-isms, I come across another one. Today’s favourite is qx(). I thought I’d already seen these all with q(), qq(), and qw(). But apparently there’s qx(), which encloses the argument in backticks so that the argument gets executed in a shell, e.g. my($foo) = qx(ls -l). Now tell me, without looking at the Perl manual, does qw() enclose the argument in single or double quotes or parentheses? Thought so.
  2. To expand on a point in #1, the punctuation is out of control. According to my Perl reference we have (at least) $!, $", $#, $$, $%, $&, $', $(, $), $*, $+, $, $-, $., $/, $:, $;, $< , $=, $>, $?, $@, $[, $, $], $^ and a whole bunch of $^A through $^Z. It’s totally out of control and so bad that Perl has an English module just to deal with this crap.
  3. In the spirit of being “hackerly” Perl often does away with variables entirely. $_ is the implicit variable so you get code like:


    while (<>) {
      if (m/^#/) {
        print;
      }
    }

    Look ma, no variables! (Also: Look ma, no hope of ever maintaining my Perl code six months from now.)

  4. Taint mode, my old nemesis. It’s just such a joke, even without the stupid taint mode bugs. The whole premise that user data will be clean after some regexp checking is bogus — because more often than not, said regexps will be insufficient — and it’s a complete waste of my CPU cycles to track “tainted” variables.
  5. Object-orientation is another joke, and bolted onto the side of Perl. How else can you explain code like:


    sub new {
       my $proto = shift;
       my $class = ref ($proto) || $proto;
       my $self = {
         CCPARAMS => undef,
         TRANSPARAMS => undef,
         DEBUGGING => 0,
       };

       bless $self, $class;
       return $self;
    }

    (Mea culpa, this is my code… but seriously, when my successor comes along to look at this, are they really going to have a clue what the hell is going on?)

I could go on, but I think I’ve proven my point, which is that Perl was obviously written by “real” hackers who must have sat down and thought, “wow, won’t it be impressive to our fellow brethren to have ‘funny’ commands like croak or carp in there? We’ll be sooooo hip!” Of course, I suppose it’s also a job security thing; most Perl code out there is so obfuscated that companies have no choice but to keep the Perl hacker employed, or else the infrastructure will fall down. (Never mind that the programmer spends 3/4 of the time figuring out what the hell his code was supposed to do, and the other 1/4 of the time fixing the problem.)

Don’t believe the hype. Use Python. You don’t have to listen to me: listen to Eric Raymond.

computer movies

It’s great to see so many computer-related movies out. First we had Solaris. Then there was Basic. And now, I’m waiting with bated breath to see The Core. Can’t wait.

:-P~~

Seriously though, this year’s April Fool’s Slashdot is once again stupid. Honestly, if I wanted to see fifteen obviously fake stories, why wouldn’t I just read the Slashdot Story Generator?

Seag[r]ate tape drives round two

Finally got our piece-o’-shit Seagate DDS-4 tape drive back from the shop. The second time. My advice is to not buy DDS-4 drives; not just Seagate ones but any DDS-4 drives. Why? Even though the front says IBM or HP, the inside is still manufactured by Seagrate. The last FRU we got was an IBM brand drive, but reading the label carefully you discover that it’s still a Seagrate.

It’s at times like these that I wish the company had money to buy a decent tape library.

XFree86 “Crisis”

So there’s this big flap about whether or not XFree86 should be forked. Doesn’t it seem like we go through this every few months with every other large open source project? I mean some operating systems are a direct result of forking. And then you have Linux with its -dj, -ac, -my_dog_spot branches, and myriads of different releases — 2.0.x, 2.2.x, 2.4.x, 2.5.x. It’s crazy. Not that the Linux development model (a/k/a complete and utter chaos) should be emulated by anyone.

Mike Harris has an interesting diary entry on why people are so fed up with XFree86, but my point, as I’ve made it above, is that the problems the XFree86 project have are endemic to any large open source project. After a while, any “core” development team becomes so insular it becomes a little “old boys’ club”, and unless there are folks willing to help reverse that trend, you end up with a lot of people outside core being very pissed off, and threatening to fork the code, etc. By and large I think code forks are a Bad Thing except in cases where the project is trying to do two different technical things at the same time. But forking code due to the inability of people to cooperate, and due to the core team becoming so insular — that’s not beneficial to anyone.

mumbo-jumbo python docs

Is this supposed to be meaningful to anyone:

When an instance attribute is referenced that isn't a data attribute, its class is searched. If the name denotes a valid class attribute that is a function object, a method object is created by packing (pointers to) the instance object and the function object just found together in an abstract object: this is the method object. When the method object is called with an argument list, it is unpacked again, a new argument list is constructed from the instance object and the original argument list, and the function object is called with this new argument list.

/me curls up in fetal position

koremutake

So I’ve been trying to figure out what this koremutake thing means — this algorithm that the shorl.com people are using to make their shorter URLs easy to memorize. I figure that "koremutake" is the representation of some significant number using the aforementioned algorithm.

So I tooled around and tried to figure out what the significance of the number is. I see that using the supplied syllable-to-number chart provided, "koremutake" (or more accurately KO RE MU TA KE is really 39 67 52 78 37. Does this number mean anything to anyone?