<LIST>
<result r="0">Success</result>
</LIST>
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <title>TPLINK_Auth_Key_计算器 作者:青岛小哥 email:qdpp007@outlook.com</title> | |
| <script type="text/javascript"> | |
| function $(id) | |
| { | |
| return document.getElementById(id); | |
| } |
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 | |
| Swoole\Runtime::enableCoroutine(); | |
| $processContainer = []; | |
| for ($i = 0; $i < 2; $i++) { | |
| $process = new \Swoole\Process(function (\Swoole\Process $workerProcess) { | |
| \Swoole\Coroutine::create(function () use ($workerProcess) { | |
| while (true) { | |
| $socket = $workerProcess->exportSocket(); | |
| $pid = posix_getpid(); | |
| echo 'Idle:' . $pid . PHP_EOL; |
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
| { | |
| "response": { | |
| "allExpress": [ | |
| { | |
| "display": 1, | |
| "name": "申通快递", | |
| "id": 1 | |
| }, | |
| { | |
| "display": 1, |
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 | |
| function create_uuid() | |
| { | |
| $str = md5(uniqid(mt_rand(), true)); | |
| $uuid = substr($str, 0, 8) . '-'; | |
| $uuid .= substr($str, 8, 4) . '-'; | |
| $uuid .= substr($str, 12, 4) . '-'; | |
| $uuid .= substr($str, 16, 4) . '-'; | |
| $uuid .= substr($str, 20, 12); |
<?php
return call_user_func(function () {
$defaultIncludes = [];
$composerAutoload = [];
$composerAutoload[] = (getenv("COMPOSER_HOME") ?: getenv("HOME") . '/.composer/') . '/vendor/autoload.php';
$composerAutoload[] = getcwd() . DIRECTORY_SEPARATOR . '/vendor/autoload.php';
foreach ($composerAutoload as $autoloader) {Systems that has AmbientCapabilities support (usually kernel >= linux4.3)
[Unit]
Description=FRP Server Daemon
https://pgp.mit.edu/pks/lookup?op=vindex&search=0xFB2582AB8263F3DD
- 101AA90D 加密专用
- 4E017563 签名专用
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
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Firefox | |
| Name[bg]=Firefox | |
| Name[ca]=Firefox | |
| Name[cs]=Firefox | |
| Name[el]=Firefox | |
| Name[es]=Firefox | |
| Name[fa]=Firefox | |
| Name[fi]=Firefox |
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/bash | |
| #touchpad_toggle.sh | |
| action=${1:-'auto'} | |
| #echo $action; | |
| declare -i ID | |
| ID=`xinput list | grep -Eio '(touchpad|glidepoint)\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}'` | |
| declare -i STATE | |
| if [ "$action" == "off" ];then | |
| STATE=1; | |
| elif [ "$action" == "on" ];then |