About Me
from typing import Tuple
class Attributes(Tekky):
@property
def contact() -> Tuple[str, str, str]:
discord = "tekky#6177"
telegram = "t.me/xtekky"
email = "github@g4f.ai"
return discord, telegram, proton
@property
def life() -> Tuple[list, int]:
langs = ['French', 'German', 'Spanish', 'English']
age = 17
return langs, age
@property
def coding() -> Tuple[dict, list, list]:
langs = {
'expert': ['python'],
'intermediate': ['go', 'js'],
'learning': ['c', 'c++', 'c#', 'asm', 'java']
}
specialities = ['web/app reverse engineering', 'fullstack']
environnement = ['vscode']
return langs, specialities, environnement