in reply to perl's forte
Perl can do CGIs, even though PHP is simpler.
Perl can do OOP, even though Python and Ruby are cleaner.
Perl can do text processing, even though sed/awk/yacc/grep are more specific to the task.
Perl can process XML, even though XSLT is (arguably) superior.
But none of these languages can do all these things reasonably well. This is what people sometimes miss when they say "Use the best tool for the job!" (and why I tend to avoid that phrase). If your task is simple, then you can get away with using a very specific tool for your task. In anything bigger, you're going to need to do a wide range of tasks. While you can break your complex task into several simple ones, you still need some way to glue together each part. For the purposes of getting real work done, you often need to pick just one tool, because trying to put many domain-specific tools together isn't worth the effort. You're often better off picking a tool which can do it all reasonably well rather than twenty tools that do very specific tasks.
There's a reason why Perl is called the Swiss Army Chainsaw.
Update: Speeling mistake. Thanks tilly.
----
: () { :|:& };:
Note: All code is untested, unless otherwise stated
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: perl's forte
by etcshadow (Priest) on Mar 19, 2004 at 17:35 UTC | |
|
Re^2: perl's forte
by Aristotle (Chancellor) on Mar 20, 2004 at 07:41 UTC | |
by etj (Priest) on Jun 23, 2022 at 15:52 UTC | |
by hardburn (Abbot) on Mar 21, 2004 at 02:55 UTC |