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:
class Person:
def __init__(self, name, age, work, education, hobbies):
self.name = name
self.age = age
self.work = work
self.education = education
self.hobbies = hobbies
class Jad(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']
)
def current_location(self):
return 'Vancouver, BC, CAN'
def next_locations(self):
return ['Istanbul, TURKEY', 'Tibet, CHINA']
def currently(self):
return {
'studying': ['Network Security'],
'reading': ['How to Read a Book', 'Apollo\'s Rhetoric'],
'tinkering': ['OpenAI API', 'Firebase', 'AWS']
}