In software development the phrase eating your own dog food means using the code that you write yourself.* This is usually aimed at improving usability and quality by having developers experience the same interface that the end-user does and thereby fix annoyances and bugs.

Without getting into the quality feedback side of "eating your own dog food" I'd like to bring up a related aspect that occurs to me from time to time.

I spend a lot of time writing and maintaining various spreadsheet modules on CPAN but outside of development I never actually use them. This is down to the fact that I work mainly in C and almost never have to deal (programmatically) with spreadsheets.

I wouldn't think that I am alone in this. I imagine that a lot of other CPAN authors find themselves initially writing or maintaining a module due to a short term requirement and then find themselves writing and maintaining the same module long after that requirement is forgotten.

The CPAN modules that I wrote and do use regularly are generally simpler and don't often require maintenance.

For example Pod::Simple::Wiki. This is very useful when switching departments/companies with different wikis. I just write my documentation in Pod format and then I can convert it to any wiki format that is required. I can also convert the Pod to other formats as needed.

Such as pod2cpanhtml which allows me to generate Html documents in the search.cpan.org format. This is also very useful for previewing and proof reading documentation prior to releasing it to CPAN.

A similar utility that I wrote is pod2epub for converting Pod documents to something that I can read on a mobile device.

And finally Data::Dumper::Perltidy allows me to use Data::Dumper style debugging with Perltidy formatting. That probably isn't a very common use case for anyone else but I find it very useful.

So, which of your modules/programs do you find yourself maintaining without using and which of them do you use on a regular basis?

--
John.

* In the dog food industry it means something slightly different.


In reply to Eating your own dog food by jmcnamara

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.