tbclock

Forum rules
General talk about software - if the program is not in the repos, please links to the developer's page or github.
User avatar
dkeg
Configurator
Posts: 3782
Joined: Sun Nov 18, 2012 9:23 pm
Location: Mid-Atlantic Grill

tbclock

Unread post by dkeg » Sat Oct 03, 2015 9:59 pm

Just saw this on /r/unixporn. I love it! A curses binary clock.

https://tamentis.com/projects/tbclock/

I run it as

Code: Select all

tbclock -af
which looks like this
tbclock.png
tbclock.png (1.86 KiB) Viewed 2376 times
If you haven't read a binary clock before; you have 6 colums and 4 rows. By default tbclock runs in 24HR time. But what else is there?

80 8 80 8 80 8
40 4 40 4 40 4
20 2 20 2 20 2
10 1 10 1 10 1

In the scrot the time is
10+4+2:40+10+2:20+4+2 -> 16:52:26

Have fun!

Work hard; Complain less

User avatar
GekkoP
Emacs Sancho Panza
Posts: 5878
Joined: Tue Sep 03, 2013 7:05 am

Re: tbclock

Unread post by GekkoP » Sun Oct 04, 2015 9:49 am

A real beauty, thanks!

User avatar
simgin
Meme Fodder
Posts: 1167
Joined: Sun Jan 06, 2013 12:07 am
Location: Bradford-on-Avon, UK

Re: tbclock

Unread post by simgin » Sun Oct 04, 2015 4:05 pm

^^ That is so cool, me gusta :)
Thanks for the share Drew.

cheers
simon
Someone told me that I am delusional, I almost fell off my unicorn.

machinebacon
Baconator
Posts: 10253
Joined: Thu Sep 16, 2010 11:03 am
Location: Pfälzerwald
Contact:

Re: tbclock

Unread post by machinebacon » Sun Oct 04, 2015 7:29 pm

From Commandline-fu:

Code: Select all

read -a A<<<".*.**..*....*** 8 9 5 10 6 0 2 11 7 4";for C in `date +"%H%M"|fold -w1`;do echo "${A:${A[C+1]}:4}";done
..gnutella..

Post Reply