Using EasyTier and a Proxy at the Same Time

Using EasyTier and a Proxy at the Same Time On a phone, only one VPN can exist at a time, so EasyTier and a proxy cannot be used directly at the same time; here is a workaround. Preparation Here I will use EasyTier and v2rayN as examples. We also need any other proxy software; I used FlClash. Steps Both EasyTier and v2rayN need the tun mode turned off, that is, v2 stays in proxy-only mode. ...

2025-11-16 · 1 min · 3rd

EasyTier with frp Internal Network Traversal

EasyTier with frp Internal Network Traversal Background Foreign servers have high latency, which makes game streaming inconvenient; domestic servers have expensive bandwidth, which makes game streaming unaffordable. So I thought of using internal network traversal to open a public port… Preparation Any internal network traversal service will do — only a single port is needed. Here I use the public 1.1.1.1:12345 as an example. ⚠️ Note: For the local <IP:PORT> of the internal network traversal, be careful NOT to use 127.0.0.1 or localhost; you can use another internal address bound to your network interface, such as 192.168.1.23. Otherwise it will complain about a loopback address or something. Just use the port EasyTier listens on, which defaults to 11010. ...

2025-11-12 · 2 mins · 3rd

Installing GUI Serial Tool COMTool on LCKFB TaishanPi

Installing GUI Serial Tool COMTool on LCKFB TaishanPi The TaishanPi is pretty good indeed, JLC rocks! Steps Follow the steps titled “Install as a Python package” provided by the software and execute them in order: 1 2 sudo apt install git python3-pyqt5 python3-numpy pip install -i https://pypi.tuna.tsinghua.edu.cn/simple comtool pyqt5 is error-prone to install with pip, so install it with the system package manager. Note The default system image of the TaishanPi does not include pip; install it with the following command: ...

2024-03-05 · 1 min · 3rd

Using Mouse Side Buttons to Navigate Forward and Backward in CLion

Using Mouse Side Buttons to Navigate Forward and Backward in CLion I’m not sure whether the official keymap supports navigating forward and backward with mouse side buttons while browsing code. The VSCode shortcut plugin does not support this natively, but it can be added manually. Steps The Navigate menu in the menu bar provides the forward and backward actions. Go to Settings -> Keymap -> Main Menu -> Navigate, where you’ll find the Forward and Back actions. Right-click and select Add Mouse Shortcut, then set it to a mouse side button. ...

2023-10-30 · 1 min · 3rd

Adding Filesystem Access Permissions for Specific Paths to Flatpak Applications

Adding Filesystem Access Permissions for Specific Paths to Flatpak Applications Flatpak uses a sandbox to ensure security, but as a result some folders and paths cannot be accessed inside applications. After consulting the documentation, I found that this problem can be solved by setting access permissions. Steps See the “Filesystem access” section of the official documentation. You can use the following option to add access permissions for a specific path: ...

2023-09-03 · 1 min · 3rd