Skip to content

Instantly share code, notes, and snippets.

@IshamMohamed
Last active December 20, 2018 02:24
Show Gist options
  • Save IshamMohamed/e919925a6980368df6a642de4afde437 to your computer and use it in GitHub Desktop.
Save IshamMohamed/e919925a6980368df6a642de4afde437 to your computer and use it in GitHub Desktop.
from termcolor import colored
import subprocess as sp
import time
import sys
def delay_print(s):
for c in s:
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(0.05)
sp.call('clear',shell=True)
time.sleep(3)
print(colored(' ____ __ ','cyan'))
print(colored(' / _/ _____ / /_ ____ _ ____ ___ ','cyan'))
print(colored(' / / / ___/ / __ \ / __ `/ / __ `__ \\','cyan'))
print(colored(' _/ / (__ ) / / / // /_/ / / / / / / /','cyan'))
print(colored('/___/ /____/ /_/ /_/ \__,_/ /_/ /_/ /_/ ','cyan'))
time.sleep(1)
sp.call('clear',shell=True)
print(colored(' ██████ ██░ ██ ███▄ █ ▒█████ ▒█████ ▄▄▄▄ ','red'))
print(colored('▒██ ▒ ▓██░ ██▒ ██ ▀█ █ ▒██▒ ██▒▒██▒ ██▒▓█████▄ ','red'))
print(colored('░ ▓██▄ ▒██▀▀██░ ▓██ ▀█ ██▒▒██░ ██▒▒██░ ██▒▒██▒ ▄██','red'))
print(colored(' ▒ ██▒░▓█ ░██ ▓██▒ ▐▌██▒▒██ ██░▒██ ██░▒██░█▀ ','red'))
print(colored('▒██████▒▒░▓█▒░██▓ ██▓ ▒██░ ▓██░░ ████▓▒░░ ████▓▒░░▓█ ▀█▓','red'))
print(colored('▒ ▒▓▒ ▒ ░ ▒ ░░▒░▒ ▒▓▒ ░ ▒░ ▒ ▒ ░ ▒░▒░▒░ ░ ▒░▒░▒░ ░▒▓███▀▒','red'))
print(colored(' ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ','red'))
print(colored(' ░ ░ ','red'))
time.sleep(2)
delay_print(colored('Welcome to the SH.NOOB Series. In this video, I am introducing WTTR.IN ','red'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment