摘要:
可能是少了这个依赖 librime-lua sudo yum install librime-lua 阅读全文
摘要:
如果你习惯使用git pull ,同时又希望默认使用选项--rebase,你可以执行这条语句git config --global pull.rebase true 来更改pull.rebase 的默认配置 阅读全文
摘要:
命令: pyinstaller --onefile --collect-submodules openvino --collect-binaries openvino --collect-data openvino server.py server.spec (自动生成) # -*- mode: p 阅读全文
摘要:
tsconfig.json 重点在于 "jsx": "preserve", "jsxImportSource": "vue", { "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, "module": 阅读全文
摘要:
vite.config.ts const pathResolve = (pathStr: string) => { return path.resolve(__dirname, pathStr); }; // https://vitejs.dev/config/ export default def 阅读全文
摘要:
http://everet.org/thinking-of-emacs.html?utm_source=tuicool 阅读全文
摘要:
window.addEventListener('online', function() { console.log('浏览器已连接网络'); }); window.addEventListener('offline', function() { console.log('浏览器已断开网络'); } 阅读全文
摘要:
默认情况下,是使用 Ctrl+p 也只能向下进行选择,如果用 down 或者 up 手则需要离开主键盘区域,非常的不方便。 放到vscode配置快捷键的json文件中 { "key": "ctrl+n", "command": "closeFindWidget", "when": "editorFo 阅读全文
摘要:
event.stopPropagation(); 阅读全文
摘要:
拿下个月的第一天,减 24小时即可 24小时 = 86400000 毫秒 const maxDate = new Date( new Date(mainDate.value.setMonth(mainDate.value.getMonth() + 1)).setDate( 1 ) - 8640000 阅读全文