打赏
上一页 1 2 3 4 5 6 7 8 ··· 54 下一页
摘要: Goland生成类图 1.安装goplantuml # 找到生成成二进制目录,$GOBIN go get github.com/jfeliu007/goplantuml/cmd/goplantuml 将goplantuml集成到Goland 打开settings/Tools/External Too 阅读全文
posted @ 2022-07-01 18:12 苍山落暮 阅读(1814) 评论(0) 推荐(0) 编辑
摘要: Netcat工具使用 阅读全文
posted @ 2022-06-19 11:12 苍山落暮 阅读(17) 评论(0) 推荐(0) 编辑
摘要: QT安装 1.下载地址 官网地址: http://download.qt.io/ (很慢!) 2.推荐使用国内镜像源下载 中国科学技术大学:http://mirrors.ustc.edu.cn/qtproject/ 清华大学:https://mirrors.tuna.tsinghua.edu.cn/ 阅读全文
posted @ 2022-06-19 09:54 苍山落暮 阅读(117) 评论(0) 推荐(0) 编辑
摘要: websocket 查看websocket连接 netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' netstat -a |grep 8090 强制移除websocket连接 ss -tap | grep CLOS 阅读全文
posted @ 2022-06-17 13:51 苍山落暮 阅读(1827) 评论(0) 推荐(0) 编辑
摘要: git 自动补全 下载git补全的配置 curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash 编辑~/.bashrc 阅读全文
posted @ 2022-06-17 13:51 苍山落暮 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Ubuntu arm环境安装 (1.)首先需要有一个Ubuntu环境,不论物理机还是虚拟机 (2.)安装qemu-system-aarch64 # 安装完后,默认会安装在/usr/bin目录 sudo apt install -y qemu-system-arm (3.)下载UEFI固件 # 创建目 阅读全文
posted @ 2022-06-17 08:31 苍山落暮 阅读(2479) 评论(0) 推荐(0) 编辑
摘要: git 分支重命名 (1.) 重命名远程分支对应的本地分支 git branch -m oldName newName (2.) 删除远程分支 git push --delete origin oldName (3.) 上传新命名的本地分支 git push origin newName (4.) 阅读全文
posted @ 2022-06-17 08:29 苍山落暮 阅读(641) 评论(0) 推荐(0) 编辑
摘要: 1. SystemTap工具使用 1.工具下载 https://sourceware.org/systemtap/ftp/releases/ 2. unixSocket抓包 2.1 Socat抓包 sudo mv /path/to/sock /path/to/sock.original sudo s 阅读全文
posted @ 2022-06-10 16:37 苍山落暮 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: LevelDB查看工具 (1.)安装JAVA环境 https://www.oracle.com/java/technologies/downloads/#jdk18-windows (2.) 下载LevelDBViewer.jar包 https://github.com/SuperMarcus/Le 阅读全文
posted @ 2022-06-10 16:31 苍山落暮 阅读(2377) 评论(0) 推荐(0) 编辑
摘要: git submodule使用 (1.)常用命令 git clone <repository> --recursive //递归的方式克隆整个项目 git submodule add <repository> <path> //添加子模块 git submodule init //初始化子模块 gi 阅读全文
posted @ 2022-06-10 15:51 苍山落暮 阅读(234) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 54 下一页