Created
June 21, 2024 19:36
-
-
Save garvit-exe/3e9db7dc8008bf0ed60ec06892ce4129 to your computer and use it in GitHub Desktop.
A python snippet that describes the current me
This file contains hidden or 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
class Intro: | |
def __init__(self): | |
self.username = 'garvit-exe' | |
self.name = 'Garvit Budhiraja' | |
self.role = 'Computer Science Student' | |
self.github = 'https://github.com/garvit-exe' | |
self.linkedin = 'https://linkedin.com/in/garvit-budhiraja' | |
self.code = { | |
'concepts': ['DSA', 'OOP', 'DBMS', 'ML', 'Computer Networking', 'Cloud Computing'], | |
'frontend': ['HTML', 'CSS', 'JavaScript', 'Bootstrap'], | |
'backend': ['Flask', 'NodeJS', 'Express', 'PHP'], | |
'database': ['MySQL', 'SQLite'], | |
'app-development': ['Swift'], | |
'competitive-coding': ['C++', 'Java', 'Python'], | |
'tools': ['GIT', 'GitHub', 'Vercel', 'GitLab', 'Jupyter Notebook', 'Linux', 'Wordpress', 'Canva', 'Vim'] | |
} | |
self.aim = 'Aspiring Innovator' | |
def __str__(self): | |
return f'{self.name} | {self.role} | {self.aim}' | |
if __name__ == '__main__': | |
whoami = Intro() | |
print(whoami) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment