使用 git diff
查看指定 commit 之间修改文件列表
linux-flash-file-system
Posted on
Edited on
Symbols count in article: 29 Reading time ≈ 1 mins.
Symbols count in article: 29 Reading time ≈ 1 mins.
git 带有参数的别名
git 别名以及使用参数相关注意事项
python 开发环境
基于 coc.nvim python 补全
GDB Tips
ddd调试嵌入式系统
GDB打印二维数组
- 打印数组
p *matrix@length
- 打印二维数组
p *matrix@cols@rows
- 打印二维数组
printMatrix matrix cols rows
define printMatrix set $arr = $arg0 set $rows = $arg1 set $cols = $arg2 set $i = 0 printf "\n" while $i < $rows set $j = 0 while $j < $cols printf "%02d, ",$arr[$i][$j] set $j = $j + 1 end printf "\n" set $i = $i + 1 end end
GDB扩展脚本
隐藏内部实现 C 库开发
gerrit命名空间
Gerrit 命名空间 refs/for/<branch>
用于代码评审,以及相关 alias
MySQL 安装与配置
记录 ubuntu18.04 安装并配置 MySQL
使用 objdump objcopy 查看修改符号表
- objdump 查看 ELF 文件内容
- objcopy 转换 ELF 文件格式
scrapy使用
使用 scrapy 爬虫框架编写爬虫