π About Me πΌ
class AboutMe:
def __init__(self):
self.name = "Edwin Peraza"
self.education = "B.S. in Computer Science at California State University, Fullerton"
self.description = "I am passionate about learning new things and solving complex problems."
self.skills = {
"programming_languages": ["Python", "JavaScript", "Swift", "C++", "C"],
"front_end_skills": [
"HTML", "CSS", "JavaScript", "TypeScript", "React.js", "Next.js", "Astro", "TailwindCSS", "Bootstrap", "shadcn"
],
"back_end_skills": ["Python", "FastAPI", "Firebase"],
"mobile_development": ["Swift", "SwiftUI", "React Native"],
"databases": ["MySql", "SQLite3", "DynamoDB", "Firebase"],
"version_control": ["Git", "GitHub"],
"tools": ["Postman", "Figma"]
}
def __str__(self):
return f"Hi, I'm {self.name}. {self.description}!"
me = AboutMe()
print(me)
```