Slashdot Mirror


Addendum to The Slashdot Effect Internet Paper

Spock_NPA writes "An addendum to the Slashdot Effect Internet Paper is available here. It details the effect of Slashdot on the Slashdot Effect Internet Paper."

9 of 101 comments (clear)

  1. What about the other side? by JanneM · · Score: 3

    Isn't it time for the slashdot crew to write a statistical analysis of the reading frequency of the slashdot stories about the slashdot effect papers? If everybody keeps this up, we'll have a new academic subdiscipline in no time! "slashdot science", maybe, or "statistical geekology". If we get the terms 'postmodern' or 'cultural imperialism' into the title as well, we'll be rolling in grant money...

    --
    Trust the Computer. The Computer is your friend.
  2. Slashdot Top Ten by ghoti · · Score: 3

    What about including a click-through counter in every link that's posted on ./? And then have a top ten ranking which links got clicked most in the last month or so (or maybe ranked by clicks/time unit).

    That would also be interesting to get an idea what load these servers have to deal with. I am not sure if the Slashdot Effect paper is really very representative.

    --
    EagerEyes.org: Visualization and Visual Communication
  3. From the article by Money__ · · Score: 3
    On Jan 28th, around 1pm, Linux Today announced the article and published a text only version on their web site. Slashdot followed with an announcement of the article and a hyper link to the article at around 4pm. One can see the very impressive surge in hits after the Slashdot announcement in which the hit rate went from about 30 hits/minute up to over 250 hits/minute in about a 15 minute period.

    250 hits per minute. Now we know how big the slashdot effect is. Has anyone else seen surges this big (from 30/min to 250/min) from other sources other that /.?

  4. Finding the referring site by navindra · · Score: 3

    There is a second resurgence, on a much smaller scale, two day's later which peaks at about 9:30am, with an abrupt fall off and then a re-resurgence around 6pm that day. This is seen in Figure 4. plot. The author scanned the various Linux news web pages for posting of the /. effect article but found none. This small resurgence occurring 2 days after the initial posting by /. is unexplained and open to interpretation.

    It's easy to log the referrer in Apache. I do it using a combination of .htaccess/cgi hacks. I've found some interesting things this way, including links from news sites/mailing-lists/newsgroups from over the world that I wouldn't have found otherwise. A link to the author's paper could have been posted on a russian linux news site, for example.

    If you're curious as to how this can be done under Apache, here's a rough description (apologies in advance for any ugly or careless code and any "Slashdot munging" in indentation, etc that may occur).

    (1) Point people to a CGI script, not the direct page. If you want this file to end with .html, this isn't a problem as you can have a .htaccess file that specifies something like "AddHandler cgi-script .html" or you can point people to the directory and respecify the DirectoryIndex.

    (2) Now here's the fun part. The script dumps the page to the requester then logs the interesting environment variables set by Apache.

    Example script:


    #!/usr/bin/perl
    # Navindra Umanee <navindra@cs.mcgill.ca>

    # Give them the page.

    open(indexPage, "/path/to/real/content.html");
    @fileStats = stat(indexPage);
    $modifiedTime = gmtime($fileStats[9]);
    $modifiedTime =~ s/^(...) (...) (\d\d?) (\d\d:\d\d:\d\d) (\d\d\d\d)/$1\, $3 $2 $5 $4 GMT/;

    # first, print HTTP header
    print "Content-Type: text/html\n";
    print "Last-Modified: $modifiedTime\n";
    print "Content-Length: $fileStats[7]\n";
    print "Accept-Ranges: bytes\n\n";

    # then, print body
    while(){
    ;print;
    }

    close(indexPage);

    # Now log the information.

    $log="../khtmltest.log";
    $localtime = `date`;

    open(logFile, ">>$log");
    print logFile "$localtime";
    print logFile "$ENV{'REMOTE_ADDR'} - $ENV{'REMOTE_HOST'}\n";
    print logFile "$ENV{'HTTP_USER_AGENT'}\n";
    print logFile "$ENV{'HTTP_REFERER'}\n";
    print logFile "\n";
    close(logFile);


    Cheers,
    Navin.

    1. Re:Finding the referring site by Jonas+�berg · · Score: 3
      Or; you can just change the logformat in Apache. This is what I use. It gives the same output format as the default log format, but has two entries appended to it for referer and user-agent.

      LogFormat "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-agent}i\""

  5. I'm sure I've seen that before by xQx · · Score: 3

    I'm not sure if I'm babbeling sh*t here or not, but I am ABSOLUTLY SURE I have seen that paper before, reported on /. 6 or 12 months ago. It *MAY* have been the origional but I am fairly certain it was an addendum to the origional reporting the effects of the /. effect on the report of the /. effect.

    The graphs had lines saying when it was posted on betanews, /. etc... I dunno. Comments included "what next, a report on the /. effect on the report of the report of the report of the /. effect" etc.

    Again, I may just be dribbling sh*t (or dajavu or something)

    anyway.

    Cyas

    1. Re:I'm sure I've seen that before by jacobm · · Score: 3

      Y'know, it would go a long way if they just kept a database of all the (non-"mailto:") links they posted and searched it when they posted a new story. They seem to have an automatic link-leeching thing going on anyhow, so they could probably do it totally transparently. All they'd need is another table in a database and a little routine that checked to see, when a story was about to be published, if the link was in the database- if so, have a little warning screen. "A link in your story ($linkName) has been previously posted on $oldLinkDate attached to the story $oldStoryName. Are you sure you want to post it again? [Yes] [No]"

      Might be worth coding up, /. people. Of course, there is the whole "time to write + performance hit / embarassment avoided" ratio, which might not be low enough to warrant implementation.

      --
      -jacob
  6. Re:Here are /. stats by Money__ · · Score: 3
    date: 6:21am

    uptime: 50 days, 21:18, 1 user,

    load average: 0.49, 0.35, 0.24

    processes: 132

    yesterday: 76525

    today: 1

    ever: 203679322

    These stats are shown in a 'slashbox' for registered users. A Custom Page that show these stats along with many other items.

    What's missing from the /. stats is the average ratio between 'proccesses' and 'unique visits'. This number would prove valuable. Rob? are you reading this ? :)

  7. Re:fr!st pS0t!!! by Black+Parrot · · Score: 3

    > actually i think all this "ph1r5t p05t" stuff is rather funny.

    A lot of stuff on /. is if you step back and look at it. There's also the meta-moderation that started after the moderation scheme was set up. And then there is the meta-meta-moderation comments that people started making after they noticed the meta-moderation. (It was amazing how quickly the term "meta-moderation" sprang up and came into common use.) Now I'm sure someone will point out that my commenting on meta-meta-moderation may qualify as meta-meta-meta-moderation; and of course you know what the comment on that will qualify for.

    Other things are the numerous "that's not worth posting" posts, which always strike me as really ironic, since someone is taking the trouble to comment on something that they say wasn't worth mentioning in the first place.

    And then there are the obligatory "that's been mentioned before" posts.

    And the "just got to work my political views in" posts, where people can't resist mentioning the moral status of [Bill_Clinton, George_Bush] (almost always in the subject line, since it doesn't do much good to hide inflammatory views down in the body of a post).

    I'm sure there are more that I haven't noticed. Perhaps this would be a suitable topic for a companion paper, or at least a Guide to Slashdot.

    All in all, I can imagine that this is really an entertaining site for those lurkers with a sense of humor about human nature.

    --
    It's October 6th. Where's W2K? Over the horizon again, eh?

    --
    Sheesh, evil *and* a jerk. -- Jade