- 🌱 I’m currently learning about low-level system design. A bit of a different take from where my last commit says I was. (Ironic, isn't it?)
- 🤔 I’m looking for help with learning more about iOS and macOS development, what additional communities should I join?
- 👀 Looking for cool opportunities to build something awesome. I'm not about that HomeLab life, but I do want to prevent society from using excessively more power than we need to. (Limited resources, environmentalism, and all that.)
- 😄 Pronouns: he/him
class SoftwareEngineer:
def __init__(self):
self.technologies = {
"backend": {
"Python": ["flask-restful", "requests", "pytorch", "tensorflow", "mysql", "google-client-api"],
"Java": ["OpenCV", "mysql", "postgresql"],
"Swift": ["UIKit", "SwiftUI", "Swift Data", "Core Data", "SceneKit", "ARKit"]
},
"mobileApp": {
native: ["iOS Development", "tvOS Development", "watchOS Development", "visionOS/xrOS Development"]
},
"desktopApp": {
native: ["macOS Development", "Linux"]
},
"devOps": ["AWS", "Azure", "Docker", "GCP", "git", "gradle", "Maven", "Slack", "TeamCity"],
"databases": ["MySQL", "PostgreSQL", "SQLite"],
"misc": ["ffmpeg", "OpenCV"]
}
self.languages = ["Python", "Swift", "Java", "C++", "HTML", "CSS", "JavaScript"]
self.tools = ["Xcode", "VSCode", "Docker", "DataGrip"]
self.architecture = ["Single page applications", "event-driven", "design system pattern"]
def hello(self):
print("Hello, I hope you enjoy what you see!")
print("Please, let me know if you have any questions, comments, or feedback.")
me = SoftwareEngineer()
me.hello()