from dataclasses import dataclass, field
from typing import List
@dataclass
class SoftwareEngineer:
name: str = "Emidio Valeretto"
location: str = "Dublin, Ireland ๐ฎ๐ช"
role: str = "Backend Engineer"
primary_stack: str = "Django REST Framework ๐"
languages: List[str] = field(default_factory=lambda: [
"Python", "JavaScript", "TypeScript"
])
technologies: dict = field(default_factory=lambda: {
"backend": ["Django", "Django REST Framework", "PostgreSQL", "Redis"],
"frontend": ["React Native", "Expo", "Tailwind CSS"],
"devops": ["Docker", "GitHub Actions", "AWS", "Nginx"],
"testing": ["pytest", "factory-boy", "pytest-django"],
})
currently_building: str = "simlog โ a Flight Simulator companion app โ๏ธ"
hobbies: List[str] = field(default_factory=lambda: [
"Microsoft Flight Simulator 2024 ๐ซ",
"Bass guitar ๐ธ",
"Open source contributions ๐",
])
fun_fact: str = "I once diverted a transatlantic flight to JFK due to a fuel emergency... in a simulator. ๐
"
me = SoftwareEngineer()A companion app for Microsoft Flight Simulator 2024 โ personal flight logbook, checklist manager and SimBrief integration.
โ
JWT Authentication โ
Flight Logbook CRUD
โ
SimBrief Integration โ
Checklist Manager
โ
52 automated tests โ
CI/CD with GitHub Actions
๐ React Native App ๐ Deploy
โ๏ธ Virtual pilot โ Microsoft Flight Simulator 2024, flying the Airbus A320 family.- ๐ธ Bass player โ the low end is where the groove lives
- ๐ฎ๐ช Living in Dublin โ loving the craic (and the rain)
- ๐ Open source enthusiast โ if it helped you, drop a โญ
"First, solve the problem. Then, write the code." โ John Johnson



