Reading and You...

Recommended Videos
Feb 13, 2008
19,430
0
0
This is something that's been concerning me for some time...

If you're about to reply to a topic, exactly how far back do you read of the other posters work or doesn't it matter?
 

Zemalac

New member
Apr 22, 2008
1,253
0
0
I read all the posts on the thread. Otherwise I'll have no clue as to what interesting place the topic has diverted to.
 

cleverlymadeup

New member
Mar 7, 2008
5,256
0
0
depends really, if it's only a page or two i read it all but if it's 5346345634586574536354 pages long i tend either not to or just read a bit to get the jist of what's going on
 

Johnn Johnston

New member
May 4, 2008
2,519
0
0
About as much as is needed to understand what is going on, and if it is a "Your Most...Moment" thread (or that style of thread at least) then I'll check the first few pages to make sure I'm not quoting the obvious (You would be surprised how many people love SHODAN and GLaDoS. Or not).
 

Nugoo

New member
Jan 25, 2008
228
0
0
I almost always read the whole thread. If it's too long, I usually don't comment.
 

jim_doki

New member
Mar 29, 2008
1,942
0
0
i go about four pages in most of the time. If i started the thread or i'm particularly interested i'll go through it all unless it hits about 10 pages
 

Anarchemitis

New member
Dec 23, 2007
9,102
0
0
I read about 1 in every (number of posts per page divided by approximately 4) and the previous 3 entries to my post typically.
Then I type and add something a little bit humorous to keep us all in high spirits.
 

Saskwach

New member
Nov 4, 2007
2,321
0
0
If thread<4 pages
Then readall
Else readfirstandlasttwopages

I'm not a programmer as you can clearly see.
 

BlazeTheVampire

New member
May 14, 2008
365
0
0
It depends on how lengthy the answers are and what the topic is. I don't generally do more than skim the "favorites" threads, but big debates I read word-for-word. I tend to hop in those in the beginning though so there isn't much to read at first, just the stuff between my own responses.
 

Necrohydra

New member
Jan 18, 2008
223
0
0
Johnn Johnston said:
About as much as is needed to understand what is going on, and if it is a "Your Most...Moment" thread (or that style of thread at least) then I'll check the first few pages to make sure I'm not quoting the obvious (You would be surprised how many people love SHODAN and GLaDoS. Or not).
If it's a thread about games here, Portal and Half-life have already been mentioned. I don't care if the thread has one comment, someone is THINKING about mentioning those two games.

I tend to lurk alot, so I actually read a lot of the posts. I'll skim if it seems the same thing is being said over and over, but other than that...
 

AnGeL.SLayer

New member
Oct 8, 2007
395
0
0
I find I will read about 2-3 pages but if turning into a book I will also just read the last two. Usually by the time a thread has gone on long enough it's changed subject matter a few times. Don't wanna poke at something that's already long been dead. Hehe


^_^
 

bluemarsman

New member
Apr 6, 2008
202
0
0
I usualy try to read all posts. So if a thread has more than 100 posts I generaly won't comment.
 

privatehuff

New member
May 29, 2008
13
0
0
Saskwach said:
If thread<2 pages
Then readall
Else readfirstandlasttwopages

I'm not a programmer as you can clearly see.
Code:
if( thread.pages.length < 2 )
{
    foreach( page in thread.pages ){ read(page); }
}
else{
    read( thread.pages[ 0                       ] );
    read( thread.pages[ 1                       ] );
    read( thread.pages[ thread.pages.length - 2 ] );
    read( thread.pages[ thread.pages.length - 1 ] );
}

I usually read everything if I'm going to post. (I usually only decide to post after reading everything anyway)

EDIT: too lazy to get it to stop ignoring my whitespace... I assure you the code is well-intented ^^