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 42d4cc728d6891b17eb515e229e7d90a8badf16d Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?Torbj=C3=B6rn=20L=C3=B6nnemark?= <[email protected]> | |
Date: Wed, 16 Oct 2013 20:45:05 +0200 | |
Subject: [PATCH] Fixed Signer.sign for Python 3 | |
Closes #29 | |
--- | |
itsdangerous.py | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) |
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
/* this scripts needs to run on whatimg.com */ | |
if (document.location.pathname == '/upload.php' | |
&& document.location.hash == '#whatcd-script') { | |
document.addEventListener('DOMContentLoaded', function () { | |
window.parent.postMessage(document.getElementsByClassName('input_field')[0].value, "*"); | |
}); | |
} |
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
# -*- coding: utf-8 -*- | |
# | |
# Copyright (c) 2011, Torbjörn Lönnemark <[email protected]> | |
# | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
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 Add multiple formats helper | |
// @namespace tobbez | |
// @description Helper for adding multiple formats to an album | |
// @include http*://*what.cd/torrents.php* | |
// @include http*://*what.cd/upload.php* | |
// ==/UserScript== | |
(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
// ==UserScript== | |
// @name Notifications in title | |
// @namespace tobbez | |
// @description Notifications in title | |
// @include http*://*what.cd/* | |
// ==/UserScript== | |
(function () { | |
var re = /You have (\d+) new torrent notifications/ | |
, orig_title = document.title; |
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 re | |
import urllib2 | |
import logging | |
from flexget.plugins.plugin_urlrewriting import UrlRewritingError | |
from flexget.plugin import * | |
from flexget.utils.soup import get_soup | |
from flexget.utils.tools import urlopener | |
log = logging.getLogger('svtplay') |
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
* Redis key/value storage: http://code.google.com/p/redis/ | |
* credis C bindings for redis: http://code.google.com/p/credis/ | |
* redis-py python client for redis: https://github.com/andymccurdy/redis-py/ | |
A python client was used to display the stats because of problems with zrevrange in credis. |
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
#include <iostream> | |
#include <vector> | |
#include <string> | |
using namespace std; | |
struct word_entry { | |
string word; | |
int count; | |
}; |
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 | |
# -*- coding: utf-8 -*- | |
# Copyright 2010, Torbjörn Lönnemark | |
import feedparser | |
import sys | |
def main(): | |
if len(sys.argv) != 2: | |
print "Usage: " + sys.argv[0] + " <channel-name>" | |
return |