上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: https://www.jianshu.com/p/1c7dc6669311 阅读全文
posted @ 2022-04-06 10:00 淡怀 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 一、效果 二、代码 /** * 格式化时间 * @param {*} fmt 如 'yyyy-MM-dd HH:mm:ss' * @param {*} date Date类型 */ const format = (fmt, date) => { var ret; var opt = { "y+": 阅读全文
posted @ 2022-04-05 17:04 淡怀 阅读(670) 评论(0) 推荐(0) 编辑
摘要: 一、浏览器中的请求头复制到文件中 二、代码解析 #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/4/3 22:37 @Author : @File :header.py @Version :1.0 @Function: "" 阅读全文
posted @ 2022-04-03 22:53 淡怀 阅读(774) 评论(0) 推荐(0) 编辑
摘要: 一、header文件 把浏览器中的header复制到文件中 二、代码解析 备注:可直接复制使用 import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson. 阅读全文
posted @ 2022-04-03 11:25 淡怀 阅读(1733) 评论(0) 推荐(0) 编辑
摘要: /** * 读取文本文件 * * @param filePath 文件路径 * @return 返回读取到的每行 列表 */ public static ArrayList<String> readFile(String filePath) { ArrayList<String> resultDat 阅读全文
posted @ 2022-04-03 11:06 淡怀 阅读(247) 评论(0) 推荐(0) 编辑
摘要: public class TimeCalc { /** * 将指定数字转换为时间(格式: 00:00:00,000) * * @param timeNumber 如 216059999 * @return 如 60:00:59,999 */ public static String calc(lon 阅读全文
posted @ 2022-04-03 10:50 淡怀 阅读(243) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { int h = 5; int m = 45; int s = 2; int ms = 67; // 补零 System.out.println(String.format("%02d:%02d:%02d,%03d", 阅读全文
posted @ 2022-04-03 10:47 淡怀 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 一、删除ArrayList中重复元素,保持顺序 /** * 删除ArrayList中重复元素,保持顺序 * * @param list 有重复的list * @return 去重后的list */ public static List removeDuplicateWithOrder(List li 阅读全文
posted @ 2022-04-02 16:20 淡怀 阅读(509) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/3/31 23:55 @Author : @File :TimeCalc.py @Version :1.0 @Function: """ class TimeCalc: @st 阅读全文
posted @ 2022-04-01 00:24 淡怀 阅读(280) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/3/31 23:00 @Author : @File :LinuxUtil.py @Version :1.0 @Function: pip install paramiko - 阅读全文
posted @ 2022-03-31 23:51 淡怀 阅读(1498) 评论(0) 推荐(0) 编辑
摘要: const sleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay)) async function repeatGreetingsLoop() { for (let i = 0; i <= 5; i++) { aw 阅读全文
posted @ 2022-03-31 19:59 淡怀 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 核心原理:在jenkins启动设置编码 https://www.cnblogs.com/gaigaige/p/6835084.html 阅读全文
posted @ 2022-03-30 20:09 淡怀 阅读(317) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/3/27 16:14 @Author : @File :PandasUtil.py @Version :1.0 @Function: """ import pandas as 阅读全文
posted @ 2022-03-27 17:29 淡怀 阅读(832) 评论(0) 推荐(0) 编辑
摘要: 一、需要多线程执行的任务 package thread; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; /** * @Author: * @Date: 2022/3/23 1 阅读全文
posted @ 2022-03-23 14:18 淡怀 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 一、需要多线程执行的任务 package thread; import java.text.SimpleDateFormat; import java.util.Date; /** * @Author: * @Date: 2022/3/23 10:53 * @Description: * @Vers 阅读全文
posted @ 2022-03-23 11:10 淡怀 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 官网:https://gatling.io/ Gatling简单测试SpringBoot工程: https://www.cnblogs.com/sanshengshui/p/9750478.html 阅读全文
posted @ 2022-03-10 14:08 淡怀 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 一、问题 在Git向服务器提交代码时,出现如下错误 missing Change-Id in commit message footer 二、原因 项目仓库.git/hooks目录下,commit-msg文件缺失。 三、解决 GIT打开项目路径 以此输入以下命令 gitdir=$(git rev-p 阅读全文
posted @ 2022-02-23 17:14 淡怀 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-18 16:22 淡怀 阅读(273) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1576613 阅读全文
posted @ 2022-02-14 10:29 淡怀 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 一、效果 破解后继续试用 14天试用满了之后 再次运行程序进行破解即可 二、破解程序下载(推荐) 已经将代码打包成了exe程序 可直接下载运行 下载地址: https://www.yuque.com/docs/share/963aba35-d3fc-4328-b2d0-6e4e1baeef05?# 阅读全文
posted @ 2022-02-13 22:41 淡怀 阅读(946) 评论(0) 推荐(0) 编辑
摘要: 1、先创建开机自启脚本(nginx.service) cd /etc/systemd/system vi nginx.service 2、nginx.service文件内容 # 仅修改 /usr/local/nginx/sbin/nginx 这个路径即可(修改为你的nginx路径) [Unit] D 阅读全文
posted @ 2022-02-13 11:20 淡怀 阅读(3967) 评论(0) 推荐(0) 编辑
摘要: 1、python调用C++ SDK的记录:https://blog.csdn.net/u014479551/article/details/1124767082、Python实例浅谈之三Python与C/C++相互调用:https://www.cnblogs.com/yanzi-meng/p/806 阅读全文
posted @ 2022-02-12 14:46 淡怀 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 1、在线PS:https://ps.gaoding.com/#/ 阅读全文
posted @ 2022-02-11 19:12 淡怀 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 一、效果 二、代码 可直接复制进行调用(修改main里对应参数即可) #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/2/11 11:05 @Author : @File :myemail.py @Version :1.0 阅读全文
posted @ 2022-02-11 12:46 淡怀 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 1、效果 2、代码 2.1、服务端 #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2022/1/27 10:15 @Author : @File :server.py @Version :1.0 @Function: """ imp 阅读全文
posted @ 2022-01-27 11:13 淡怀 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 项目搬迁的时候,需要把当前的环境依赖包导出,然后到部署项目的服务器上安装依赖。 我们可以通过下面的命令执行,把依赖包导出到requirements.txt文件里。 生成depend.txt文件: pip freeze > depend.txt 安装requirements.txt依赖: pip in 阅读全文
posted @ 2022-01-24 16:58 淡怀 阅读(328) 评论(0) 推荐(0) 编辑
摘要: VBS: https://www.jb51.net/article/203143.htm https://www.jb51.net/article/193691.htm https://www.jb51.net/article/175944.htm 阅读全文
posted @ 2022-01-20 11:32 淡怀 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、三百万数据只用了0.1毫秒?原来是使用了FST算法 2、 2.1、pyhotn的p2p-sip网络电话小试牛刀 2.2、Python的SIP客户端 阅读全文
posted @ 2022-01-19 12:50 淡怀 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、常用WEB工具大全 2、使用CSS做SVG动画 3、JavaScript Array 数组使用方法大全 4、前端如何解析和生成Excel表 5、127个常用的JS代码片段 Python调用C++ 1、python调用C++ SDK的记录:https://blog.csdn.net/u014479 阅读全文
posted @ 2022-01-19 12:44 淡怀 阅读(34) 评论(0) 推荐(0) 编辑
摘要: import zipfile def read_zip(zip_file_path: str, unpack_path: str, ws_msg: WebSocketMsg): """ 解压ZIP文件 @param zip_file_path: ZIP文件路径(ex. E:\aaa\a.zip) @ 阅读全文
posted @ 2022-01-08 14:13 淡怀 阅读(1395) 评论(0) 推荐(0) 编辑
摘要: 一、后端 python、django(channels) 1.1、安装channels pip install channels pip install channels_redis 1.2、配置项目settings.py文件中的INSTALLED_APPS值 新增channels、项目主站名称 1 阅读全文
posted @ 2022-01-07 11:17 淡怀 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 1、maven依赖 <!-- 下载文件 --> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>4.1.2</version> </dependency> <!-- 操作ex 阅读全文
posted @ 2022-01-07 00:00 淡怀 阅读(1113) 评论(0) 推荐(0) 编辑
摘要: maven依赖 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>4.1.2</version> </dependency> 测试 import cn.hutool.http. 阅读全文
posted @ 2022-01-06 22:08 淡怀 阅读(373) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yadongliang/p/14140029.html 说明:Linux中是配置 /usr/local/nginx/conf 路径下的 nginx.conf (而不是nginx安装路径下的nginx.conf 区分哪个是生效的 可以直接看日志) 前提: 阅读全文
posted @ 2022-01-03 17:51 淡怀 阅读(5259) 评论(0) 推荐(0) 编辑
摘要: # coding=utf-8 import hashlib md = hashlib.md5() md.update('abcdef'.encode('utf-8')) print(md.hexdigest()) e80b5017098950fc58aad83c8c14978e 阅读全文
posted @ 2021-12-23 16:08 淡怀 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 一、效果 二、前端代码 仅修改action即可(这是后端上传接口) <el-upload class="upload-demo" action="http://127.0.0.1:8549/file/upload/" :on-preview="handlePreview" :on-remove="h 阅读全文
posted @ 2021-12-22 19:08 淡怀 阅读(1452) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-21 15:38 淡怀 阅读(4983) 评论(3) 推荐(0) 编辑
摘要: 1、使用vue-org-tree vue-org-tree 2、使用relation-graph relation-graph 可在线配置预览 阅读全文
posted @ 2021-12-18 15:11 淡怀 阅读(7954) 评论(0) 推荐(0) 编辑
摘要: 1、效果 2、修改配置 在settings.json文件中加入配置 { "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.js": "vscode-typ=script", 阅读全文
posted @ 2021-12-12 03:28 淡怀 阅读(537) 评论(0) 推荐(0) 编辑
摘要: 一、自动生成文件注释 1.1、效果 /** * @Author: 作者 * @Date: ${DATE} ${TIME} * @Description: ${description} * @Version: v1.0 */ 1.2、配置方法 二、自动生成方法注释 2.1、效果 2.2、配置方法 模板 阅读全文
posted @ 2021-12-08 16:25 淡怀 阅读(1038) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页