view bin/beat @ 12092:ceb43c4d37de draft

<fizzie> ` for w in benvenuto bienvenido bienvenue bonvenon tervetuloa v\xc3\xa4lkommen velkomin velkommen welcome welkom wercome willkommen \xd0\xb4\xd0\xbe\xd0\xb1\xd1\x80\xd0\xbe-\xd0\xbf\xd0\xbe\xd0\xb6\xd0\xb0\xd0\xbb\xd0\xbe\xd0\xb2\xd0\xb0\xd1\x82\xd1\x8c; do sed -i -e \'2s|^|my $bin = $ENV{"HACKENV"}."/bin"; |;s|bin/[@?]|$&|g\' /hackenv/bin/$w; done
author HackEso <hackeso@esolangs.org>
date Sat, 16 Nov 2019 22:19:36 +0000
parents 4642242a7945
children
line wrap: on
line source

#!/usr/bin/python3
# beat - print current time in Swatch Internet Time format.
# blame fizzie
import math,sys,getopt,time
prec = 0
atime = None
opts,args = getopt.getopt(sys.argv[1:], "d:hpP:")
for opt,oarg in opts:
	if "-d" == opt:
		if "@" == oarg[0]:
			atime = float(oarg[1:])
		else:
			raise RuntimeError("unknown date format")
	elif "-p" == opt: prec = 2
	elif "-P" == opt: prec = int(oarg)
	elif "-h" == opt: 
		print("Usage: beat [-p]\nPrint current time in Swatch Internet Time format.\n")
		sys.exit(2)
	else: raise AssertionError()
if args:
	raise RuntimeError("too many command-line arguments")
if atime is None:
	atime = time.time()
b = math.floor(((atime + 3600) % 86400) / 86.4 * 10**prec)
o = "%0*d" % (prec, b)
if 0 < prec: o = o[0:-prec] + "." + o[-prec:]
print(o)
#END