I hereby claim:
- I am speters on github.
- I am soenke (https://keybase.io/soenke) on keybase.
- I have a public key whose fingerprint is D33D 153A A5D3 937E 8D99 907F EFC4 178C F358 FDCA
To claim this, I am signing this object:
| #! /usr/bin/env python | |
| from sys import argv | |
| import smtplib, email | |
| import ConfigParser, os | |
| config = ConfigParser.SafeConfigParser({'smtphost': 'localhost', 'smtpuser':'', 'smtppass':'', 'forwardto':''}) | |
| config.read(['/etc/smtpclient.ini', os.path.expanduser('~/.smtpclient.ini')]) | |
| if config.has_section('smsdmailforward'): |
| #!/usr/bin/python | |
| data = "asdfg" | |
| bps = 115200 | |
| num_databits=8 | |
| parity = 'n' | |
| num_stopbits = 1 | |
| lvl_0 = 3.3 | |
| lvl_1 = 0.0 |
| #!/usr/bin/sudo /bin/bash | |
| MOUNTPOINT=/mnt/odroidc1 | |
| FSIMG=${HOME}/odroidc1-sdcard-jessie.img | |
| CHROOTNAME=`basename ${MOUNTPOINT}` | |
| #DEBUG=1 | |
| if [ -z "$DEBUG" ]; then | |
| DEBUG='' |
| #!/bin/bash | |
| exit | |
| NUM=25 | |
| #$1 | |
| #DEBUG="true" | |
| PIDLIST="" | |
| MYPID=$$ | |
| CURLINST=0 |
| /* Copyright (c) 2008 Carlos Lamas | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| * Redistributions of source code must retain the above copyright | |
| notice, this list of conditions and the following disclaimer. | |
| * Redistributions in binary form must reproduce the above copyright |
| #!/bin/sh | |
| # copy a subdirectory of a repository to another location after commit | |
| DESTINATIONDIR=/usr/share/arduino/libraries | |
| # subdirectory in repo to copy: | |
| CHECKOUTSUBDIR=TMRpcm | |
| mkdir /tmp/bla | |
| unset GIT_INDEX_FILE | |
| GIT_WORK_TREE=${DESTINATIONDIR} git checkout -f -- ${CHECKOUTSUBDIR} |
I hereby claim:
To claim this, I am signing this object:
| #! /usr/bin/env python | |
| import urllib2 | |
| from xml.dom import minidom, Node | |
| from sys import argv | |
| import smtplib | |
| import ConfigParser, os | |
| config = ConfigParser.SafeConfigParser({'smtphost': 'localhost', 'smtpuser':'', 'smtppass':'', 'forwardto':''}) | |
| config.read(['/etc/smtpclient.ini', os.path.expanduser('~/.smtpclient.ini')]) |
| #!/usr/local/bin/phantomjs | |
| var page = require('webpage').create(); | |
| var system = require('system'); | |
| var t, address; | |
| if (system.args.length === 1) { | |
| console.log('Usage: screenshot.js <some URL>'); | |
| phantom.exit(); | |
| } |
| ENTRYURL='http://go.stayfriends.de/***/xmasRaffle' | |
| COOKIEFILE='cookies.txt' | |
| USER_AGENT="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0" | |
| wget -U "${USER_AGENT}" --spider -S --keep-session-cookies --save-cookies=$COOKIEFILE $ENTRYURL | |
| COOKIEHEADER=`awk -v ORS='' 'BEGIN {print "Cookie: "} /stayfriends/{print $6"="$7"; " } ' < $COOKIEFILE ` | |
| # local test against nc -l 8080 |