How To Get a Formatted Date in Perl

Author: , July 8th, 2020

How To List Running AWS Instances in all Regions Sorted by LaunchTime and Email in a Monospaced Font

Author: , July 1st, 2019

How To Calculate Dates In Perl Using Date::Manip

Author: , September 18th, 2017

How To Convert UNIX Timestamps to Date using PHP CLI

Author: , August 15th, 2015

For a quick visual check to see what the human-readable date is based on a UNIX timestamp integer: php -r ‘print date(“r”,1483228799);’ php -r ‘print strtotime(“1 Jan 2015”) – 1;’

How To Calculate the Next Anniversary Date in PHP

Author: , September 12th, 2012

How to Calculate the Last Day of the Month in PHP

Author: , April 24th, 2012

$lastDay = date(“Y-m-t”, strtotime(“-3 months”)); $firstDay = date(“Y-m-01”, strtotime(“-3 months”));

How To Calculate The Number Of Days Between Dates In PHP

Author: , November 9th, 2011

http://www.php.net/manual/en/datetime.diff.php

How To Get Last Day Of Current Month With Suffix Using PERL

Author: , May 28th, 2011

How To Get jQuery UI Datepicker To Insert Today’s Date

Author: , May 5th, 2011

Click HERE for the original post.

How To Sync the Date and Time Between Servers

Author: , July 29th, 2010

Extremely simple way to set the date and time the same as another server: (Requires SSH access to the server that has the time you want to copy; does NOT have to be root access) [code]root@host# date ssh user@timehost date "+%Y%m%d%H%M.%S"[/code]