Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: How to find yesterdays date (was: Date)

by merlyn (Sage)
on Mar 12, 2001 at 15:09 UTC ( [id://63794]=note: print w/replies, xml ) Need Help??


in reply to How to find yesterdays date (was: Date)

There's always the old standby (joke) answer:
my $yesterdays_date = localtime; sleep 86400; print "Yesterday, it was $yesterdays_date\n";
And of course, this code breaks near the DST boundaries.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: Re: How to find yesterdays date (was: Date)
by Tyke (Pilgrim) on Mar 12, 2001 at 18:04 UTC
    If you're going to dust this one off, you could also mention the standard optimisation:
    my $yesterdays_date = localtime; sleep 86400; print "Yesterday, it was $yesterdays_date\n"; sleep -86400;
    Yes, yes, I know it's sad...

    Update: Can't claim credit... I believe that belong to Ilya Zakharevich, otherwise it would have been even sadder, and I wouldn't've dared post.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://63794]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-20 08:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found