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
from werkzeug.debug.tbtools import Traceback | |
from phomp.api.errors import PhompException | |
def wrap_exceptional(f): | |
config = 'default_settings' | |
def wrap(f): | |
def wrapper(*args, **kwargs): | |
try: | |
return f(*args, **kwargs) | |
except Exception: |
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 socket | |
class Redis(object): | |
def __init__(self, host, port): | |
self.conn = socket.socket() | |
self.conn.connect((host, port)) | |
def _send_request(self, args): | |
self.conn.send('*%d\r\n' % len(args)) | |
for arg in args: |
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
/* | |
DCPU-16 emulator in C. Horribly inefficient. | |
Written by Kang Seonghoon (http://mearie.org/, @senokay). Public Domain. | |
*/ | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#include <string.h> |
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 heapq, sys | |
p = open(sys.argv[1],'rb').read() | |
p += '\0' | |
freq = {} | |
for i in p: freq[i] = freq.get(i,0) + 1 | |
l = [(v, [('', k)]) for k, v in freq.items()] | |
heapq.heapify(l) | |
while len(l) > 1: |
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
module A = Ast | |
module W = Weedingast | |
module D = DcpuAsm | |
module DExpr = D.AsmExpr__ | |
module DStmt = D.Asm__ | |
let convert_reg {A.reg=reg} = | |
match reg with | |
| A.A -> D.A | |
| A.B -> D.B |
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
<html> | |
<head> | |
<title>UserScript version 0.2.3</title> | |
<link rel="stylesheet" href="common.css" type="text/css" /> | |
</head> | |
<body> | |
<h1>UserScript 레퍼런스 <small>UserScript Reference</small></h1> |
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
# coding=utf-8 | |
def score(s, encoding=None): | |
if encoding: s = s.encode(encoding) | |
import hashlib; a = hashlib.md5(s).digest() | |
return (int(round(10+ord(a[0])/255.*90)), # 공격 | |
int(round(10+ord(a[5])/255.*90)), # 민첩 | |
int(round(10+ord(a[1])/255.*90)), # 방어 | |
int(round(10+ord(a[2])/255.*90)), # 명중 | |
int(round(10+ord(a[3])/255.*90)), # 운 | |
int(round(100+ord(a[4])/255.*200))) # 체력 |
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
*.pyc | |
db | |
run.sh |
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
#if 0 | |
gcc $0 && ( | |
for i in \ | |
zero \ | |
one two three four five six seven eight nine ten \ | |
eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen \ | |
twenty thirty forty fifty sixty seventy eighty ninety \ | |
"one hundred" "one thousand" "one million" "one billion" "one trillion"; | |
do echo $i | ./a.out; echo | |
done |
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
// Compile: CPPFLAGS='-W -Wall -O3' make shortest.cpp | |
// | |
// Okay, what the heck is this? This is a way to exploit the possible integer overflow | |
// in the submission system. It tries to generate the paths with their maximum length | |
// very slightly exceeding 2^32. The input graph has several heavy (read: of a great length) | |
// 2-cycles, so it is possible to construct compact path by repeating 2-cycles. | |
#include <cstdio> | |
#include <cstdlib> | |
#include <stdint.h> |