6
votes
How can I create or read OpenOffice spreadsheets from Perl?
I think that the open office native document format is based around the OpenDocument specifications, and is bascially a zip compressed XML format. This being true you could probably manipulate it u …
6
votes
Is ‘shift’ evil for processing Perl subroutine parameters?
Assigning @_ to a list can bring some helpul addtional features.
It makes it slightly easier to add additional named parameters at a later date, as you modify your code Some people consider …
0
votes
A couple of Perl subtleties
It is to avoid this sort of confusion that it's considered better form to avoid using the implicit $_ constructions.
my $element = shift @queue;
($item,@rest) = split /,/ , $element …
0
votes
How to change ctime to normal string representation?
There's an example in Time::localtime perldoc for using it's ctime() to do this sort of thing.
use File::stat;
use Time::localtime;
my $date_string = ctime(stat($file)->ctime) …
11
votes
When should I use the & to call a Perl subroutine?
The &subroutine() form disables prototype checking. This may or may not be what you want.
http:/ …
1
vote
How can I tell if two image files are the same in Perl?
md5 would work, but you'd still have to pull the file. Are there any useful metadata in the HTTP headers, content-length, cache-control directives, ETags, etc. ?
…
2
votes
SQL*Plus inside Perl script
The advice to use the DBI is good, and definitely the right way to do things, if you're wanting to program Perl scripts against databases.
However, to answer your exact question, i …
