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
| // ==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
| 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 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
| 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', |
OlderNewer