in reply to Dates and time.

Use localtime:    print scalar localtime(960662500); If you want it in "MMM dd YYYY" format, you can use:
use POSIX qw(strftime); print(strftime("%b %d %Y",localtime(960662500)));