class Samuel:
def __init__(self, username="samuelswank", year=2026):
self.username = username
self.name = "Samuel Adam Swank"
self.skills = {
"C#" : {
"Entity Framework Core",
"Windows Presentation Foundation",
"xUnit",
},
"JavaScript / Node.js" : {
"Express",
"jQuery"
"React",
},
"Python" : {
"FastAPI",
"Flask",
"Matplotlib",
"pandas",
"scikit-learn",
},
'R': {
"Shiny",
"tidyverse",
},
"Databases": {
"SQL" : {
"libraries": {
"JavaScript / Node.js": { "knex", }
}
"variants": { "MySQL", "PostgreSQL", },
},
"MongoDB": {
"libraries": {
"JavaScript / Node.js": { "mongoose", }
}
},
},
"DevOps" : {
"Amazon Web Services" : {
"Elastic Beanstalk",
"AWS Relational Database Management System",
},
},
"Natural Languages": {
"Mandarin" : "我住台灣兩年"
}
}
self.education = {
"certifications": ( 'Data Science', 'Bloom Institute of Technology' ),
"degrees" : { "Associates" : ( "Computer Science", "Weber State University" ) }
}
self.employment = {
"desired" : {
"company" : "Your Company",
"role" : "Software Engineer",
},
"current": {
"company" : "Federal Express Corporation",
"role" : "Senior Operations Administrator"
}
"former" : {
"company" : "LearnIn",
"role" : "Back End Web Development Intern"
}
}
def __str__(self):
description = """
Swank, Samuel Adam
Software Engineer and Researcher.
Absolutely loves Star Trek and the Greek philosophy which inspired it.
Runs every morning and needs to start hiking and swimming again.
"""
return description
def learn(self, new_skill):
self.skills.append(new_skill)
Samuel = Samuel()Medium : Samuel Swank
LinkedIn : Samuel Swank

