Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View Vaswani2003's full-sized avatar
🎯
Locked In
🎯
Locked In

Block or report Vaswani2003

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
Vaswani2003/README.md

Vinamra Vaswani's GitHub Profile

Hey, I'm Vinamra Vaswani 👋

Backend Developer @ Viaplus · Learning, Building, Expressing


🧠 About Me (in Python)

class Vinamra:
    def __init__(self):
        self.name = "Vinamra Vaswani"
        self.role = "Backend Engineer @ Viaplus (R&D)"
        self.graduation_year = 2025
        self.location = "India"

        self.focus = [
            "Backend Systems",
            "Distributed Systems",
            "API Design",
            "Developer Tooling"
        ]

        self.interests = [
            "Systems Engineering",
            "AI/ML & LLMs",
            "EV Infrastructure",
            "Open-source"
        ]

        self.status = (
            "Building reliable systems, mentoring juniors, "
            "and learning by shipping real things."
        )

        self.skills = {
            "Languages": ["Python", "Go", "JavaScript", "C++"],
            "Backend": [
                "FastAPI",
                "REST APIs",
                "WebSockets",
                "Async Systems",
                "Microservices (when justified)"
            ],
            "Databases": ["MongoDB", "MySQL", "SQLite"],
            "Infra & Tools": [
                "Docker",
                "Git",
                "Postman",
                "Linux",
                "VS Code"
            ],
            "Practices": [
                "System Design",
                "Clean Architecture",
                "Testing",
                "Code Reviews"
            ],
            "Exploring": [
                "LLMs",
                "PyTorch",
                "API Gateways",
                "Observability & Monitoring"
            ]
        }

        self.hobbies = [
            "Riding",
            "Gym",
            "Reading",
            "Playing guitar",
            "Making raw YouTube videos"
        ]

    def ping(self, you="world"):
        return f"Hey {you}, let's build something meaningful — or learn by breaking it."

    def __repr__(self):
        return f"<Vinamra | Backend • Systems • Learning>"


if __name__ == "__main__":
    me = Vinamra()
    print(me.ping())

Get In Touch

Contributions

I welcome contributions to my projects! Feel free to fork any repository, make improvements, and submit a pull request. Whether it’s adding new features, fixing bugs, or improving documentation, your contributions are highly appreciated.

Thank you for visiting my GitHub profile! Let's connect and build something amazing together.

Pinned Loading

  1. Leetcode-Solutions Leetcode-Solutions Public

    Welcome to my LeetCode Solutions repository! This repository is dedicated to providing well-structured and efficient solutions to various LeetCode problems. Here, you'll find my personal solutions,…

    C++