Skip to content

Instantly share code, notes, and snippets.

View devp619's full-sized avatar
🎯
while(javascript) { salvation = true }

Debasish Panda devp619

🎯
while(javascript) { salvation = true }
View GitHub Profile
@devp619
devp619 / git-pull-recursive.sh
Created May 18, 2020 15:07 — forked from jonpugh/git-pull-recursive.rb
Lots of repos? Try "git-pull-recursive" to run "git pull" on all subfolders with a .git folder inside.Thanks to http://snipplr.com/view/62314/perform-git-pull-on-subdirectory-recursive/
# For use in a shell:
# Download this file to /usr/local/bin/git-pull-recursive, then chmod 755 it to install git-pull-recursive
find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;
@devp619
devp619 / index.html
Last active May 3, 2017 12:12
JS ScratchPad
<p id='help'>Help text</p>
<p><input type='text' id='name' name='name'></p>
<p><input type='number' id='age' name='age'></p>