Skip to content

Instantly share code, notes, and snippets.

View ubermachine's full-sized avatar
💭
when in doubt use bash

Shivam katoch ubermachine

💭
when in doubt use bash
View GitHub Profile
function range(start,end) {
if(start&&end){
return Array.from({length:end-start+1},(_,i)=>start++)
}
}
range(3,8);
@ubermachine
ubermachine / gitignore_reset.txt
Created June 11, 2020 15:23
Remove previously commited Files after initializing .gitignore
#Add .gitignore file and update it then do this-
git rm -r --cached .
git add .
git commit -m "remove gitignore files"
git push