from dataclasses import dataclass, field
from typing import List, Dict
@dataclass
class GD03:
name: str = "Ganish Deepak"
role: str = "DevOps SDE @ Swiggy"
location: str = "Bengaluru, India"
# Contact & Socials
urls: Dict[str, str] = field(default_factory=lambda: {
"home": "https://gd03.me",
"logs": "https://gd03.me/logs",
"github": "https://github.com/gd03champ",
"twitter": "@gd03n"
})
# The Tech Stack
stack: Dict[str, List[str]] = field(default_factory=lambda: {
"core": ["Python", "Go", "Node.js"],
"llm_ops": ["LangChain", "Llama.cpp", "HuggingFace", "RAG", "MCP"],
"infra": ["Kubernetes", "Terraform", "AWS", "Istio", "Karpenter"],
"backend": ["FastAPI", "GraphQL", "gRPC", "PostgreSQL", "Redis"],
"observability": ["Prometheus", "Grafana", "Loki", "OpenTelemetry"]
})
def get_current_focus(self) -> str:
"""Returns the current high-priority thread."""
return "Optimizing LLM Infra & Building AI Agents π"
def hackathon_mode(self) -> bool:
"""Checks history for Hackathon wins."""
wins = ["SIH 2021", "SIH 2025", "BITFEST x2", "Meta SparkAR"]
return len(wins) > 0
def deploy(self):
"""Bootstraps the developer profile."""
print(f"Initializing {self.name} v2.0...")
print(f"π Context: {self.role}")
print(f"π οΈ System Architecture: {', '.join(self.stack['infra'][:3])} + LLMs")
print(f"π― Mission: {self.get_current_focus()}")
if self.hackathon_mode():
print("π Status: Serial Hackathon Winner")
print(f"π Connect: {self.urls['home']}")
if __name__ == "__main__":
me = GD03()
me.deploy()
Pinned Loading
-
YouTube-Automation
YouTube-Automation PublicThis project is an attemt to make videos from instagram clips and upload to youtube all automatically! (Mid night ideaπ) And suprisingly I made it work!
-
smart-whitecane-proj-public
smart-whitecane-proj-public PublicWe've created a smart whitecane project with working prototype that enable blind people to do extraordinary tasks with ease making their life lot more easier and happier π (Smart India Hackathon Wiβ¦
Python 1
-
policypal-extention
policypal-extention PublicPolicyPal: Your Smart Companion for Terms & Privacy Analysis π΅οΈββοΈπ
HTML 7
-
Questionnaire-Bot
Questionnaire-Bot PublicAI Chatbot that has Question Generation that support students, educators to prepare for school, college and competitive exams and entrances by generating Mock tests and preparing question sets and β¦
Python 3
If the problem persists, check the GitHub status page or contact support.




