Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - humko

Pages: [1]
1
Scripting Languages / Re: [Perl] Project ParanoicScan 1.7
« on: January 12, 2014, 02:36:37 am »
Awsome stuff, i made few modification, i will send them only to author, sorry i'm in not so kind like him =) for public here add new search engine(it's without limit)

Code: [Select]
    sub teoma {
        my ( $a, $b ) = @_;
        for ( $pages = 10 ; $pages <= $b ; $pages = $pages + 10 ) {
            my $code =
              toma( "http://www.teoma.com/web?q=" . $a . "&page=" . $pages );
            while ( $code =~ /(?<=href=")(.*?)"/mig ) {
                push( @founds, $1 );
            }
        }

Pages: [1]