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()
|
|