Skip to content

Instantly share code, notes, and snippets.

@epappas
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save epappas/7f83004640ba3a83bb4a to your computer and use it in GitHub Desktop.
Save epappas/7f83004640ba3a83bb4a to your computer and use it in GitHub Desktop.
Binary clock
perl -e 'for(;;sleep 1){printf"\r"."%.4b "x6,split"",`date +%H%M%S`}'
perl -e 'for(;;){@d=split("",`date +%H%M%S`);print"\r";for(0..5){printf"%.4b ",$d[$_]}sleep 1}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment