Roaming profile in problem

H

Herb Martin

ptwilliams said:
Ah...nice. I'll have a play with that tomorrow. I'm thinking about
learning Perl. I just downloaded and installed ActivePerl...


Perl can be learned USEFULLY in stages.

Just enough to solve a some problems with
only a few lines of code, then later a bit more
on how to use libraries provided by other, etc.

Learning the regular expression syntax usally
presents a steep learning curve but this curve
puts you on a very useful plateau with just a
bit more effort. And the RegExes are generally
applicable to many other tools.

Regexes work similarly in grep, sed, awk,
many programmers' editors and so one. Once
you know the principles then it is easy to adapt
to small rule changes or increased features.

Even the built-in FindStr has the /R switch for
turning on RegEx capability -- meaning you can
benefit even on systems that have no Unix-like
tools. (Random workstations and servers etc.)

If you want help, then let me know.

The two class books are "Learning Perl" (14.75
on Amazon new&used) Programming Perl (18.72
new&used.)

"Learning Perl" is MUCH simpler and in my opinion
"Programming Perl" is MUCH better and an eventual
necessity for almost all Perl programmers.

But if you no nothing of programming then 'Learning'
takes more baby steps.

Another EXCELLENT book as you start to USE Perl
is "Perl Cookbook" which offers working "snippet"
programs and routines that no only solve a multitude
of useful problems but stand as superior examples of
how an expert programmer makes Perl simple yet
amazingly effective.

One of the best things about Perl is that 10 lines of
Perl often does more than 10-100 lines of C or VB.

Fewer lines almost always means faster to program,
easier to understand and test, but most of all FEWER
BUGS.
 
D

danieltan

Paul, i try nltest in windows2000 server but it doesnt have this
command. Where can i try it ?

Rgds
Daniel
 
P

ptwilliams

Thanks! I'll take a look at those books.

I'm probably going to put it off to the summer -enjoying ADSI via VBS at the
moment. But a lot of people are telling me Perl is the way forward...


--

Paul Williams

http://www.msresource.net/
http://forums.msresource.net/

ptwilliams said:
Ah...nice. I'll have a play with that tomorrow. I'm thinking about
learning Perl. I just downloaded and installed ActivePerl...


Perl can be learned USEFULLY in stages.

Just enough to solve a some problems with
only a few lines of code, then later a bit more
on how to use libraries provided by other, etc.

Learning the regular expression syntax usally
presents a steep learning curve but this curve
puts you on a very useful plateau with just a
bit more effort. And the RegExes are generally
applicable to many other tools.

Regexes work similarly in grep, sed, awk,
many programmers' editors and so one. Once
you know the principles then it is easy to adapt
to small rule changes or increased features.

Even the built-in FindStr has the /R switch for
turning on RegEx capability -- meaning you can
benefit even on systems that have no Unix-like
tools. (Random workstations and servers etc.)

If you want help, then let me know.

The two class books are "Learning Perl" (14.75
on Amazon new&used) Programming Perl (18.72
new&used.)

"Learning Perl" is MUCH simpler and in my opinion
"Programming Perl" is MUCH better and an eventual
necessity for almost all Perl programmers.

But if you no nothing of programming then 'Learning'
takes more baby steps.

Another EXCELLENT book as you start to USE Perl
is "Perl Cookbook" which offers working "snippet"
programs and routines that no only solve a multitude
of useful problems but stand as superior examples of
how an expert programmer makes Perl simple yet
amazingly effective.

One of the best things about Perl is that 10 lines of
Perl often does more than 10-100 lines of C or VB.

Fewer lines almost always means faster to program,
easier to understand and test, but most of all FEWER
BUGS.
 
H

Herb Martin

ptwilliams said:
Thanks! I'll take a look at those books.

I'm probably going to put it off to the summer -enjoying ADSI via VBS at the
moment. But a lot of people are telling me Perl is the way forward...

Maybe closer is that "Perl is A way" (not even
the way.)

One of the Perl maxims for the language itself
is, "There is more than one way to do it...."

Really. The language offers so many resources
that this is the standard prologue to the answer
when someone asks "What's the best way to...?"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top