Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^3: What's the most important thing to learn in the Perl world?

by Anonymous Monk
on May 11, 2005 at 15:39 UTC ( [id://456039]=note: print w/replies, xml ) Need Help??


in reply to Re^2: What's the most important thing to learn in the Perl world?
in thread What's the most important thing to learn in the Perl world?

What I meant to say, was what's the next important thing to learn after you have grasped the basics. I recommend:
  1. perldoc perlfunc -- memorize function names, and roughly what they do
  2. perldoc -f <function> -- memorize the usage of this command. It will give you the details on a function, without having to search through perlfunc for it. This assumes you can remember the function name (see step 1).
  3. If you haven't already, read about good programming style for block structured programming (in any language). Discipline yourself in good practice. Learn how to break huge functions down into managable functions, learn to document your functions as you write them, learn to take the time to choose good variable names. Teach yourself to code for maintainability.
  4. Read books on testing, and specifically, how to write programs that are easy to test. Programs that are clearly correct are easier to maintain than programs where even the original programmer got confused about what's going on...
  5. Once you can write good programs, learn to write good perl programs. Master perl idioms, learn what they mean, and what the tradeoffs of using each one are. Learn regular expressions, how to use them, how not to use them, and when to document them (ie. always)
  6. Learn what CPAN modules are out there: this is not a static task. Learn perl XS if you like. Learn about closures, symbol table manipulations, and start filling in the corners of your perl knowledge.
  7. Learn everything. If you succeed, tell me how. :-)

--
AC

Replies are listed 'Best First'.
Re^4: What's the most important thing to learn in the Perl world?
by ghenry (Vicar) on May 11, 2005 at 15:43 UTC

    You should have logged in so that I can give you some XP.

    Oh well.

    Thanks for the advice though.

    Walking the road to enlightenment... I found a penguin and a camel on the way.....
    Fancy a yourname@perl.me.uk? Just ask!!!
      You're welcome. :-)

      "XP is just a number", anyway... :-)

      I should have added: "Learn what to document: ie. your intent and your reasons for that intent, not the details of the code (the code can fixed as long as your design is good)", and "Document what you don't know, as well as what you do".

      Good Luck!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://456039]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-03-19 10:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found