# ------------------------------
# about_me.py
# ------------------------------
```python
class Engineer:
def __init__(self):
# Basic Info
self.name = "Samir Ouaammou"
self.role = "Software Developer"
self.location = "Morocco"
self.current_focus = "Software Development"
# Languages
self.langs = ["C", "C++", "C#", "Python", "JavaScript/TypeScript", "SQL"]
# Web Development
self.web = ["HTML", "CSS", "React", "Next.js", "Node.js", "Tailwind CSS"]
# Tools & Environment
self.tools = ["Bash", "Git", "Linux", "Docker", "PostgreSQL"]
def __str__(self):
return f"""
Name: {self.name}
Role: {self.role}
Location: {self.location}
Currently: {self.current_focus}
Languages: {', '.join(self.langs)}
Web: {', '.join(self.web)}
Tools: {', '.join(self.tools)}
"""
