This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am stfp on github. | |
* I am stfp (https://keybase.io/stfp) on keybase. | |
* I have a public key whose fingerprint is 99A9 D78D 7C95 D0B4 CDEC 9D9B B403 3B0F AD98 2B4A | |
To claim this, I am signing this object: |
This file contains hidden or 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
/* Requires JNA | |
* Get jna.jar here: http://java.net/projects/jna/sources/svn/show/trunk/jnalib/dist | |
*/ | |
import com.sun.jna.Library; | |
import com.sun.jna.Native; | |
public class SelfKiller | |
{ | |
private interface CLibrary extends Library | |
{ |
This file contains hidden or 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 | |
_veww () { source virtualenvwrapper.sh } | |
workon () { _veww; workon $@ } | |
mkvirtualenv () { _veww; mkvirtualenv $@ } | |
complete -o default -o nospace -F _veww workon |
This file contains hidden or 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 | |
import os, sys | |
import logging | |
import hashlib | |
from xmlrpclib import ServerProxy | |
import xml2obj | |
ONE_SERVER="http://localhost:2633/RPC2" | |
ONE_USER="oneadmin" |