Python
从源码开始构建任意版本 Python从官网只能获得最新版本的 Python for Linux 二进制文件,想要旧版本就自己动手构建吧! 源码获取:Python Official GitHub/python 构建 Python 可执行文件: git clone https://github.com/python/cpython && cd cpython ./configure --enable-optimizations --with-lto make -j $(nproc)安装:sudo make install 使用 venvconda 虽好但是太麻烦,venv小巧简洁大部分情况下足够使用。 使用 python -m venv <venv_path> 创建一个 venv,如果你使用 bash,执行 source <venv_path>/bin/activate 同理如果是 fish 就执行:source <venv_path>/bin/activate.fish 现在你可以愉快地使用了。
Obsidian Smooth Cursor
Install Ninja Cursor plugin. Enable this css snippet in Obsidian. /* Hides Ninja Cursor during selection to avoid Spanning Across Lines */ body:has(.cm-cursor-primary) .x-cursor { display: none; } /* If the Workspace is active and in source mode, Ninja Cursor is applied. */ body:has(.x-cursor):has(.workspace-leaf.mod-active > [data-mode="source"]) { --my-cursor-color: var(--caret-color); /* Sets color of your cursors. */ --ninja-cursor-width:...
Android Guide
Magisk(Root) Unlock the bootloader. Install Android development tools (adb, fastboot). Install Magisk app. Get boot.img from ROM file. Useful tool: payload-dumper-go. Patch the boot.img using Magisk. Reboot to fastboot mode and flash the patched boot.img to boot partition (fastboot flash boot <boot.img>). Reboot, and the device will be rooted. LSPosed Make sure your device rooted. Install Lsposed. Download the zip file and flash it using Magisk LSPosed Official LSPosed-JingMatrix...
Trojan
Installsudo pacman -S trojan Client configEdit /etc/trojan/config.json Template config json file: { "run_type": "client", "local_addr": "<local_addr>", "local_port": <local_port>, "remote_addr": "<remote_addr>", "remote_port": <remote_port>, "password": [ "<password>" ], "log_level": 1, "ssl":...