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

Block or report Nikhil-1920

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

Hi there! hi I'm Nikhil


github About Me

from dataclasses import dataclass
from typing import Tuple


class Meta(type):
    def __new__(cls, name, bases, attrs):
        new_cls = super().__new__(cls, name, bases, attrs)
        return dataclass(unsafe_hash=True, frozen=True)(new_cls)


class Bio(metaclass=Meta):
    name        : str = "Nikhil Singh"
    university  : str = "IIIT-Hyderabad"
    course      : str = "M.Tech. CSE"
    base        : str = "Noida, India"
    blog        : str = "https://medium.com/@nikhilsingh3"


class Stack(metaclass=Meta):
    languages   : Tuple[str, ...] = ("Python", "C", "C++", "Shell")
    databases   : Tuple[str, ...] = ("MySQL", "MongoDB")
    misc        : Tuple[str, ...] = ("Docker", "Celery")
    ongoing     : Tuple[str, ...] = ("Django", "Flask")


class Social(metaclass=Meta):
    twitter     : str = "SinghNikhil1920"
    linkedin    : str = "nikhil-singh-b2a78014a"

   


snake

Pinned Loading

  1. Cracking-The-Coding-Interview-6th-Edition Cracking-The-Coding-Interview-6th-Edition Public

    C++

  2. HackerRank-Practice-Problems HackerRank-Practice-Problems Public

    This repository contains solutions to practice problems on HackerRank with proper elaborations wherever necessary.

    C

  3. Number-System-Conversion Number-System-Conversion Public

    C

  4. Patterns-Pyramids Patterns-Pyramids Public

    This repository will contain source codes of unique patterns and pyramids mostly written in C.

    C

  5. The-C-Programming-Language The-C-Programming-Language Public

    This repository will contain all the example programs as well as problems with their solutions of the book "The C Programming Language" written by Dennis Ritchie and Brian Kernighan based on ANSI C…

    C