Slashdot Mirror


User: Ruzgfpegk

Ruzgfpegk's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. What... on Student Arrested For Using Phone App To 'Shoot' Classmates · · Score: 5, Insightful

    So they don't think it's a problem if he's bullied, but if he plays a game where he does something about it (because no one else will ever do anything) he becomes the bad guy? And they still wonder why they have school shootings?

  2. Re:Someone on Microsoft Acquires Winternals and Sysinternals · · Score: 1
    Or, if you have a perl interpreter with the LWP::UserAgent module (included in ActivePerl), you can use this script :
    #!/usr/bin/perl -w

    use LWP::UserAgent;

    open FILES, "<utilities.txt";
    while( <FILES> )
    {
    chomp;
    my ( $filename ) = $_ =~ /.+\/(.+)/;
    my $request = LWP::UserAgent->new->get( $_ , ':content_file' => $filename );
    }
    close FILES;