#Format specifiers:
#----------------------------------------------------
# %%: Insert an '%'
# %a: Abbreviated weekday name (Mon, Tue, etc)
# %A: Full weekday name (Monday, Tuesday, etc)
# %b: Abbreviated month name (Jan, Feb, etc)
# %B: Full month name (January, February, etc)
# %c: Locale specific date and time
# %d: Day of month (01 - 31)
# %H: Hour in 24-hour format (00 - 23)
# %I: Hour in 12-hour format (00 - 12)
# %j: Day of year (001 - 366)
# %m: Month number (01 - 12)
# %M: Minute (00 - 59)
# %p: AM/PM indicator
# %S: Seconds (00 - 59)
# %w: Weekday number (Sunday = 0)
# %W: Week of year (01 - 52)
# %x: Locale specific date format
# %X: Locale specific time format
# %y: Year without century (00 - 99)
# %Y: Year with century (e.g: 1990)
# %Z: Time zone name
#----------------------------------------------------
#Additional specifiers:
# %D: Date as %m/%d/%y (e.g: 04/08/05)
# %e: Day of month (1 - 31), no leading zeros
# %h: Abbreviated month name (Jan, Feb, etc)
# %n: Insert a new line
# %r: Time as %I:%M:%S %p
# %R: Time as %H:%M
# %t: Insert a tab
# %T: Time as %H:%M:%S
#-------------------------------------------------------