// GabM3.swift
// iOS Mobile Developer based in Padova, IT 🇮🇹
import Foundation
import SwiftUI
struct Gabriele: Developer {
let role = "iOS Mobile Developer"
let company = "Omnys"
let location = "Padova, Italy"
let stack: [Technology] = [
.swift, .swiftUI, .uiKit,
.watchOS, .watchKit,
.combine, .swiftConcurrency,
.xcode, .git
]
let currentlyExploring = [
"watchOS deep-linking & WCSession bridges",
"SwiftUI on small screens",
"Swift 6 strict concurrency"
]
let offTheClock: [Hobby] = [.running, .coffee, .tinkering]
}// Runcard FIDAL Standard — valid through May 2027
let upcomingRaces: [Race] = [
Race(name: "Mezza Verona", date: "Nov 2026", distance: .halfMarathon),
Race(name: "Mezza Bologna", date: "Mar 2027", distance: .halfMarathon),
Race(name: "Maratona Padova", date: "Apr 2027", distance: .marathon)
]// EOF — built with Swift, caffeine, and kilometers.



