Skip to content

Instantly share code, notes, and snippets.

View Nikit-Singh's full-sized avatar
Building stuff

Nikit Singh Nikit-Singh

Building stuff
View GitHub Profile
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active May 3, 2024 12:56
Online Resources For Web Developers (No Downloading)
@satwikkansal
satwikkansal / cheatsheet.cpp
Last active June 27, 2023 04:53
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.
@gs-ysingh
gs-ysingh / interview.js
Last active February 17, 2022 06:13
JS Interview
1. Write poly-fill of Object.create and explain why it worked:
if(typeof Object.create != "function") {
Object.create = function(param) {
var Fun = function(){};
Fun.prototype = param;
return new Fun();
}
}