#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Alexandre Reis"
self.role = "Backend Software Engineer"
self.language_spoken = ["pt_PT", "en_US", "es_ES"]
self.traits = ["helpfull", "funny", "straight-forward"]
self.hobbies = ["surf", "gaming", "motorcycles", "music"]
self.stack = ["php", "python", "c#", "node.js", "java", "typescript"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.say_hi()
I'm a funny human being with will to improve every day and to help other achieve their goals.
"Focus on signal over noise. Don't waste time on stuff that doesn't actually make things better"
by Elon Musk