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 Smart HDR Compressor (Detect then Process) | |
// @name:zh-CN 智能HDR压缩器 (先检测后处理) | |
// @namespace http://tampermonkey.net/ | |
// @version 4.1 | |
// @description Only processes images detected as HDR. First, checks if the display is in HDR mode. Then, does a quick scan for bright pixels. If found, performs a high-quality, color-preserving highlight compression in a web worker. | |
// @description:zh-CN 仅处理检测到的HDR图片。首先检查显示器是否为HDR模式,然后快速扫描图片是否存在高光像素。如果存在,则在后台使用Web Worker进行高质量、无色差的高光压缩。 | |
// @author Gemini | |
// @match *://*/* | |
// @grant none |
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 TimeJ | |
// @namespace TimeJ | |
// @version 1.0 | |
// @description TimeJ | |
// @author Jim | |
// @match *://*/* | |
// @grant GM.setValue | |
// @grant GM.getValue | |
// @grant GM.deleteValue |
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
#include <atomic> | |
#include <chrono> | |
#include <immintrin.h> | |
#include <iostream> | |
#include <thread> | |
struct Node { | |
Node * prev{}; | |
Node * next{}; | |
}; |
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 VimJ | |
// @namespace VimJ | |
// @version 1.0 | |
// @description VimJ | |
// @author Jim | |
// @match *://*/* | |
// @grant GM_openInTab | |
// @run-at document-body | |
// ==/UserScript== |