This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove guests from LinkedIn's People You May Know list | |
// @namespace xz.greasemonkey | |
// @description Don't you just hate spamming people that are NOT on LinkedIn invitations when you accidentally click "Add to Network" instead of "Connect"? | |
// @include https://www.linkedin.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
removeGuests = function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import path | |
import argparse | |
import csv | |
import re | |
import sys | |
import os | |
import collections | |
DEFAULT_LINKS_FILE = 'collection.csv' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Copy lyrics | |
// @namespace xz | |
// @description Copy lyrics from popular lyrics websites | |
// @include http://lyrics.wikia.com/* | |
// @include http://www.azlyrics.com/* | |
// @include http://www.directlyrics.com/* | |
// @include http://www.songtexte.com/* | |
// @include *genius.com* | |
// @include *www.musixmatch.com/lyrics/* |