I think that qq is correct in that we've all done a lot of that (certainly look a few years ago and I've got some examples of that), and that it is helpful for learning.

A couple things bug me about what you've suggested however. First, you say that you're a beginner programmer. Yet, you also say that you weren't particularly impressed with the available date modules. My guess is this stems from some unfamiliarity with their methodology. Date::Calc is pretty unintuitive, but it certainly gets the job done. Additionally, it's pretty fast. Going pure-perl, and going it alone, is almost certainly going to be slower and harder to work with. Date::Calc is also very mature, having gone through many spirals and thousands of use scenarios.

Anyways, I wanted to suggest that you could take another look at Date::Calc. You'll probably find that it's easier to work with other people's code when you're more familiar with it. The other thing I wanted to suggest is if you work with databases, they generally have very helpful date functions, with casting into all sorts of different types. They're also generally a lot faster than perl (I do try to offload everything I can onto the database, rather than let the host machine spin on perl).

* http://www.postgresql.org/docs/8.1/interactive/functions-datetime.html

Toodles, dep

--
Tilly is my hero.


In reply to Re: Wrote my own date parser by deprecated
in thread Wrote my own date parser by jeanluca

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.