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
<?php | |
error_reporting(0); | |
####################### | |
# General Config. # | |
####################### | |
$keys_tmp_dir = '/home/freenet/keys-tmp'; | |
$keys_dir_prefix = '/home/freenet/keys'; /* Place to store keys. */ |
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
0000000 acc1 5fde e499 8f77 a6a5 fd4a 885c 6f6c | |
0000010 6d85 ba0a cd85 82ff 4899 862e 8d97 0527 | |
0000020 7766 e3c2 3459 ace5 951c 6004 a7d0 e7bb | |
0000030 f7f7 ec7b a39e 0e86 e075 3726 f97f 2ecf | |
0000040 302a 5e6a bdaa adab 72d6 4159 e150 365d | |
0000050 0093 5c24 d520 a4e6 e23a 2608 e7ff c2d6 | |
0000060 6cc7 e4cf 6fb4 0553 fc9c dbfe bd15 | |
000006e |
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
hello world! |
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
logger test! |
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
Hey! It works! Come and have a try! | |
Paste.py: https://github.com/jackyyf/paste.py | |
Enjoy! |
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
ymuCXh4XPlPcRe0fj4micUFiqAZ9eVSaSSXr/orIibpAI8snQ1RMqENW94NOP4Z1xW+NAtNR19+N | |
+Xy7tmQSK3QmtXAZ1KrMVbX+Mx60RTlHLrmmpTGtYn93qE3iTxNr6rrd5EeUKM1JKtWXjYrTpvj6 | |
OoLbjvESB/v7rgpvXqurTSsGHbi1ly4Gfzu9AMyTO3DCHz2l2h+g5xeZ3y8oOjzFcAbF5BCpkpUx | |
OKOpVs8EeJUg4F9OpLPDaxt/EzVQtMxaG3xu+9fGl43dBMwrsqoClswB9GI37iwdZp5DD3Iz4Nfc | |
aMro0ySincnHWn0vH/XfqVcqcQkg8u7Ud2whFA== |
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
#/* $begin ncopy-ys */ | |
################################################################## | |
# ncopy.ys - Copy a src block of len ints to dst. | |
# Return the number of positive ints (>0) contained in src. | |
# | |
# Include your name and ID here. | |
# | |
# 1. DO NOT CREATE A NEW STACK. | |
# 2. Use a loop of 16 x 4. | |
# 3. Use two branch to save one jump. |
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
#!/bin/bash | |
# ============================================================== | |
# CPU limit daemon - set PID's max. percentage CPU consumptions | |
# ============================================================== | |
# Variables | |
CPU_LIMIT=3 # Maximum percentage CPU consumption by each PID | |
DAEMON_INTERVAL=3 # Daemon check interval in seconds | |
BLACK_PROCESSES_LIST="sshd" # Limit only processes defined in this variable. If variable is empty (default) all violating processes are limited. | |
WHITE_PROCESSES_LIST= # Limit all processes except processes defined in this variable. If variable is empty (default) all violating processes are limited. |
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
CNT = 0 | |
LIM = 4000 | |
Alive = 0 | |
MEMBER = range(1, 23) | |
TimeCost = dict() | |
StatusCode = dict() | |
ConCurrent = 100 | |
Debug = False | |
from tornado.httpclient import AsyncHTTPClient, HTTPClient, HTTPRequest |
OlderNewer