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 java.awt.Robot; | |
import java.awt.event.KeyEvent; | |
import java.awt.AWTException; | |
public class KeyPresser { | |
public static void main(String[] args) { | |
int delay = 0; | |
try { |
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 urllib2 import urlopen | |
from BeautifulSoup import BeautifulSoup | |
data = urlopen('''http://www.hydro.eaufrance.fr/stations/O7502510&procedure=tousmois''').read() | |
soup = BeautifulSoup(data) | |
table = soup.find('table', {'summary': "valeurs mensuelles et annuelles"}) | |
for tr in table.findAll('tr'): | |
line = [] | |
for td in tr.findAll('td'): |
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 -*- | |
import cookielib | |
from urllib2 import HTTPCookieProcessor, build_opener | |
from urllib import urlencode | |
from BeautifulSoup import BeautifulSoup | |
# the login data | |
login_data = { | |
'login_username': u'USERNAME', | |
'login_password': u'PASSWORD', |
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/python | |
# -*- coding: utf-8 -*- | |
import sys | |
import os.path | |
import pprint | |
sys._old_excepthook = sys.excepthook | |
def assert_hook(exc_type, exception, traceback): |
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 SimpleHTTPServer | |
import SocketServer | |
class H(SimpleHTTPServer.SimpleHTTPRequestHandler): | |
def do_GET(self): | |
print self.headers | |
httpd = SocketServer.TCPServer(("", 8090), H) | |
httpd.server_forever() |
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
forbidden_starts = filter(bool, | |
''' | |
000 | |
00100 | |
0010100 | |
00101011 | |
001011 | |
00110 | |
00111000 | |
0011101 |
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
class func_and_method_decorator(object): | |
'''A clased based decorator that takes parameters and works on plain functions | |
and instance methods''' | |
def __init__(self, *args, **kwargs): | |
'''The init function is called when a module where the decorator is used | |
is imported. It gets passed all parameters that are given to decorator | |
definition. I.e. | |
@func_and_method_decorator(foo='bar') |
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/sh | |
FOLDER=android/bin | |
IN_APK_NAME=App-release-unsigned.apk | |
OUT_APK_NAME=App-release-signed-aligned.apk | |
KEYSTORE=release-key.keystore | |
KEYSTORE_ALIAS=app_release | |
echo ">>> Signing $OUT_APK_NAME..." |
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 SCP Foundation reading helper | |
// @namespace http://hrnz.net/ | |
// @version 0.1 | |
// @description Adds simple buttons to SCP page to allow easy paging. | |
// @author Martin Thurau <[email protected]> | |
// @match http://www.scp-wiki.net/scp-* | |
// @grant unsafeWindow | |
// @grant GM_addStyle | |
// @grant GM_setValue |
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
class Range(object): | |
"""Represents an integer range""" | |
regex = re.compile(r'(?P<low>\d+|-\d+)?\.\.(?P<high>\d+|-\d+)') | |
def __init__(self, low, high): | |
self.low = low | |
self.high = high |
OlderNewer