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