Hello Everyone! 👋
📍 I'm Jad Alriyabi, a recent computer science graduate from Simon Fraser University. I am a tech enthusiast, entrepreneur, writer, and gamer :). Always open to collaborating on projects and innovative/disruptive ideas. Feel free to connect with me here:
classPerson:
def__init__(self, name, age, work, education, hobbies):
self.name=nameself.age=ageself.work=workself.education=educationself.hobbies=hobbiesclassJad(Person):
def__init__(self):
super().__init__(
name='Jad Alriyabi',
age=23,
work=['Absolute Security Developer', 'AI Practitioner', 'SFU', 'Entrepreneur'],
education=['SFU BSc Computer Science', 'AI concentration', 'Business Minor', 'CSM®', 'AWS Cloud Practitioner'],
hobbies=['Basketball', 'Snowboarding', 'Cooking']
)
defcurrent_location(self):
return'Vancouver, BC, CAN'defnext_locations(self):
return ['Istanbul, TURKEY', 'Tibet, CHINA']
defcurrently(self):
return {
'studying': ['Network Security'],
'reading': ['How to Read a Book', 'Apollo\'s Rhetoric'],
'tinkering': ['OpenAI API', 'Firebase', 'AWS']
}