Skip to content
View emidiovaleretto's full-sized avatar
๐Ÿš€
Keep learning!
๐Ÿš€
Keep learning!

Block or report emidiovaleretto

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please donโ€™t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
emidiovaleretto/README.md

Typing SVG


๐Ÿง‘โ€๐Ÿ’ป About Me

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

๐Ÿš€ Tech Stack

Core

Mobile & Frontend

DevOps & Tools

Testing


โœˆ๏ธ Featured Project โ€” simlog

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

๐Ÿ“Š GitHub Stats


โฑ๏ธ Weekly Coding Activity


๐ŸŽธ Beyond the Code

  • โœˆ๏ธ 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

Pinned Loading

  1. django-dublin-inn-real-estate django-dublin-inn-real-estate Public

    A web application for a Real Estate Company based in Dublin, Ireland, that allows the user to find a house, being able to filter them by location, property type, or price range.

    JavaScript 10 9

  2. candy-care-dublin-ecommerce candy-care-dublin-ecommerce Public

    An e-commerce application for a online store called Candy Care Dublin.

    JavaScript 2 2

  3. django-boutique-ado-ecommerce django-boutique-ado-ecommerce Public

    This is an e-commerce application for a online store called Boutique Ado.

    JavaScript

  4. my-budget-buddy my-budget-buddy Public

    My Budget Buddy is a personal finance management tool designed to help you track your expenses and income effortlessly. Whether you're managing daily spending, budgeting for future expenses, or simโ€ฆ

    HTML 1

  5. irlandanews.com.br irlandanews.com.br Public

    Implementation of https://www.tabnews.com.br

    JavaScript

  6. simlog-api simlog-api Public

    โœˆ๏ธ Flight simulator companion app. A personal logbook, checklist manager and SimBrief integration.

    Python