Skip to content

Instantly share code, notes, and snippets.

View S-Voss's full-sized avatar
🎗️
Set your sights so high that even failure has echoes of glory.

Stephen S-Voss

🎗️
Set your sights so high that even failure has echoes of glory.
View GitHub Profile
@S-Voss
S-Voss / gist:3eecc8794c67c7895920289e65bde6eb
Created January 9, 2020 02:48
Filter Files During Github Reviews
// Paste below gist into Chrome Developer Tools Console:
[...document.querySelectorAll('[data-path]:not([data-path^="e2e"]) .js-reviewed-checkbox:not(:checked)')].forEach(el => el.click())
@S-Voss
S-Voss / remove-node_modules.txt
Created January 20, 2019 03:35
Remove node_modules after pushing to git repository
#add 'node_modules' to .gitignore file
git rm --cached node_modules
git commit -m 'Added node_modules to .gitignore file. Also removed node_modules from git tracking and repository.'
git push origin master