Hey there! I'm Pranav Kumar, a tech enthusiast and developer with a slight coding addiction... seriously, I find any excuse to just write more code! I'm passionate about anything FOSS and always learning something new.
class Developer:
def __init__(self):
self.name = "Pranav Kumar"
self.age = 22
self.role = "Software Engineer"
self.location = "Bangalore, India"
def get_skills(self):
return {
"languages": ["Python", "C", "Kotlin", "Java", "SQL"],
"technologies": ["MySQL", "Linux", "Git", "Android Development", "Web Development"],
"currently_learning": ["LLMs", "Data Structures & Advanced Algorithms"]
}
def currently_working_on(self):
return [
"MicroMood : A minimal ad-free, open source, mood tracker with micro-notes.",
"TheLiminalYears : A GitHub Pages running digital journal & blog."
]
me = Developer()