View deew_tg_notification.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
#!/usr/bin/env python3 | |
import requests | |
import sys | |
token = sys.argv[1] | |
to = sys.argv[2] | |
version = sys.argv[3] | |
r = requests.post( |
View mux.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/zsh | |
title="The.Righteous.Gemstones" | |
s="02" | |
orig_lan="eng" | |
tag_720="720p.AMZN.WEB-DL.DDP5.1.H.264.HUN.ENG-group" | |
tag_1080="1080p.AMZN.WEB-DL.DDP5.1.H.264.HUN.ENG-group" | |
for e in "$1"; do | |
output="$title".S"$s"E"$e" | |
vid_480=(--language 0:"$orig_lan" -A -S -M -T --no-global-tags --no-chapters vid/s"$s"e"$e"_480.mkv) |
View chapterstretch.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
#!/usr/bin/python3 | |
from sys import argv as Args | |
import datetime | |
def main(): | |
filename = Args[3] | |
for i, arg in enumerate(Args): | |
if '/' in arg: |
View keksh.sxcu
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
{ | |
"Version": "13.4.0", | |
"DestinationType": "ImageUploader", | |
"RequestMethod": "POST", | |
"RequestURL": "https://kek.sh/api/v1/posts", | |
"Headers": { | |
"x-kek-auth": "" | |
}, | |
"Body": "MultipartFormData", | |
"FileFormName": "file", |
View UpscaleCheck.avsi
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
function UpscaleCheck(clip c, string "resolution") { | |
resolution = default(resolution, "720") | |
eval("""Interleave(c.myffinfo("source", color_lawngreen), c.AutoResize(""" + Chr(34) + resolution + Chr(34) + """).z_Spline36Resize(c.width, c.height).myffinfo("source -> """ + resolution +""" -> source", color_cyan))""") | |
} |
View Corners.avsi
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
# Corners.avsi, https://forum.doom9.org/showthread.php?p=1819881#post1819881 | |
# Crops all 4 corners of input and outputs stack4 window clip of those corners, allows viewing of corners without scrolling large input clip. | |
# Giving W=Width(default width/4) and H=Height(default Height/4) of corners. (Default output dim half of input dim, ie 2*Width/4, 2*Height/4). | |
# (Max W=c.Width, H=c.Height, where output 4 window stack of double dimensions to input). | |
Function Corners(clip c, Int "W", Int "H") { | |
c | |
W = Default(W, 720) | |
H = Default(H, 360) | |
W = Default(W,Width/4) H = Default(H,Height/4) # Default corners quarter of dimensions | |
W=W/4*4 H=H/4*4 # W Mod4 (YV411 compat), H Mod4 (YV12 Interlaced compat) |
View mylwlinfo.avsi
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
red = $FF7C7C | |
green = $B2FF7C | |
blue = $8F97FF | |
yellow = $FFE07C | |
orange = $FFB97C | |
magenta = $FF77FF | |
violet = $C787FF | |
cyan = $7DF9FF | |
white = $FFFFFF | |
azure = $86C8FF |