Difference between revisions of "Time"

From Things and Stuff Wiki
Jump to navigation Jump to search
Line 40: Line 40:
  
 
* http://www.visualnews.com/2014/03/17/artist-spent-month-creating-digital-sundial-says-dont-throw-watch/
 
* http://www.visualnews.com/2014/03/17/artist-spent-month-creating-digital-sundial-says-dont-throw-watch/
 +
 +
=== Unix epoch ===
 +
while true; do echo "$(date +%s)" | figlet ; sleep 0.99 ; done
 +
 +
* http://www.epochconverter.com/epoch/clock.php
 +
 +
date -u -d @1400000000
 +
  gives datetime un UTC

Revision as of 14:57, 13 May 2014

General

1h = 3600s 1d = 86400s 1w = 604800s 28d = 2419200s

http://jtnimoy.net/workviewer.php?q=178



Unix epoch

while true; do echo "$(date +%s)" | figlet ; sleep 0.99 ; done
date -u -d @1400000000
  gives datetime un UTC