What should I teach a beginning Perl programmer? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:11:45Z http://stackoverflow.com/feeds/question/319900 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer 6 What should I teach a beginning Perl programmer? melling 2008-11-26T06:23:50Z 2009-09-17T22:39:09Z <p>I am going to spend 30 minutes teaching Perl to an experienced programmer. The best way to learn Perl is by writing code. In addition to CPAN, what would you show a programmer so they would understand the expressiveness of Perl, the amount of functionality provided by CPAN, while keeping everything clean and tidy so they walk away comfortable with the language? I'll save the tricky stuff for another day. </p> <pre> use warnings; use strict; # use A_CPAN_LIB; sub example_func1 { # use the CPAN lib or demonstrate some basic feature of Perl } example_func1(); # ... __END__ </pre> <p><hr> Here's what I came up with...<br></p> <h2>Where to Start</h2> <p>Believe it or not, the man pages. Ok, we'll just use perldoc instead to be Windows friendly.</p> <p>The perldoc pages (or man pages on Unix/Mac) are excellent for Perl. You can type man perl or perldoc perl</p> <p><strong>perldoc perl</strong>; # Show an overview and dozens of tutorials; man perl is the same.<br></p> <p><strong>perldoc perlintro</strong>; # A Perl intro for beginners; man perlintro<br> <strong>perldoc perlrequick</strong>; # An example Perl regex tutoral<br></p> <p><strong>perldoc perlfunc</strong>; # Shows builtin Perl functions<br> <strong>perldoc perlre</strong>; # More Perl regex.<br></p> <h2>CPAN</h2> <p>There are thousands of libraries on the Perl library site CPAN.<br> <strong>perl -MCPAN -e 'install DateTime'</strong><br></p> <p>perldoc works for installed modules too: perldoc module<br></p> <p><strong>perldoc DateTime</strong><br> <strong>perldoc DBI</strong>; # Database API. If this doesn't work then install it:<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>perl -MCPAN -e 'install DBI'</strong></p> <h2>Recommended Modules</h2> <p><strong>perl -MCPAN -e 'install Moose'</strong>; # Perl does OOP<br> <strong>perldoc Moose</strong>; # Tell me more about the Moose<br> <strong>perl -MCPAN -e 'install CGI'</strong>; # Quick and dirty web pages<br> <strong>perl -MCPAN -e 'install Catalyst'</strong>; # Big web framework. Sometimes have problems installing. Google is your friend<br> <strong>perl -MCPAN -e 'install CGI::Application'</strong>; # Another web framework<br> <strong>perldoc CGI::Application</strong>; # Take a quick look at the docs<br> <br> A little Q&amp;A.<br> <br> Q: Why should I use Perl instead Ruby or Python?<br> A: More people use Perl. There are more libraries for Perl(way more). Perl is a really great GTD language.<br> <br> Q: Why do people hate Perl?<br> A: You can do some ugly stuff with it. Remember use warnings; use strict; in all of your code. You can check your code before running it. <strong>perl -c</strong> hello.pl<br></p> <p><br></p> <h2>Perl Topics</h2> <h3>Using Perl with Databases</h3> <p><a href="http://www.perl.com/pub/a/1999/10/DBI.html" rel="nofollow">http://www.perl.com/pub/a/1999/10/DBI.html <br></p> <h3>Using Perl for Web Development</h3> <p><a href="http://www.catalystframework.org" rel="nofollow">http://www.catalystframework.org <br></p> <h3>OO Perl</h3> <p><a href="http://www.iinteractive.com/moose" rel="nofollow">http://www.iinteractive.com/moose <br></p> <h3>Perl 1-Liners</h3> <p><a href="http://www.perlmonks.org/?node_id=470397" rel="nofollow">http://www.perlmonks.org/?node_id=470397<br> <a href="http://sial.org/howto/perl/one-liner" rel="nofollow">http://sial.org/howto/perl/one-liner</a> <br></p> <h3>Other Tutorials</h3> <p><a href="http://perlmonks.org/index.pl?node=Tutorials" rel="nofollow">http://perlmonks.org/index.pl?node=Tutorials</a></p> <h2>Books</h2> <p>There are dozens.<br> <a href="http://www.amazon.com/s/ref=nb%5Fss%5Fgw?url=search-alias%3Dstripbooks&amp;field-keywords=perl&amp;x=0&amp;y=0" rel="nofollow">http://www.amazon.com/s/ref=nb%5Fss%5Fgw?url=search-alias%3Dstripbooks&amp;field-keywords=perl&amp;x=0&amp;y=0</a><br> <br></p> <h2>Websites</h2> <p><a href="http://perlmonks.com" rel="nofollow">Perlmonks</a><br> <a href="http://www.perl.org" rel="nofollow">Perl.org</a><br> <a href="http://pleac.sourceforge.net" rel="nofollow">Pleac</a><br> <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">StackOverFlow's Hidden Features of Perl</a><br> <a href="http://www.cpan.org/misc/cpan-faq.html" rel="nofollow">CPAN FAQ</a><br> <a href="http://www.stonehenge.com/merlyn/LinuxMag" rel="nofollow">Randall Schwartz's articles</a><br> <br> <br></p> <h2>Getting Help</h2> <p><a href="http://www.nabble.com/Perl-f13578.html" rel="nofollow">Perl Nabble Forum</a><br> IRC Channels: freenode, irc.perl.org. There are several:<br> <br> irc://irc.perl.org/perl</a><br> irc://irc.perl.org/catalyst</a><br> irc://irc.freenode.net/modperl</a><br> irc://irc.perl.org/perl6</a><br></p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/319913#319913 5 Answer by Alan for What should I teach a beginning Perl programmer? Alan 2008-11-26T06:31:27Z 2008-11-26T06:31:27Z <p>Definitely show them how easy it is to use regular expressions in Perl.</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/319942#319942 3 Answer by Chris for What should I teach a beginning Perl programmer? Chris 2008-11-26T06:56:12Z 2008-11-26T06:56:12Z <p>That's basically a task-oriented question.</p> <p>If they are to use it for parsing, show them how easy manipulating STDIN and file i/o is.</p> <p>If they are going to use it for databases, show them how to get hashrefs from query results and that should wow them.</p> <p>Perl usually has some way to make just about any task super-quick. Pick out the task they need to do.</p> <p>But definitely teach them to use my and local. Stress the importance of my and that will make their experiences happier.</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/319956#319956 2 Answer by zoul for What should I teach a beginning Perl programmer? zoul 2008-11-26T07:11:45Z 2008-11-26T07:11:45Z <p>If he’s an experienced programmer, he might like <a href="http://search.cpan.org/~dconway/Smart-Comments-v1.0.3/lib/Smart/Comments.pm" rel="nofollow">Smart Comments</a>, <a href="http://perldoc.perl.org/perlpod.html" rel="nofollow">POD</a>, <a href="http://www.perl.com/pub/a/2002/05/29/closure.html" rel="nofollow">closures</a>, the <code>-d:DProf</code> switch and <code>dprofpp</code>, one-liners, <a href="http://search.cpan.org/dist/Perl-Critic/lib/Perl/Critic.pm" rel="nofollow">Perl Critic</a>, <a href="http://search.cpan.org/~drolsky/Moose-0.61/lib/Moose.pm" rel="nofollow">Moose</a>, <code>__DATA__</code> or <a href="http://perldoc.perl.org/functions/map.html" rel="nofollow">map</a>. (Which is a crazy mix indeed.) I’d explain to him right from the start that Perl is a language with a lot of magic, but that he is free to choose when to stick to simple code and when to draw a wand. Experienced programmers are not afraid of choices :-)</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/320002#320002 2 Answer by Federico Ramponi for What should I teach a beginning Perl programmer? Federico Ramponi 2008-11-26T07:48:22Z 2008-11-26T07:48:22Z <p>Experienced programmer or not, in 30 minutes you can't pretend to teach anything, let alone Perl. At most you can try to enlighten him with some cool one-liners (provide their full-bloated Java counterpart, for comparison).</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/320552#320552 18 Answer by brian d foy for What should I teach a beginning Perl programmer? brian d foy 2008-11-26T12:33:19Z 2008-11-26T12:33:19Z <p>We wrote a whole book on that called <a href="http://oreilly.com/catalog/9780596520106/" rel="nofollow">Learning Perl</a>. Check out the table of contents.</p> <p>This book is a product of teaching people Perl since 1995. It's not geared to any particular application, and shows people the parts of Perl that they'll use for 80% of their Perl programming. We updated it for Perl 5.10, and include sections on using CPAN.</p> <p>Good luck, :)</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/320734#320734 2 Answer by Dylan for What should I teach a beginning Perl programmer? Dylan 2008-11-26T13:43:47Z 2008-11-26T13:43:47Z <p>I'd cover lists and hashes first. (Pathologically Eclectlic Rubbish Lister, remember.) Show him how much prettier foreach is than a C-style for.</p> <p>If he's coming from C/C++ it would be good to refer him to <a href="http://perldoc.perl.org/perltrap.html" rel="nofollow">http://perldoc.perl.org/perltrap.html</a> or 'perldoc perltrap.' It contains the most obvious differences to be aware of.</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/321223#321223 1 Answer by Mick for What should I teach a beginning Perl programmer? Mick 2008-11-26T16:02:32Z 2008-11-26T16:02:32Z <p>I agree with some of the other commenters that it truly depends on the type of task that Perl is being used for. Is this person a Windows system admin? Then I'd cover using WMI from Perl (scriptomatic would be a good resource here).</p> <p>I'd grab a copy of Oreilley's "Perl Cookbook", and find some interesting topics out of there. Here is a link to the book here: <a href="http://books.google.com/books?id=IzdJIax6J5oC&amp;dq=perl+cookbook&amp;pg=PP1&amp;ots=z6ykdpc8fS&amp;source=bn&amp;sig=wEIaAkHmJttmQUVce18SHcXhYLs&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=6&amp;ct=result" rel="nofollow">link text</a></p> <p>One of my favorite things in Perl is how easy it is to compare lists, looking for unions, intersections, or differences in unique lists (recipe 4.9 in Perl Cookbook). Helps you appreciate the power of Perl.</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/321279#321279 1 Answer by slim for What should I teach a beginning Perl programmer? slim 2008-11-26T16:19:42Z 2008-11-26T16:19:42Z <p>It depends on what kind of programming this 'Experienced Programmer' is experienced in.</p> <p>If they've done much shell programming, they'll probably be impressed by Perl in its super-awk personality - do some practical extraction and reporting by using regexes and templates.</p> <p>If they're more like C programmers who like to work with complex data structures, show them how easily you can whip up a hash of hashes, and how quickly the resulting code executes.</p> <p>... and so on.</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/321642#321642 2 Answer by Brad Gilbert for What should I teach a beginning Perl programmer? Brad Gilbert 2008-11-26T18:13:47Z 2008-11-26T18:13:47Z <p>The idea that popped into my head, was to have them transfer information from one format to another. For example, getting <code>xml</code> data, and transfer it to <code>JSON</code>, for use on a web-page.</p> <pre> cpan JSON XML::Simple </pre> <pre><code>use strict; use warnings; use JSON; use XML::Simple; my $data; { open( my $file, '&lt;', 'filename.xml' ) or die; $data = XMLin($file); close $file; } { open( my $file, '&gt;', 'filename.json' ) or die; print $file to_json( $data ); close $file; } </code></pre> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/323020#323020 4 Answer by tadmc for What should I teach a beginning Perl programmer? tadmc 2008-11-27T05:44:57Z 2008-11-27T05:44:57Z <p>Perl has two things that are likely to be foreign even to experienced programmers, so those should perhaps be mentioned early on so they don't run away screaming.</p> <p>Context: Nearly every function in Perl has 2 behaviors. When called in a "scalar context" and it does one thing, when called in a "list context" it does something else instead. This may seem weird and strange (and it is, in machine languages) but is simply the natural language concept of "singular" and "plural" applied to a programming language.</p> <p>Variables: Perl has 2 completely different and separate systems of variables. Lexical variables (my) and package variables (our). Lexical variables are "normal" if you've used most any programming language. Package variables (i.e. dynamic variables) are strange, unless you've used something like Lisp. "Always prefer lexical variables over package variables, except when you can't."</p> http://stackoverflow.com/questions/319900/what-should-i-teach-a-beginning-perl-programmer/325028#325028 1 Answer by Ambrose for What should I teach a beginning Perl programmer? Ambrose 2008-11-28T03:55:09Z 2008-11-28T03:55:09Z <p>Just my 2c, but in relation to CPAN, how about you pose them the problem of splitting English text into sentences?</p> <p>At first, that seems simple: a sentence is a string with a period at the end. </p> <p>But after a moment's thought, a programmer will find there are all kinds of complexities which arise. Periods can be in the middle, if there are decimal numbers or abbreviations; sentences can end with other things, like "?", "!" or "..."; 'a period followed by a space' doesn't help either because what about EOF?</p> <p>Long story short, when it comes to Perl, someone else has thought of everything on that list and more. So you use <a href="http://search.cpan.org/perldoc?Lingua::EN::Sentence" rel="nofollow">Lingua::EN::Sentence</a>.</p>