Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$NumRand = 10000;
$TotLines = 700000;
srand(time ^ $$);
for ($i=0; $i<$NumRand; $i++) {
do {
$RandomLine = int(rand($TotLines) + 1);
} until (! defined $Rand{$RandomLine});
$Rand{$RandomLine} = 1;
}
open(F, $file) or die "Can't open $file: $!\n";
open(R, ">$randfile") or die "Can't open $randfile: $!\n";
while(<F>) {
if ($Rand{$.} == 1) {
print R $_;
}
}
close(R);
close(F);