This file contains hidden or 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
export default { | |
async fetch(request) { | |
const { method, url } = request | |
const { pathname } = new URL(url) | |
const createResponse = (body, status) => new Response(body, { | |
status, | |
headers: { | |
'Content-Type': 'text/plain; charset=utf-8', | |
'Cache-Control': 'no-cache, no-store, must-revalidate', |
This file contains hidden or 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 Google Calendar Today | |
// @description click today for check schedules | |
// @version 1.0.0 | |
// @match https://calendar.google.com/calendar/u/0/r?tab=mc&pli=1 | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
setTimeout(function () { |
This file contains hidden or 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
on open location this_URL | |
set _NOT_ACTIVATED to 0 | |
if application "Vivaldi" is running then | |
# open previous browser | |
tell application "Vivaldi" | |
set totalWindows to count of window | |
set currentWindow to 1 | |
set selectedWindow to _NOT_ACTIVATED | |
This file contains hidden or 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 Tistory copy without source | |
// @version 1.0.0 | |
// @description remove source when copying | |
// @match http://*.tistory.com/* | |
// @match https://*.tistory.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
This file contains hidden or 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/python - <<EOF | |
import os | |
from sys import exit | |
from json import load as parse | |
from filecmp import cmp, clear_cache | |
# env | |
DOMAIN = '__YOUR_DOMAIN__' | |
DEFAULT_CERT_KEY = '__YOUR_CA_DIR__' | |
ACME_DIR = '__YOUR_ACME_DIR__' |
This file contains hidden or 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
#NoEnv | |
/* | |
* Variables | |
*/ | |
AUDIO_DEVICE_1 = __SOUND_DEVICE_WHAT_YOU_WANT_TO_SET_TEMPORARILY__ | |
AUDIO_DEVICE_2 = __SOUND_DEVICE_THE_ORIGINAL_ONE__ | |
;BLUESTACKS4_COMMAND = -json "{\"app_icon_url\":\"\",\"app_name\":\"Microsoft Launcher\",\"app_url\":\"\",\"app_pkg\":\"com.microsoft.launcher\"}" | |
global BLUESTACKS4_LAUNCHER_PATH := "__YOUR_BLUESTACKS4_PATH__\Bluestacks.exe " . BLUESTACKS4_COMMAND |
This file contains hidden or 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 khinsider Batch Downloader | |
// @description batch download for downloads.khinsider.com | |
// @version 1.0.0 | |
// @match https://downloads.khinsider.com/game-soundtracks/album/* | |
// @require https://cdn.jsdelivr.net/npm/[email protected]/dist/ponyfill.min.js | |
// @require https://cdn.jsdelivr.net/npm/[email protected]/StreamSaver.js | |
// @require https://cdn.jsdelivr.net/npm/[email protected]/examples/zip-stream.js | |
// @connect 23.237.126.42 | |
// @connect vgmsite.com |
This file contains hidden or 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 Gmarket Mouse Click Enabler | |
// @version 1.1.0 | |
// @description accept mouse right button click | |
// @match http://item.gmarket.co.kr/* | |
// @match https://item.gmarket.co.kr/* | |
// @match http://*.auction.co.kr/* | |
// @match https://*.auction.co.kr/* | |
// @grant none | |
// @run-at document-end |
This file contains hidden or 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
from bs4 import BeautifulSoup | |
from tkinter import Tk, Label, IntVar, Entry, Button | |
import requests | |
import ctypes | |
import win32process | |
import os | |
import sys | |
# variables | |
base_url = "http://wa.ilovegame.co.kr/event/read/" |
NewerOlder