Skip to content

Instantly share code, notes, and snippets.

{
"checkpoints": [
"https://huggingface.co/misri/RealVisXL_V5.0_fp16/resolve/main/RealVisXL_V5.0_fp16.safetensors"
],
"vae": [
],
"unet": [
],
"diffusion_models": [
],
{
"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": [
{
"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",
{"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",
<?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">{&quot;peers&quot;:[{&quot;public_key&quot;:&quot;bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo=&quot;,&quot;endpoint&quot;:{&quot;v4&quot;:&quot;162.159.193.3:0&quot;,&quot;v6&quot;:&quot;[2606:4700:100::a29f:c103]:0&quot;}}],&quot;client_id&quot;:&quot;eWa9&quot;,&quot;interface&quot;:{&quot;addresses&quot;:{&quot;v4&quot;:&quot;172.16.0.2&quot;,&quot;v6&quot;:&quot;2606:4700:110:88eb:8cc6:d214:65d9:f748&quot;}},&quot;services&quot;:{&quot;htt
{
    "devices": [
        {
            "model": "K7X",
            "name": "我的OPOO手机",
            "report_data": {
                "cpuinfo": {
                    "average": "54.62",
                    "dataset": [
@megachweng
megachweng / threads1.py
Created November 24, 2018 15:57 — forked from jazzycamel/threads1.py
Simple example of the correct way to use (Py)Qt(5) and QThread
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)
@megachweng
megachweng / Pi3_as_WiFi_AP_Bridge.md
Created May 25, 2018 02:12 — forked from umardx/Pi3_as_WiFi_AP_Bridge.md
Using a Raspberry Pi 3 as a Wifi access point and bridge

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.

Install the required packages :

$ 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 :