- 博客(697)
- 资源 (1)
- 收藏
- 关注
原创 在使用 Android Jetpack Compose的 App里创建 SurfaceView和Surface
基本方法是使用AndroidView创建surfaceview,在surfaceHolder的callback里取得surface。
2025-12-27 14:29:18
80
转载 Rooting an Android Emulator for Mobile Security Testing
【代码】Rooting an Android Emulator for Mobile Security Testing。
2025-12-06 00:58:23
43
原创 An error occurred while preparing SDK package Google TV Intel x86 Atom System Image: Not in GZIP
SDK下载失败导致后面无法再次下载的解决方法
2025-11-29 19:28:09
804
3
原创 如何删除 Mesa 源代码安装的文件。
网上搜了下,发现有人也在抱怨没有 meson uninstall 这样的命令。另外, 下面的文件记录了安装了哪些文件。但后来想删掉,却没找到方法。
2025-11-26 23:31:56
149
原创 Android studio: The emulator process is terminated
之后,重新命令行 launch 模拟器,还是会crash.但如果加上 -gpu off 选项,就不会crash.# 进入 Android SDK 的 emulator 目录。最后把显卡驱动退回到一个老一点的版本(这说明很有可能和显卡驱动有关。# 启动模拟器并显示详细日志。# 列出所有 AVD。),最终把问题解决。
2025-11-26 23:05:58
234
原创 C# Console App生成的 dll文件
可执行文件是一个app host, 它是一个native binary;dll文件则是一个 managed app, 可以用 dotnet ConsoleApp1.dll 执行。执行 可执行文件的时候,内部会调用 dll.在使用 dotnet 8.0 创建一个 C# console app后,执行完编译操作,会发现除了生成可执行文件外,还生成一个 dll文件。
2025-07-10 00:29:02
300
转载 HDMI vs HDCP: Everything You Should Know About HDMI
HDMI and HDCP are common terms for projectors and other electric devices, such as computers, TVs, and game consoles. In this post, we will share some plain tips on HDMI and HDCP, helping you to know their differences and functions.Table of Contents1 What i
2025-06-27 00:25:38
208
转载 How to Fix Failed to Mount Wrong FS Type, Bad Option, Bad Superblock on Linux
【代码】How to Fix Failed to Mount Wrong FS Type, Bad Option, Bad Superblock on Linux。
2025-05-19 01:01:57
337
转载 Ubuntu 20.04 系统或图像界面卡死或完全无响应处理方法
若Terminal终端还可运行,则一般可以使用Ctrl+Alt+F1(F1~F6, F7为Xorg图像界面)可以进入tty命令行终端,然使用命令行强行终止可能存在占用资源过高的进程(sudo pkill Xorg, sudo restart lightdm等),或reboot/restart重启机器等。但Ubuntu系统完全无响应,可能是出现系统调度死锁等情况,需采取其他方法软重启系统。然后依次按下 R, E, I, S, U, B 键后等待安全重启。此时若一切正常,系统会安全重启。
2025-03-30 22:41:56
911
原创 Ubuntu 24.0上跳过snap安装 ubuntu software center
【代码】Ubuntu 24.0上跳过snap安装 ubuntu software center。
2025-03-16 18:07:29
248
转载 让Samba共享支持软链接(symlink)
昨天想到在samba共享的目录下新建了一个软链接指向了另外一个目录,试一下能否通过这种方式把多个目录整合到一个共享目录下,方便windows上进行访问。这样的话,windows只需要添加一个网络文件夹就行了,不需要每个共享目录都创建一个网络文件夹的入口。实际测试以后,在默认的samba配置下,可以在samba共享文件内创建软连接,但是在windows终端上挂载/访问这个目录是看不到目录内的软链接的。网上查了一下,只需要简单配置就可以支持,在此做个记录。
2024-12-22 21:14:04
684
转载 How to Transfer Files From Android to Ubuntu
【代码】How to Transfer Files From Android to Ubuntu。
2024-11-20 17:17:48
361
转载 Develop 32bit Applications on 64bit Linux Machines
Develop 32bit Applications on 64bit Linux Machines
2024-11-18 00:41:59
170
原创 dlopen failure: undefined symbol
今天遇到一个因为没有定义的符号导致 dlopen失败的问题。没有依赖lib1.so, 这或许是问题的原因。在 lib2.so里找不到 foo的定义。再执行 test,就没有刚才的那个问题了。foo 确实是 "U"
2024-09-26 23:47:29
468
原创 Make breakpoint pending on future shared library load
在使用GDB设置断点的时候,有时候会 GDBh 会提示 "Make breakpoint pending on future shared library load".一种情形是设置使用dlopen打开的动态库里的断点。下面通过一个例子说明。
2024-09-25 00:14:53
829
转载 LeetCode: 10. Regular Expression Matching
Given an input string and a pattern , implement regular expression matching with support for and where:The matching should cover the entire input string (not partial).Example 1:Input: s = "aa", p = "a"Output: falseExplanation: "a" does not match the
2024-09-22 10:12:32
239
1
原创 编译 python 3.12
因为系统预装的openssl 版本低,下载了一个新版本的openssl,然后在 configure 选项里指向安装的地址.。
2024-05-01 18:12:51
887
转载 Unzip Gz File Python: A Step-By-Step Guide
read file content of gzip file
2024-04-14 23:44:22
181
原创 正则表达式的资源
https://www.regular-expressions.info/index.htmlhttps://regex101.com/
2023-12-16 10:30:16
655
转载 Structured binding declaration (since C++17)
【代码】Structured binding declaration (since C++17)
2023-11-10 03:00:36
600
转载 How to enable/disable wayland on Ubuntu 22.04 Desktop
【代码】How to enable/disable wayland on Ubuntu 22.04 Desktop。
2023-10-28 00:04:01
966
原创 C++里的优先级队列
它是一个模板类:默认情况下是 max heap, 默认的比较函数是 std::less<T>.如果需要 min heap,或者是处理自定义的数据类型,需要提供定制的 比较函数。priority_queue 的实现使用了 std::make_heap, std::push_heap, std::pop_heap.
2023-07-31 00:14:35
268
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅