How can I impress people with Perl's capabilities? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:29:37Z http://stackoverflow.com/feeds/question/611377 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities 11 How can I impress people with Perl's capabilities? mcsnolte 2009-03-04T16:33:55Z 2009-11-22T11:05:27Z <p>I would like to give a presentation for my co-workers that will show off some amazing things that Perl can do, things that would make programmers and non-programmers alike say to themselves, "WHOA you can do that?!" I really want to turn heads, since many are of the mindset that Perl is a dying language, but also be fun and entertaining.</p> <p>Some ideas I have are demos of the following modules:</p> <ul> <li><a href="http://search.cpan.org/perldoc?Spreadsheet::WriteExcel" rel="nofollow">Spreadsheet::WriteExcel</a> and <a href="http://search.cpan.org/perldoc?Spreadsheet::ParseExcel" rel="nofollow">Spreadsheet::ParseExcel</a></li> <li><a href="http://search.cpan.org/perldoc?WWW::Mechanize" rel="nofollow">WWW::Mechanize</a></li> <li><a href="http://search.cpan.org/perldoc?Image::Magick" rel="nofollow">Image::Magick</a></li> </ul> <p>Any recommendations or comments?</p> <p>BTW we are a tech company (run a data center) so the computer literacy of my co-workers is high.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611438#611438 12 Answer by Nik Reiman for How can I impress people with Perl's capabilities? Nik Reiman 2009-03-04T16:46:07Z 2009-11-22T11:05:27Z <p>Years ago, when I was first learning how to program, my girlfriend's cousin showed me a perl script he'd written which contacted a database containing the positions of all known satellites, and calculated the flyover times for the largest objects, like the space station Mir. The script ran via cron on a server he ran, and it would run periodically and then send him a page about 5 minutes before the given object was visible overhead in the night sky. As we were walking around town, he could get everybody's attention by suddenly pointing up and saying "LOOK!", and everybody ooohed and ahhhed right as the satellite cruised overhead.</p> <p>I was really impressed by that script at the time, since I had no idea how to write a program nearly that complex. Now that I would have a much better idea, I still think it made a good demo, as it showed something novel that could be done with the language in a relatively short amount of time and with little sweat. So I'd say to pick something novel or interesting, and emphasize perl's economy of language, and it's networking capabilities.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611522#611522 5 Answer by James Thompson for How can I impress people with Perl's capabilities? James Thompson 2009-03-04T17:04:00Z 2009-03-04T17:04:00Z <p>Some combination of screen-scraping, interacting with external programs, and parsing a text file really quick would impress people. The example given by squook would definitely fit the bill. </p> <p>On the other hand, why not just use it in your day-to-day work, write tremendously useful tools that everyone else uses, and explain to people that you made the tools in Perl? That way you're getting useful things done for work, and people at your workplace surely would appreciate the value of <em>getting work done</em>. :)</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611559#611559 6 Answer by mirod for How can I impress people with Perl's capabilities? mirod 2009-03-04T17:11:41Z 2009-03-04T17:11:41Z <p>I believe CPAN is pretty impressive in and of itself. the ease of installation of new modules is pretty nice, as is the fact that they are <strong>all</strong> there.</p> <p>And then combining modules to do cool things: generating RSS (or Atom) from pretty much any data that passes by, using <a href="http://search.cpan.org/dist/GraphViz/" rel="nofollow">GraphViz::*</a> to generate pretty pictures (tm).</p> <p>You could also look at the tutorials of some of the big framework type modules, <a href="http://search.cpan.org/dist/Catalyst" rel="nofollow">Catalyst</a> or <a href="http://search.cpan.org/dist/POE" rel="nofollow">POE</a> for example, they have some pretty nifty things you can do with little code.</p> <p>If the local culture is not too uptight, a few of the Acme::* modules (<a href="http://search.cpan.org/dist/Acme::Bleach" rel="nofollow">Acme::Bleach</a> for example) are pretty clever and sure to get you some laughs.</p> <p>Finally, using <a href="http://search.cpan.org/dist/XML::Twig" rel="nofollow">XML::Twig</a> of course, a one liner that gives you the current exchange rate between the dollar and the euro:</p> <pre><code>perl -MXML::Twig -l -e'print XML::Twig-&gt;parse( "http://www.x-rates.com")-&gt;first_elt(q{a[@href="/d/USD/EUR/graph120.html"]})-&gt;text' </code></pre> <p>It's pretty easy to adapt it to scrap data from an other website.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611595#611595 8 Answer by Ant P for How can I impress people with Perl's capabilities? Ant P 2009-03-04T17:20:54Z 2009-03-04T17:20:54Z <p>Show them <a href="http://www.frozen-bubble.org/" rel="nofollow">Frozen Bubble</a>.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611613#611613 1 Answer by contagious for How can I impress people with Perl's capabilities? contagious 2009-03-04T17:25:01Z 2009-03-04T17:25:01Z <p>If you wanted to use Image::Magik, you could do a quick script that could turn a regular picture into ascii art. That would be a fairly quick script to do apply the <a href="http://en.wikipedia.org/wiki/Sobel%5Foperator" rel="nofollow">sobel operator</a> and then convert the resulting brightness into ascii values. I've actually done this in python: <a href="http://andrebluehs.net/projects.html" rel="nofollow">example</a></p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611692#611692 4 Answer by J.J. for How can I impress people with Perl's capabilities? J.J. 2009-03-04T17:49:53Z 2009-03-04T17:49:53Z <p>One of the coolest things to me is using Perl for code generation. Especially when it comes other languages. I have wrote several small scripts to generate C++ classes, and Java code.</p> <p>Back when I was a Perl neophyte. I wrote this piece of code, that generated scheme files based on our database. About 2 hours later I found out that I didn't need to do this for DBIx::Class. This is not great Perl code(Don't down vote me for it. It's just an example.), but it accurately generated like 200 scheme files for me.</p> <pre><code>my @db = `mysql -u XXXXX -pXXXXX --skip-column-names -e "show databases;"`; foreach my $db_name (@db) { chomp($db_name); my @tables = `mysql -u XXXXX -pXXXXX --skip-column-names -e "use $db_name; show tables;"`; $_ =~ s/\n// foreach(@tables); unless ( -e "$db_name.pm") { open(DBFILE, '&gt;', "$db_name.pm"); print DBFILE "package mysql::schemes::$db_name;\n"; print DBFILE "use base qw/DBIx::Class::Schema/;\n\n"; print DBFILE '__PACKAGE__-&gt;load_classes(qw/' . join(' ', @tables) . "/);\n\n"; print DBFILE "1;"; close(DBFILE); } mkdir $db_name unless ( -d $db_name or -e $db_name ); foreach my $table_name (@tables) { my @columns = `mysql -u XXXX -pXXXX --skip-column-names -e "USE $db_name; desc \\\`$table_name\\\`;"`; $_ =~ s/\n$// foreach(@columns); my (@names, $primary_key); foreach (@columns) { my ($name, $type, $null, $key, $default) = split(/\t/, $_); chomp($default); push(@names, $name); $primary_key = $name if($key ne ''); } unless ( -e "$db_name/$table_name.pm" ) { open(TBFILE, '&gt;', "$db_name/$table_name.pm"); print TBFILE "package mysql::schemes::" . $db_name . "::" . $table_name . ";\n"; print TBFILE "use base qw/DBIx::Class/;\n\n"; print TBFILE "__PACKAGE__-&gt;load_components(qw/PK::Auto Core/);\n"; print TBFILE "__PACKAGE__-&gt;table('$table_name');\n"; print TBFILE "__PACKAGE__-&gt;add_columns(qw/" . join(' ', @names) . "/;\n"; print TBFILE "__PACKAGE__-&gt;set_primary_key('$primary_key');\n\n" unless($primary_key eq ''); print TBFILE "1;"; close(TBFILE); } } } </code></pre> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611809#611809 3 Answer by Nathan for How can I impress people with Perl's capabilities? Nathan 2009-03-04T18:20:19Z 2009-03-04T18:20:19Z <p>Demonstrate complex data manipulation with a one liner, like parsing a web server log and for 404 errors, then another oneliner to remove the broken links from a collection of HTML documents...</p> <p>I taught a Perl workshop to a group of long-time sysadmins one time, and they saw the most value when they saw how they could use real programming tricks like modularization and data structures to improve their shell scripts, in a way that had continuity with what they already knew. In a Windows environment I'd demonstrate manipulating large file structures, permissions and the Registry, because everyone always needs that sort of thing and Perl is way more robust than batch files, etc.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612144#612144 2 Answer by runrig for How can I impress people with Perl's capabilities? runrig 2009-03-04T19:45:40Z 2009-03-05T23:05:47Z <p>I think being able to <a href="http://www.perlmonks.org/?node%5Fid=648493" rel="nofollow">write macros to manipulate the Windows Clipboard</a> is pretty impressive. It has all sorts of possibilities, and gives you the power of Perl from just about any Windows app where you can cut/paste text.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612191#612191 0 Answer by Leonard for How can I impress people with Perl's capabilities? Leonard 2009-03-04T20:03:21Z 2009-03-04T20:08:27Z <p>On the frivolous and entertaining side, Damian Conway's entry into the third obfuscated Perl contest, <a href="http://www.perlfoundation.org/perl5/index.cgi?selfgol" rel="nofollow">SELFgol</a> performed 4 tasks </p> <pre><code>* Its a quine (when executed, prints an exact copy of itself) * Turns other programs into quines * Plays Conway's Game of Life * Animates a marquee banner </code></pre> <p>And all this in under 1000 characters. Pretty entertaining.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612356#612356 5 Answer by JDrago for How can I impress people with Perl's capabilities? JDrago 2009-03-04T20:47:22Z 2009-03-04T20:47:22Z <p>After showing them <a href="http://search.cpan.org/" rel="nofollow">search.cpan.org</a> (and explaining the concept of CPAN), show them any of the following:</p> <ul> <li><a href="http://search.cpan.org/perldoc?Moose" rel="nofollow">Moose</a></li> <li><a href="http://search.cpan.org/perldoc?DBIx::Class" rel="nofollow">DBIx::Class</a></li> <li><a href="http://search.cpan.org/perldoc?Catalyst" rel="nofollow">Catalyst</a></li> <li><a href="http://search.cpan.org/perldoc?Inline::Java" rel="nofollow">Inline::Java</a></li> <li><a href="http://search.cpan.org/perldoc?Inline::C" rel="nofollow">Inline::C</a></li> <li><a href="http://search.cpan.org/perldoc?Inline::WSC" rel="nofollow">Inline::WSC</a> (JavaScript/VBScript from Perl on Windows)</li> <li><a href="http://search.cpan.org/perldoc?Imager" rel="nofollow">Imager</a></li> <li><a href="http://search.cpan.org/perldoc?Kamaitachi" rel="nofollow">Kamaitachi</a> (Flash Media Server written in Perl with Moose and Danga::Socket)</li> </ul> <p>Then blow their minds with a sort/map/grep combo (aka <a href="http://www.perlmonks.org/?node%5Fid=476700" rel="nofollow">Schwarzian Transform</a>) that does more work in 1 line of code than you could in 50 lines of C#.</p> <p>Show them <a href="http://search.cpan.org/perldoc?threads" rel="nofollow">threads</a> and <a href="http://search.cpan.org/perldoc?forks" rel="nofollow">forks</a>, then compare that with the same code necessary to accomplish the same work under Java or C#.</p> <p>If they aren't blown away by the fact that Perl has had for years the same idioms that C# is <strong>just now</strong> introducing, then I don't know what to say.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612712#612712 1 Answer by xdg for How can I impress people with Perl's capabilities? xdg 2009-03-04T22:16:04Z 2009-03-04T22:16:04Z <p>First thought: <a href="http://search.cpan.org/perldoc?App::Asciio" rel="nofollow">App::Asciio</a> (<a href="http://www.youtube.com/watch?v=IiOHYNHo%5FNw" rel="nofollow">see a screencast</a>)</p> <p>Second thought: It's hard to demo things without a small, tight case. Rather than invent them, you might borrow from others to show the elegance of Perl.</p> <p>One option would be the solutions to the Microsoft Scripting Games. Jan Dubois of ActiveState provided <a href="http://www.microsoft.com/technet/scriptcenter/funzone/games/games08/experts.mspx" rel="nofollow">solutions with commentary</a> that you could use/adapt. (Personally, I found that many of my solutions took much less code, so you might want to edit them down and make Perl seem even more elegant.)</p> <p>Another option could be going through some of <a href="http://www.stonehenge.com/merlyn/LinuxMag/" rel="nofollow">Randal Schwartz's columns</a>. There are some gems in there. (E.g. <a href="http://www.stonehenge.com/merlyn/LinuxMag/col93.html" rel="nofollow">Fingering myself with Twitter</a>)</p> <p>As for applications, <a href="http://search.cpan.org/perldoc?Perl::Critic" rel="nofollow">Perl::Critic</a> is pretty awesome. As is <a href="http://search.cpan.org/perldoc?ack" rel="nofollow">ack</a>.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/613481#613481 0 Answer by EvilTeach for How can I impress people with Perl's capabilities? EvilTeach 2009-03-05T03:24:49Z 2009-03-05T03:24:49Z <p>If you are an it center, you probably have a number of computers around.... Minis/Mainframes/PCs etc.</p> <p>How about a script that goes out and gets some sort of information about these machines, that your it people need, and serve it up nice in some html format. </p> <p>A long time ago, I had 15 tcp/ip based servers that did something for various clients. I put together a perl script that extracted the parameters for each of the servers, and inserted this information into a new excel spreadsheet, one tab per server. It then put it on a file server somewhere where everyone could examine it. It saved a lot of time for the people who were supporting the servers.</p> <p>Look around for a situation where you can make their life easier by reducing manual drudgery. I think that is your best bet.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/613638#613638 0 Answer by Gaurav for How can I impress people with Perl's capabilities? Gaurav 2009-03-05T05:11:35Z 2009-03-05T05:11:35Z <p>Since most programming languages are fairly comparable at the how-quickly-can-you-implement-something level, maybe you could "wow" them with the solidity and worthiness of the Perl platform? Here are <a href="http://www.bofh.org.uk/2009/03/04/perl-test-infected-since-1987" rel="nofollow">some interesting statistics</a> on how well tested the Perl distribution and CPAN modules are. The CPAN is an amazing creation too, with its associated documentation, search, review, annotation and bug tracking websites. <a href="http://testers.cpan.org/" rel="nofollow">CPAN Testers</a> is definitely the icing on the cake: a collection of testers on multiple platforms and Perl versions.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/613764#613764 4 Answer by Ambrose for How can I impress people with Perl's capabilities? Ambrose 2009-03-05T06:22:34Z 2009-03-05T06:22:34Z <p>I always say the same thing, but in order to show people the usefulness of CPAN, I would present them the problem of parsing English text into its component sentences.</p> <p>A smart audience presented with that problem will probably say "Just split on a full stop". Then edge cases and problems will start to occur to them. Full stops appear in all kinds of other places; sentences end with question marks and exclamations and three trailing full stops... What about full stop or ! or ? followed by space, no but that won't work because it might be followed by EOF, etc. etc.</p> <p>If you prepare some tricky text with all those edge cases in it, you'll be able to shoot down all their proposed solutions by just pointing to an example. Then you would parse it with Lingua::En::Sentence.</p> <p>It's not flashy in the sense you might mean, but it shows the power of a module written by people who have gone through all of the problems which are only just now occurring to your audience, and solved them.</p> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/617133#617133 0 Answer by singingfish for How can I impress people with Perl's capabilities? singingfish 2009-03-05T23:19:55Z 2009-03-05T23:19:55Z <p>My favourite Acme modules are Acme::Eyedrops and Acme::Bleach. Good for light relief.</p>