think tank forum

ttf development » freshie counts

lucas's avatar
16 years ago
link
lucas
i ❤ demo
how useful actually are freshie counts on the index page?

would it be just as useful if there was some indication that a given forum had freshies > 0? like what if the row were highlighted or something like that?
lucas's avatar
16 years ago
link
lucas
i ❤ demo
hm, i'm just gonna ditch the freshie counts. it takes a lot of time to count freshies:

$sql = "SELECT ttf_forum.*,                                                 ".
       "       COUNT( * ) - COUNT( ttf_thread_new.last_view ) AS freshies,  ".
       "       ttf_forum_new.last_view                                      ".
       "FROM ttf_forum                                                      ".
       "LEFT JOIN ttf_thread USING ( forum_id )                             ".
       "LEFT JOIN ttf_thread_new                                            ".
       "       ON (    ttf_thread.thread_id = ttf_thread_new.thread_id      ".
       "            && ttf_thread_new.user_id = '{$ttf["uid"]}'             ".
       "            && ttf_thread.date < ttf_thread_new.last_view )         ".
       "LEFT JOIN ttf_forum_new                                             ".
       "       ON (    ttf_forum.forum_id = ttf_forum_new.forum_id          ".
       "            && ttf_forum_new.user_id = '{$ttf["uid"]}'              ".
       "            && ttf_forum.date >= ttf_forum_new.last_view )          ".
       "GROUP BY ttf_forum.forum_id                                         ";
lucas's avatar
16 years ago
link
lucas
i ❤ demo
seriously, though, if you really dig on freshie counts--tell me.
andyp's avatar
16 years ago
link
andyp
nothing is wrong - what are you scared of?
they tell me how much of a bad person I am
bluet's avatar
16 years ago
link
bluet
i love freshies like nestor loves mashin'
lucas's avatar
16 years ago
link
lucas
i ❤ demo
why?

ref: http://code.google.com/p/thinktankforums/issues/detail?id=15
Étrangère's avatar
16 years ago
link
Étrangère
I am not a robot...
I never look at the counts; they overwhelm me.
dannyp's avatar
16 years ago
link
dannyp
dʎuuɐp
They work well if you're either on top of ttf posts or you're a liar (who marks all as read). For anyone else it might be somewhat irrelevant.

It might be interesting to see everybody's last freshie count in their profile :) and in manage users?

Maybe there should be a way to stop using freshie counts in the edit profile section so as to increase forum speed.

Just a few fresh ideas :D
nestor's avatar
16 years ago
link
nestor
nestor
I still think 'catch up' is the best way to manage freshies.
lucas's avatar
16 years ago
link
lucas
i ❤ demo
it's coming. :)
asemisldkfj's avatar
16 years ago
link
asemisldkfj
the law is no protection
ok this has been bothering me lately.

1. come to ttf, freshies are bold, new posts to read!
2. open up threads I want to look at, post in some, close others.
3. go back to index, forums that I have posted in still have bolded freshie counts.
4. click on each of these forums so they're not bold anymore and I can tell when there are actually new posts by people other than me.

can we exclude posts by oneself from triggering freshy count bolding somehow?
andyp's avatar
16 years ago
link
andyp
nothing is wrong - what are you scared of?
agreed. this has bugged me for a while :P
nestor's avatar
16 years ago
link
nestor
nestor
Agreed.
lucas's avatar
16 years ago
link
lucas
i ❤ demo
http://code.google.com/p/thinktankforums/issues/detail?id=15

hopefully this will be fixed today?!