上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: 时间05/31 环境red hat 7.0 执行halt, 提示必须是root. 改用poweroff关机,成功断电,对三者产生百度的兴趣。。。 shutdown实际上是调用init 0, init 0会cleanup一些工作然后调用halt或者poweroff。其实主要区别是halt和powero 阅读全文
posted @ 2018-05-31 10:26 year12 阅读(6307) 评论(0) 推荐(0) 编辑
摘要: 1、 show processlist; 2、select * from information_schema.innodb_trx\G 3、SELECT user, host, time, command, state,left(info,4000) FROM information_schema 阅读全文
posted @ 2018-05-30 15:52 year12 阅读(279) 评论(0) 推荐(0) 编辑
摘要: $string = '{"tmallDelivery":"true","3plTiming":"false","deliveryCps":24}';$t = json_encode($string);$t = json_decode($t);var_dump($t);if($t->tmallDeli 阅读全文
posted @ 2018-05-18 15:11 year12 阅读(384) 评论(0) 推荐(0) 编辑
摘要: /*transition and transform*//*transition(过渡) *//* 指定需要有过渡效果得CSS属性名*/ transition-property: width, height, background;/* 设定需要有过渡效果持续得时间(可以使用秒或毫秒)*/ tran 阅读全文
posted @ 2018-04-26 09:52 year12 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-04-12 14:06 year12 阅读(723) 评论(0) 推荐(0) 编辑
摘要: $ JS对象的声明 var xiaohong = { name : '小红', age : 18, 'middle-school' : 'No1' //属性名包含特殊字符,就必须用''括起来: }; $ 正常属性访问 console.log(xiaohong.name); $ 访问这种特殊组字符的属 阅读全文
posted @ 2017-12-03 23:42 year12 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 这些之前有学习过,但是工作中已经很长时间没有接触前端了,所以重新温习一下。 这个是周六写的,记在了有道云笔记,今天传上来。 $ 在控制台输出一条信息 console console.log(); console.error(); console.warn(); console.info(); $ 常 阅读全文
posted @ 2017-12-03 23:06 year12 阅读(164) 评论(0) 推荐(0) 编辑
摘要: yum install git $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com $ 查看git配置 $ git config --list $ 初始化 $ 阅读全文
posted @ 2017-12-01 17:44 year12 阅读(174) 评论(0) 推荐(0) 编辑
摘要: CGI: php解析器 和 webserverd的通信桥梁(效率低,每一个请求都会生成一个进程,请求结束再kill掉) FastCGI : 以CGI的改良版本,每次处理完请求,不会KILL掉进程,保留进程,使用该进程处理多个请求。 PHP-FPM:FastCGI Process Manager:Fa 阅读全文
posted @ 2017-12-01 17:41 year12 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 物理层,数据链路层,网络层,传输层,会话层,表示层,应用层。 物理层:建立、维护、断开物理连接。 数据链路层:建立逻辑连接、进行硬件地址寻找、差错校验等功能。 网络层:进行逻辑地址寻址、实现不同网络之间的路径选择。 传输层:定义传输数据的协议端口号、以及流控和差错校验(TCP UDP 数据包一旦离开 阅读全文
posted @ 2017-12-01 17:40 year12 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页