- 手机: (
外地-武汉号) - Email: caizhenghai@gmail.com/caizhenghai@qq.com
- QQ/微信号:314494687/ipzone
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 | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin | |
| export PATH | |
| clear; | |
| echo '================================================================'; | |
| echo ' [LNMP/Nginx] Amysql Host - AMH 4.2 '; | |
| echo ' http://Amysql.com'; | |
| echo '================================================================'; |
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 | |
| /************************************************* | |
| * | |
| * Snoopy - the PHP net client | |
| * Author: Monte Ohrt <monte@ohrt.com> | |
| * Copyright (c): 1999-2014, all rights reserved | |
| * Version: 2.0.0 | |
| * This library is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU Lesser General Public |
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 | |
| /** | |
| *微信公众平台模拟登录 | |
| * | |
| *实现了公众平台上的操作<br>包括 实时消息获取 快速回复 用户管理 群发消息 获取用户基本信息 | |
| *@copyright Copyright info | |
| *@author dml | |
| *@version version | |
| *@package defalut | |
| */ |
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 | |
| /* | |
| Author: icanc <i@icanc.net> | |
| */ | |
| function R( $Request='/',array $Router ){ | |
| $Response = array(); |
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
| ## Configure eth0 | |
| # | |
| # vi /etc/sysconfig/network-scripts/ifcfg-eth0 | |
| DEVICE="eth0" | |
| NM_CONTROLLED="yes" | |
| ONBOOT=yes | |
| HWADDR=A4:BA:DB:37:F1:04 | |
| TYPE=Ethernet | |
| BOOTPROTO=static |
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
| var ids = document.querySelectorAll(".member_id"); | |
| var names = document.querySelectorAll(".member_name"); | |
| var output = "", length = ids.length; | |
| for(var i=0; i<length; i++){ | |
| output += ids[i].innerHTML.slice(1,-1) + ":" + names[i].innerHTML + "\n"; | |
| } | |
| console.log(output); |
NewerOlder