0
votes
Suggest some good MVC framework in perl
@David: Maypole is pretty much abandoned for all I know, I wouldn't recommend that one. Don't know PageKit, but Jifty may also be an alternative.
…
1
vote
cross platform unicode support
Perl has Encode as a standard library. It can be used to read/write any encoding you want, so that's not going to be a …
3
votes
How can I determine the type of a blessed reference in Perl?
You probably shouldn't do this. The underlying type of an object is an implementation detail you shouldn't mess with. Why would you want to know this?
…
7
votes
How can I fork a background processes from a Perl CGI script on Windows?
If you want to do this in a platform independent way, Proc::Background is probably the best way. …
0
votes
How to get the correct Content-Length for a POST request.
Can you post your code here? We really can't say much about your code if we don't know what you're doing.
…
4
votes
How can I embed Perl inside a C++ application?
I'm currently writing a library for embedding Perl in C++, but it's not finished yet. In any c …
0
votes
Are there any good automated test suites for Perl?
I'd go for Test::More, or in general, anything that outputs TAP
…
2
votes
Are there any good automated test suites for Perl?
If I understand you correctly you are looking for TAP::Harness
…
5
votes
Are there any good automated frameworks for applying coding standards in Perl?
There is perltidy for most stylistic standards. perlcritic can be easily configured using a …
22
votes
0
votes
What does Class::MethodMaker exactly do?
The real question is: does it matter?
It's yet another accessors generating module. These modules all have a speed/functionality trade-off. Just pick one that offers everything you need. It …
2
votes
How can I check for a file size and add that result in an Excel spreadsheet in Perl?
The module you should be using is Spreadsheet::WriteExcel.
…
2
votes
Which framework should I use to write modules?
Module::Build is better by any means, but it is less widely supported than ExtUtils::MakeMaker (more specifically, older versions of Perl don't support it out of the box). It depends on your needs. …
3
votes
Why isn’t Scalar::Util::Numeric installing correctly?
It can't find basic system headers. Either your include path is seriously messed up, or the headers are not installed.
…
0
votes
What is the most straightforward way to pad empty dates in sql results (on either mysql or perl end)?
The MySQL approach would be to outer-join it with a list of all possible dates. I'm not sure if there is an easy way to generate that on the fly, otherwise you'd need a new table to hold those date …
