Hate to flog a dead horse here. And I would be surprised if I was the first person to suggest it, but here goes.
When perusing the boards I find the name of the last poster and the time stamp of that post. Underneath the thread title I also find the name of the “thread starter”.
How difficult would it be to add a thread start date?
Even better, how difficult would it be to display “two days ago”, “one month ago” “four years ago” etc.
Since the powers that be don’t want to customize the software, pretty much impossible. But there’s a GreaseMonkey script in that does a passable job of informing you if a thread is likely a zombie. Since people had trouble finding it the last time I mentioned it, I’ll just put the code in this post (in the spoiler tag). I have tweaked it slightly to work a little better on pages with a lot of old content.
[spoiler]
// ==UserScript==
// @name SDMB highlight old threads in forum
// @namespace Polerius
// @description In forum pages, highlights threads that are suspected of being very old
// @include http://boards.straightdope.com/sdmb/forumdisplay.php*
// ==/UserScript==
(function()
{
var allThreads = document.getElementsByClassName('alt1');
var std = 0;
var avg = 0;
var cnt = 0;
var num_sticky = 0;
var thread_id;
// Find all thread id's
for (var i = 0; i < allThreads.length; i++)
{
if( allThreads*.innerHTML.match(/thread_statusicon_(\d+)/))
{
thread_id = RegExp.$1;
avg += thread_id*1;
cnt += 1;
std += thread_id*thread_id;
//discard extreme outliers (>100000 from mean)
if (thread_id*1 < avg / cnt - 100000)
{
avg -= thread_id*1
cnt -= 1;
std -= thread_id*thread_id
}
}
else if( allThreads*.innerHTML.match(/alt=\"Sticky Thread\"/))
{
// "Exclude sticky threads
if (thread_id*1 >= avg / cnt - 100000) //account for outlier removal
{
num_sticky++;
std -= thread_id*thread_id;
avg -= thread_id*1;
cnt -= 1;
}
}
}
avg /= cnt;
std = Math.sqrt((std - cnt*avg*avg)/(cnt-1));
// Find all thread id's and mark the old ones (whose id is less than one std below the mean)
// Exclude the sticky ones on top of the forum
for (var i = 0; i < allThreads.length; i++)
{
if( allThreads*.innerHTML.match(/thread_statusicon_(\d+)/))
{
if((num_sticky--) <= 0)
{
thread_id = RegExp.$1;
if (thread_id < (avg - std))
{
allThreads*.innerHTML = "<span style=\"font-size:12px;text-align:center;color:#ff0000;\">OLD!</span>" + allThreads*.innerHTML;
}
}
}
}
//alert(Math.round(avg) + " " + Math.round(std) + " " + Math.round(avg-std));
})();
Ok. Let me rephrase the question.
It would be nice to have the thread start date shown on the main page. For me this would be more useful than the date stamp of the most recent post.
It would help with identifying zombies. (Which seems to be an ongoing concern for many and hence this thread title.)
But more importantly for me it would let me know before I open a three page thread whether this is a discussion that has been happening for some time that I have previously missed or it is a hot discussion topic right now that is progressing quickly.
Is the date stamp of the thread starter something that could be added easily?
I am outraged, outraged!!! at this shabby treatment and demand to speak to the management of this establishment, as well as register a complaint with the British Consulate. Also, I want a slice of pie.
Actually, I don’t mind zombie threads. I haven’t been “here” for years on end and even though some of the posts were made by now banned members, the content is still interesting.
This is a good start at an earnest answer to this thread, but you forgot a few more (sub?)classifications
Undead zombie - Coming up out of the grave, very decomposed, magical in origin. No one can explain how or why they are shambling around eating people.
Viral zombie - These are otherwise normal people who have some sort of infection that drives them crazy and makes them want to eat people.
Braindead/unintelligent zombie - No planning, no intelligence whatsoever. Work off of basic instinct. If they were buckled in during zombification, they’d have no idea how to unbuckle themselves.
Intelligent zombie - able to plan, possibly even communicate with other zombies. Their intelligence exists on an individual basis though. Some might be smarter than others.
Hive-mind zombie - zombies that can somehow manage to achieve intelligent goals (like piling up to get over a wall) even though each individual zombie appears to be utterly mindless.
Brains vs Flesh Eating - Some zombies go specifically for the brains. Others are perfectly happy with any type of flesh.