首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,643 阅读
2
sublime 3155-3175 LICENSE
7,963 阅读
3
mysql存储过程&时间累加插入
7,781 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,496 阅读
5
mysql-workbench中duration fetch的含义
4,483 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
194
篇与
的结果
2017-08-08
grep过滤文档
grep是一个很有用的搜索命令,可以从海量的数据中找到我们想要的数据,比如从访问日志文件中找相关IP的访问记录只要运行cat /var/data/log/access.log |grep '127.0.0.1' 便可以搜索出127.0.0.1这个ip的所有记录当我们想要知道几个IP的记录时,可以用如下命令查询cat /var/data/log/access.log |grep -E'127.0.0.1|192.168.1.100' 其他技巧待后续更新
2017年08月08日
1,110 阅读
0 评论
0 点赞
2017-08-08
linux 设置时间,同步时间
手动设置 硬件时间hwclock --set --date="2017-08-08 15:23:00"; 修改系统时间date -s "2017-08-08 15:22:00"; 硬件时间与系统时间同步hwclock --hctosys 系统时间与硬件时间同步hwclock --systohc 显示硬件时间hwclock --show 同步时间服务器ntpdate 2.cn.pool.ntp.org ntpdate asia.pool.ntp.org time.windows.com
2017年08月08日
999 阅读
0 评论
0 点赞
2017-07-31
创建&查看索引
2种办法1用create2用altercreate index 索引名称 on 表名(字段); alter table add index 索引名称(字段); 加入有一张表 TBa b c d__用 create 方法来创建 则sql:create index index_a on TB(a); 用 alter 来创建 alter table add index index_a(a);联合索引:ALTER TABLE `table_name` ADD INDEX index_name ( `column1`, `column2`, `column3` ) 全文索引ALTER TABLE `table_name` ADD FULLTEXT ( `column`) 唯一索引ALTER TABLE `table_name` ADD UNIQUE ( `column` ) 主键索引ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) 查看索引:show index from TB;
2017年07月31日
1,027 阅读
0 评论
0 点赞
2017-07-25
ubuntu切换默认桌面为unity
还是习惯用unity桌面环境, 有其实小屏幕的设备unity显示的信息更加多,gdm3反而没有unity那么的让更多信息显示到屏幕上来,虽然只是多了一个标题栏!废话不多说,直接上命令sudo dpkg-reconfigure lightdm 没错执行上面的命令然后确认 就OK啦。
2017年07月25日
2,219 阅读
0 评论
0 点赞
2017-07-12
mysql 查询时自定义字段
select a,b,c from font;出现的结果将是a b c _____ 1 2 3 如果我希望是z a b c _______ 字123 那么只要在select语句上这样写select ('字')z,a,b,c from font;同时我们还可以这样写select (a+1) z,a,b,c from font;结果将是z a b c _______ 2123
2017年07月12日
1,090 阅读
0 评论
0 点赞
1
...
33
34
35
...
39