I'm a developer driven by a passion for building intelligent and useful applications. My main focus is at the intersection of AI/Machine Learning and Web Development.
Here's a bit more about me in a format I love:
class ApexAce:
def __init__(self):
self.name = "Ayush"
self.alias = "@Apex-ace"
self.location = "India"
self.interests = [
"Artificial Intelligence",
"Machine Learning",
"Full-Stack Web Dev",
"Building Cool Side Projects"
]
self.code = ["Python", "JavaScript", "SQL"]
def fun_fact(self):
return "I fix bugs at 3AM and ask why I wrote that code at 3PM"
def __repr__(self):
return f"Developer(name={self.name}, interests={self.interests})"

