上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 问题: 在使用Word编写文档时,提前拟好的标题编号会突然变成黑框(黑色的方框,黑色的矩形),如下图 解决方案: 1、将光标定位到标题中,紧邻黑框的右侧 2、按键盘左方向键使方框变成黑色 3、按键盘的快捷键 Ctrl+Shift+S,会出来一个对话框“应用样式”。 4、在这个对话框中,单击“重新应用 阅读全文
posted @ 2019-07-03 10:50 cnkker.com 阅读(1183) 评论(0) 推荐(0) 编辑
摘要: TCP和1448 1448字节是实际场景下,单个TCP包的实际运载能力。也就是说,实际场景下,上层调用send(1000KB),下层会把这1000KB封装成多个TCP包进行发送。单个TCP包每次打包1448字节的数据进行发送。详细的TCP在传输情景wireshark截图如图1 图1 每个TCP包在理 阅读全文
posted @ 2019-07-03 10:47 cnkker.com 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: pip install --upgrade psutil 阅读全文
posted @ 2019-07-03 10:45 cnkker.com 阅读(2447) 评论(0) 推荐(0) 编辑
摘要: db.createUser( { user: “admin”, pwd: “xxx”, roles: [ { role: “userAdminAnyDatabase”, db: “admin” } ], mechanisms : [“SCRAM-SHA-1”] } 阅读全文
posted @ 2019-07-03 10:43 cnkker.com 阅读(370) 评论(0) 推荐(0) 编辑
摘要: LINQ学习笔记 Join 与 Group join 阅读全文
posted @ 2019-02-19 09:12 cnkker.com 阅读(951) 评论(0) 推荐(0) 编辑
摘要: 代码片段: 阅读全文
posted @ 2017-10-20 10:46 cnkker.com 阅读(474) 评论(0) 推荐(0) 编辑
摘要: Java threads created from JNI code in a non-java thread have null ContextClassloader unless the creator explicitly sets it. Also in such context Threa 阅读全文
posted @ 2017-10-17 18:07 cnkker.com 阅读(818) 评论(0) 推荐(0) 编辑
摘要: mvn org.apache.maven.plugins:maven-deploy-plugin:2.8.2:deploy-file -Durl=file:///home/me/m2-repo \ -DrepositoryId=some.repo.id \ -Dfile=./path/to/arti 阅读全文
posted @ 2017-10-16 11:42 cnkker.com 阅读(342) 评论(0) 推荐(0) 编辑
摘要: MAVEN部署异常 org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy-file 阅读全文
posted @ 2017-10-16 11:18 cnkker.com 阅读(5559) 评论(0) 推荐(0) 编辑
摘要: 如果添加了.gitignore,未生效,原因是.gitignore只能忽略那些原来没有被track的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。那么解决方法就是先把本地缓存删除(改变成未track状态),然后再提交: git rm -r --cached . git add . git commit -m 'update .gitignore' 阅读全文
posted @ 2017-10-14 12:16 cnkker.com 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页