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== |