Forgot your password?
typodupeerror
User Journal

Journal Surak's Journal: Jamie's comment: I just figured something out 20

Remember Jamie's comment about the changes to Slashdot?

I just realized something. Why do we see so many people 'altruistically' posting 'karma-free' article cut-and-paste for supposedly Slashdotted sites?

Yep! That's right. Jamie said it. If your posts get modded up, then this also increases your 10 AC/day limit. I'll bet this *includes* stuff you posted, while logged into an account, but you posted it AC. After all, these posts are still associated with your IP address, and still affect whether or not your IP gets banned, why not the other way around -- affect whether or not you can post anonymously?

Okay, let's look at the code:

# New check (July 2002): there is a max number of posts per 24-hour

# period, either based on IPID for anonymous users, or on UID for
# logged-in users. Logged-in users get a max number of posts that
# is related to their karma. The comments_perday_bykarma var
# controls it (that var is turned into a hashref in MySQL.pm when
# the vars table is read in, whose keys we loop over to find the
# appropriate level).
  if ($user->{is_anon} && constants->{comments_perday_anon}) {
                        my $num_comm_posted = slashdb->getNumCommPostedAnonByIPID(
                        $user->{ipid}, 24);
                        if ($num_comm_posted >= constants->{comments_perday_anon}) {
                                    $$error_message = getError('comments post limit daily', {
                                            limit => constants->{comments_perday_anon}
              });
                        $form_success = 0;
                          return;
}

I guess it depends on what that getNumCommPostedAnonByIPID() function returns. Jamie says that comments moderated up affect the ratio, I guess it would have to happen there? Or not? I confess, I'm not real familiar with the slash code.

This discussion has been archived. No new comments can be posted.

Jamie's comment: I just figured something out

Comments Filter:

Happiness is twin floppies.

Working...