from dataclasses import dataclass
from typing import Tuple
class Meta(type):
def __new__(cls, name, bases, attrs):
new_cls = super().__new__(cls, name, bases, attrs)
return dataclass(unsafe_hash=True, frozen=True)(new_cls)
class Bio(metaclass=Meta):
name : str = "🤝Sonder Liu"
job : str = "🏛Postgraduate Student"
designation : str = "🔣Lovely man"
base : str = "🏠Hangzhou, ZheJiang Province, China"
blog : str = "🐚Upcoming..."
class Stack(metaclass=Meta):
languages : Tuple[str, ...] = ("Python", "C++")
databases : Tuple[str, ...] = ("SQLite", "Postgres")
devices : Tuple[str, ...] = ("MacBook Pro", "iPad Pro", "OnePlus 12")
ongoing : Tuple[str, ...] = ("DL Model", "Paper reading")
class Recent(metaclass=Meta):
project : Tuple[str, ...] = ("Weather forecast with Deep Learning")
working : Tuple[str, ...] = ("None")
learning : Tuple[str, ...] = ("Linear Algebra", "Probability Theory")
Brain Reconstruction
Truth does not spare me, nor do I spare it.
-
Hangzhou Dianzi University
- Hangzhou
-
03:20
(UTC +08:00)
Highlights
- Pro
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.