言寸

导航

2022年4月6日 #

Typora+PicGo+GitHub+GitHub Desktop

摘要: Typora 2022年的版本开始收费,可以下载以前的版本 Typora 是一款很好的markdown工具,缺点是图片只能本地查看,这里可以搭建图床 搭建图床 下载 PicGo 配置 安装插件,配置存储路径和文件名, 因为同名文件上传多次会报错,最好设置一下,保证文件名不重名 img/{y}-{m} 阅读全文

posted @ 2022-04-06 18:34 言寸 阅读(41) 评论(0) 推荐(0) 编辑

2021年12月13日 #

微信公众号开发-问题总结(坑)

摘要: 首先要吐槽的是,微信开发对开发者不太友好,各种限制; 限制一: 微信公众号测试号不能测客服功能,自己申请的个人公众号也没有权限,只能连公司的正式环境测,问题是正式环境不能随便瞎测啊 限制二: 微信公众号测试号获取素材列表接口,每天只有10次,这测个鬼 解决方案:自己开通一个公众号用来测试 限制三:从 阅读全文

posted @ 2021-12-13 18:36 言寸 阅读(250) 评论(0) 推荐(0) 编辑

2021年11月12日 #

map 取值报空指针,明明值存在

摘要: @Test public void testPesronMap() throws Exception { List<Long> ids = new ArrayList<>(); ids.add(1L); ids.add(2L); Map<Long, Person> map = personDao.s 阅读全文

posted @ 2021-11-12 10:14 言寸 阅读(822) 评论(0) 推荐(0) 编辑

2021年3月3日 #

Vue.js is detected on this page. Devtools inspection is not available because it's in production mode or explicitly disabled by the author

摘要: 在开发项目中文件 main.js 加入 Vue.config.devtools = true 再看,已经成功 阅读全文

posted @ 2021-03-03 16:02 言寸 阅读(3994) 评论(0) 推荐(0) 编辑

构建 thrift 简单项目, 使用 jmeter 去压测

摘要: 项目代码 https://github.com/xtj-yiluo/thriftJmeterTest 1、创建一个 thrift idl文件 namespace java com.syscom.thrift service lprocessData{ string processData(1:str 阅读全文

posted @ 2021-03-03 11:54 言寸 阅读(229) 评论(0) 推荐(0) 编辑

node 报错 npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! <https://npm.community> npm ERR! A complete log of this run can be found in:

摘要: npm ERR! cb() never called! npm ERR! This is an error with npm itself. Please report this error at: npm ERR! <https://npm.community> npm ERR! A comple 阅读全文

posted @ 2021-03-03 11:04 言寸 阅读(2389) 评论(0) 推荐(0) 编辑

2021年2月26日 #

thrift 异步方法调用报错 "TAsyncClientManager#SelectorThread 13" java.lang.NoSuchMethodError

摘要: 把同事的子项目,拿过来运行, 能调用同步方法, 但调用异步方法,编译能通过,但一直报错,最后对比发现,thrift依赖包版本不一致,选择降低版本,最后运行成功 "C:\Program Files\Java\jdk1.8.0_231\bin\java.exe" -ea -Didea.test.cycl 阅读全文

posted @ 2021-02-26 17:09 言寸 阅读(164) 评论(0) 推荐(0) 编辑

2021年2月3日 #

google 安装插件 plugin ,使用 Tampermonkey ,破解

摘要: 准备工作 一、安装谷歌访问助手 因为网络限制,正常情况下,是不能访问 google 插件市场的 要访问 google 插件市场,可以借助 “谷歌访问助手” 访问 1、下载 谷歌访问助手 此处 提供百度网盘链接下载 也可以从其它渠道获得 谷歌访问助手 百度网盘链接:https://pan.baidu. 阅读全文

posted @ 2021-02-03 13:54 言寸 阅读(1940) 评论(0) 推荐(0) 编辑

2021年1月27日 #

maven 查看依赖jar包,或获取版版本号 、license

摘要: 直接在命令行运行 mvn project-info-reports:dependencies 在生成的tar目录下 找到网址,直接打开 阅读全文

posted @ 2021-01-27 09:55 言寸 阅读(4271) 评论(0) 推荐(0) 编辑

2021年1月22日 #

windows 强制关掉端口

摘要: 在cmd下,输入 netstat -ano|findstr 8080 //说明:查看占用8080端口的进程 显示占用端口的进程 taskkill /pid 15132 /f 阅读全文

posted @ 2021-01-22 17:11 言寸 阅读(319) 评论(0) 推荐(0) 编辑