Skip to content
View gd03champ's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report gd03champ

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gd03champ/README.md

Hi there πŸ‘‹

visitors

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

  1. YouTube-Automation YouTube-Automation Public

    This 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!

    Python 35 11

  2. llm4sql llm4sql Public

    Bridging the Gap Between AI and SQL Databases

    JavaScript 30 6

  3. smart-whitecane-proj-public smart-whitecane-proj-public Public

    We'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

  4. tacportal tacportal Public

    TacPortal is a 3-tier MERN (MongoDB, Express.js, React.js, Node.js) stack application. It is organized into three main components: the client, the server, and the database. Each component runs in i…

    JavaScript 4

  5. policypal-extention policypal-extention Public

    PolicyPal: Your Smart Companion for Terms & Privacy Analysis πŸ•΅οΈβ€β™€οΈπŸ”

    HTML 7

  6. Questionnaire-Bot Questionnaire-Bot Public

    AI 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