This file contains hidden or 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
#!/usr/bin/python | |
# Created by Christian Blades <christian dot blades at docblades dot com> | |
from xml.etree.cElementTree import Element, ElementTree | |
from urllib import quote_plus as quote | |
def _getData(line): | |
name, text = None, None | |
div = line.find(':') |
This file contains hidden or 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
*.pyc |
This file contains hidden or 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
#!/usr/bin/python | |
import xml.dom.minidom as minidom | |
from urllib import urlopen | |
import argparse | |
parser = argparse.ArgumentParser(description="Given a URL to an RSS torrent feed, extracts the urls.") | |
parser.add_argument('url', nargs='*', help='url of an RSS feed') | |
def getText(nodeList): |
This file contains hidden or 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
#!/usr/bin/python | |
import fileinput | |
import subprocess | |
for line in fileinput.input(): | |
print line | |
args = ['/usr/local/bin/flexget', '--seen', line] | |
subprocess.call(args) |
This file contains hidden or 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 Cleaner LinkedIn | |
// @namespace http://github.com/docblades | |
// @description Cleans up a few annoyances from LinkedIn's home screen | |
// @include http://*.linkedin.com/nhome/ | |
// ==/UserScript== | |
tohide = document.getElementById("yui-gen4"); | |
tohide.style.display = "none"; |