class Roman_Radchenko:
def __init__(self):
self.name = "Roman Radchenko"
self.location = "Kyiv, Ukraine"
self.bio = "Hobbyist exploring..."
# Core Interests
def get_interests(self):
return [
"Deep Learning",
"Blockchain",
"AI / ML",
"Web3",
"Smart Contracts",
"Python",
"FinTech"
]
# Social Links
def get_socials(self):
return {
"github": ".../github.com/radchr",
"linkedin": ".../linkedin.com/in/...",
}