Hi
Abdul Mateen
- 🔭 I’m currently Learning Software Architecture
- 🌱 I’m currently working on Software Design
- ❓ Ask me about anything related to Software Design, Software Development, Software Architecture
- ⚡ Fun fact: I use VIM.
class AbdulMateenzwl:
def __init__(self):
self.username = 'abdulmateenzwl'
self.name = 'Abdul Mateen'
self.position = 'Associate Software Engineer'
self.website = 'https://abdulmateenzwl.com'
self.twitter = '@abdulmateenzwl'
self.code = {
'backend': ['Java', 'Spring', 'Spring Boot', 'Java EE', 'Go Lang', 'NodeJS'],
'database': ['PostgreSQL', 'MySQL', 'SQLite3', 'Mongo DB', 'Redis'],
'devops': ['Docker', 'Linux', 'Jenkins', 'GitHub Actions', 'AWS'],
'frontend': ['ReactJS', 'Angular', 'Next JS', 'JavaScript', 'Tailwind CSS'],
'tools': ['Git', 'GitHub', 'GitLab'],
'misc': ['Firebase', 'TDD', 'SCRUM', 'gRPC']
}
self.architecture = ['Microservices', 'SPA', 'Serverless', 'MVC' ]
def __str__(self):
return f'{self.name} | {self.position}'
if __name__ == '__main__':
me = AbdulMateenzwl()
print(me)