Skip to content
View vivaansinghvi07's full-sized avatar
🐍
pythoneer
🐍
pythoneer
Block or Report

Block or report vivaansinghvi07

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
vivaansinghvi07/README.md
class Vivaan(Person):

    def __init__(self) -> None:
        super().__init__(age=16, pronouns=('he', 'him'), nationality="Indian", citizenship="American")

    @property
    def website(self) -> str:
        return "https://vivaansinghvi07.github.io"

    @property 
    def hobbies(self) -> list[str]:
        return ["Programming", "Working Out", "Biking", "Gaming", "Drumming"]

    @property
    def languages(self) -> dict[str, dict[str, list[str]]]:
        return {
            "Real Life": {
                "Fluent": ["English", "Hindi"],
                "Learning": ["German"]
            },
            "Programming": { 
                "Decent": ["Python", "JavaScript"],
                "Amateur": ["C", "C++", "C#", "Shell", "Java", "TypeScript"]
            }
        }

    @property
    def contact(self) -> dict[str, list[str]]:
        return {
            "Email": ["vivaansinghvi8@gmail.com", "singhvi.vivaan@gmail.com"]
        }

Pinned

  1. smoky-mountain-data-comp smoky-mountain-data-comp Public

    Solutions for the SMC Data Challenge #1 2023

    Jupyter Notebook 1

  2. dreamberd-interpreter dreamberd-interpreter Public

    Interpreter for the perfect programming language

    Python 203 2

  3. rubix-cube-solver rubix-cube-solver Public

    A computer vision-powered website that allows users to send a video of a Rubik's cube, model it, and solve it.

    Python

  4. atom-simulation atom-simulation Public

    A particle simulation created in C with approaches to gravitational approximation.

    C 1

  5. kenken-solver kenken-solver Public

    Solves a KenKen Puzzle using computer vision!

    Jupyter Notebook

  6. bim bim Public

    A text editor trying to be like Vim

    C