Protecting fair-use rights in the digital world

2002-03-25 Thread John Draper
from: http://www.digitalconsumer.org/ Protecting fair-use rights in the digital world Click here to help us stop the new Hollings Bill. We'll fax your letter to Congress. Have you ever made a tape of your favorite songs to enjoy in your car stereo? Have you ever

Re: Baffling error, or maybe I'm just blind

2002-03-08 Thread John Draper
Cameron, I'm not sure if this is the problem, but, shouldn't the: $id[q] of this line: if ($id[$q_index] == $id[q]) { read: $id[$q] instead? John - Original Message - From: Cameron Dorey [EMAIL PROTECTED] To: Perl-Win32-Users Mailing List [EMAIL PROTECTED] Sent: Friday, March 08,

Re: Numeranomalies

2002-02-09 Thread John Draper
I don't know if it helps to resolve anything, but writing the literal constant: 167772160 in the form: 16777216.0E1; i.e., in scientific notation, and thus forcing it into floating point mode, yields the correct results: # my $base = 167772160; # no

Q: How to sort Array of Hashes

2002-01-29 Thread John Draper
Hi, I would like to know how to sort an array of hashes based on one of the values from one of it's keys. Specifially, I have a structure like this: my @A_of_H; my $i = 0; some looping mechanism starts here which populates $file, $size and $date: $A_of_H[$i]{'FILE'} = $file;