Skip to content

Instantly share code, notes, and snippets.

View ScriptKiddie1337's full-sized avatar
💚
Making Things Pretty

Jordan Silver ScriptKiddie1337

💚
Making Things Pretty
View GitHub Profile
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active November 12, 2023 23:00
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>
@andreasonny83
andreasonny83 / .gitignore
Last active July 27, 2024 21:58
Gitignore template for JavaScript projects
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
/dist
/tmp
/out-tsc
# Runtime data
pids
*.pid
@amritsinghbains
amritsinghbains / removeTheConvo.js
Last active January 15, 2019 14:08
This scripts is for lazy people who want to get rid of all LinkedIn messages at once. This works with the latest LinkedIn 2018. Tested on 15th April 2018
var removeTheConvo = function()
{
try{
$(".msg-thread__topcard-btn--icon").click();
setTimeout(function(){
$(".msg-topcard__full-width-action-button.delete").click();
setTimeout(function(){