$ whoami
name: Luca
location: Berlin, Germany
role: Software Tinkerer
currently_exploring:
- Systems & Infrastructure
- Open Source Contributions
- Automation & DevOps
- Linux Ricing
motto: >
"First, solve the problem.
Then, write the code." |
#!/usr/bin/env python3
class SudoLitigator:
def __init__(self):
self.name = "Luca"
self.base = "Berlin, DE"
self.code = [
"Python", "Bash",
"JavaScript", "Go"
]
self.tools = [
"Docker", "Linux",
"Git", "Neovim"
]
def __str__(self):
return "Building cool stuff." |
