Daylight-Saving Causes Twin Arrival Pickle

2007-11-07 Thread Rick Measham
http://www.wral.com/news/local/story/2011296/ Thought my fellow datetime nerds would get a laugh out of this story. Cheers! Rick Measham smime.p7s Description: S/MIME Cryptographic Signature

Re: DateTimeX namespace?

2007-11-07 Thread Dave Rolsky
On Wed, 7 Nov 2007, brian d foy wrote: I usually ask the module authors to rename or withdraw modules, with varying responses from "fuck you" to "ok, sure". I was thinking that it might be good to encourage people to use DateTimeX to publish things that use/produce/relate to DateTime modules bu

Re: Patch for DateTime::Format::W3CDTF to respekt second fragment part

2007-11-07 Thread Zefram
Julian Haupt wrote: >+if ($date =~ s/\.(\d+)$// ) >+{ >+ my $fraction = $1; >+ $p{'nanosecond'} = (1 / $fraction) * 10**9; >+} That inversion can't be right. Surely you mathematically want $p{'nanosecond'} = "0.$fraction" * 10**9; but actually the nanoseconds membe

Re: DateTimeX namespace?

2007-11-07 Thread brian d foy
[[ This message was both posted and mailed: see the "To," "Cc," and "Newsgroups" headers for details. ]] In article <[EMAIL PROTECTED]>, Dave Rolsky <[EMAIL PROTECTED]> wrote: > I usually ask the module authors to rename or withdraw modules, with > varying responses from "fuck you" to "ok, su