class GitHubBio:
def __init__(ryan):
ryan.internship_experience = [
{
"company": "HP",
"position": "Software Developer Intern",
"duration": "Summer 2025"
}
{
"company": "Policy Reporter",
"position": "Software Developer Co-op",
"duration": "Fall 2024"
}
{
"company": "Canmora Tech",
"position": "Software Engineering Co-op",
"duration": "Winter 2024"
}
]
ryan.education = [
{
"university": "The University of British Columbia",
"major": "Computer Science",
"graduation": "December 2026"
}
]
ryan.fields_of_interests = [
"Software Development",
"Snowboarding",
"Photography",
]
if __name__ == '__main__':
GitHubBio_instance = GitHubBio()
GitHubBio_instance.display_bio()
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


