Categories
Just Shelley

Slashdot let the dogs loose on Mark Pilgrim

Recovered from the Wayback Machine.

Ah, oh. Mark Pilgrim was mentioned prominently and positively (deservedly so) in a Slashdot interview on accessibility. That sound you hear is Mark’s 3GB bandwidth allowance being sucked dry.

In the re-design of my traditional web sites and weblog (still in process, not rolled out yet), I used Mark’s guidelines to ensure accessibility with my designs. I found that enabling accessibility doesn’t have to be overwhelmingly difficult if you just follow the steps; and if you think about it, the people that need this little extra effort don’t need to hear our whining — think how frustrating it must be for a blind person to go to web page after web page and not be able to ‘see’ the contents?

(Hmmm. Was that last paragraph a little too ‘J’, even for an INTJ? Too bad.)

Categories
Just Shelley

Enough already

Recovered from the Wayback Machine.

In case you’re wondering if I’ve decided to focus this weblog on “–isms that must not be named” only, no worries. I have no more intention of becoming a Fem-blogger as I have of being a war-blogger or a tech-blogger or a cat-blogger.

Life’s too rich to only focus on one aspect of life, no matter how important that aspect is.

Besides, as I was out and about visiting other weblogs, I became aware that I’ve been guilty of quite sexist behavior, and that’s a rather lowering realization. So, as all good webloggers do in these times, I’m returning to my roots — cat pictures, and Big Click of the moment (thanks to Jeneane for link):

Back to work, Bird!

Categories
Critters

Clothes cat

Recovered from the Wayback Machine.

Others may have their cleaning utensils, their tools of formidable appearance, design, and power. However, I have something far greater — a cat that helps me do laundry.

Well, sort of.

zoe lying all over the wash

Categories
Technology

Comments

Recovered from the Wayback Machine.

As you can see, I’ve added in functionality to display the most recent comments regardless of post. I’ve found that I do get comments on older posts, and they’re ‘lost’ because no one knows they occur. Now, every comment has its moment in the sun, so to speak.

Speaking of comments, there have been several attached to the Dripping with Irony post. Some agreement, more disagreement, including a comment from Tim O’Reilly, and I appreciate Tim taking the time to stop by and write a spell.

Discussion related to the post is well and good, and my appreciations are also extended to those others who have commented. However, I have a feeling that some of the people are using me and my posting as a way to hit and jab at each other, indirectly, rather than because they were interested in anything I have to say. Just a feeling, a hunch I have. Silly, eh?

However, if per chance this Is true, then all I can say is that these same individuals must not have learned the lesson that when you play with fire, you get burned. Same could be said of playing with firey birds.

Continuing this post’s topic, I want to talk about anonymous comments. Lately I’ve been getting some nasty anonymous comments, including some of a personal nature unrelated to the postings. There is a difference between posting a comment anonymously because you’re uncomfortable using your name — because of work or other valid considerations — and not using your name because you want to say vicious things without reprecussion.

I don’t want to sound too much like Warf in Star Trek, but people who hide behind the cloak of anonymity in order to take petty, mean shots at others have no honor. Hint: the worst thing I will ever say to another is that they have no honor*.

Starting today, you post a nasty, petty, vicious, and personal comment — about me or anyone else — without attaching your name or some other known psuedonym or your weblog or true email address, I’m deleting it. As simple as that. Don’t like my new rules? Take it up with management. I tire of wasting my time, and my readers time, with Anonymous Coward.

* I actually did this myself, once, by accident. With Happy Tutor from Wealth Bondage, no less. I wrote what I thought was a funny comment, under a joke psuedonym. However, when I checked later, I realized the comment was incredibly mean. I must have been exhausted when I wrote it. I do know that I felt horrid about it afterwards. Personally, I wish that Happy had deleted it.

This is late, but sorry Happy.

Categories
Technology

Comment How-To

Recovered from the Wayback Machine.

In comments to my last posting Jonathon, asked the following about my new comment modification:

Is that standard in (later versions of) MT? Or a custom-coded Burningbird special?

Answer: a bit of both.

The code is based on templates and an example that Ben and Mena provided, but I customized. So I thought I would provide a how-to if others are interested in incorporating at their weblogs.

First, I added permalinks for my comments, so that clicking on the specific comment takes the person directly to the comment. I changed the MT template code for comments within the individual entry archive template to the following (modifications are in bold text):

<a name=”comment<$MTCommentID>”></a>
<$MTCommentBody$>
<span class=”comments-post”>Posted by:
<$MTCommentAuthorLink spam_protect=”1″$> on
<a href=”<$MTEntryLink$>#comment<$MTCommentID$>”>
<$MTCommentDate$></a>
</span>

Once permalinks have been added, I then added the comment code to the main template page. This is a modification of example code the Trotts have provided:

Update: Code has been altered to remove hard coded URL per note from Sam Kington — thanks Sam!

<MTComments lastn=”10″ sort_order=”descend”>
<a href=”<$MTBlogArchiveURL$>/<$MTCommentEntryID pad=”1″$>.htm#comment<$MTCommentID$>”>
<$MTCommentAuthor$></a> on <MTCommentEntry>
<$MTEntryTitle$>
</MTCommentEntry><br />
</MTComments>

From top to bottom: The outer comment block is necessary for using the comment tags. In addition, it also provides instruction to list the last ten comments. The next line then forms the link, which is based on the static archive location appended with the entry id and the comment entry id, both based on MT tags. The next lines add the comment author and title, again both from MT tags.

I’m using MT 2.51, but this should work with any version of MT that supports all of the tags I’ve outlined.

Holler if you have any questions.

Update (12/29/02)

Jonathon Delacour, Mr. Markup to us angle-bracket challenged, pointed out that the name anchor reference is deprecated for XHTML. Instead, the preference is to use id. When I update the weblog to XHTML, I’ll be using the id attribute instead, which is gonna bust heck out of any remaining old browser here abouts.

Anyway the change would be to pull the anchor tag (the <a name=…>) and replace with:

 

<div class=”comments-body” id=”comment<$MTCommentID>”>

 

Thanks to Jonathon for heads up and correction.