in reply to What are people doing with Perl 5 and Raku these days?

In the past I've used Perl for writing web sites (Duh!) and a major software build system used by our company. Nowadays I use Perl almost exclusively for writing one off utilities. For example a few times I've used Perl scripts to take the contents of a table in documentation for a standard like IEE-1588 and used it to generate hundreds of lines of C++ code for an embedded system. A few dozen lines of Perl can save hours of tedious work and even more hours of hair pulling frustration finding typos with debugging ICE!

I also frequently use Perl to parse results from tools like logic analyzers to find interesting events or calculate parameters that can't be derived directly from the tool's output. I use Perl in that sort of role most days.

Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond
  • Comment on Re: What are people doing with Perl 5 and Raku these days?

Replies are listed 'Best First'.
Re^2: What are people doing with Perl 5 and Raku these days?
by Crosis (Beadle) on Nov 03, 2020 at 23:39 UTC

    Was this with CGI or a modern framework or both? CGI still exists but I don't think people are writing much new with it. I know there is Perl and Raku code more or less like Rails etc. and I'd like to hear about that too.

      The web stuff was CGI, but at least 10 years ago so there was a slight excuse.

      Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond