Cooper Cazier
cooper.py
# cooper.py

class Cooper:
    "I build apps"
    
    name = "Cooper Cazier"
    location = "Pasco, Wa"
    company = "Crescent Developments"
    
    interests = [
        "brain-computer interfaces",
        "neuroscience",
        "artifical intelligence",
        "building software",
        "solving problems"
    ]
    
    skills = [
        "Python",
        "JavaScript",
        "TypeScript",
        "React Native",
        "Swift",
        "AI",
    ]
    |