摘要:
git常见操作 git log filename 查看提交记录 git log -p filename 可以显示每次提交的diff 查看某次提交中的某个文件变化,可以直接加上fileName git show c5e69804bbd9725b5dece57f8cbece4a96b9f80b file 阅读全文
摘要:
四象限法则 三、处理四象限事务的法则1、第一象限:立即去做2、第二象限:有计划的去做1)对第二象限的事务进行目标描述和任务分解3、第三象限:交给别人去做,用“猴子法则”走出第三象限大部分人发现时间不够的主要原因是将太多不属于自己的工作揽在自己身上。,另一方面可以应用与在团队协作时不要让工作进度停留在 阅读全文
摘要:
# vim常用技巧 忠告, 如果有插件的需求,使用neovim替换vim ## 常用命令 ### 格式转换 - 查看文件格式 `:set ff` (支持两种格式 unix, dos) - 文件格式转为linux `:set ff=unix` ### 常用 - 删除空行 `:g/^$/d` 删除空行 阅读全文
摘要:
查看总的文件打开数 lsof 查看占用文件打开数最多的10个进制 lsof | awk '{print $2}' | sort | uniq -c | sort -nr | head -n 10 # lsof | awk '{print $2}' | sort | uniq -c | sort -n 阅读全文
摘要:
so动态库的搜索路径搜索的先后顺序 编译目标代码时指定的动态库搜索路径 环境变量LD_LIBRARY_PATH指定的动态库搜索路径 配置文件/etc/ld.so.conf中指定的动态库搜索路径 默认的动态库搜索路径/lib 默认的动态库搜索路径/usr/lib gcc编译指定动态库搜索路径 -Wl, 阅读全文
摘要:
交叉编译需要linux环境 windows 安装编译器 apt install gcc-mingw-w64 编译指令 windows: CGO_ENABLED=1 \ GOOS=windows \ GOARCH=amd64 \ CC=x86_64-w64-mingw32-gcc \ go build 阅读全文
摘要:
因为我们更喜欢在Linux上开发程序, 所以生成交叉编译器,以便在Linux上交叉编译出windows程序。 安装minGW:在Linux上运行gcc交叉编译生成windows程序 我们用到Cgo,因此需要安装 C 语言交叉编译器 sudo apt-get install gcc-mingw-w64 阅读全文
摘要:
添加代码 InitInstance() AllocConsole(); freopen("CONOUT$", "a+", stdout); 阅读全文
摘要:
参考项目 https://github.com/google/cloud-print-connector 谷歌云打印机连接器 cups linux系统 winspool windows系统 https://github.com/lxn/win A Windows API wrapper packag 阅读全文
摘要:
现象 错误 C4579 'nlohmann::json_abi_v3_11_2::detail::static_const<nlohmann::json_abi_v3_11_2::detail::from_json_fn>::value': in-class initialization for t 阅读全文
摘要:
sudo apt-get install cups-pdf 阅读全文
摘要:
docker离线版下载地址 https://download.docker.com/linux/static/stable/ 阅读全文
摘要:
windows下编译msys2 pacman -S mingw-w64-x86_64-libusb pacman -S mingw-w64-x86_64-pkg-config 注意 pacman -S mingw-w64-x86_64-pkg-config 不是 pacman -S pkg-conf 阅读全文