08 2020 档案
摘要:用brew安装ffmpeg brew install ffmpeg 然后用npm的包node-ffmpeg: https://www.npmjs.com/package/ffmpeg 用node控制ffmpeg const ffmpeg = require('ffmpeg'); console.lo
阅读全文
摘要:参考:https://www.jianshu.com/p/66e2412efe83 简单的说,Chrome支持以下几种进程模型: Process-per-site-instance:就是你打开一个网站,然后从这个网站链开的一系列网站都属于一个进程。这是Chrome的默认模式。 Process-per
阅读全文
摘要:参考资料:https://zhuanlan.zhihu.com/p/103492877 在首选项,settiings.json加上 "editor.codeActionsOnSave": { "source.fixAll.eslint": true }
阅读全文
摘要:在首选项 --> 设置那加一句配置 "files.exclude": { "**/.git": false } 就可以在每个git目标看到.git文件夹了
阅读全文
摘要:fps(Frame per Second) > 每秒显示帧数或者每秒显示張数 1、shift + command + p 调出命令搜索 2、可以看到
阅读全文
摘要:参考链接:https://zhuanlan.zhihu.com/p/78077520 有时候,我们需要revert某个feat,因为这个feat需要延后上线。 但是过一段时间,这个feat要上线了,因此需要把之前的revert 再 revert回来,不然,这个feat分支已经没办法再merge到主线
阅读全文