missingthepoint,
I don't program professionally as my primary vocation and yet perl saves me time at work all the time. More often, it saves my cow orkers time. I will use this past Friday as an example.

There are scanned documents in image format sitting in a work queue table in the database. Each image needs to be opened by a human to read so a search can be performed to determine which record the document belongs to. This is a time consuming process.

I wrote code that uses OCR technology to convert the scanned document to text and then wrote an algorithm to match the document against records waiting for an attached document. Since OCR itself is not perfect, this process does not completely eliminate the need for a human. On the other hand, in roughly 2 hours I was able to reduce the human work by 60 to 70%. The reason why it only took a couple of hours is because 90% of the code was already written (CPAN). I just needed to tie it together.

Cheers - L~R


In reply to Re: How has Perl saved you time at your job this week|month|year|decade? by Limbic~Region
in thread How has Perl saved you time at your job this week|month|year|decade? by missingthepoint

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.