tested on android 6 tencent qq
-
设法将
/data/data/com.tencent.*/databases
目录拷贝出来,我假设你了解如何做到这一点。 -
运行以下命令。我假设你了解如何安装/使用sqlite,我假设你了解linux基本知识。
$ sqlite3 872222222-IndexQQMsg.db
git config --global https.proxy http://127.0.0.1:1080 | |
git config --global https.proxy https://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |
class Singleton(object): | |
def __new__(cls, *args, **kwargs): | |
if not hasattr(cls, '_instance'): | |
# origin = super(Singleton, cls) | |
# cls._instance = origin.__new__(cls, *args, **kwargs) | |
cls._instance = super().__new__(cls, *args, **kwargs) | |
return cls._instance | |
class Myclass(Singleton): | |
pass |
每个平台的信号定义或许有些不同。下面列出了POSIX中定义的信号。 Linux 使用34-64信号用作实时系统中。 命令man 7 signal提供了官方的信号介绍。
在POSIX.1-1990标准中定义的信号列表