โโโ โโโโโโโโโโโโโโ โโโ โโโโโโโ โโโ โโโ โโโโโโโ โโโโโโโ โโโ โโโโโโโ โโโ
โโโ โโโโโโโโโโโโโโ โโโ โโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโ โโโ
โโโโโโโโโโโโโโ โโโ โโโ โโโ โโโ โโโ โโ โโโโโโ โโโโโโโโโโโโโโ โโโ โโโ โโโ
โโโโโโโโโโโโโโ โโโ โโโ โโโ โโโ โโโโโโโโโโโโโ โโโโโโโโโโโโโโ โโโ โโโ โโโ
โโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโ
โโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโ โโโโโโโโ โโโโโโโ โโโ โโโโโโโโโโโโโโโโโโ โโโ
๐ฑ Exploring AI/LLMs, Agents, and Chatbots
๐ง Living the Linux + Open Source life
๐ ๏ธ Into System Design, Backend Dev, and Automation
๐ฎ Loves mixing tech with games, anime, and sci-fi worlds
๐ Open to exciting opportunities!
I'm always looking for interesting projects and collaborations.
class Ishan0121:
def __init__(self):
self.name = "Ishan"
self.username = "Ishan0121"
self.origin = "India"
self.bio = "A passionate developer building the future one commit at a time."
self.exploring = ["AI / LLMs / Agents / Chatbots",
"System design / Backend / Automation",
"Linux & Open Source"]
self.interests = ["Tech", "Games", "Anime", "Sciโfi"]
self.open_to = ["New projects", "Collaborations", "Growing skills"]
def about(self):
print(f"๐ Hi, Iโm {self.name} ({self.username})")
print(self.bio)
print("\n๐ Exploring:")
for item in self.exploring:
print("-", item)
print("\n๐ฎ Interests:")
print(", ".join(self.interests))
print("\n๐ Open to:")
print(", ".join(self.open_to))
# Example usage
ishan = Ishan0121()
ishan.about()