ChristianKl comments on LessWrong 2.0 - Less Wrong

89 Post author: Vaniver 09 December 2015 06:59PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (312)

You are viewing a single comment's thread. Show more comments above.

Comment author: ChristianKl 04 December 2015 12:14:39PM 0 points [-]

But then we have a system with two kinds of votes in: old ones that aren't publicly visible and new ones that are.

We already have such a system for the polls that allow you to vote annonymously and also to vote with your name.

Comment author: gjm 04 December 2015 02:37:33PM 0 points [-]

True. But I suspect the polls are an extra thing that was added on with that feature already in place, whereas the voting mechanics are already there without provision for two kinds of vote. Modifying existing code in ways that break assumptions it may have made is always more painful than writing new code.

Comment author: ChristianKl 04 December 2015 02:41:09PM 0 points [-]

The existing code is likely a database that tells you whether people have voted for a specific post. Adding an additional column to that database for private/public votes shouldn't be hard.

Comment author: gjm 04 December 2015 03:04:24PM 2 points [-]

From my hazy memory of the LW codebase, you may be making unjustified assumptions about how it stores data. The database setup is ... idiosyncratic.

(Here is an article -- with a link to more details -- about the Reddit DB architecture. LW is, I believe, forked from a version of Reddit a bit older than that article.)