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
string GetRedirectTarget(string url) | |
{ | |
System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)WebRequest.Create(url); | |
request.AllowAutoRedirect = false; | |
System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse(); | |
return response.Headers.Get("Location"); | |
} |
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 WhatStats | |
// @description Provides pretty charts on your user profile page on What.cd | |
// @namespace tobbez | |
// @author tobbez | |
// @version 1.0 | |
// @date 2010-03-11 | |
// @include http*://*what.cd/* | |
// ==/UserScript== |
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 WhatStats | |
// @description Provides pretty charts on your user profile page on What.cd | |
// @namespace tobbez | |
// @author tobbez | |
// @version 1.0 | |
// @date 2010-03-11 | |
// @include http*://*what.cd/* | |
// ==/UserScript== |
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 <fstream> | |
#include <map> | |
using namespace std; | |
class FileChecker { | |
private: | |
map<string, unsigned> keywords; |
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
int X = 184;void w(char *s){int i=0;for(i=0;i<strlen(s);++i) if (s[i] == '"' || s[i] == '\\') { write(1,"\\",1); write(1,s+i,1); } else { write(1,s+i,1); }} int main(void){char s[] = "int X = 184;void w(char *s){int i=0;for(i=0;i<strlen(s);++i) if (s[i] == '\"' || s[i] == '\\\\') { write(1,\"\\\\\",1); write(1,s+i,1); } else { write(1,s+i,1); }} int main(void){char s[] = \"\"; write(1, s, X); w(s); puts(s+X); return 0; }"; write(1, s, X); w(s); puts(s+X); return 0; } |
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
# one-liner to download all images for a meme from knowyourmeme | |
# "i dare you to try", he said. therefore i bestow upon thee: | |
m="polandball"; (curl -s http://knowyourmeme.com/memes/${m} | egrep -o "/memes/${m}\?content=true&photo_page=[0-9]+" && echo "/memes/${m}") | sort | uniq | sed "s/amp;//" | xargs -I URLPATH curl http://knowyourmeme.comURLPATH | sort | uniq | egrep -o "/photos/[0-9]+" | sort | uniq | xargs -I URLPATH curl -s http://knowyourmeme.comURLPATH | grep 'class="original"' | egrep -o "http://cdn[0-9]+.*[0-9]+" | xargs -I URL wget URL |
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
#!/bin/bash | |
# | |
# Created by tobbez | |
# | |
# Issues: | |
# Does not handle Various Artists-albums properly | |
function get_artist () { | |
metaflac --show-tag=ARTIST "$1" | cut -d= -f2 | |
} |
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 Hide translation threads from the project forum | |
// @namespace tobbez | |
// @include http*://*what.cd* | |
// ==/UserScript== | |
if (document.location.pathname == '/forums.php' && document.location.search == '?action=viewforum&forumid=45') { | |
var rows = $('tr.rowa, tr.rowb').objects; | |
for (var i in rows) { | |
if (rows[i].getElementsByTagName('a')[0].innerHTML.match(/^Translating the rules into/)) { |
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 |
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; | |
}; |
OlderNewer