{
"devices": [
{
"model": "K7X",
"name": "我的OPOO手机",
"report_data": {
"cpuinfo": {
"average": "54.62",
"dataset": [
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "checkpoints": [ | |
| "https://huggingface.co/misri/RealVisXL_V5.0_fp16/resolve/main/RealVisXL_V5.0_fp16.safetensors" | |
| ], | |
| "vae": [ | |
| ], | |
| "unet": [ | |
| ], | |
| "diffusion_models": [ | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "checkpoints": [ | |
| "https://huggingface.co/Sidlly/repacked/resolve/main/checkpoints/RealVisXL_V5.0_fp16.safetensors" | |
| ], | |
| "vae": [ | |
| "https://huggingface.co/Sidlly/repacked/resolve/main/vae/wan_2.1_vae.safetensors" | |
| ], | |
| "unet": [ | |
| ], | |
| "diffusion_models": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "checkpoints": [ | |
| ], | |
| "vae": [ | |
| "https://huggingface.co/Comfy-Org/Wan_2.1_ComfyUI_repackaged/resolve/main/split_files/vae/wan_2.1_vae.safetensors" | |
| ], | |
| "unet": [ | |
| ], | |
| "diffusion_models": [ | |
| "https://huggingface.co/Kijai/WanVideo_comfy_fp8_scaled/resolve/main/InfiniteTalk/Wan2_1-InfiniteTalk-Single_fp8_e4m3fn_scaled_KJ.safetensors", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"nodes": [{"id": "0", "name": "DemoClass.setName", "symbolSize": 19.12381, "x": -266.82776, "y": 299.6904, "value": 28.685715, "category": 0}, {"id": "1", "name": "DemoClass.getBookDesc", "symbolSize": 2.6666666666666665, "x": -418.08344, "y": 446.8853, "value": 4, "category": 0}, {"id": "2", "name": "DemoClass.getBookDesc", "symbolSize": 6.323809333333333, "x": -212.76357, "y": 245.29176, "value": 9.485714, "category": 1}, {"id": "3", "name": "DemoClass.add", "symbolSize": 6.323809333333333, "x": -242.82404, "y": 235.26283, "value": 9.485714, "category": 1}, {"id": "4", "name": "DemoClass.getBookDesc", "symbolSize": 2.6666666666666665, "x": -379.30386, "y": 429.06424, "value": 4, "category": 0}, {"id": "5", "name": "DemoClass.listUsers", "symbolSize": 2.6666666666666665, "x": -417.26337, "y": 406.03506, "value": 4, "category": 0}, {"id": "6", "name": "DemoClass.setName", "symbolSize": 2.6666666666666665, "x": -332.6012, "y": 485.16974, "value": 4, "category": 0}, {"id": "7", "name": "DemoClass.getBookDesc", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version='1.0' encoding='utf-8' standalone='yes' ?> | |
| <map> | |
| <string name="correlation_id">t.f24d7452-de01-11ed-93e2-d605e0759105</string> | |
| <string name="warp_public_key">c1zph+QgfNpolw2pZvd3/GZUCE/iVrgpAVczm0A0jTg=</string> | |
| <boolean name="is_device_name_submitted" value="true" /> | |
| <boolean name="missing_splits" value="false" /> | |
| <boolean name="power_manager_warning_shown" value="true" /> | |
| <boolean name="switch_locked" value="false" /> | |
| <string name="gatewayUniqueID">793fcc3066fb7812c082e5eac9dbc75b</string> | |
| <string name="warp_tunnel_config">{"peers":[{"public_key":"bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=","endpoint":{"v4":"162.159.193.3:0","v6":"[2606:4700:100::a29f:c103]:0"}}],"client_id":"eWa9","interface":{"addresses":{"v4":"172.16.0.2","v6":"2606:4700:110:88eb:8cc6:d214:65d9:f748"}},"services":{"htt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PyQt5.QtCore import * | |
| from PyQt5.QtWidgets import * | |
| from itertools import count, islice | |
| class Threaded(QObject): | |
| result=pyqtSignal(int) | |
| def __init__(self, parent=None, **kwargs): | |
| super().__init__(parent, **kwargs) |
The specificity of my setup, is that the Raspberry won’t be a router but a bridge. DHCP is thus delegated to the main ADSL router and all devices connected to the AP will appear on the same network than other devices. The instructions below are based on a fresh Raspbian lite install so that it can be reproduced easily.
$ sudo apt-get install -y bridge-utils hostapd
To create a bridge, we need to enable ip_forward in the kernel, for that, edit /etc/sysctl.conf and remove comment (#) from the following line :