The place where I'm consulting now is thinking about bringing in someone on site to teach an "Advanced Perl" class which will have some advanced topics like "make sure you use strict". It also introduces Perl OO before talking about references. Natually, this raised several red flags with me. So, I was thinking about what would be the essentially things they should learn. The level of most of the Perl programmers is beginner. They can write scripts that execute a query through DBI and are able to format the results. A few of the more advanced programmers have dabbled with objects. Regular expressions are rarely used. Most have learned to use strict and warnings since I don't sign off on QAs without them.
Anyways, I've come up with a preliminary list of things that seemed appropriate to cover. They include:
- Using the standard Perl functions and modules effectively
- Common Perl idioms
- slurping files (and when you shouldn't slurp)
- Schwartzian Transform
- foreach vs. for
- Regular Expressions
- References
- Creating modules
- What does use really do?
- Steps in creating a module
- Exporter
- Unit testing with the Test:: modules
- OO Perl
- The basics of OO Perl
- AUTOLOAD
- Useful (or essential) CPAN modules
- Using CPAN
- The usual supects (i.e. LWP, XML::,etc.)
I'm thinking that what I have above would do a good job at taking relatively beginner Perl programmers to the next level. My biggest concern, however, is that I'm missing something. Does anyone see anything that I'm missing or something they think is out of order or something that you're wondering what I must be thinking? I'd appreciate any input you all can give.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.