11
votes
What’s happening with Perl 6?
Perl 6 is evolving slowly but steadily. Larry Wall wrote a Parser that can parse all Perl 6 that we know of (which is basically the test suite plus a bit of other code). Rakudo, which is Perl 6 on …
1
vote
4
votes
How do I setup a local CPAN mirror?
CPAN::Mini is fine. By default it keeps only the latest version of a distribution, not every version as CPAN does.
You can also install CPAN::Mini::Webserver, which provides you with a web …
0
votes
Best practises for holding passwords in shell / Perl scripts?
There is no good solution. You can obfuscate the passwords a bit, but you can't secure them.
If you have control over your DB setup, you could try to connect by a named pipe (at least mysql …
1
vote
Perl Sys::Syslog on Solaris
In general you can answer "does module $x work on platform $y" questions by looking at the CPAN testers matrix, …
5
votes
What are the perldoc perlxxx options?
perldoc perltoc
is a bit more verbose about the various documentation files. If you want a list of core modules, try
perldoc perlmodlib
…
2
votes
How can I use perldoc to lookup the %ENV variable?
The searching for %ENV is a feature of the pager named 'less', not of perldoc. So if perldoc uses a different pager, this might not work.
Activestate Perl comes with HTML documentation, you …
2
votes
How do I get the full path to a Perl script that is executing?
perlfaq8 answers a very similar question with using the rel2abs() function on $0. That function can be found in File::Spec.
…
1
vote
15
votes
In Perl, how do I create a hash whose keys come from a given array?
@hash{@array} = (1) x @array;
It's a hash slice, a list of values from the hash, so it gets the list-y @ in front.
From …
1
vote
Regex to match all HTML tags except <p> and </p>
The original regex can be made to work with very little effort:
<(?>/?)(?!p).+?>
The problem was that the /? (or \?) gave up what it matched when the ass …
1
vote
Useful Perl modules
It always depends on what you do. If you want to connect to a database, DBI is essential. For web stuff HTML::Entities can be very useful. For client side applications it's LWP::UserAgent or LWP::S …
7
votes
What exactly is Parrot?
Others have given excellent answers, so what remains for me is to explain what "dynamic" languages actually mean.
In the context of a virtual machine it means that the type of a variable is …
9
votes
How can I find the first occurrence of a pattern in a string from some starting position?
You can't really count with regexes, but you can do something like this:
pos $string = $start_from;
$string =~ m/\G # anchor to previous pos()
((?:...)*?) # capt …
6
votes
How does Perl 6 evaluate truthiness?
Truthness test just calls the .true method on an object, so the "mix in" operation $stuff but True just (among other things) overrides that method.
This is specifi …
