nullamix - Overview

👋 Hi, I'm AmirHossein (nullmix)

🚀 DevOps Engineer | ☁️ Cloud Enthusiast | 🔧 Automation Advocate

GitHub followers

class DevOpsEngineer:
    def __init__(self):
        self.name = "nullamix"
        self.role = "DevOps Engineer"
        self.languages = ["Python", "Bash", "Go"]
        self.containers = ["Docker", "Kubernetes"]
        self.iac = ["Terraform", "Ansible"]
        self.ci_cd = ["GitLab CI", "GitHub Actions"]
        self.monitoring = ["Zabbix", "Prometheus", "Grafana", "ELK"]

    def say_hi(self):
        print("Thanks for dropping by!")

me = DevOpsEngineer()
me.say_hi()