Hi, I'm Socrates
🚀 DevOps Engineer | ☁️ Cloud Enthusiast | ⚙️ Automation Aficionado
Welcome to my GitHub profile! Here’s a snapshot of what I’m working on and what drives me professionally and personally.
-
🔭 What I'm Working On:
- Optimizing Workflows: Continuously refining CI/CD pipelines and enhancing container orchestration to drive efficiency and reliability in my projects.
-
🌱 What I’m Exploring:
- Expanding My Home Lab: Experimenting with NAS setups and exploring hardware options for running Kubernetes clusters at home.
- Exploring AI with LLMs: Building the infrastructure needed to run and fine-tune large language models using GPUs, integrating advanced AI capabilities into my personal tech stack.
🖥️ Beyond Work: I enjoy 🚴♂️ cycling, ☕ quality coffee, and staying updated on tech trends. Always on the lookout for the next challenge.
#!/usr/bin/env python3
class DevOpsEngineer:
def __init__(self):
self.name = "Socrates Lopez"
self.role = "DevOps Engineer"
self.skills = ["Python", "Docker", "Kubernetes", "Terraform", "CI/CD Pipelines"]
def say_hi(self):
print("👋 Hello, and thanks for checking out my profile.")
print(f"I specialize in cloud infrastructure and automation using tools 🛠️ like {', '.join(self.skills)}.")
print("If your 👀 have made it this far, let me know by hitting that ⭐ button!")
def invite_collaboration(self):
print("I’m always open to collaboration. Let’s connect 🤝 and build something great together!")
# Instantiate the DevOpsEngineer class and call its methods
if __name__ == "__main__":
socrates = DevOpsEngineer()
socrates.say_hi()
socrates.invite_collaboration()
|
|