会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
bug_x
导航
博客园
首页
新随笔
联系
订阅
管理
公告
上一页
1
···
27
28
29
30
31
32
33
34
35
···
43
下一页
2018年8月16日
php ip2long 负数问题
摘要: 官方网站: 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等不能打印全部数据/信息
摘要: 有时候console.log在chrome调试控制台打印不全,如下: 这个时候,我们可以点击进去:用watch 工具,添加变量,右击copy value 选项:
阅读全文
posted @ 2018-08-08 18:56 bug_x
阅读(1347)
评论(0)
推荐(0)
编辑
2018年7月26日
linux 常用find
摘要:
阅读全文
posted @ 2018-07-26 18:07 bug_x
阅读(127)
评论(0)
推荐(0)
编辑
2018年7月25日
linux 批量删除文件名中有换行符
摘要: 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日
Group by 内部排序
摘要: 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的变量分哪几类? MySQL变量一共分为两大类:用户自定义变量和系统变量。如下: 用户自定义变量 局部变量 会话变量 系统变量 会话变量 全局变量 局部变量 会话变量 会话变量 全局变量 本文涉及的内容为用户自定义会话变量,若对其他分类无感,请点击这里。 PS:用户定义的会话变量和
阅读全文
posted @ 2018-07-21 15:46 bug_x
阅读(309)
评论(0)
推荐(0)
编辑
2018年7月20日
Mysql count(1) group_concat 高级用法(count 过滤条件,group_concat过滤条件)
摘要: 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日
chnagyong sql
摘要: select gid,count(distinct mid) from members group by gid
阅读全文
posted @ 2018-07-18 15:24 bug_x
阅读(94)
评论(0)
推荐(0)
编辑
2018年7月15日
Hadoop slaves 没有nodeManager
摘要: 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日
Fiddler 捕获 nodejs 模拟的http请求
摘要: 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
下一页