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
#!/usr/bin/env python2 | |
import sys | |
import re | |
from urllib2 import build_opener, HTTPCookieProcessor | |
from urllib import urlencode | |
from cookielib import CookieJar | |
from netrc import netrc |
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
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
import re | |
import sys | |
import os.path | |
from urllib2 import build_opener | |
from urllib import urlencode | |
from lxml import html |
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
import sys | |
from subprocess import Popen, PIPE | |
def notify(title, body=None, timeout=-1, appname='simple-notify'): | |
cmd = [ | |
'dbus-send', | |
'--type=method_call', | |
'--print-reply=literal', | |
'--dest=org.freedesktop.Notifications', | |
'/org/freedesktop/Notifications', |
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
#!/usr/bin/env python2 | |
import sys | |
COLORS = [ | |
('16', '000000'), | |
('17', '00005f'), | |
('18', '000087'), | |
('19', '0000af'), | |
('20', '0000d7'), | |
('21', '0000ff'), |
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
# Simple xml to dict parser | |
# | |
# It's usable only for small documents due low performance | |
# comparing with lxml | |
from xml.etree import cElementTree as etree | |
from cStringIO import StringIO | |
def builder(ptag, attrib, pchild): | |
child = [] |
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
#!/usr/bin/env python2 | |
import sys | |
from gi.repository import Gtk, Gdk | |
if len(sys.argv) > 1: | |
incolor = sys.argv[1] | |
use_hash = incolor.startswith('#') | |
incolor = incolor.strip('#') | |
else: | |
use_hash = True |
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
#!/usr/bin/env python | |
from __future__ import print_function | |
import os.path | |
import glob | |
import json | |
import argparse | |
import sqlite3 | |
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
import os | |
from btasks import add | |
COUNT = 10000 | |
if os.environ['QUEUE'] == 'rq': | |
from rq import Queue | |
from redis import Redis |
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
#!/usr/bin/env python | |
import os | |
import time | |
import argparse | |
import signal | |
from subprocess import Popen | |
class Pool(object): | |
def __init__(self, process_count, args): |
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
function archiveOldReleases(dt) { | |
$('tr.project-config-version-released').each((idx, obj) => { | |
$obj = $(obj); | |
if (!$obj.hasClass('project-config-version-archived')) { | |
var rdate = $obj.attr('data-releasedate'); | |
if (rdate && rdate < dt) { | |
$.ajax({ | |
type: 'PUT', | |
url: '/rest/api/2/version/' + $obj.attr('data-id'), | |
contentType: 'application/json', |
OlderNewer