摘要: 文泉驿 http://wenq.org/wqy2/index.cgi霞鹜文楷 https://github.com/lxgw/LxgwWenKai阿里巴巴字体 https://fonts.alibabagroup.com/#/home站酷仓耳渔阳体等 https://www.zcool.com.cn 阅读全文
posted @ 2023-10-17 17:59 阿C 阅读(77) 评论(0) 推荐(0) 编辑
摘要: for file in *.cpp; do iconv --from-code=gb2312 --to-code=utf-8 $file > $file.utf8; mv $file.utf8 $file; donefor file in *.h; do iconv --from-code=gb23 阅读全文
posted @ 2023-06-21 13:52 阿C 阅读(121) 评论(0) 推荐(0) 编辑
摘要: ./bootstrap.sh --with-toolset=gcc project-config.jam: if ! gcc in [ feature.values <toolset> ]{ using gcc : arm : /home/arci/buildroot-2023.02/output/ 阅读全文
posted @ 2023-05-05 22:37 阿C 阅读(110) 评论(0) 推荐(0) 编辑
摘要: dtb反编译生成dts ./dtc -I dtb -O dts -o test.dts test.dtb dts编译生成dtb ./dtc -I dts -O dtb -o test.dtb test.dts 阅读全文
posted @ 2023-02-23 20:12 阿C 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 经常看到网上有些论调说 Qt 程序无比庞大,甚至拿 .NET 程序来比,说 Qt 程序打包以后跟 .NET 安装包差不多大。由此影响了很多人对 Qt 的选择。我觉得有必要对此做一些澄清—— 显然这个说法是错误的!! 很容易理解,虽然 Qt 提供了很多组件,但并非所有的组件都会被程序使用,也并非所有的 阅读全文
posted @ 2022-12-05 10:18 阿C 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: 代码如下mytest.c #include<stdio.h>#include<stdlib.h> //在elf格式中加入一个节.interp 此节含有 ELF 程序解析器的路径名//如果动态库不包括此节就不能被执行//注意你的连接器地址不一定是/lib64/ld-linux-x86-64.so.2这 阅读全文
posted @ 2022-12-02 09:49 阿C 阅读(193) 评论(0) 推荐(0) 编辑
摘要: xdotool是linux下,类似”按键精灵“的工具,在一些自动测试时,经常用到 以上为xdotool正常使用 比如说: 模拟击键a xdotool key a模拟两个键alt+tab xdotool key alt+Tab自动输入word xdotool type 'word'模拟鼠标移动+点击, 阅读全文
posted @ 2022-08-27 17:50 阿C 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: https://wiki.qt.io/Install_Qt_5_on_Ubuntu Troubleshooting Qt Creator needs a compiler set up to build Follow the instruction from the previous section 阅读全文
posted @ 2022-08-16 15:42 阿C 阅读(813) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.anyuer.club/?id=137 让我们先输入查看当前绝对路径命令 pwdimage.png 可见当前目录为/data/data/com.termux/files/home 再输入指令看看当前目录下的文件 lsimage.png 可以看到的是这里有一个zphishe 阅读全文
posted @ 2021-10-08 11:59 阿C 阅读(1801) 评论(0) 推荐(0) 编辑
摘要: echo -e -n "\xa5" | spi-pipe -d /dev/spidev1.6 阅读全文
posted @ 2021-10-03 16:23 阿C 阅读(553) 评论(0) 推荐(0) 编辑