Welcome to my profile! Iโm a software engineer with 2+ years of experience working across the full stack.
๐ How I'd Define Me... Literally
class SoftwareEngineer extends Me:
def __init__(self):
self.name = "Supraja Kumbargeri"
self.education = "MS in Computer Science, University of Colorado Boulder"
self.experience_years = 2
self.skills = {
"Languages": ["Python", "C++", "Java", "JavaScript", "Bash"],
"Tools": ["Linux", "Docker", "Kubernetes", "AWS", "Git", "ROS2"],
"Databases": ["PostgreSQL", "MySQL", "Redis", "InfluxDB"],
"Frontend": ["React", "HTML/CSS"],
"Other": ["REST APIs", "WebSocket", "CI/CD", "Grafana", "Jira"]
}
self.values = ["Curiosity", "Lifelong Learning", "Ownership"]
def work_style(self):
return "I experiment, iterate, and enjoy turning ambiguous ideas into working products."
def say_hello(self):
print(f"Hi, I'm {self.name} ๐")
print("I'm passionate about building scalable, thoughtful software systems.")
if __name__ == "__main__":
supraja = SoftwareEngineer()
supraja.say_hello()

