[Dxspider-support] tiny QRZ replacement

Ricardo Suarez eleu9da at ciudad.com.ar
Mon May 18 01:15:56 BST 2009


Hi all

I try a little mod in the tiny qrz.pl to make it to work with a bit more 
speed

instead:


#****************
# part of my qrz.pl
#****************
if ($count < 7) {

     $linea =~ s/<p>//;   # line to move

     $linea =~ s/<\/p>//; # line to move

     $count--;

     if ($count < 4) {

          push @out, $linea;

          }

#****************
# end of part....
#****************

You can use this, a little more fast response!


#***********************
# part of my qrz.pl
# see the 2 lines moved to the
# next loop!
# **********************

if ($count < 7) {

     $count--;

     if ($count < 4) {

          $linea =~ s/<p>//;     # line moved

          $linea =~ s/<\/p>//;   # line moved

          push @out, $linea;

          }

#****************
# end of part....
#****************


Thanks a lot  for feedback!

Regards

Rick LU9DA 




More information about the Dxspider-support mailing list