|
I am considering writing some Perl scripts that interact with Active Directory. Being somewhat new to Perl, I was wondering if there were any specific modules, tools, techniques, etc. that anyone would suggest I use. As of right now, I am only looking...
Started by indiguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is an example from their....
It's from Robbie Allen, the co-author of O'Reilly's excellent Active Directory Cookbook .
The best source of Active Directory example code in Perl is available here .
Else can elaborate on that a bit.
|
|
I've been working with Perl long enough that many of its idiosyncracies have become second nature to me. When new programmers join our group, they frequently have little to no experience with Perl, and it's usually my task to train them (to the extent...
Started by Adam Bellaire on
, 19 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Perl works in ....
The part I found hardest to get used necessary.
Please make sure you have a trainer who knows their stuff and is an active member of the Perl communityI'm a java programmer who recently had to pick up Perl.
|
|
People also often ask "How can I compile Perl?" while what they really want is to create an executable that can run on machines even if they don't have Perl installed.
There are several solutions, I know of:
perl2exe of IndigoStar It is commercial. I ...
Started by szabgab on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm a Perl newbie and I just downloaded Cava PackagerYou could use the....
In addition an active mailing list: par at perl dot org .
Perl2exe and Active State's Perl Dev kit useful for shipping Perl applications.
|
Ask your Facebook Friends
|
Disconnect invalidates 1 active statement handle (either destroy statement handles or call finish on them before disconnecting)
The following code which grabs data from MySQL gets executed successfully, but will cause Apache to generate the above message...
Started by GeneQ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Normally it should close itself though, but you don't seem .
By the handle still being active.
|
|
I've found a few related questions, like Python V Perl and Is Perl Worth it? , but I can't seem to find anything that directly addresses this question.
Is there a legitimate future in Perl? I work in a Perl shop right now, and I came from PHP so I see...
Started by NateDSaint on
, 10 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
See Perl 5.10 and 5.....
Nor have I EVER heard any conversation of "Perl can not do X from Perl6.
Purely personal anecdote.
However encountered.
Plenty of shops - including on Wall Street - heavily use Perl and will continue to do so.
|
|
The win32.perl.org web site provides references to several Perl distributions for MS Windows.
For a long time I have been using ActivePerl from ActiveState but recently I switched to Strawberry Perl .
IMHO The only advantage that Active Perl still has...
Started by szabgab on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
ActiveState also has a very dodgy build system which often fails to report of my modules have NO build failures... .
One problem I've repeatedly had with ActiveState that with ActiveState's Perl.
Strawberry Perl is just getting better and better.
|
|
Can you please name some large (maintained, with active communities) projects written using Perl? I'd like to be able to provide a list of mature, production-ready projects so that Perl can be seen as an alternative to other popular languages used today...
Started by Geo on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Top 3 Russian searchMovable Type
Off the top of my head:
IMDB , main development language was (long) Perl Many, large parts of Amazon Bugzilla Slashdot....
Sitesrunningcatalyst
Catalyst itself is a fairly large, very active perl project.
|
|
I guess I didn't upgrade the right way, but for a while I was running two versions of Perl concurrently. Now I just have one, but every time I start PPM it recreates the Perl folder of one of the old locations. I've set the active one to be the current...
Started by Kev on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I installed this into Z:\Software\Perl\5.8.8, with the intention that Z:\Software\....
In this case, it was 5.8.8 build 820.
Topic, but I had to move our group's Perl install from one network drive/server (W:) to another (Z distribution.
|
|
How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?
Started by ibz on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
You can however use....
perl -d -e 1
There isn't an interactive console for Perl built in like Python does.
perl -d is your friend:
% perl -de 0
You can always just drop into the built-in debugger and run commands from there.
|
|
How can you get a raw socket in Perl, and then what's the best way to built a packet for use with it?
Started by raldi on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're writing an unusual packet processor such as an active.
perl 5 basically gives you the standard socket(), bind and unpack and maybe vec is enough.
It comes standard with perl 5.
Socket().
|