Welcome to my quirky corner of the internet!
- Exploring new tech, sometimes just to look cooler.
- If you love coffee, coding, and anime world, we’re already best friends!
- Debugging adventures that’ll make you laugh and cry at the same time.
- Managing time between coding and... well, more coding.
- Send me a message via carrier pigeon (or just use email).
- I’ve probably broken something today, but hey, breaking stuff is part of learning! 🎉
from typing import Tuple, List, Dict
class Kain(object):
pass
class Attributes(Kain):
@property
def contact(self) -> Tuple[str, str, str]:
discord = "kain0304"
facebook = "/AzenKain"
email = "[email protected]"
return discord, facebook, email
@property
def life(self) -> Tuple[List[str], int]:
langs = ['Vietnamese', 'Japanese', 'English']
age = 20
return langs, age
@property
def coding(self) -> Tuple[Dict[str, List[str]], List[str], List[str]]:
langs = {
'expert': [''],
'intermediate': ['golang','python', 'c#', 'c++', 'js', 'ts'],
'learning': ['asm', 'java']
}
specialities = ['unity developer', 'web developer', 'data engineer']
ide = ['vscode', 'visual studio', 'webstorm', 'unity']
return langs, specialities, environnement