Skip to content

Instantly share code, notes, and snippets.

@garvit-exe
Created June 21, 2024 19:36
Show Gist options
  • Save garvit-exe/3e9db7dc8008bf0ed60ec06892ce4129 to your computer and use it in GitHub Desktop.
Save garvit-exe/3e9db7dc8008bf0ed60ec06892ce4129 to your computer and use it in GitHub Desktop.
A python snippet that describes the current me
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