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"
🎯
Focusing
Programmer | Developer | Chess Player | AI & ML Enthusiast
-
IIIT Hyderabad
- Noida, Uttar Pradesh
- https://singhnikhil.netlify.app
- @SinghNikhil1920
Pinned Loading
-
-
HackerRank-Practice-Problems
HackerRank-Practice-Problems PublicThis repository contains solutions to practice problems on HackerRank with proper elaborations wherever necessary.
C
-
-
Patterns-Pyramids
Patterns-Pyramids PublicThis repository will contain source codes of unique patterns and pyramids mostly written in C.
C
-
The-C-Programming-Language
The-C-Programming-Language PublicThis 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
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.