ERROR Plugin load failed: hexo-generator-json-content
天道之数,至则反,盛则衰。人心之变,有余则骄,骄则缓怠。——管子 发现博客里hexo命令突然用不了了(我重新cnpm i了一下导致的) 报错如下: 既然报错这个模块,我们进去看看 然后发现了端倪,这里用到的hexo-util选择的最新版,且下面根本没有dist目录,但是之前还是好的,并且我此处出现两个hexo-util版本。。。 看了下源码地址,原来四天前发版了 解决办法: 进入报错的hexo目录 12345cd D:\file\blog\blog\node_modules\hexo-generator-json-content# 卸载新版本npm uni hexo-util# 安装 2.7版本npm i hexo-util@2.7 再返回到我们博客目录 成功执行hexo命令
java ics解析ical4j
提防那种从不还手的人;他们既不肯宽恕你,也不容许你宽恕自己——萧伯纳 分享一个java解析ics的库 https://www.ical4j.org/ 安装: 123456789101112<project> ... <dependencies> <dependency> <groupId>org.mnode.ical4j</groupId> <artifactId>ical4j</artifactId> <version>1.0.2</version> </dependency> ... </dependencies> ...</project> 使用:https://www.ical4j.org/examples/parsing/ 我这里是获取节假日信息,数据来源:节假日补班日历 可以直接用hutool-HttpUtil 1HttpUtil.get("https:...
在线制作gif icon
慎重和检点是女孩子最好的才智——夏洛蒂·勃朗特 分享一个在线制作gif icon的网站: https://loading.io/ 非常的好用
get请求包参数属性为数组(二)
伤害可能被原谅,但不会被遗忘——伊索 之前写过一篇get请求包含参数属性为数组 但是发现不适用数组不为对象的情况,例如ids: [1024, 2048, 4096],而且可读性有点差,使用起来还得转下参数,所以封装了改良版 1234567891011121314151617181920212223242526272829303132333435let searchParams = { current: 1, size: 1, orders: [ { column:'age', asc:true }, { column:'name', asc:true } ], ids: [1024, 204...
filterTree递归树过滤实现
二人同心,其利断金;同心之言,其臭如兰——《周易·系辞上》 引入依赖: 123456<!-- https://search.maven.org/artifact/io.github.vampireachao/stream-query --><dependency> <groupId>io.github.vampireachao</groupId> <artifactId>stream-core</artifactId> <version>${stream-query-version}</version></dependency> 使用: 1234567891011121314151617181920212223242526272829303132333435363738394041424344@Test void testFilterTree() { List<Student> studentTr...
parceljs
趋炎附势的人,不可与其共患难。——拜伦 分享一个前端打包工具 官方文档:https://parceljs.org/ 中文文档:https://www.parceljs.cn/ 非常好用
springboot,get传日期格式转换
男女双方愿意相互观察是爱情的第一征象——瓦西列 对于这种请求: 1http://api.achao.cn/example?date=2022-11-09 我们可以配置转换器,mvc则会自动帮我们转 12345678910111213141516171819202122232425262728293031323334353637383940import cn.hutool.core.date.DatePattern;import io.github.vampireachao.stream.core.optional.Sf;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Configuration;import org.springframework.core.convert.ConversionService;import org.springframework.core.convert.converter.C...
flexboxdefense
理解绝对是养育一切友情之果的土壤——威尔逊 分享一个还不错的网站: http://www.flexboxdefense.com/ 其可以通过塔防游戏的方式,来让玩家学习flex布局 一共12关,每一关都精心设计
activeError: error:0308010C:digital envelope routines::unsupported
苛求君子,宽纵小人,自以为明察秋毫,而实则反助小人张目——鲁迅 昨天遇到这个报错了: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152PS D:\project\promotion\vue\gridsome-starter-default-master> gridsome developGridsome v0.7.23Initializing plugins...Load sources - 0sCreate GraphQL schema - 0.03sCreate pages and templates - 0.15sGenerate temporary code - 0.57sBootstrap finish - 8.57s10% building 1/1 modules 0 activeError: error:0308010C:digital envelope routines::unsupported at new...
奇特的emoji
君子之交淡若水,小人之交甘若醴;君子淡以亲,小人甘以绝——庄周 分享一个emoji小技巧 123[...'👨👧👦'] // ['👨', '', '👧', '', '👦']'👨👧👦'.replace('👦','👧') // '👨👧👧''👨👧👦'.replace('👧','👦') // '👨👦👦' 哈哈哈
