#!/usr/bin/env python3╔══════════════════════════════════════════════════════════════╗
║ ║
║ ██████╗ █████╗ ██╗ ██╗██╗ ██╗██╗ ║
║ ██╔══██╗██╔══██╗██║ ██║██║ ██║██║ ║
║ ██████╔╝███████║███████║██║ ██║██║ ║
║ ██╔══██╗██╔══██║██╔══██║██║ ██║██║ ║
║ ██║ ██║██║ ██║██║ ██║╚██████╔╝███████╗ ║
║ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ║
║ ║
║ Full Stack Developer · India 🇮🇳 ║
║ ║
╚══════════════════════════════════════════════════════════════╝
class Rahul:
def __init__(self):
self.name = "Rahul Kumar Ranjan"
self.role = "Full Stack Developer"
self.location = "India 🇮🇳"
self.email = "kjrahul21@gmail.com"
self.hobbies = ["coding", "traveling", "exploring tech"]
def currently(self):
return {
"🔧 mastering" : "Django",
"📚 learning" : "Data Structures & Algorithms",
"🚀 building" : "cool stuff on the internet",
}
def tech_stack(self):
return {
"languages" : ["Python", "C++", "C", "JavaScript"],
"backend" : ["Django", "REST APIs"],
"frontend" : ["HTML5", "CSS3", "Bootstrap"],
"tools" : ["Git", "Docker", "Kubernetes", "GKE"],
"databases" : ["PostgreSQL", "SQLite"],
"platforms" : ["WordPress", "Linux"],
}
def __str__(self):
return "building things that matter, one commit at a time."
me = Rahul()
print(me)
# >>> building things that matter, one commit at a time. ╭──────────────────────────────────────────╮
│ │
│ 📫 kjrahul21@gmail.com │
│ 💼 Open to collaborate on cool stuff │
│ ⚡ Fun fact: I debug with print() │
│ │
╰──────────────────────────────────────────╯
⌨️ with ❤️ by Rahul


