:doodle{ @size: 100vm 98vmin; } position: fixed; top: @r(1%, 100%); left: @r(1%, 100%); width: 2px; height: 2px; background: #04033e; border-radius: 50%; z-index:-999; background: hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)); zoom: @rn(.1, 5, 3); transform: rotate(@r(360deg)) translate(@r(-50, 50)vmin, @r(-50, 50)vmin); animation: move @r(20, 40)s infinite @r(-10, 0)s @p(linear, ease-in, ease-in-out) alternate; box-shadow: 0 0 1px hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)), 0 0 3px hsl(@r(90, 120, 3), @r(90%, 100%), @r(30%, 40%)); @keyframes move { 0% { transform: rotate(0) translate(0, 0); } 100% { transform: rotate(720) translate(-90, -90); } } @keyframes starMove{ from { } to { } } @keyframes weiba{ 100%{ box-shadow: 0 0 100px #fff, 0 0 300px #fff; } }
摘要: ![](https://img2020.cnblogs.com/blog/668423/202109/668423-20210908114453547-730258275.png) 阅读全文
posted @ 2021-09-08 11:44 ⁂六娃⁂ 阅读(193) 评论(0) 推荐(1)
摘要: fetch(new Request('url',{ method:'POST', headers: {'Content-Type': 'application/json'}, body:"{\"test\":[\"test\"]}" })).then((resp)=>{console.log(res 阅读全文
posted @ 2021-08-23 17:10 ⁂六娃⁂ 阅读(638) 评论(0) 推荐(0)
摘要: 如题,最近业务经常被死锁,排查后发现有其他定期执行的sql,会影响业务相关功能。 定期执行的sql中,有create temp table select xxxxxx的语句,语句中关联到了业务表,最终导致死锁。 咨询DBA后,创建临时表并通过查询往临时表中插入数据时,可以加一个标记,解决死锁问题。 阅读全文
posted @ 2021-06-18 10:58 ⁂六娃⁂ 阅读(70) 评论(0) 推荐(0)
摘要: 背景 记录在redis中的多语言缓存,突然发现取值无法正常解析,加日志后发现,从redis取出来的值,有些在正常值的前面多了很多 \u0000 ,有些值好像是覆盖原有值但没覆盖全的样子 {"key":"new Value"}lue"},导致在解析数据是报错。 定位问题 通过记录日志,发现在向redi 阅读全文
posted @ 2021-03-31 11:58 ⁂六娃⁂ 阅读(4300) 评论(0) 推荐(0)
摘要: 新建bat文件,编辑添加以下内容 @echo off setlocal enabledelayedexpansion copy *.csv final.csv echo 合并成功! pause bat文件和csv文件在同一目录下。 双击运行即可 阅读全文
posted @ 2020-07-12 10:04 ⁂六娃⁂ 阅读(3719) 评论(0) 推荐(0)
摘要: 挖坑!!! 阅读全文
posted @ 2020-06-09 09:52 ⁂六娃⁂ 阅读(130) 评论(0) 推荐(0)
摘要: 挖坑 阅读全文
posted @ 2020-06-09 09:51 ⁂六娃⁂ 阅读(115) 评论(0) 推荐(0)
摘要: 1.对数组元素进行条件判断,并获取符合条件的元素index itemIndex = tempArray.findIndex((value, index, arr) => { return value._id == 1; }); 2.HTML 图片自适应大小 img{ width:auto; heig 阅读全文
posted @ 2020-04-17 13:06 ⁂六娃⁂ 阅读(170) 评论(0) 推荐(0)
摘要: SFTP 1.连接:sftp -oPort=[port] [user]@[ip] 2.获取文件: get [path] 3.上传文件: put [path] 4.断开连接: exit VIM 1.开始编辑: a 2.保存: esc → :w → enter 3.退出: esc → :q → ente 阅读全文
posted @ 2020-04-16 10:45 ⁂六娃⁂ 阅读(153) 评论(0) 推荐(0)
摘要: SpringBoot项目接入Jco调用SAP接口遇到的问题 1.1 It is not allowed to rename or repackage the original archive "sapjco3.jar". 由于jar包是下载到本地的,所以将 jar包添加到本地仓库。再在项目中引用。 阅读全文
posted @ 2020-04-16 10:36 ⁂六娃⁂ 阅读(3980) 评论(0) 推荐(2)
xxxx