上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页
摘要: 1 pwd 2 mkdir data 3 ll 4 uname -n 5 cd data/ 6 ll 7 pwd 8 ll 9 wget -N --no-check-certificate https://freed.ga/kernel/ruisu.sh && bash ruisu.sh 10 cd 阅读全文
posted @ 2019-09-21 12:36 会飞的斧头 阅读(2803) 评论(0) 推荐(0) 编辑
摘要: 一、 max_connections 这是是查询数据库当前设置的最大连接数 mysql> show variables like '%max_connections%';+ + +| Variable_name | Value |+ + +| max_connections | 1000 |+ + 阅读全文
posted @ 2019-09-20 22:00 会飞的斧头 阅读(205) 评论(0) 推荐(0) 编辑
摘要: [root@izm5ef2ow9zssfxi6opoucz code]# cat launch-s.sh serverId=1313 zipName=$1 serverPath='code-s'$serverId if [ ! $zipName ]; then echo -e "\033[31mplease enter zipName...\033[0m" exit 10 fi echo -e " 阅读全文
posted @ 2019-09-10 23:52 会飞的斧头 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 一个简单的使用线程的Demo c++11提供了一个新的头文件<thread>提供了对线程函数的支持的声明(其他数据保护相关的声明放在其他的头文件中,暂时先从thread头文件入手吧),写一个多线程的程序需要引用这个新的头文件: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #in 阅读全文
posted @ 2019-09-10 21:43 会飞的斧头 阅读(3209) 评论(0) 推荐(1) 编辑
摘要: 目的: Java平台下的内部组件之间的通信。 1.WebService 由于感觉本身Java平台下的Web Service标准就不够统一,相互之间的调用就会有一些问题,更不用说与.net等其他平台了。而且WebService也是对HTTP请求的一次封装,效率上肯定会有损失,所以就不考虑用WebSer 阅读全文
posted @ 2019-09-09 16:02 会飞的斧头 阅读(1535) 评论(0) 推荐(0) 编辑
摘要: Content-Type是指http/https发送信息至服务器时的内容编码类型,contentType用于表明发送数据流的类型,服务器根据编码类型使用特定的解析方式,获取数据流中的数据。 在网络请求中,常用的Content-Type有如下:text/html, text/plain, text/c 阅读全文
posted @ 2019-09-09 15:58 会飞的斧头 阅读(1168) 评论(0) 推荐(0) 编辑
摘要: Linux zip命令用于压缩文件。 zip是个使用广泛的压缩程序,文件经它压缩后会另外产生具有".zip"扩展名的压缩文件。 语法 参数: -A 调整可执行的自动解压缩文件。 -b<工作目录> 指定暂时存放文件的目录。 -c 替每个被压缩的文件加上注释。 -d 从压缩文件内删除指定的文件。 -D 阅读全文
posted @ 2019-09-09 15:57 会飞的斧头 阅读(6298) 评论(0) 推荐(0) 编辑
摘要: <?php /** * 发送post请求 * @param string $url 请求地址 * @param array $post_data post键值对数据 * @return string */ function send_post($url, $post_data) { $postdat 阅读全文
posted @ 2019-09-07 17:56 会飞的斧头 阅读(2704) 评论(0) 推荐(0) 编辑
摘要: 1、普通 android 打包 /Users/xingchong/Documents/engine/cocos2d-x-3.15.1/tools/cocos2d-console/bin/cocos compile -p android -m debug —compile-script 0 —-ap 阅读全文
posted @ 2019-08-25 21:02 会飞的斧头 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Linux查看物理CPU个数、核数、逻辑CPU个数 # 总核数 = 物理CPU个数 X 每颗物理CPU的核数 # 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数 # 查看物理CPU个数 cat /proc/cpuinfo| grep "physical id"| sort 阅读全文
posted @ 2019-08-22 17:42 会飞的斧头 阅读(218) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页