Last active
January 14, 2022 11:12
-
-
Save grpnpraveen/8323394dc3de5f6c6fa529baafc06e76 to your computer and use it in GitHub Desktop.
About Me
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# WHOAMI | |
# To know copy this entire text and paste it in https://www.onlinegdb.com/online_python_compiler and run the code.. | |
# I assure you that running this code cause nothing except printing | |
# text on the screen. | |
# NOTE: RUN THE CODE. | |
# by GALI RAVI PRAVEEN, CSE. | |
import sys | |
import time | |
def typewriter(data): | |
for char in data: | |
sys.stdout.write(char) | |
sys.stdout.flush() | |
if(char =="/n" or char=="."): | |
time.sleep(0.3) | |
else: | |
time.sleep(0.1) | |
def colored(r, g, b, text): | |
return "\033[38;2;{};{};{}m{} \033[38;2;255;255;255m".format(r, g, b, text) | |
class mylife(): | |
def __init__(self): | |
print("") | |
txt=colored(250, 189, 52,"MyLife started : Like this...") | |
typewriter(txt) | |
def about(self): | |
print() | |
print() | |
txt=colored(149, 171, 39,"I was given an opportunity on 25th FEB 2002 to prove myself on planet EARTH. As usual as a normal kid, my childhood was joyful with a lot of good memories that I have no regrets of. When I was a child I used to memorise the math which I didn't understand even in my sixth grade, but later that year I really wanted to learn math in such a way that I need to solve any kind of problems. At that time I realised that nothing is too hard if we are willingly given it some time. That incident changed my whole perspective of life. But the main story why I am typing this is I am a") | |
typewriter(txt) | |
txt=colored(254, 126, 38,"Computer Science Engineer") | |
typewriter(txt) | |
txt=colored(149, 171, 39,". The reason I chose this stream is, It was in 2015 when my father bought a new smartphone. This gadget attracted me to a great extent. I used to spend time with it by playing games, listening to music and surfing the internet. Among these things, I was most exhilarated playing the “TEMPLE RUN” game. It grabbed my attention. One day one of my friends challenged me to beat his score in this game. I accepted the challenge and started to try to get a score higher than his. Suddenly my phone hanged. I was tensed as my desire of defeating him seemed to blur. I tried a lot to get over that situation, but I couldn't. My father and I went to a mobile service shop to get the mobile repaired. While the mechanic repaired my phone, I asked them all my doubts regarding this problem to him. On that day I decided to be a programmer. I say this makes me, me.") | |
typewriter(txt) | |
def more(self): | |
print() | |
txt=colored(250, 189, 52,"Some More: ") | |
typewriter(txt) | |
print() | |
print() | |
txt=colored(254, 126, 38,"Right now, I am an enthusiastic programmer, currently programming in Cpp and Python, and a quick learner. I have experience in developing for both web and android. I really enjoy learning new things. I need to be helpful to the world with the knowledge I have.") | |
typewriter(txt) | |
praveen= mylife() | |
praveen.about() | |
print() | |
praveen.more() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment