class explicitworkload:
def __init__(self):
self.username = 'explicitworkload'
self.name = 'explicitworkload'
self.position = 'Red Hat Associate Principal Solution Architect'
self.web = 'https://kubernetes.day'
self.cv = 'https://kubernetes.day/resume'
self.code = {
'backend': ['PHP', 'Django', 'Java', 'C#'],
'database': ['PostgreSQL', 'MySQL', 'SQLite3', 'Mongo DB', 'Redis'],
'devops': ['Tanzu Kubernetes Grid', 'Tanzu Application Platform', 'vSphere with Tanzu', 'Docker', 'Podman', 'Linux', 'Jenkins', 'GitHub Actions', 'AWS', 'Proxmox'],
'frontend': ['HTML5', 'CSS3', 'JavaScript', 'ReactJS', 'Boostrap'],
'tools': ['GIT', 'GitHub', 'GitLab', 'Nginx'],
'misc': ['TDD', 'ML']
}
self.architecture = ['SPA', 'MVC', 'Serverless', 'microservices']
def __str__(self):
return f'{self.username} | {self.position}'
if __name__ == '__main__':
me = explicitworkload()
print(me)