Some of those are definitely on my list of things to read.

++Class::Accessor and DBIx::Class.

I am not a big constant fan however. I went through a phase (well, probably about 2 years) of using them, but they can be fiddly at times, especially if you use them for complex data structures. You often end up with something like:
print "I have " . FOO()->{APPLES} . " apples".
which to me is just ugly, and gets unreadable pretty quickly, especially if you have constants in different packages.

Besides that, I realised there's actually nothing stopping you modifying the values. Like most things in Perl, it's really just a convention. If that's the case, I'd rather just use uppercased variable names, which is a pretty widely used convention, and not as messy as the pragma.

In reply to Re: Top 10 things to read when your flight is canceled by Mutant
in thread Top 10 things to read when your flight is canceled by bobf

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.