$argon2id$v=19$m=512,t=256,p=1$NAqzulgdfRL088W9vCFZwg$kSOaK7ltpnKPtQ30Ej8f5F4KmW5HcQlWrxHHbHuvXrs
I hereby claim:
- I am ftkro on github.
- I am ftk (https://keybase.io/ftk) on keybase.
- I have a public key whose fingerprint is E789 568A 02D9 F3EC A8A1 6920 FDA3 70CD 7AFB DE8F
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
<?php | |
//If $Reverse option was set true, return value will be use reversed Fibonacci retracement. | |
//Return value is always desc. | |
function FibRet($High,$Low,$Reverse=false) { | |
$FibNum=array( | |
0, | |
0.236, | |
0.382, | |
0.5, | |
0.618, |
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
<?php | |
//Eval is Evil so 汚ねぇコードだなぁ… | |
function Execute($function,...$data) { | |
if(count($data) == 0) { | |
$function($data[0]); | |
} | |
if(count($data) == 1) { | |
$function($data[0],$data[1]); | |
} | |
if(count($data) == 2) { |
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
<?php | |
/* Thanks: Many Website & Developer | |
BEGIN of Net-SSH2 */ | |
define('NET_SSH2_MASK_CONSTRUCTOR', 0x00000001); define('NET_SSH2_MASK_CONNECTED', 0x00000002); define('NET_SSH2_MASK_LOGIN_REQ', 0x00000004); define('NET_SSH2_MASK_LOGIN', 0x00000008); define('NET_SSH2_MASK_SHELL', 0x00000010); define('NET_SSH2_MASK_WINDOW_ADJUST', 0x00000020); define('NET_SSH2_CHANNEL_EXEC', 0); define('NET_SSH2_CHANNEL_SHELL', 1); define('NET_SSH2_CHANNEL_SUBSYSTEM', 2); define('NET_SSH2_LOG_SIMPLE', 1); define('NET_SSH2_LOG_COMPLEX', 2); define('NET_SSH2_LOG_REALTIME', 3); define('NET_SSH2_LOG_REALTIME_FILE', 4); define('NET_SSH2_READ_SIMPLE', 1); define('NET_SSH2_READ_REGEX', 2); define('NET_SSH2_LOG_MAX_SIZE', 1024 * 1024); class Net_SSH2 { var $identifier; var $fsock; var $bitmap = 0; var $errors = array(); var $server_identifier = false; var $kex_algorithms = false; var $server_host_key_algorithms = false; var $encryption_algorithms_client_to_server = false; var $encryption_algorithms_server_to_client = false; var $mac_alg |
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
<?php | |
/** | |
* FizzBuzz Lib is a Garbage(Gomi,53) | |
* | |
* @package LibFizzBuzz | |
* @author Fukuda Takuro | |
* @since PHP 5.5 | |
* @version 1.0 | |
*/ | |
class FizzBuzz { |
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
[mysqld_safe] | |
socket = /var/run/mysqld/mysqld.sock | |
nice = -12 | |
[mysqld] | |
skip-external-locking | |
sql-mode="NO_ENGINE_SUBSTITUTION" | |
symbolic-links=0 | |
character-set-server = utf8 | |
skip-character-set-client-handshake |
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
user nginx; | |
worker_processes 3; | |
worker_cpu_affinity 001 010 100; | |
error_log /var/log/nginx/default.error.log warn; | |
pid /var/run/srv-nginx.pid; | |
worker_rlimit_nofile 10240; | |
events { | |
worker_connections 5120; | |
use epoll; |
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
server { | |
listen unix:/var/run/nginx-backend.sock default; | |
server_name _; | |
root /path/to/your/root/directory; | |
index index.php index.html; | |
access_log /var/log/nginx/domain.backend.access.log backend; | |
keepalive_timeout 25; | |
port_in_redirect off; |
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
server { | |
listen 80 default; | |
server_name _; | |
root /path/to/your/root/directory; | |
index index.html index.htm; | |
charset utf-8; | |
access_log /var/log/nginx/domain.access.log main; | |
error_log /var/log/nginx/domain.error.log; |
NewerOlder