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
# enterprise twitpic management system | |
# | |
# requires tugboat for digital ocean management: | |
# gem install tugboat | |
# tugboat authorize | |
# | |
# usage: | |
# sh manage $droplet command1 command2 command3 | |
# | |
# commands: |
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
# --- | |
# name: Test | |
# version: 1.0 | |
# author: dx | |
# --- | |
import quick | |
def format_location(l): | |
return "x=%.3f y=%.3f z=%.3f yaw=%.3f pitch=%.3f" % \ |
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
# --- | |
# name: PlayerInteractEventTest | |
# --- | |
import quick | |
def msg(text): | |
quick.plugin.server.broadcastMessage(text) | |
def nice(text): |
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 | |
""" | |
MSN ApplicationId patcher for pidgin/bitlbee/whatever | |
(because you're too lazy to rebuild the whole thing.) | |
Usage examples: | |
python patch.py /usr/sbin/bitlbee | |
python patch.py /usr/lib/purple-2/libmsn.so |
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
baseurl=http://radare.today | |
maxpage=$(http -v HEAD $baseurl/page/9999/ | grep Location | grep -o '[0-9]*') | |
for page in $(seq 1 $maxpage); do | |
http --follow $baseurl/page/$page/ | pup -p 'h1.post-title a json{}' | jq '.[] | {"title": .text, "url": .href}' >> output.json | |
done | |
cat output.json | jq -r '" * [\(.title)]('$baseurl'\(.url))"' > result.md |
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
digraph { | |
graph [nodesep=0.1, pad="1,0"]; | |
node [fontsize=9, fontname="DejaVu Sans", margin=0.01]; | |
edge [fontsize=9, fontname="DejaVu Sans"]; | |
start [label="I'm getting an error\ntrying to log in to skypeweb"]; | |
using_latest [label="Are you using\nskypeweb 1.5 or newer?"]; | |
using_latest_no [label="Upgrade to the\nlatest version"]; |
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
/* | |
$ gcc $(pkg-config --cflags glib-2.0) -lpthread gregex.c libglib-2.0.a libpcre.a -o gregex | |
$ echo -n 'pattern\ntext' | ./gregex | |
*/ | |
#include <glib.h> | |
#include <string.h> | |
int main() { | |
GRegex *preg; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// gcc -g -shared -fPIC $(pkg-config --cflags bitlbee) bitlbee_ssl.c -o bitlbee_ssl.so | |
#include <bitlbee.h> | |
#include <ssl_client.h> | |
static void | |
beessl_init(account_t *acct) | |
{ | |
} |
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 requests | |
from n26.api import Api as N26Api | |
from datetime import datetime, timedelta | |
from pprint import pprint | |
ENABLE_YNAB = True | |
YNAB_TOKEN = '...' | |
BUDGET_ID = '...' | |
ACCOUNT_ID = '...' |