| Thread | Last Post | Replies |
|
| Any contact with BRUCEK? | 31 Jan 2008 18:09 GMT | 1 |
I have some changes I'd like to make to IO::Epoll. I'm trying to get hold of BRUCEK, its author: http://search.cpan.org/~brucek/ I tried mailing the address given, just got a bounce:
|
| XS wrapper around system - how to test the wrapper but not the system? | 29 Jan 2008 23:58 GMT | 2 |
I'm finding it difficult to come up with a good testing strategy for an XS module that's just a thin wrapper around an OS call, without effectively also testing that function itself. Since its behaviour has minor variations from system to system, writing a test script that can
|
| Is there a test module to check eol() in dist files? | 22 Jan 2008 11:31 GMT | 4 |
I think that something like this can be useful when packing distros. I end-up with mixed eol (not in the same file) most of the time: use Test::EOL; eol('lib/Foo/Bar.pm', 'LF');
|
| XML::Atom::Feed - parsing at all? | 22 Jan 2008 06:25 GMT | 1 |
I'm trying to parse up a feed but XML::Atom::Feed doesn't seem to recognize that anything at all is in the XML string I'm feeding to it. Here's a complete example of how it is not working: #!/usr/bin/perl -w
|
| Keeping POD in a separate file | 20 Jan 2008 13:35 GMT | 2 |
Another "Perl Culture" kind of question: For CPAN packages, is it normal/acceptable/OK to have the POD for a module in a separate .pod file, instead of inside the .pm? MyModule.pm
|
| How to increase performance BerkeleyDB? | 19 Jan 2008 10:22 GMT | 33 |
I have BDB with about 10 million records and every day add ~100K. Now my perl-script that use it DB work very slow: program spend 4-5 minutes to find 40K records. Script start every 10 minute, get client identification from some logs
|
| GD: How to know image type? (JPEG, PNG, ..) | 15 Jan 2008 12:56 GMT | 1 |
I'm trying to create a Perl script which converts all files within a directory into JPEG format. First, I read them using two lines detecting extension (.jpg, .png, ...) but sometimes these files are wrong and get this error message:
|
| Usefulness of a SUPER-like pseudoclass: "DUPER"? | 12 Jan 2008 17:18 GMT | 4 |
Howdy - Is this something worth posting to CPAN? See the POD about two dozen lines down. It's like a simpler, faster but dumber flavor of NEXT. Thanx,
|
| For module X::Y, should Y be (isa) X? | 11 Jan 2008 22:31 GMT | 3 |
Is it considered bad form to have a module named X::Y, that is not an X? In otherwords, should Y have a 'use base qw/X/' or an @ISA for X? I know the language doesn't enforce it, but what's the general concensus on this?
|
| comments for module naming | 10 Jan 2008 18:21 GMT | 2 |
i'm looking for a vector module to be used in Language::Befunge. currently, i provide Language::Befunge::Vector which is a pure perl version of what i'm looking for. my requirements:
|
| Shebang line for modules? | 10 Jan 2008 08:50 GMT | 9 |
Does it makes sense to include a shebang line at the top of a .pm file? For example: #!/usr/bin/perl -w use strict;
|
| Date::Piece -- Happy New Year | 09 Jan 2008 20:23 GMT | 23 |
What better way to celebrate an arbitrary calendar event than with a new API for date calculations? Coming soon to http://search.cpan.org/dist/Date-Piece/ Date::Piece is currently just a Date::Simple object with more operator
|
| Finding installed modules | 09 Jan 2008 15:34 GMT | 3 |
I was poking around at scripts to locate all installed modules and I'm a little confused [or else I'm missing something]. *every* script I found after a quick Google uses File::Find on @INC, but that seems wrong: my guess [verified by a quick test pgm] is that 'use' does *NOT* ...
|
| mod_perl2, Apache2::RequestID::read | 08 Jan 2008 08:13 GMT | 2 |
Getting odd messages in the Apache error_log: [Sun Jan 06 08:46:50 2008] [error] Apache2::RequestIO::read: (70014) End of file found at (eval 21) line 5 [Sun Jan 06 08:47:27 2008] [error] Apache2::RequestIO::read: (70014)
|
| mod_perl -> Can't enable PerlResponeHandler in <Location> | 07 Jan 2008 21:21 GMT | 1 |
I have been trying to enable PerlResponseHandler in the <Location / start > directive of my VirtualHost ...but for some reason it doesn't work ... I really cant understand why it does i if I put it directly to the
|