Skip to content

Instantly share code, notes, and snippets.

View Sg4Dylan's full-sized avatar
🐱

SgDylan Sg4Dylan

🐱
View GitHub Profile
@Sg4Dylan
Sg4Dylan / gfwlist2unbound.py
Created May 8, 2020 01:19
将 gfwlist 转换为 Unbound 的 forward-zone 格式
# -*- coding:utf-8 -*-
"""
Convert https://raw.githubusercontent.com/petronny/gfwlist2pac/master/gfwlist.pac for unbound.
"""
import re
with open("gfwlist.conf", 'w') as wp:
for line in open("gfwlist.pac"):
@Sg4Dylan
Sg4Dylan / convert_model.bat
Created May 8, 2020 01:24
优化 PyTorch 输出 ONNX 模型并转换为 NCNN 模型
@ECHO OFF & CD/D "%~dp0"
::save as CRLF/ANSI format
::usage: drag ONNX model to .bat to start processing
:start
IF "%~1"=="" GOTO :END
:proc
python -m onnxsim "%~nx1" "%~nx1.sim.onnx"
@Sg4Dylan
Sg4Dylan / opti.py
Last active November 24, 2020 06:50
Export ESRGAN model to ONNX format
import onnx
import onnxoptimizer as optimizer
onnxfile = 'ONNX_FILE_NAME'
onnx_model = onnx.load(f'{onnxfile}.onnx')
inputs = onnx_model.graph.input
name_to_input = {}
for input in inputs:
name_to_input[input.name] = input
@Sg4Dylan
Sg4Dylan / Lightpack.ino
Created June 6, 2020 03:22
Lightpack 开源破车
/*
* Arduino interface for the use of WS2812 strip LEDs
* Uses Adalight protocol and is compatible with Boblight, Prismatik etc...
* "Magic Word" for synchronisation is 'Ada' followed by LED High, Low and Checksum
* @author: Wifsimster <wifsimster@gmail.com>
* @library: FastLED v3.001
* @date: 11/22/2015
*/
#include <FastLED.h>
#define NUM_LEDS 50 // 设置灯珠总数(貌似不能超过 400 个
@Sg4Dylan
Sg4Dylan / vmaf_for_image.py
Created June 7, 2020 03:07
使用 VMAF 测量图片质量
import os
import shutil
from PIL import Image
def check_size(image_a, image_b):
global i_size
w_a, h_a = Image.open(image_a).size
w_b, h_b = Image.open(image_b).size
if w_a == w_b and h_a == h_b:
@Sg4Dylan
Sg4Dylan / ascii2d_batch_match.py
Created July 19, 2020 08:23
使用 Ascii2D 批量匹配可能存在于 Pixiv 的 Twitter 图片
import os
import re
import json
import urllib
import requests
import wget
from tqdm import tqdm
from bs4 import BeautifulSoup
# 执行推理用
import numpy as np
@Sg4Dylan
Sg4Dylan / qb-ban-vampire.py
Last active January 26, 2024 02:30
qBittorrent block vampire peers. qBittorrent 屏蔽吸血客户端.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Author: Sg4Dylan -- <sg4dylan#gmail.com>
# Licence: GPLv3
import requests
import re
import json
import time
@Sg4Dylan
Sg4Dylan / dain_ncnn_vulkan_instance.ipynb
Last active September 8, 2020 04:20
dain-ncnn-vulkan@colaboratory
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sg4Dylan
Sg4Dylan / font_deobfs.ipynb
Created September 28, 2020 02:44
对抗字体反爬的深度学习实践
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sg4Dylan
Sg4Dylan / GoHFS-Exporter.user.js
Created October 18, 2020 04:08
配合 codeskyblue/gohttpserver 使用,aria2 直接下载目录并保持结构
// ==UserScript==
// @name GoHFS-Exporter
// @namespace http://tampermonkey.net/
// @version 2020.10.18(0.1)
// @description Export link from Go HFS to aria2
// @author SgDylan
// @match https://example.com/*
// ==/UserScript==
let downloadFileUrl = [];