Dude thenewgreen hits up my shit from 2011. Go to town.
So posts and comments don't go into archive mode here?
Interesting. I wonder how the database is designed and whether that is something that will need to to be added once hubski hits a certain size.
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)))))
That's wild, so the site is built using a LISP derivative?