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 url = new URL(event.request.url); | |
thisProxyServerUrlHttps = `${url.protocol}//${url.hostname}/`; | |
thisProxyServerUrl_hostOnly = url.host; | |
//console.log(thisProxyServerUrlHttps); | |
//console.log(thisProxyServerUrl_hostOnly); | |
event.respondWith(handleRequest(event.request)); | |
}); |
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(); |
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; |
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##*.}" |
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): |
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) <[email protected]> modified by symant233 | |
// @description Allows pages to fill the viewport width when the viewport is narrow. | |
// ==/UserScript== |
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 |
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 | |
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
/** | |
* Cloudflare Workers Raw content fetcher | |
* Usage: https://${yourWorkerRoute}/?https://developer.mozilla.org | |
*/ | |
addEventListener("fetch", (event) => { | |
const res = handleRequest(event.request) | |
.catch((err) => new Response(err.stack, { status: 500 })) | |
event.respondWith(res); | |
}); | |
/** |
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; | |
} | |
} |
NewerOlder