Skip to content

Instantly share code, notes, and snippets.

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(-)
@tobbez
tobbez / whatcd_upload.js
Last active October 13, 2015 05:18
whatimg url upload
/* 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, "*");
});
}
@tobbez
tobbez / trac_udp_events.py
Created November 6, 2011 23:05
Send an UDP packet when tickets and wiki pages are created/edited/deleted
# -*- 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
@tobbez
tobbez / whatcd_add_multiple_formats_helper.user.js
Created March 19, 2011 22:05
Add multiple formats helper
// ==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 () {
/*
// ==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;
@tobbez
tobbez / urlrewrite_svtplay.py
Created December 6, 2010 16:53
flexget urlrewriter for SVT Play
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')
@tobbez
tobbez / 00-info.txt
Created November 21, 2010 11:38
Domain stats in redis
* 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.
@tobbez
tobbez / add_search_button.user.js
Created November 6, 2010 13:18
what.cd user script: Add button for each search field in toolbar
// ==UserScript==
// @name Add button for each search field in toolbar
// @namespace tobbez
// @include http*://*what.cd*
// ==/UserScript==
var sb = document.getElementById('searchbars');
var forms = sb.getElementsByTagName('form');
for (var i = 0; i < forms.length; ++i) {
@tobbez
tobbez / TDDC76-lab1-4.cpp
Created September 15, 2010 12:17
TDDC76: Lab 1.4
#include <iostream>
#include <vector>
#include <string>
using namespace std;
struct word_entry {
string word;
int count;
};
@tobbez
tobbez / youtube-rip-channel.py
Created August 17, 2010 13:02
youtube-rip-channel.py
#!/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