Good ideas and conversation. No ads, no tracking. Login or Take a Tour!
kleinbl00 · 3422 days ago · link · · parent · post: What is the proper Hubski etiquette when replying to an old comment?
The more important question is what features will Team Hubski prioritize. Old conversations becoming new again is a valued feature here.
kgb_operative · 3422 days ago · link ·
What mechanisms are used to bring old posts to new people when someone comments on an old post?
–
–
It's in that com-boost function, which is an exponential. We were just discussing boosting the boost. (def feed-rank (p)
(let min (minutes-since p!time)
(+ (/ (let base (- p!score .9)
(if (> base 0) (expt base .8) base))
(expt (/ (+ min timebase*) 60) gravity*))
(if p!kids (com-boost p) .0)
(/ 90 (+ (expt min 2) 420)))))
–
kgb_operative · 3421 days ago · link ·
That's wild, so the site is built using a LISP derivative?