笔记

aspect css polyfill

.aspect-ratio-box { position: relative; max-width: 500px; } .aspect-ratio-box::before { float: left; padding-top: 56.25%; content: ''; } .aspect-ratio-box::after { display: bl...

Commit message 和 Change log 编写指南

Git 每次提交代码,都要写 Commit message(提交说明),否则就不允许提交。 $ git commit -m "hello world" 上面代码的-m参数,就是用来指定 commit mesage 的。 如果一行不够,可以只执行git commit,就...

node-sass和chromedriver

yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ yarn config set "chromedriver_cdnurl" "https://npm.taobao.org/mirrors/chromedriver"  

Electron 12+ 出现 require is not defined 报错解决

在 Electron 12 及更高版本,设置了nodeIntegration: true及nodeIntegrationInWorker: true、nodeIntegrationInSubframes: true,渲染进程仍然可能出现require is not defined的报错。 这个报错还跟随有mo...

github镜像站

https://git.sdut.me/ https://hub.fastgit.org/ https://github.com.cnpmjs.org/ https://github1s.com/

项目升级go 1.16.0采坑记

今天brew终于提供了go 1.16.0的安装更新,更新完成了,先找了一个项目,升级到go 1.16.0。我的环境是mac Big Sur,通过brew安装go,IDE是vscode,项目名称app-service。 删除app-service的go.mod和go.sum...

python压缩视频

# ffmpeg -i 1.mp4 -r 10 -pix_fmt yuv420p -vcodec libx264 -preset veryslow -profile:v baseline -crf 23 -acodec aac -b:a 32k -strict -5 147fss.mp4 # -i 输入的视频文件 # -r 每一秒的帧数,一秒10帧大...

VScode中删除空白行

使用VScode的查找替换功能可以删除文件中的空白行    ^\s*(?=\r?$)\n 1.按快捷键Ctrl H,召唤以下编辑面板 2.在查找中粘贴以下正则表达式^\s*(?=\r?$)\n,点击使用正则表达式查找。 3...

Column-count属性遇到的问题

用Column-count分成4列之后出现被截断问题。 解答: 如果column多列布局是写在ul,那就给li加上 -webkit-column-break-inside:avoid; height:100%; overflow: auto; //兼容火狐 break-inside:a...

Excel表格中怎么快速将公式运用到一整列

excel怎么把公式应用到整列呢?下面小编来教大家。 方法/步骤 首先,我们打开我们电脑上面的excel; 然后我们在单元格中输入两个数字,如图所示; ...