I'm Jayant Sogikar, a developer with interests in Backend Dev with Python, Cloud Computing, AI/ML and Mobile Applications. I enjoy writing effective code that helps a project progress while also having a keen eye on the design. You'll generally find me scratching my head and writing python scripts.
class MoreInfo:
def __init__(self):
self.name = 'Jayant Sogikar'
self.role = 'Intern @ Oracle'
self.education = 'Information Science from Ramaiah Institute Of Technology'
self.code = ['Python','Swift','MATLAB','Dart','Java','Ansible','Bash','C']
self.library = ['Tensorflow','OpenCV','Gensim']
self.framework = ['Docker','Kubernetes','Flask','Dash','Flutter','Huggingfaces']
self.db = ['MongoDB','InfluxDB','Firebase','MySQL','Oracle']
self.moreInterests = ['Image Processing','UI/UX','Anime']
self.whatAmIUpto = 'Reading about Storage Engines in Databases'
def greet(self):
print('Hey, Thanks for popping by. Hope you had a great time!')
me = MoreInfo()
me.greet()