https://buy-zithromax.online buy kamagra usa https://antibiotics.top buy stromectol online https://deutschland-doxycycline.com https://ivermectin-apotheke.com kaufen cialis https://2-pharmaceuticals.com buy antibiotics online Online Pharmacy vermectin apotheke buy stromectol europe buy zithromax online https://kaufen-cialis.com levitra usa https://stromectol-apotheke.com buy doxycycline online https://buy-ivermectin.online https://stromectol-europe.com stromectol apotheke https://buyamoxil24x7.online deutschland doxycycline https://buy-stromectol.online https://doxycycline365.online https://levitra-usa.com buy ivermectin online buy amoxil online https://buykamagrausa.net

Movable Type: static publishing with dynamic CGI script names

Well, that little digression turned into a big time sink. A few weeks back I converted my WIST quotations site into a static published site, rather than dynamic. That took…

Well, that little digression turned into a big time sink.

A few weeks back I converted my WIST quotations site into a static published site, rather than dynamic. That took a chunk of disk space, but the performance for calling up individual pages (and having them index) should save time.

So, today it I was in the mt-config.cgi file (to turn off the autosave function), when I realized it had been three weeks since I renamed my comment and trackback scripts. I’ve found that’s a moderately helpful way of foiling certain spammers.

I was about to do that, when it suddenly occurred to me that, unlike before, not all of my individual entry pages in my various blogs were still dynamic. WIST’s pages are static (actual HTML files generated at creation, vs. dynamic pages generated from the database on the fly). If I changed the names of the comment and trackback CGI files in the configuration, I would have to rebuild all my pages. Which, last time I did it, was a multi-hour task (that may have been in part because it was the first time I’d done it; I haven’t timed it again lately).

Ugh.

So instead, I needed a way for the script names to be dynamic when a given page is called, but the rest of the page to be static the rest of the time. Here’s what I did.

1. Create two new index templates, one for each script name. 

I figured I could use Server Side Includes (SSI) as the dynamic source of the CGI script names. You can create SSIs from MT without too much trouble (as the output file associated with a template), but to have them “built” with the value they need, so they need to be done as Index Templates (vs Template Modules), flagged to rebuild with each rebuild.

So I created a “dynamic comment script” index module that creates dynamic_comment_script.inc, and has as a single line:

<$MTCommentScript$>

That tag will return the of the comment script.  Then I did the same trackbacks.(“<$MTTrackbackScript$>” etc.)

So now whenever a rebuild happens, those two .inc files will have the name of the script (e.g., “xyztrackback.cgi”) in them. And when I change the name of the two scripts in my mt-config.cgi file, instead of rebuilding all the individual entries in WIST, I just have to do an index rebuild (which takes just a minute). And if I forget, it will still update the next time I add a new entry.

Note that SSI is not available on all hosts. It is on mine, though.

 

2. Change the comment form. 

Now to change the reference to the comment script. In the comment code, there’s a form call that starts something like:

<form method=”post” action=”<$MTCGIPath$><$MTCommentScript$>”

 

That’s the part that needs to be fixed. And, fortunately, it’s simple.

<form method=”post” action=”<$MTCGIPath$><!–#include virtual=”/dynamic_comment_script.inc”–>”

 

That’s an SSI call there at the end. It’s calling the contents of that .inc file I created in step 1, literally sucking it in at the time the page is loaded. Thus, the page is static (on file), but that particular piece gets pulled in dynamically. And recall that .inc file contains the name of the comment script, as most recently generated (even if that’s after when the entry’s static file was generated).

 

3. Change the Trackback text. 

I still have the default trackback address text at the bottom of the individual archive page, in case someone’s doing a manual ping that isn’t doing an auto-discover on the file. That line usually looks like:

TrackBack URL for this entry: <$MTEntryTrackbackLink$>

 

Instead, I do the same trick as above:

TrackBack URL for this entry: <$MTCGIPath$><!–#include virtual=”/dynamic_trackback_script.inc”–>/<$MTEntryTrackbackID$>

 

MT has all sorts of tags for this sort of stuff, so it was easy enough to (by looking at what was actually generated) find the surrounding pieces and substitute in the SSI of the TB script in the middle.

 

4. Change the Trackback autodiscovery code. 

A lot of blogging software can autodiscover trackback addresses for a file through special RDF tags embedded in it. So MT has a simple tag to generate the RDF tags:

<$MTEntryTrackbackData$>

 

That actually creates a 14-line set of tags and info for the trackback discovery process. Unfortunately, part of that info is the location of the trackback script (so that the autodiscovering system can generate a trackback entry).

Fortunately, though long, the format of those tags is pretty straightforward and the content is reproducable. So in my Individual Archive template, in lieu of the one line above, I now have:

<rdf:RDF xmlns:rdf=”http://www.w3.org/1999/02/22-rdf-syntax-ns#”
        xmlns:trackback=”http://madskills.com/public/xml/rss/module/trackback/”
        xmlns:dc=”http://purl.org/dc/elements/1.1/”>
<rdf:Description
   rdf:about=”<$MTEntryLink$>”
   trackback:ping=”<$MTCGIPath$><!–#include virtual=”/dynamic_trackback_script.inc”–>/<$MTEntryTrackbackID$>”
   dc:title=”<$MTEntryTitle$>”
   dc:identifier=”<$MTEntryLink$>”
   dc:subject=”<$MTEntryCategory$>”
   dc:description=”<$MTEntryExcerpt$>”
   dc:creator=”<$MTEntryAuthor$>”
   dc:date=”<$MTEntryDate format=”%Y-%m-%dT%H:%M:%S-07:00″ />
</rdf:RDF>

 

All the stuff in the first block is literal info as generated currently by MT. The next stuff is all use of MT tags — including, note, the SSI to get the current trackback script info into place.

The only thing I didn’t bother to look up or figure out how to do is on the last line. The “-07:00” is the GMT time zone offset, in this case Mountain Time. I don’t know if MT has a tag to do it, and I really didn’t feel the need to look it up (since I don’t plan to permanently move out of my time zone any time soon).

 

5. Kick back and relax. 

And that’s it. With those steps, I now can change my comment and trackback script names, do a simple index rebuild on WIST (or even — given that the trackback and comment traffic isn’t all that heavy — let it rebuild itself when I add more quotes each weekday), and the changed CGI script will be present in all of my entries without having to do a full rebuild.

Of course, you might say, I could simplify things by eliminating trackbacks — but I’m stubborn about this, as I think the TB concept is delightful, and use it a lot for internal cross-references if nothing else. I hate to let the spammers “win” on that one. Ditto for comments — the WIST site would not lose a lot by losing comments — but I’d be irked and saddened. So, to me, it’s worth the effort to have done this.

And to have shared the wealth with anyone else who’s looking for something similar.

Surfing Safari?

Margie commented a few days ago that, in doing an iTunes upgrade, she’d been offered a chance to install Safari. “Safari? That’s a Mac browser.” “Well, it offered to install…

Margie commented a few days ago that, in doing an iTunes upgrade, she’d been offered a chance to install Safari.

“Safari? That’s a Mac browser.”

“Well, it offered to install it for me.”

“Huh. Weird.”

Turns out that Safari is now available for Windows, too (not sure for how long) — but Apple’s drawing heat by slipstreaming it in as … well, as an “update” to iTunes (which it’s not), installed by default (bad dog!).

I agree with the critics — new products, or products that are not the core of what you say you are trying to install, should be clearly labeled and should not be chosen by default. I dislike it when other companies pull that sort of trick (“No, for the twelfth time, I do *not* want to install Yahoo’s browser bar while downloading your upgrade to something that has nothing to do with the browser!”), and I don’t dislike it any less that it’s Apple doing it this time.

Regardless, that’s why I always do a “Custom” (rather than “Default”) install when I load things onto my machine — so I know what’s actually being put in.

Potpourri for Easter Monday

Time once again to clean out those browser tabs … When is dead dead? Not a trivial question when you’re talking about organ donations. The Toilet Sign Project. There are…

Time once again to clean out those browser tabs …

  1. When is dead dead? Not a trivial question when you’re talking about organ donations.
  2. The Toilet Sign Project. There are some pretty clever ones here.
  3. The worst foods in America. I’ve eaten … well, one of these (the Cinnabon).
  4. One of those stealth patent infringement suits may have Sony’s Blu-ray in its sights.
  5. Not exactly how you’d expect a stingray to kill someone.
  6. For all I’ve bitched about Microsoft not adhering to web standards … its moves toward doing so will likely cause more problems. (More)

Recently Read

I’ve been using a system by BlogFuel to list “recently read” books in my sidebar. Alas, the service seems to be not working (at least it’s not showing up on…

I’ve been using a system by BlogFuel to list “recently read” books in my sidebar. Alas, the service seems to be not working (at least it’s not showing up on my page any more, nor on Kate’s), though there’s nothing on the site to indicate a problem.

I’m poking around on Google for how to turn an Amazon Wish List into an RSS feed, which you’d think is a problem that should have been skinned twenty different ways. If I can get an RSS feed, I can use Google Reader tools to create a sidebar from it. No immediate, easy, trivial luck so far, but I’ll try to continue digging. 

 

Movable Type 4 Interface

The neat, sleak, redesigned interface for MT4 is driving me nuts. While it looks pretty, and I’ve managed to figure out where things go, and it even has some…

The neat, sleak, redesigned interface for MT4 is driving me nuts. While it looks pretty, and I’ve managed to figure out where things go, and it even has some nice features (e.g., the post preview is excellent), I find it slow, slow, slow. Everything is a javascript construct, even the input fields. If you do anything to push the systems — as I do with my 6,000-category WIST “blog” — then it goes from manageably glacial (in MT3) to nearly unusable. That’s as true the post creation side (where it takes about 30 seconds each time to generate the drop down to select categories) as it does on the category management side (where it takes forever to load, and then keeps trying to update itself periodically, all taking forever).

Ugh.

Oh, and the java-controlled drop-down menus are a pain in the ass, as they tend drop down on a casual mouse-over and then obscure the screen, waiting to be clicked on.

Ugh.

I know a big chunk of this stems from my using the system a way it’s not really designed (thousands of categories is possible, but I doubt anyone else is doing it), but it’s still a pain in the patootie, even in those cases where I do something on other than just WIST.

Quick potpourri on a Friday morning

How a cockroach got 30 people fired. It’s good to be the king … Lesson from the Heathrow baggage snafu — don’t upgrade both your redundant systems at the…

  1. How a cockroach got 30 people fired. It’s good to be the king …
  2. Lesson from the Heathrow baggage snafu — don’t upgrade both your redundant systems at the same time.
  3. That River certainly is a creepifying girl.
  4. Using Google Spreadsheets to run a survey. I might have to try this.
  5. Blogger gets fired for having a blog. Corporate myopia, employee naiveté, or both?
  6. The risks and costs of using the Internet as your hard drive. That remains, honestly, why I keep so much of my online stuff on my own domain (where, if it goes away, it’s probably my fault). Though, even there, I still host my mail on Google …
  7. Satellite spotting sounds like a fun hobby — even if (or perhaps because) it causes the government security fits.
  8. Now that security has made air travel even more miserable (and perhaps lethal), let’s start ruining train travel, too.
  9. I didn’t do an obit for Steve Lieber Steve Gerber because, honestly, I was never much of a Howard the Duck fan. Thundarr the Barbarian, on the other hand(via Scott)
  10. Exporting contacts from Outlook to Gmail is a fine idea — except that it doesn’t transfer snail-mail addresses. *sigh* 
  11. One of the coolest things about the Internet is that if Katherine is trying to sing along to the lyrics to a favorite TV show, I can probably find the text for her online. Of course, it’s usually transcribed, and so subject to individual interpretations.
  12. Disney’s Night Kingdom? If it saves the Adventurer’s Club from oblivion, I’ll fork over my money.

Fresh Potpourri

MT Open Source 4.1 is now available. I still have no idea whether to stick with the free MT or the free MTOS. Need to ponder this some time I…

  1. MT Open Source 4.1 is now available. I still have no idea whether to stick with the free MT or the free MTOS. Need to ponder this some time I have some spare cycles.
  2. Old valentines.
  3. The TSA has confirmed that some locations were asking for people to pull all their cables out of their bags, and that this was not official policy — and that it won’t happen again.
  4. Keeping your home Wi-Fi strong and clear.
  5. We played some more Galactic last weekend, which was great fun. Whether it’s playing Latin romantic pilot Tomas, dreadfully earnest and presently mind-controlled Brad, shrewish and clever Sonja, or even my own Captain Alyssande, it’s always a hoot. Never any wandering attention at that table.
  6. Online tools to help you prepare for death, including obit/tribute sites, “last e-mail message” sites, wills, perpetual site licenses, etc.
  7. While I am deeply suspicious of any pricing scheme that the music labels come up with, the idea behind Total Music sounds good (it’s a parallel to the movie industry getting a slice of VCR sales): an incremental charge for music playing devices, in return for a lot less DRM. We’ll see where the catch is.
  8. I enjoy the new Backward Compatible webcomic by Aaron Williams (Nodwick, FFN, PS238), but what does the man have against RSS feeds? If I can’t get it in my reader (or at least a reminder that a new one is up), the chances I’ll remember to go back and read it drop close to nil.
  9. Guillermo Del Toro will be directing The Hobbit under Peter Jackson’s executive producership.

Blogging categories

Unlike all the Cool Kids, I’ve never gotten down with using Tags for my blog entries.  I don’t trust myself enough to tag things consistently, frankly.  So I use categories…

Unlike all the Cool Kids, I’ve never gotten down with using Tags for my blog entries.  I don’t trust myself enough to tag things consistently, frankly.  So I use categories to group things together for those times I want to review a subject (vs. searching for individual posts).

I’ve added a bunch of new subcategories today for several categories that had grown unwieldingly large.  In most cases, these were categories I’d been pondering for a while, but which I finally got around to building.  I’ve done them as subcategories of the parent categories I’m trying to break up.

Now, in theory, I should go back through those parent categories and reassign things appropriately.  Alas, with over 12,000 entries, that’s a herculean job that I’m saving for when I have a week with nothing else to do.  Perhaps when retire …

So for the most part these categories are starting off as stubs that will build from this point, with possible backfilling if I reference back to an earlier post.  Let’s see how that works for now; in another 12,000 posts, nobody will remember the difference.

Sub-categories being added:

  • Blogging – Technical (to track posts about MT and technical issues with my blog, vs. other general Blogging subjects)
  • Family (broken out from Personal)
  • Health – Science (to distinguish from “I am down with the grippe” Health posts)
  • Media – Art (to make various reference to the Tate Modern, etc.)
  • Media – Sports (for the occasional obligatory sports post)
  • My Mobile / PDA (for stuff having to do with cell phones and PDAs and combos thereof)
  • Religion – Episcopal Church (broken out from the general Religion category)
  • Religion – My Parish (my local church activities)
  • Religion – Me (my own musings on the subject)

And I’m doing this post as much to note these changes as “starter” posts for those new subcategories than as anything I figure anyone would be interested in actually reading.  We now resume my regular blather, normally scheduled for this time.

Airblogging, MoBlogging, whatever

A request for suggestions here, folks. I’m finding the (free, but unsupported) airblogging.com site to be too flaky for normal use. About 1 out of 5 messages never make it…

A request for suggestions here, folks.

I’m finding the (free, but unsupported) airblogging.com site to be too flaky for normal use. About 1 out of 5 messages never make it to my blog (with no clue why), and that seems to be getting worse.

I am looking for a mechanism to allow me to post photos from my Treo cell phone (Cingular) to my Movable Type blog.

I am not interested in hosting the pictures elsewhere (in particular at Flickr). And I’d rather avoid running something on my server if I could avoid it. I’d prefer something like, well, airblogging.com.

I’ve been researching via Google, but don’t have any good answers yet.

More outages

So this morning I had problems getting to TypeKey. I got an IM from Les that he was unable to get to SEB — but I was. After about 20-30…

So this morning I had problems getting to TypeKey. I got an IM from Les that he was unable to get to SEB — but I was.

After about 20-30 minutes, I had TypeKey back, and all seemed well.

Then, about 15 minutes ago (as I write this), I lost contact with hill-kleerup.org. Plus average-bear.com. Heck, with hyperion.hmdnsgroup.com, the real server behind both of us. Nor could I get to SEB any more. On the other hand, HM’s status page showed Hyperion doing just fine. And I could get to plenty of other sites.

My thought: Katrina’s power outages and telcomm disruptions are having more far-reaching effects than just the storm-affected areas. (And if that’s the only inconvenience I suffer from Katrina, I count myself blessed …)

[NB – Originally written around 5 p.m. … back up around 7:30p?]

Generating printy goodness

Through the wonders of stylesheets, alternative archives, and dynamic publishing, this blog now has alternative printer-friendly pages for each post. Just click on the “Print” link at the bottom of…

Through the wonders of stylesheets, alternative archives, and dynamic publishing, this blog now has alternative printer-friendly pages for each post. Just click on the “Print” link at the bottom of any post (on this page or on the individual pages), and, voila, a nice, clean, un-sidebarred version of any page. Spiffy!

(Ideally, I’d love to use the Collect plug-in to list out/footnote all the URLs, since you can’t click on a paper link, but, alas, that doesn’t seem to work under dynamic publishing. If someone has a good alternative, let me know.)

UPDATE: This applied to the old Movable Type version of my blog.

More nofollow thoughts

An extension of my post from this morning. As I read various objections to the nofollow tag, aside from the “It won’t actually instantly end all comment spamming” (which nobody…

An extension of my post from this morning. As I read various objections to the nofollow tag, aside from the “It won’t actually instantly end all comment spamming” (which nobody has claimed it would), the biggest cavil is, “It hurts commenters.”

This infliction of harm seems to be of two types.

  1. It treats all commenters as criminals.

    I suppose that’s true, although another way of looking at it is that it distinguishes between the original poster/site owner and others visiting (whether dear, bosom friends or evil spammers). I suspect that there will be some way of whitelisting or allowing registered users to comment without having nofollow in their links, but …

    But, even if so, so what? When we put moderation onto comments, we do the same tarring with a broad brush. When we put registration onto them, ditto. When we make folks type in Captchas and other such hoops, likewise. When we keep our MT password a secret, so that folks can only post comments, not actual blog entries, we’re treating others as untrusted.

    Deal with it.

  2. It robs commenters of something of value.

    The idea here is that people who make comments should get some sort of distinct reward, and the coin of the realm in this case is PageRank for their link targets.

    This is wrong, or beside the point, in so many ways.

    First off, if folks are commenting for PR, then screw ’em. Or, rather, I really don’t care whether they get that PR or not, so it’s not something I’m going to worry about.

    If they are conmenting to make a contribution to the discussion, then nothing has been lost by anyone. They’ve made their contribution, their content (and name and URL) are indexed, even if not PRed or spidered, and on display in front of God and everyone. All’s right with the world.

    I mean, already in MT (and this was widely applauded when it happens), the “Comment Author URL” field is redirected to keep spammers from using that field (and thus keep PR from accruing). If that’s not an evil thing, why is the nofollow tag (which effectively does the same thing) so bad?

    I may have a warped view of this, in that probably three quarters of my commenters don’t actually have a web site, and only a tiny fraction of my commenters include links. And of those links, only a small fraction as well are links back to their own pages. So this isn’t something that’s going to “hurt” my commenters.

    Trackback is slightly different, perhaps. Folks who trackback to articles here are, in theory, being similarly hurt because they didn’t get any PR for doing so. But, again, it’s hard to say that’s a distinct harm, unless that was your point in tracking back. The link is still there. I’m still likely to go out and look at the post in question. The poster has gotten something of value — my writing to refer to or be inspired by (hence the trackback). That their page should somehow be enrichened by their pointing to me seems a bit goofy.

    I’ll confess that I’ve a hankering for PageRank for myself. When I see that my front page is PR:5, I go, “Ooooooh, nifty.” I feel the same way about hit counts, or my rank in the TLB Ecosystem. But that’s such an indirect and passionless bit of whuffie that it’s insignificant next to folks actually caring to comment here, or trackback to my posts, or things like that. Those sorts of strokes aren’t dependent on PageRank, and so neither is my ego. Really.

    In other words, any “penalizing” I accrue by my comments on other pages not getting PageRank for my own blog is so trivial to my mind as to be non-existent. I find it hard, then, to empathize with the position that others find it intolerable.

Of course, none of this is either automatic nor unavoidable. If you’ve licked the comment spam problem on your site, implementing nofollow doesn’t really do anything for you, and thus can be avoided. But if stuff still gets through now and then, or you have a life beyond slapping down spammers as they hit, then I think it’s a fine long-term investment.

UPDATE: Anil Dash discusses how design decisions can have implications that could never be imagined — taking, as an example PageRank.

PageRank, when created, didn’t assume that content on a web page, especially links, would be generated by someone other than the publisher of that page. PageRank was not based on the assumption that the rankings would have monetary value. And PageRank is based on the assumption that site editors choose their content, particularly their links, based primarily on merit.

Because those assumptions no longer pertain in a blogging/wiki world, we end up with effects that were not predicted. How this applies to nofollow is discussed in further detail. A good read.

More on the Google nofollow tag

A bit of a backlash this morning on the announcement of the new rel=”nofollow” tag that Google et al. are going to be implementing. Most of the critiques are referenced…

A bit of a backlash this morning on the announcement of the new rel=”nofollow” tag that Google et al. are going to be implementing. Most of the critiques are referenced in this Register article.

While acknowledging that the new nofollow tag will not do anything — immediately — to stop comment spam, I think most of the criticisms are off-base in one way or another.

  1. The Internet is becoming balkanized, where people only accept content from people they know.

    This may come as a shock to some, but the Net is not a big wiki. Most web content is blocked against content from folks other than the creator. That blogs — and wikis — have the capacity to allow people other than a site owner/administrator to contribute is fairly amazing, and putting some restrictions on that is neither novel nor alarming.

    The “democratic nature of the web” doesn’t mean that everyone gets to post whatever they want on my site. It means that anyone can open their own site, and the web will “vote” on it by who links to it or visits it (and Google will index it regardless).

    I’ll say it again: comments are not the keys to blog content. Blog entries are. Of the blogs I visit, very few comments have links in them to go elsewhere — and, frankly, since those comments will still work, the damage to the “web” seems minimal.

    Now, if someone put the nofollow tag in their blog entries (which (a) nobody is proposing, and (b) the MT plugin doesn’t do), that would be a problem. But why would anyone actually do that, since the blog entry content is already protected? Again, this is not “invalidating” all links, just the Googling of those put into comments. Huge difference.

  2. The nofollow tag is “effectively declaring PageRank dead for weblogs.”

    Huh? I don’t know about most blogs, but for mine, there are rarely links in comments (except from spammers) and rarely is it key to the actual post content. Comments in a blog are not really the same as discussions on a discussion board, in a variety of ways. If links coming out of comments are no longer considered in PageRanks or somehow indexed in Google, I don’t think that’s a huge problem.

    And if there’s a really key link that I think, from a comment, should be highlighted and PageRanked and all that, I can (as the original post owner) put it up in the actual post itself as an “UPDATE.” (Conversely, if I want to reference a site that I think is particularly despicable, I can now do so as a link, manually, without worrying that I’m boosting their Google ranking. That’s not necessarily a bad thing.)

    Now, what this does mean is that if I’ve written about subject X, and I comment on someone’s blog (that’s implemented this solution) and say, “I’ve written in more detail about this at [link back to my blog entry],” that cross-link won’t get indexed, my blog page won’t get a PageRank boost, and a search in Google for pages that mention my pages won’t see it. Boo-hoo. Folks can still click on the link. And since I wasn’t sobbing that such a comment didn’t generate a Trackback (in MT, at least), I don’t see why I should be sobbing that it doesn’t boost my PageRank — unless PageRank is what I’m looking for.

  3. This does nothing to stop comment spam, but other things like Captcha does.

    There are two ways to disincent behavior. One is to make the behavior more difficult or painful or costly to perform, and the other is to make the payoff for the behavior less attractive. Captchas and blacklists and the like are part of the former, creating armor and fortifications against folks being able to willy-nilly post content. The nofollow tag takes the latter approach, making the reward for actually getting comment spam posted that much less. The two approaches are complimentary, not swappable.

    I’ve toyed with using Captchas here before, but have refrained for two reasons. The first (and, admittedly, minor) one is that Captchas are unfriendly to those with visual handicaps. The second is that, for determined comment spammers, there are ways to get around them, to essentially recruit humans to solve them for the spammers (either through pittance payments to third-worlders or by tying them into pr0n sites where someone resolves an intercepted Captcha to get in to see something, which then lets the site owner get in to where the Captcha was originally formed). I don’t know how common this bypassing is, but it’s at least conceivably possible, and as long as there is a reward for going to the effort, the effort will be gone to. Hence the long-term potential for the nofollow tag.

  4. Spammers will just go to blogs that aren’t using the nofollow tag.

    Ultimately, yes, though it assumes that spammers are really looking at the sites they’re going to (and my experience is that they don’t, much). But if they do, that’s still a victory for me, because it means they’ll leave my site alone.

    The same, though, can be said for any defense, whether it’s blacklisting or moderation or ID verification or whatever. Burglars will hit the obvious targets on a street. Virus writers depend on the folks who have no AV on their system and never download security patches. That’s a separate problem (how to encourage updates, what to do about abandoned sites), but it doesn’t invalidate what the nofollow tag can do in this case.

The Register article, aside from taking a snarky attitude toward blogs in general, is missing the point. This approach seems to me to be a good, long-term way to disincent comment spamming, with minimal effect on the blogs or the Net itself. I’m not sure where the problem is with that.

The morning after

Les provides some good advice on the MT3 furor: let’s all take a deep breath, swallow a Chill Pill, and see what SixApart has to say. Eventually. There are some…

Chill, dudesLes provides some good advice on the MT3 furor: let’s all take a deep breath, swallow a Chill Pill, and see what SixApart has to say. Eventually.

There are some indications that the licensing schema put out is only preliminary, for the “Developer’s Edition.” That still sounds goofy (since the DE looks like it’s a gamma release), but we’ll see.

6A has been (justly, and ironically) criticized in the past for being communication-averse. This may be part of that, and the kind of brouhaha from yesterday may make them even slower to respond, for fear of stepping on themselves again.

There’s a PC World article that talks more about the new release (though not the brouhaha).

I’m hoping either that there’s been some significant miscommunication from 6A, or the angry response will get them to reconsider their plans. In either case, quick response from 6A is critical — controversy (like nature) abhors a vacuum, and lack of communciation only lets rumors and vitriol become set as the “real” story in people’s minds (a situation I see in way too many other cases).

UPDATE: On the other hand, this isn’t promising.