引言 最近我的window10上一不小心生成了一个nul文件,怎么都删除不了 网上搜了好多方法,其中最多的就是以下方法1: rd /s \.\C:\aux del \.\C:\temp\nul.exe 但是对我的不管用 解决方案 从stackoverflow中看到一个解决方案2: 前提是安装有Git ...
1.在公众号后台获取消息模板(本例使用微信测试账号),观看微信官方文档:https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.html#5 测试账号需自己定义消息模 ...
分类:
微信 时间:
2020-07-04 19:01:38
阅读次数:
167
本文始发于个人公众号:TechFlow,原创不易,求个关注 今天是LeetCode专题第50篇文章,我们来聊聊LeetCode中的81题Search in Rotated Sorted ArrayII。 它的官方难度是Medium,点赞1251,反对470,通过率32.8%。从通过率上来看,这题属于 ...
分类:
编程语言 时间:
2020-07-04 18:53:26
阅读次数:
64
.fullscreen { position: fixed; top: 0; left: 0; margin: 0 auto; width: 100%; height: 100%; background-color: #1a1a1a; } .screen-content { width: 95%; ...
分类:
Web程序 时间:
2020-07-03 21:22:11
阅读次数:
78
Overview In previous post, we introduced the concept of VXLAN and analyzed the traffic flow in a VXLAN network. It may help understand VXLAN by lookin ...
分类:
其他好文 时间:
2020-07-03 17:26:26
阅读次数:
61
1.CSS权重 是指样式的优先级,有两条或多条样式作用于一个元素,权重高的那条样式对元素起作用,权重相同的,后写的样式会覆盖前面写的样式。 2.权重的等级 (1)!important,加在样式属性值后,权重值为10000 (2)内联样式,如:style="",权重值为1000 (3)ID选择器,如: ...
分类:
Web程序 时间:
2020-07-03 17:11:30
阅读次数:
79
控制器中关键代码如下: // 查询状态为1的用户数据 并且每页显示10条数据 $list = Db::name('user')->where('status',1)->paginate(10); // 把分页数据赋值给模板变量list $this->assign('list', $list); // ...
分类:
其他好文 时间:
2020-07-03 17:11:12
阅读次数:
131
@Override public void transfer(String sourceName,String targetName,Float money){ //1.根据名称查询转出账户 Account source=accountDao.findByName(sourceName); //2. ...
分类:
编程语言 时间:
2020-07-03 12:43:32
阅读次数:
125
关联查询: 一对一: a.业务扩展类 核心:用resultType指定类的属性包含多表查询的所有字段 /MyBatisProject3/src/org/myy/mapper/studentMapper.xml <select id="queryStudentByNoWithOO" parameter ...
分类:
其他好文 时间:
2020-07-03 12:36:41
阅读次数:
123
由于苹果和谷歌根存储策略的变化,从9月1日开始,所有新的SSL / TLS证书的最长有效期都不得超过397天(13个月)。相关的CA机构也纷纷响应,如Entrust宣布将从2020年8月28日开始, 不再签发超过13个月有效期的SSL证书。 紧接着,GlobalSign也表示从8月31日开始降低SS ...
分类:
其他好文 时间:
2020-07-03 10:35:03
阅读次数:
74