Don’t worry, my report was snide and dismissive, and assumed that the Mods would prefer to side with a threadshitter, even when he was blatently doing so, rather than support someone discussing the OP in a way that was belittling of the Mods’ efforts and work-ethic. I was reporting it for my own amusement, and for the record, to establish that threadshitting isn’t so bad as long as it’s accompanied by the right amount of ass-kissing. I fully expect to get some form of Mod disapproval for reporting you for threadshitting, but that’s just the price I’m prepared to pay.
Did you not notice that the calendar had changed? It was in all the papers. Not sure when, but it was maybe a month or so ago. Do try to keep up.
So I announced I wouldn’t get into those five subjects for the rest of the year, and now that it’s a new year and then some, I’m doing it as I deem appropriate. Did you think I had written that I would take a vow of silence on those subjects forever? Is your “big grin” your sign that you think you’ve trapped me in a contradiction? Or just your total lack of reading comprehension? I vote “Both.”
And to celebrate the new year, I’m going to start a bunch of new threads about my intense dislike for the Yankees, John McCain, sentimental pet-owners, religious people, and the modding around here. Also that whole “child abuse/capital punishment” thing was pretty good–I haven’t gotten into that in a few years. You inspire me, Colibri.
Maybe it was just wishful thinking?
This is junior modding. An experienced poster like you should know better. Therefore, I’m issuing you an official warning.
Moreover, what **Bucketybuck **has done there is not threadshitting. I’ll deal with his post separately.
We’ve said announcing you’ve reported a post is ok when it is a spam post. Doing it in other circumstances is junior modding and possibly trolling. I’m not issuing you a warning, for this, but please cut it out.
Gfactor
ATMB Moderator
Yes. But even I think it would be a good idea to put the date of the OP on the thread page if it were at all possible.
This isn’t especially relevant to the topic of the thread. Let’s try to keep it on topic if we can. Thanks.
Gfactor
ATMB Moderator
Since the Mods can alter thread titles, what’s wrong with just adding ZOMBIE: to the beginning?
Back on topic?
I was just thinking, is it difficult to automatically add the word OLD to the front of all threads that are a certain age (regardless if they get activated or not)? or again maybe, change the font color on ALL threads from something like 2009 and earlier. If it can be done automatically to all threads, then it wouldn’t have to be done only to those that are reactivated, which would eliminate the need for moderators to pick through and label only those individual threads that have been reanimated.
Or maybe there is the ability to add a checkmark that all readers can use that adds some tag to the title, so that the first person to recognize its a zombie can warn others before it gets opened.
Just asking…I’m totally ignorant of anything to do with computers. :smack:
Or…just read the thread and pay attention to the words on the screen.
The date of the OP is the first thing in any thread and in any post (after the title). It’s really not all that hard to read the date–it’s not like it’s hidden.
There is no way with the standard vBulletin software to do anything that you have suggested.
It’s work, apparantly.
They can do whatever they did back in the day when they closed zombie threads. Why would adding a word to the title be any more work than that?
In an ideal world, threads older than X would pop up a little warning like my accounting software: “The thread you are attempting to reply to is more than X days old. Continue? y/n”
But in general, I think zombie threads are kind of interesting.
Here’s the thing: When I see a date that says “01-12-2010” I think “Cool, December 1st, 2010! Not that old at all, might be worth replying to, if there’s still any interest”.
Of course, to you lot in the US see it as “January 1st, 2010” (so, ancient history by board standards), so less of an issue.
Anyway, another vote for not seeing how Adding [ZOMBIE] to a reported thread is too much hassle seeing as the Mods edit non-Zombie thread titles fairly often, or so it seems.
And Gfactor- an official warning to PRR for “Junior Modding”? I’m very disappointed. Especially since accusations of “Threadshitting” are A) Not uncommon, B) Not usually something people seem to get warned over, and C) Not, IMHO, an “Official Warning” offence.
Then again, I’ve never understood the prohibition on “Junior Modding” around here, either…
I don’t consider it a contradiction. Not being able to restrain yourself for any significant length of time from commenting on subjects you’ve stated are a waste of time just indicates, in your own words, that the subjects have control, not you.
I mean, I feel for you. I vowed to give up Cheetos this year, but I relapsed today and had a handful. Addiction is powerful!
Maybe we both need a good 12-step program.
It’s pretty well obscured: grey text on slightly lighter grey banner. It’s as if it’s been specifically deemphasized so that people will read the content of the post first.
But, even if it weren’t, people tend to ignore the stuff that is shown for every post. It’s just human nature. I mean, how often do you pay attention to the chrome of your web browser?
BTW: I’m a novice JavaScript programmer, and even I can see a way to automatically highlight the date if it’s older than a certain time. Heck, I might look into writing a Firefox/GreaseMonkey plugin that will do it, although that’ll be a bit harder.
Isn’t it possible in vBulletin to have an auto-locking feature. I mean, I thought it’s possible to set it up so that if a new post isn’t made in a thread for, say, 60 days, the thread is locked. I’m not saying you want to do this, but if the goal is really to stop zombie threads, that would be a solution.
For those who use Firefox and the Greasemonkey add-on, below is a script I just wrote that warns you in big red letters when the thread you are reading is more than one year old.
Feel free to use it. Just copy & paste the code below into a Greasemonkey script.
// ==UserScript==
// @name SDMB highlight old threads
// @namespace Polerius
// @description Highlights threads that are more than 1 year old
// @include http://boards.straightdope.com/sdmb/showthread.php*
// ==/UserScript==
(function()
{
var allPosts = document.getElementsByClassName('normal');
var warnString = "";
// Find the first occurrence of a date for a post and see how old it is
for (var i = 0; i < allPosts.length; i++)
{
if( allPosts*.innerHTML.match(/status icon and date/))
{
if( allPosts*.innerHTML.match(/(\d{2})-(\d{2})-(\d{4})/))
{
var postDate = new Date(RegExp.$3,(RegExp.$1)-1,RegExp.$2);
var today = new Date();
var diff_days = Math.floor((today-postDate)/(1000*3600*24));
// If the thread is too old, show warning to user
if(diff_days > 365)
{
var diff_years = Math.floor(diff_days/365);
diff_days = diff_days - 365*diff_years;
warnStr = "<div style=\"font-size:36px;text-align:center;color:#ff0000;\"> This thread is " + diff_years + " years and " + diff_days + " days old!</div>"
allPosts*.innerHTML = allPosts*.innerHTML.replace(/(\d{2}-\d{2}-\d{4}, \d{2}:\d{2} .M)/, "$1 " + warnStr);
}
}
break;
}
}
// Also add warning to last post on this page (in case you don't read the first post)
if(!(warnStr == ""))
{
var last_idx = allPosts.length-1;
allPosts[last_idx].innerHTML = allPosts[last_idx].innerHTML.replace(/(\d{2}-\d{2}-\d{4}, \d{2}:\d{2} .M)/, "$1 " + warnStr);
}
})();