bug_x

导航

 
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 43 下一页

2018年8月16日

摘要: 官方网站: Note: 因为PHP的 integer 类型是有符号,并且有许多的IP地址讲导致在32位系统的情况下为负数, 你需要使用 "%u" 进行转换通过 sprintf() 或 printf() 得到的字符串来表示无符号的IP地址。 其他方法见链接: https://blog.csdn.net 阅读全文
posted @ 2018-08-16 18:24 bug_x 阅读(110) 评论(0) 推荐(0) 编辑
 

2018年8月8日

摘要: 有时候console.log在chrome调试控制台打印不全,如下: 这个时候,我们可以点击进去:用watch 工具,添加变量,右击copy value 选项: 阅读全文
posted @ 2018-08-08 18:56 bug_x 阅读(1347) 评论(0) 推荐(0) 编辑
 

2018年7月26日

摘要: 阅读全文
posted @ 2018-07-26 18:07 bug_x 阅读(127) 评论(0) 推荐(0) 编辑
 

2018年7月25日

摘要: ls -i | grep ^M | awk '{print $1}' | xargs -t -I [] find . -inum [] -exec rm -if {} \; 注意^M 是ctrl+v ctrl+M 不是^M xargs -I 指定替换符号 xargs -i 默认替换{} ll -at 阅读全文
posted @ 2018-07-25 11:22 bug_x 阅读(656) 评论(0) 推荐(0) 编辑
 

2018年7月22日

摘要: 1、right join # update_time gid=>sid, group_status => s_table select a.* from comment as a right join (select user_id, max(addtime) as maxtime from com 阅读全文
posted @ 2018-07-22 10:08 bug_x 阅读(236) 评论(0) 推荐(0) 编辑
 

2018年7月21日

摘要: 一、到底MySQL的变量分哪几类? MySQL变量一共分为两大类:用户自定义变量和系统变量。如下: 用户自定义变量 局部变量 会话变量 系统变量 会话变量 全局变量 局部变量 会话变量 会话变量 全局变量 本文涉及的内容为用户自定义会话变量,若对其他分类无感,请点击这里。 PS:用户定义的会话变量和 阅读全文
posted @ 2018-07-21 15:46 bug_x 阅读(309) 评论(0) 推荐(0) 编辑
 

2018年7月20日

摘要: 1、官方文档: count:COUNT(expr) [over_clause] https://dev.mysql.com/doc/refman/8.0/en/group-by-functions.html#function_count 1.1 实例: select update_time,sid, 阅读全文
posted @ 2018-07-20 12:01 bug_x 阅读(1996) 评论(0) 推荐(0) 编辑
 

2018年7月18日

摘要: select gid,count(distinct mid) from members group by gid 阅读全文
posted @ 2018-07-18 15:24 bug_x 阅读(94) 评论(0) 推荐(0) 编辑
 

2018年7月15日

摘要: 1、./start-yarn.sh 后从服务器没有nodemanager 进程,并且这里没有报错 在从服务器上的日志上见: 从服务器查看日志: 查看2.8.4官方文档: https://hadoop.apache.org/docs/r2.8.4/hadoop-mapreduce-client/had 阅读全文
posted @ 2018-07-15 16:54 bug_x 阅读(3411) 评论(0) 推荐(1) 编辑
 

2018年7月14日

摘要: 1、设置Fiddler Tools->Options-> Connections Allow remote computers to connect: 2、nodejs 请求有多种 2.1 用https或者http请求 该种方法貌似需要额外的代理软件监听上图中的8888端口 2.2 用request 阅读全文
posted @ 2018-07-14 11:41 bug_x 阅读(1065) 评论(1) 推荐(1) 编辑
 
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 43 下一页