摘要:
title: AddressSanitizer使用教程 date: 2024-11-13 22:42:00 tags: 如果遇到了segmentation fault,可以试试AddressSanitizer (aka ASan)。官方文档:https://github.com/google/san 阅读全文
摘要:
title: 用Linux卸载手机上的系统软件 date: 2024-10-31 13:33:01 tags: 很多手机系统滥用系统软件定义,把没用的软件归类为系统软件,不让用户卸载。但我们可以用adb卸载这些软件。 首先用USB数据线将手机连接到电脑,在手机上切换到文件传输模式(MTP模式) 安装 阅读全文
摘要:
title: odbc 编译错误 'INT64' does not name a type; did you mean 'INT64_C'? date: 2020-04-08 22:51:59 在windows下sqlext.h依赖于windows.h。 #if defined(_WIN16) || 阅读全文
摘要:
title: Bad or missing usercopy whitelist? Kernel memory overwrite attempt detected to SLUB object date: 2020-11-11 14:59:45 Linux内核有一个usercopy whiteli 阅读全文
摘要:
title: 0xffffffffc1131d1d in ?? () Cannot find bounds of current function date: 2021-01-23 00:38:06 其实并不是崩了,只是gdb找不到目前在哪一行而已。为了验证,输入l命令打印附近的代码 (gdb) n 阅读全文
摘要:
title: flatpak教程 date: 2021-12-30 22:53:10 tags: 安装 flatpak是一款跨发行版的包管理器。官网:https://flatpak.org/ 这里有各个发行版的安装方法:https://flatpak.org/setup/ 这里以Deepin为例。 阅读全文
摘要:
title: Rust字节数组和整型互转 date: 2022-10-18 22:23:25 tags: 整型转字节数组 小端序:i16::to_le_bytes 大端序:i16::to_be_bytes 字节数组转整型 小端序:i16::from_le_bytes 大端序:i16::from_be 阅读全文
摘要:
title: tokio JoinHandle abort不起作用 date: 2021-08-25 17:36:59 可能是因为这个线程在一个没有await的死循环里? 参考:https://users.rust-lang.org/t/abort-asynchronous-task/61961 阅读全文
摘要:
title: rust进度条 date: 2021-07-07 16:45:40 用indicatif即可。 官方文档:https://docs.rs/indicatif/0.16.2/indicatif/ 一个简单的例子: use indicatif::ProgressBar; fn main() 阅读全文
摘要:
title: rust泛型初始化成0 date: 2020-09-04 00:02:25 tags: std::num::Int被deprecated了。所以只能用别人的crate或者自己实现Zero了。 github上有一个不错的: https://github.com/rust-num/num- 阅读全文