In the next month, the administrators of Less Wrong are going to sit down with a professional designer to tweak the site design. But before they do, now is your chance to make suggestions that will guide their redesign efforts.
How can we improve the Less Wrong user experience? What features aren’t working? What features don’t exist? What would you change about the layout, templates, images, navigation, comment nesting, post/comment editing, side-bars, RSS feeds, color schemes, etc? Do you have specific CSS or HTML changes you'd make to improve load time, SEO, or other valuable metrics?
The rules for this thread are:
- One suggestion per comment.
- Upvote all comments you’d like to see implemented.
BUT DON’T JUMP TO THE COMMENTS JUST YET: Take a few minutes to collect your thoughts and write down your own ideas before reading others’ suggestions. Less contamination = more unique ideas + better feature coverage!
Thanks for your help!
Allow users to read their own and others' comment histories more easily. This could be accomplished either by adding links to each page of a user's comments (rather than just the very limited "next" and "previous"), or by getting rid of the unpredictably-valued "after" parameter to allow easier URL hacking.
Example of the latter method:
http://lesswrong.com/user/Dreaded_Anomaly?count=10&after=t1_3uea links correctly to the second page of my comments.
http://lesswrong.com/user/Dreaded_Anomaly?count=10 redirects to the first page of my comments.
That's a database performance trick, which means that getting rid of it will increase database load.
What's happening is that, in order to jump a set number forward, databases have to perform the same query each time, but retrieve more and more records. It's like "jump to the start of this user's stuff, and read 10. Now go to the start, read 20, and give me the last 10. Now go to the start, read 30, and give me the last 10...." So performance gets worse and worse as you page through it, be... (read more)