上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 官方文档: 简介 - Document (bndong.github.io) Github资源链接: BNDong/Cnblogs-Theme-SimpleMemory: 🍭 Cnblogs theme _ Basic theme : SimpleMemory (github.com) 阅读全文
posted @ 2021-12-23 00:47 散人长情 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支git branch -r 查看远程所有分支git commit -am "init" 提交并且加注释 git remote a 阅读全文
posted @ 2021-12-20 10:16 散人长情 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 数组排序内置函数 // 系统内置排序函数,.sort() // 排序帖子 https://blog.csdn.net/qq_34595425/article/details/122851284 // key如果有数字以外的其它内容则不能输出正常排序结果 Object.keys(); // .sort 阅读全文
posted @ 2021-12-16 15:19 散人长情 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1.查看和关闭指定端口进程 查找指定端口进程 netstat -o -n -a | findstr :8080 C:\Users>user>netstat -o -n -a | findstr :8080 TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 6988 TCP [ 阅读全文
posted @ 2021-12-16 15:09 散人长情 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 云服务器很久没管过了,今天去看了下云服务器日志,不看不知道,一看吓一跳。 日志里竟然是一排的报错,再翻下此前的日志,每天都报一个错误: [http-nio-80-exec-10] org.apache.coyote.http11.Http11Processor.service Error parsi 阅读全文
posted @ 2021-12-15 18:46 散人长情 阅读(7855) 评论(2) 推荐(1) 编辑
摘要: 删除空格 update 表名 set 字段名 = replace(字段名 ,' ','') ; 临时表创建与删除 -- 创建临时表 create temporary table if not exists Temporary_T(id int); -- 如果存在则删除 drop temporary 阅读全文
posted @ 2021-12-15 15:07 散人长情 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 由于经常写完样式一段时间后就忘了,特在此记录以作备用 文本不可选中 .noSelect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none 阅读全文
posted @ 2021-12-13 11:10 散人长情 阅读(37) 评论(0) 推荐(0) 编辑
摘要: // GBK转UTF-8 public String gbkToUtf8(String str) throws UnsupportedEncodingException { String iso=new String(str.getBytes("UTF-8"), "ISO-8859-1"); for 阅读全文
posted @ 2021-12-13 10:33 散人长情 阅读(234) 评论(0) 推荐(0) 编辑
摘要: pip国内镜像 在c:/用户/xxx/目录下创建pip文件夹,再创建pip.ini,这里选择的是清华的源镜像 [global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple[install]trusted-host=mirrors.aliyu 阅读全文
posted @ 2021-12-13 09:33 散人长情 阅读(27) 评论(0) 推荐(0) 编辑
摘要: java下载网络文件的N种方式 通过java api下载网络文件的方法有很多,主要方式有以下几种: 1、使用 common-io库下载文件,需要引入commons-io-2.6.jar public static void downloadByCommonIO(String url, String 阅读全文
posted @ 2021-12-10 10:19 散人长情 阅读(1012) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页