摘要:
bufio.ReadWriter bufio.Writer 看文档,这个Writer. God Damn Lazy! https://pkg.go.dev/bufio#Writer Damn !!!! 阅读全文
摘要:
写入 ~/.config/fontconfig/fonts.conf ,确定你安装了其中的字体 <?xml version='1.0'?> <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> <fontconfig> <!-- 默认字体设置 --> <match tar 阅读全文
摘要:
可能是少了这个依赖 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 阅读全文