Skip to content

Instantly share code, notes, and snippets.

View irc3_command_with_bot_nick.py
import irc3
from irc3.plugins.command import Commands
class Custom:
def __init__(self, context):
self.context = context
self.command = context.get_plugin(Commands)
@gawel
gawel / clientx.py
Last active December 6, 2022 12:35
Locust http2 client
View clientx.py
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
View ide.vim
" IDE module for vim
View requests_tor.py
# -*- coding: utf-8 -*-
# pip install "requests[socks]"
import requests
proxies = {
"http": "socks5://localhost:9150",
"https": "socks5://localhost:9150"
}
View mycli-ssh
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Use mycli (http://mycli.net/) through ssh
Usage:
$ mycli-ssh yourhost [extra args passed to mycli]
"""
View tinydb_test.py
# -*- coding: utf-8 -*-
from tinydb import TinyDB
from tinydb import Query
db = TinyDB('db.json')
def fake():
from faker import Faker
f = Faker()
View sec.py
# -*- coding: utf-8 -*-
from chut import gpg
from chut import * # noqa
from getpass import getpass
from hashlib import sha1
import pexpect
def get_password():
View .gitignore
s3ql-*
pyenv
@gawel
gawel / 11link2sd
Last active December 29, 2015 00:09
View 11link2sd
#!/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
@gawel
gawel / README.rst
Last active December 27, 2015 05:19
View README.rst

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