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('👧','👦') // '👨👦👦' 哈哈哈
emoji大全
豁达的心胸能够修补专事诽谤的恶舌——荷马 分享一个开源库 https://github.com/ikatyang/emoji-cheat-sheet 其中收录了大部分emoji以及对应的markdown emoji-cheat-sheet This cheat sheet is automatically generated from GitHub Emoji API and Unicode Full Emoji List. Table of Contents Smileys & Emotion People & Body Animals & Nature Food & Drink Travel & Places Activities Objects Symbols Flags GitHub Custom Emoji Smileys & Emotion Face Smiling Face Affection Face Tongue Face Hand Face Neutral Skeptical Face Sleepy Fa...
jenkins升级坑
过度的严厉会造成恐惧,过分的温和会有失威严。不要严厉得使人憎恶,也不要温和得使人胆大妄为——萨迪 今天看到ubuntu上的jenkins这里有提示 点了一下,提示有新版本更新 又手贱点了一下,然后完蛋,过了一会儿,jenkins挂掉了 我打开finalShell(sh连接客户端)尝试重启 1systemctl start jenkins 提示启动失败,使用 123systemctl status jenkins# 或者journalctl -xe 查看详情,但是我没看明白报错 又试了试 1jenkins start 这次看懂了,提示java版本不对,需要java 11 or 17 1Jenkins requires Java versions [17, 11] but you are running with Java 1.8 from /jdk路径/java 原来升级了需要新jdk,那就去下一个,然后指定一下jenkins启动使用jdk11嘛 总不能升级当前所有jdk环境为java11吧,迁移成本太大了 于是下载jdk11 1wget https://repo....
kotlin NaN坑
发脾气的人比被发脾气的对象所受的损失更大——霍姆斯 今天发现一个坑,在代码里尝试toBigDecimal抛出了NumberFormatException debug一看,发现值为NaN 在kotlin里,这样的代码会导致NaN 1234val nan = 0.0 / 0.0nan.toBigDecimal() // java.lang.NumberFormatExceptionjava.lang.Double.isNaN(nan) // true 最重要的是NaN,不会通过 安全调用操作符?. 的判断,因为其属于有值 所以上述代码可以改为 12val nan = 0.0 / 0.0nan.takeUnless { it.isNaN() }?.toBigDecimal() // null
jackson kt module
儿童在学校的相似,是强制的结果。一旦毕业,强制随即结束。——爱尔维修 我们在使用jackson时,如果项目还包含kotlin,则会有警告 此时需要引入依赖 12345<dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.11.3</version></dependency> 并添加module 1234567891011121314151617181920212223242526272829303132333435363738394041424344import com.fasterxml.jackson.module.kotlin.KotlinModule;/** * web配置类 * * @author <achao1441470436@gmail.com> * ...
gitee代码评审建议
对自己没犯过的错误,人们是不太会引起警觉的——博斯威尔 链接:https://gitee.com/VampireAchao/stream-query/pulls/255 上图: 如何实现? 可以使用suggestion代码块 123```suggestionwrapper = Sf.mayColl(new HashSet(dataList)).mayLet(values -> wrapper.in(keyFunction, values)).orGet(() -> Database.notActive(wrapper));```
display:block小技巧
成功之道,在于你为获得成功所做出的积极努力,而不在于预先就衡量这种成功的价值——哈里特 分享一个小技巧 display:block 可以将style标签可见 例如: 12345678910111213<body> <style contenteditable style="display: block;white-space: pre"> * { transition: all 0.2s } html { background: #ff00ff; font-size: 16px } </style></body> 因为我们这里给了contenteditable 所以可以直接在页面上编辑 试试吧 * { transition: all 0.2s } html { ...
designMode
保持友谊的最好办法是不出卖朋友——米兹涅尔 我们可以使用 1document.designMode = 'on' 来开启页面的编辑模式 例如:
exeBuilder
爱惜衣裳要从新的时候起,爱惜名誉要从幼小的时候起——普希金 有些时候我们需要将java应用程序打成exe文件执行,此时可以使用 https://gitee.com/qsyan/ExeBuilder
