from typing import Tuple, List, Dict
class Stepboomz:
pass
class Attributes(Stepboomz):
@property
def contact(self) -> Tuple[str]:
email = "[email protected]"
return email
@property
def life(self) -> Tuple[List[str], int]:
langs = ['Thailand','English']
age = 26
return langs, age
@property
def coding(self) -> Tuple[Dict[str, List[str]], List[str], List[str], Dict[str]]:
langs = {
'expert' : ['flutter','python'],
'intermediate': ['react', 'js','go'],
'learning' : ['c', 'c++', 'c#', 'asm', 'java']
}
specialities = ['web/app reverse engineering', 'fullstack', 'ai']
ide = ['vscode']
pc = {
'MacOS': {
'macbook air m2': {
'processor': 'm2 | 8 cores',
'ram' : '8gb',
'gpu' : 'm2 | 8 cores'
}
},
'Windows': {
'custom': {
'processor': 'AMD ryzen 7 5800X | 8 cores',
'ram' : '16gb',
'gpu' : 'nvidia 3070 | 5888 CUDA cores'
}
}
}
return langs, specialities, ide, pc
I may be slow to respond.
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.