View socks5.js
This file contains 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
const net = require('net') | |
net.createServer(client => { | |
client.once('data', data => { | |
client.write(Buffer.from([5, 0])); | |
client.once('data', data => { | |
data = [...data]; | |
let ver = data.shift(); | |
let cmd = data.shift(); //1: connect, 2: bind, 3: udp | |
let rsv = data.shift(); |
View nginx-webp-sample.conf
This file contains 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
user www-data; | |
http { | |
## | |
# Basic Settings | |
## | |
sendfile on; | |
tcp_nopush on; |
View manga.sh
This file contains 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
#!/bin/sh | |
# Author: symant233 | |
# Description: A script for Tachiyomi, making folders for single zip files | |
# in `/Tachiyomi/local` folder. Put this script in `/Tachiyomi` folder. | |
find ./local -mindepth 1 -maxdepth 1 -type f | while read dir | |
do | |
( | |
file="$(basename -- "$dir")" | |
extension="${file##*.}" |
View unwxapkg.py
This file contains 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
# coding: utf-8 | |
# py2 origin author lrdcq | |
# usage python3 unwxapkg.py filename | |
__author__ = 'Integ: https://github.com./integ' | |
import sys, os | |
import struct | |
class WxapkgFile(object): |
View notion_full_width.js
This file contains 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
// ==UserScript== | |
// @name Notion Full-Width Pages in Narrow Viewport Edited | |
// @namespace Notion Custom Scripts | |
// @match *://www.notion.so/* | |
// @grant GM_addStyle | |
// @version 1.4 | |
// @author Jacob Zimmerman (jczimm) <jczimm@jczimm.com> modified by symant233 | |
// @description Allows pages to fill the viewport width when the viewport is narrow. | |
// ==/UserScript== |
View wust_class_select.js
This file contains 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
// ==UserScript== | |
// @name 武汉科技大学选课系统去除其他校区 | |
// @namespace https://github.com/symant233 | |
// @version 0.0.1 | |
// @description 武汉科技大学选课系统 去除其他校区 | |
// @author symant233 | |
// @icon https://cdn.jsdelivr.net/gh/symant233/PublicTools/Beautify/Bkela.png | |
// @require https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js | |
// @match http://59.68.177.189/pyxx/pygl/pyjhxk.aspx | |
// @grant GM_addStyle |
View mv.py
This file contains 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
import glob | |
import json | |
import sys | |
import shutil | |
import os | |
# this might change, not sure, but probably not since 16 is a great number | |
HEADER_LENGTH = 16 | |
View worker.js
This file contains 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
addEventListener("fetch", (event) => { | |
const res = handleRequest(event.request) | |
.catch((err) => new Response(err.stack, { status: 500 })) | |
event.respondWith(res); | |
}); | |
/** | |
* @param {FetchEvent} request | |
*/ | |
async function handleRequest(request) { | |
const path = request.url; |
View vue-nginx.conf
This file contains 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
server { | |
server_name default_server; | |
# This is for Let's Encrypt certification renewal | |
include /etc/nginx/snippets/letsencrypt.conf; | |
# Redirect to https | |
location / { | |
return 301 https://$server_name$request_uri; | |
} | |
} |
View jiexi.js
This file contains 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
// ==UserScript== | |
// @name 【全网视频VIP解析】改 | |
// @version 1.0.0 | |
// @description 更改自脚本(ID:424086)v2.5,作者小艾特,遵循原作者GPL协议,仅用于学习. | |
// @author 小艾特, modified by symant233 | |
// @icon https://cdn.jsdelivr.net/gh/symant233/PublicTools/Beautify/Bkela.png | |
// @namespace https://greasyfork.org/zh-CN/scripts/424086 | |
// @require https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js | |
// @match *://v.qq.com/x/cover/* | |
// @match *://v.qq.com/x/page/* |
NewerOlder