4th year Software Systems Student @ SFU
DevOps Specialist
A little more about me...
#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareDeveloper:
def __init__(self):
self.name = "Christopher Albert Tan"
self.role = "Software Developer"
self.skills = {
"language" : ['Python', 'HCL', 'C++', 'C', 'Rust', 'Java', 'JavaScript', 'HTML', 'CSS', 'Haskell', 'mySQL'],
"framework" : ['React', 'Node.js', 'NEXT', 'Typescript'],
"tools" : ['VSCode', 'AndroidStudio', 'GitHub', 'TravisCI', 'Vercel', 'Heroku', 'Linux', 'Windows']
}
def say_hi(self):
print("Thanks for dropping by, feel free to connect with me!")
def working_on(self):
print("Currently working my on project, mmdb.")
def introduction(self):
self.say_hi()
self.working_on()
me = SoftwareDeveloper()
me.introduction()