Skip to content
goodrick edited this page Aug 20, 2022 · 2 revisions

1、代码比较工具

WinMerge is an open source differencing and merging tool for Windows

2、前端更改伪元素

document.styleSheets[0].insertRule('.w-e-icon-fullscreen:before{content:"111"!important}',0)

3、CSS动画起始位置

.markdown-body a:after { content: ""; position: absolute; width: 98%; height: 10px;//高度 bottom: 0; left: 0; transform: scaleX(0); background-color: #a862ea; transform-origin: bottom right; // 动画起始位置 transition: transform .3s ease-in-out; }

4、git代码统计

git log --since="2022.01.01" --before="2022.01.06" --author="$(git config --get user.name)" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }'

5、

Clone this wiki locally