Skip to content

Instantly share code, notes, and snippets.

@jrleeman
Created December 28, 2021 01:59
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 jrleeman/3259cf7a2218af9d1d79634cfee22e4e to your computer and use it in GitHub Desktop.
Save jrleeman/3259cf7a2218af9d1d79634cfee22e4e to your computer and use it in GitHub Desktop.
Simple python dropping new year ball animation.
import time
from console.screen import sc
from math import floor
from console import fg, bg, fx
import random
from datetime import datetime
colors = [fg.green, fg.yellow, fg.blue, fg.red, fg.default,
fg.royalblue, fg.lightslateblue, fg.steelblue,
fg.magenta, fg.violet, fg.mediumpurple,
fg.bisque1, fg.peachpuff1, fg.springgreen1,
fg.chartreuse1, fg.sienna1, fg.salmon1]
target_time = datetime(2021, 12, 28, 1, 38)
while(1):
# Check if we are in the minute before!
seconds_till = (target_time - datetime.utcnow()).seconds
if seconds_till > 60:
i = 0
else:
i = 60 - seconds_till
if datetime.utcnow() > target_time:
i = 60
with sc.location(3, 0):
for j in range(3 + floor(i/2)):
print(' *** ')
print(random.choice(colors), " , - ~ ~ ~ - , ")
print(" , ' ' , ")
print(" , , ")
print(" , , ")
print(" , , ")
if datetime.utcnow() >= target_time:
print(" , UNIDATA , ")
else:
print(" , , ")
print(" , , ")
print(" , , ")
print(" , , ")
print(" , , ' ")
print(" ' - , _ _ _ , ' ", fg.default)
for j in range(31 - floor(i/2)):
print(' *** ')
time.sleep(.2)
print(datetime.strftime(datetime.utcnow(), ' %m-%d-%Y %H:%M:%S'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment