07 2020 档案

摘要:1.安装 pip install Faker 2.示例 生成通讯录 from faker import Faker fake = Faker(locale='zh_CN') for _ in range(3): name = fake.name() address = fake.address() 阅读全文
posted @ 2020-07-31 15:33 慕尘 编辑
摘要:把汉字转成拼音后可以进行深度学习分类,做内容识别 1.安装 pip install pypinyin 2.使用 from pypinyin import Style, pinyin content = pinyin('汉语拼音') print(content) E:\python>python pi 阅读全文
posted @ 2020-07-31 14:23 慕尘 编辑
摘要:1.添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> <version>2.1.8.RELEASE</version> </d 阅读全文
posted @ 2020-07-30 17:58 慕尘 编辑
摘要:前几天想为大数据表添加字段,出现了 2013 - Lost connection to MySQL server during query 查看数据条数 + +| count(id) |+ +| 6367286 |+ + 重启机器只开启mysql后,添加字段成功了 为了避免这种问题,记录一下比较妥帖 阅读全文
posted @ 2020-07-29 14:24 慕尘 编辑
摘要:今天查找图纸的优化方法,在github上看到一个开源的代码,在python中使用subprocess.run调用外部程序 demo.py import subprocess COMMAND = "echo" PARAMS = r"hello,world" # Command to run cmd = 阅读全文
posted @ 2020-07-23 18:16 慕尘 阅读(1111) 评论(0) 推荐(0) 编辑
摘要:今天有人问我,怎么样将List转成sql中使用的in条件,好像用过,但是又记不清了,因此特意记下来 select * from table where colum in(条件) List<String> ids = Arrays.asList("1", "2","3"); StringBuffer 阅读全文
posted @ 2020-07-22 17:55 慕尘 阅读(4886) 评论(0) 推荐(0) 编辑
摘要:POST数据太大,导致nodejs服务请求失败,本地好好的,但是在服务器上修改之后仍然不成功 仔细想了下,服务器使用了nginx反向代理,nginx限制了请求大小,默认是1M,超出限制会出现413错误 解决的方法 server { listen 3001; server_name 127.0.0.1 阅读全文
posted @ 2020-07-22 11:28 慕尘 编辑
摘要:POST数据太大,出现了413错误,错误描述 request entity too large 原因: 使用了koa-body,koa-bodyparser,从它们的README看,接收的参数有默认大小 koa-body - `jsonLimit` **{String|Integer}** The 阅读全文
posted @ 2020-07-22 11:05 慕尘 阅读(2967) 评论(0) 推荐(0) 编辑
摘要:kaptcha是一个开源的验证码实现库 1.添加依赖 <dependency> <groupId>com.github.axet</groupId> <artifactId>kaptcha</artifactId> <version>0.0.9</version> </dependency> 2.添 阅读全文
posted @ 2020-07-17 18:26 慕尘 编辑
摘要:uTools是一个极简、插件化、跨平台的现代桌面软件。通过自由选配丰富的插件,打造你得心应手的工具集合。 http://www.u.tools/ 比较喜欢里面的内网穿透 连接后就可以使用外网域名访问了 阅读全文
posted @ 2020-07-16 17:57 慕尘 编辑
摘要:在运行vue项目时,其中使用了for循环,显示正常,但命令行出现一段警告 处理方法 加上 :key="index" v-for 常见的用法 <ul> <li v-for="item in items" :key="item.id">...</li> </ul> 阅读全文
posted @ 2020-07-14 11:31 慕尘 编辑
摘要:代理对象不允许复制,因此写块操作被拒绝 解决的方法: 1.选中需要复制的对象 2. 复制链接 或 命令 __COPYLINK 3. 新建空白文件 4.粘贴到原坐标 在新文件中,就可以选择保存成块了 阅读全文
posted @ 2020-07-13 11:38 慕尘 编辑
摘要:在AutoCAD中粘贴后看不到怎么办 双击中键——最大化显视 阅读全文
posted @ 2020-07-13 11:29 慕尘 编辑
摘要:Gin 是一个用 Go (Golang) 编写的 web 框架 它具有运行速度快,分组的路由器,良好的崩溃捕获和错误处理,非常好的支持中间件和 json go的版本 配置环境变量 set GO111MODULE=on set GOPROXY=https://goproxy.io 初始化 go mod 阅读全文
posted @ 2020-07-12 22:35 慕尘 编辑
摘要:下载rust https://www.rust-lang.org/zh-CN/learn/get-started 安装完成后,查看版本 在安装 Rustup 时,也会安装 Rust 构建工具和包管理器的最新稳定版,Cargo 新建项目hello-rust $ cargo new hello-rust 阅读全文
posted @ 2020-07-07 13:21 慕尘 阅读(182) 评论(0) 推荐(0) 编辑
摘要:拉取crates.io非常慢,切换到国内镜像 在当前用户下找到.cargo 新建文件config [source.crates-io] registry = "https://github.com/rust-lang/crates.io-index" # 指定镜像 replace-with = 't 阅读全文
posted @ 2020-07-07 13:20 慕尘 编辑