Usage:
$ git clone https://gist.github.com/7273196.git pypy-benches $ cd pypy-benches $ python2.7 bootstrap.py $ bin/buildout
zope.interface bench:
$ python2.7 bin/zope-interface
| import irc3 | |
| from irc3.plugins.command import Commands | |
| class Custom: | |
| def __init__(self, context): | |
| self.context = context | |
| self.command = context.get_plugin(Commands) |
| import re | |
| import time | |
| from locust import User | |
| from locust.exception import LocustError | |
| import httpx | |
| from httpx import Request, Response | |
| from requests.auth import HTTPBasicAuth | |
| from httpx import InvalidURL, RequestError |
| " IDE module for vim |
| # -*- coding: utf-8 -*- | |
| # pip install "requests[socks]" | |
| import requests | |
| proxies = { | |
| "http": "socks5://localhost:9150", | |
| "https": "socks5://localhost:9150" | |
| } |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Use mycli (http://mycli.net/) through ssh | |
| Usage: | |
| $ mycli-ssh yourhost [extra args passed to mycli] | |
| """ |
| # -*- coding: utf-8 -*- | |
| from tinydb import TinyDB | |
| from tinydb import Query | |
| db = TinyDB('db.json') | |
| def fake(): | |
| from faker import Faker | |
| f = Faker() |
| # -*- coding: utf-8 -*- | |
| from chut import gpg | |
| from chut import * # noqa | |
| from getpass import getpass | |
| from hashlib import sha1 | |
| import pexpect | |
| def get_password(): |
| s3ql-* | |
| pyenv |
| #!/system/bin/sh | |
| if [ -f adb ]; then | |
| ./adb push 11link2sd /system/etc/init.d/11link2sd | |
| ./adb shell chown root:shell /system/etc/init.d/11link2sd | |
| ./adb shell chmod +x /system/etc/init.d/11link2sd | |
| exit | |
| fi | |
| LOG=/data/link2sd-11link2sd.log |
Usage:
$ git clone https://gist.github.com/7273196.git pypy-benches $ cd pypy-benches $ python2.7 bootstrap.py $ bin/buildout
zope.interface bench:
$ python2.7 bin/zope-interface